Differences From Artifact [6a1abdfc8f]:
- File src/user.c — part of check-in [ef5424b683] at 2020-11-05 23:15:41 on branch default-css-cleanups — 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. (user: wyoung size: 21527)
To Artifact [91e9208866]:
- File src/user.c — part of check-in [942b2076c6] at 2020-11-07 13:25:35 on branch default-css-cleanups — Rename the "style_body_and_footer()" interface to "style_finish_page()" and add a more detailed header comment to the implementation. (user: drh size: 21523) [more...]
| ︙ | ︙ | |||
770 771 772 773 774 775 776 | @ </form> @ <form method="post" action="%R/access_log"> @ <label><input type="checkbox" name="delall"> @ Delete all entries</input></label> @ <input type="submit" name="delallbtn" value="Delete"></input> @ </form> style_table_sorter(); | | | 770 771 772 773 774 775 776 777 778 |
@ </form>
@ <form method="post" action="%R/access_log">
@ <label><input type="checkbox" name="delall">
@ Delete all entries</input></label>
@ <input type="submit" name="delallbtn" value="Delete"></input>
@ </form>
style_table_sorter();
style_finish_page("access_log");
}
|