Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Make the banner "filename" (one word) rather than "file name". |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
c027368b50ee93fa445b56fef268309c |
User & Date: | drh 2018-05-05 19:08:39.514 |
Context
2018-05-05
| ||
19:10 | If the banner uses "filename" as one word, the title ought to too. ... (check-in: c0ed9506 user: drh tags: trunk) | |
19:08 | Make the banner "filename" (one word) rather than "file name". ... (check-in: c027368b user: drh tags: trunk) | |
19:04 | Change the title on the /test-rename-list page to use "file name changes". ... (check-in: f99b8819 user: drh tags: trunk) | |
Changes
Changes to src/path.c.
︙ | ︙ | |||
605 606 607 608 609 610 611 | db_multi_exec("%s", zDistinctRenameQuery/*safe-for-%s*/); style_submenu_element("All", "%R/test-rename-list?all"); } nRename = db_int(0, "SELECT count(*) FROM renames;"); nCheckin = db_int(0, "SELECT count(DISTINCT checkin) FROM renames;"); db_prepare(&q, "SELECT date, old_name, new_name, checkin FROM renames" " ORDER BY date DESC, old_name ASC"); | | | 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 | db_multi_exec("%s", zDistinctRenameQuery/*safe-for-%s*/); style_submenu_element("All", "%R/test-rename-list?all"); } nRename = db_int(0, "SELECT count(*) FROM renames;"); nCheckin = db_int(0, "SELECT count(DISTINCT checkin) FROM renames;"); db_prepare(&q, "SELECT date, old_name, new_name, checkin FROM renames" " ORDER BY date DESC, old_name ASC"); @ <h1>%d(nRename) filename changes in %d(nCheckin) check-ins</h1> @ <table class='sortable' data-column-types='tttt' data-init-sort='1'\ @ border="1" cellpadding="2" cellspacing="0"> @ <thead><tr><th>Date & Time</th> @ <th>Old Name</th> @ <th>New Name</th> @ <th>Check-in</th></tr></thead><tbody> while( db_step(&q)==SQLITE_ROW ){ |
︙ | ︙ |