Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Improvements to the help-text for /brlist. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
611fe9b078d377476c31663429656506 |
| User & Date: | drh 2019-07-01 13:38:24.574 |
Context
|
2019-07-02
| ||
| 05:53 | Switched Immediately-Invoked Function Expression parentheses from Crockford-style to the more conventional/portable style. See https://stackoverflow.com/questions/9053842/ for details. ... (check-in: 5d9d62d818 user: stephan tags: trunk) | |
| 04:45 | Per request in forumpost/9fd5135acc, added intra-document links to each response which link back to the being-replied-to post within the same page (using an #anchor-tag), without reloading from the server. ... (check-in: 78721d4aa0 user: stephan tags: forum-reply-links) | |
|
2019-07-01
| ||
| 13:38 | Improvements to the help-text for /brlist. ... (check-in: 611fe9b078 user: drh tags: trunk) | |
| 13:19 | Add a new test-case in the graph test for the /leaves page. ... (check-in: 3bc1a0e80e user: drh tags: trunk) | |
Changes
Changes to src/branch.c.
| ︙ | ︙ | |||
490 491 492 493 494 495 496 | ** is used to show all branches. If query parameters are present a ** fixed bullet list is shown. ** ** Query parameters: ** ** all Show all branches ** closed Show only closed branches | | > > > > | 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 |
** is used to show all branches. If query parameters are present a
** fixed bullet list is shown.
**
** Query parameters:
**
** all Show all branches
** closed Show only closed branches
** open Show only open branches
** colortest Show all branches with automatic color
**
** When there are no query parameters, a new-style /brlist page shows
** all branches in a sortable table. The new-style /brlist page is
** preferred and is the default.
*/
void brlist_page(void){
Stmt q;
int cnt;
int showClosed = P("closed")!=0;
int showAll = P("all")!=0;
int showOpen = P("open")!=0;
|
| ︙ | ︙ |