Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Cosmetic change to insert a space between two hyperlinks. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | fix-timeline-view |
Files: | files | file ages | folders |
SHA3-256: |
eb882e277fd4eb35dcc1ed04d5e0900e |
User & Date: | florian 2018-12-24 21:48:00.000 |
Context
2018-12-24
| ||
22:06 | Treat the new query parameters as boolean flags. ... (check-in: 8e5ea60b user: florian tags: fix-timeline-view) | |
21:48 | Cosmetic change to insert a space between two hyperlinks. ... (check-in: eb882e27 user: florian tags: fix-timeline-view) | |
21:33 | Add the 'hide' query parameter to remove check-ins tagged as "hidden" (which are shown by default) for the /leaves, /brtimeline, and /tagtimeline web pages. (Rationale: listings of open leaves not tagged as "hidden" can make handy TODO lists.) ... (check-in: 92fa3664 user: florian tags: fix-timeline-view) | |
Changes
Changes to src/branch.c.
︙ | ︙ | |||
602 603 604 605 606 607 608 | " AND tagxref.tagid=tag.tagid" " AND tagxref.tagtype>0" " AND tag.tagname GLOB 'sym-*'", rid ); while( db_step(&q)==SQLITE_ROW ){ const char *zTagName = db_column_text(&q, 0); | | | 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 | " AND tagxref.tagid=tag.tagid" " AND tagxref.tagtype>0" " AND tag.tagname GLOB 'sym-*'", rid ); while( db_step(&q)==SQLITE_ROW ){ const char *zTagName = db_column_text(&q, 0); @ %z(href("%R/timeline?r=%T&n=200",zTagName))[timeline]</a> } db_finalize(&q); } /* ** WEBPAGE: brtimeline ** |
︙ | ︙ |