Fossil

Check-in [a040a5d24d]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Moved a comment down in src/style.c and removed a part of it that seems to refer to inline CSS that's since moved to style.css.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | default-css-cleanups
Files: files | file ages | folders
SHA3-256: a040a5d24db8166a2e32c22a95359fade3f283ac2393d9ab16014e5b570bfbff
User & Date: wyoung 2020-11-05 22:34:06.000
Context
2020-11-05
23:15
Added a parameter to style_footer() and renamed it to match its actual function (style_body_and_footer()) so we can add a CSS class to each page that indicates which major Fossil feature served the page, so we can have module-specific CSS. ... (check-in: ef5424b683 user: wyoung tags: default-css-cleanups)
22:34
Moved a comment down in src/style.c and removed a part of it that seems to refer to inline CSS that's since moved to style.css. ... (check-in: a040a5d24d user: wyoung tags: default-css-cleanups)
22:32
Disentangled an incorrect intermingling of the "adunit" feature and the "content" div the begins the body area of each page. ... (check-in: e7fe61c13d user: wyoung tags: default-css-cleanups)
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/style.c.
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
    @ </div>
  }

  @ <div class="content"><span id="debugMsg"></span>
  cgi_destination(CGI_BODY);

  if( sideboxUsed ){
    /* Put the footer at the bottom of the page.
    ** the additional clear/both is needed to extend the content
    ** part to the end of an optional sidebox.
    */
    @ <div class="endContent"></div>
  }
  @ </div>



  zFooter = skin_get("footer");
  if( sqlite3_strlike("%</body>%", zFooter, 0)==0 ){
    style_load_all_js_files();
  }
  if( g.thTrace ) Th_Trace("BEGIN_FOOTER<br />\n", -1);
  Th_Render(zFooter);
  if( g.thTrace ) Th_Trace("END_FOOTER<br />\n", -1);







<
<
<
<




|
<







872
873
874
875
876
877
878




879
880
881
882
883

884
885
886
887
888
889
890
    @ </div>
  }

  @ <div class="content"><span id="debugMsg"></span>
  cgi_destination(CGI_BODY);

  if( sideboxUsed ){




    @ <div class="endContent"></div>
  }
  @ </div>

  /* Put the footer at the bottom of the page. */

  zFooter = skin_get("footer");
  if( sqlite3_strlike("%</body>%", zFooter, 0)==0 ){
    style_load_all_js_files();
  }
  if( g.thTrace ) Th_Trace("BEGIN_FOOTER<br />\n", -1);
  Th_Render(zFooter);
  if( g.thTrace ) Th_Trace("END_FOOTER<br />\n", -1);