Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | remove submenu items from branch list page that link to old-style list, since all the individual inforation is now available in aggregated and sortable form on the main list |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | do-not-merge | test-only |
Files: | files | file ages | folders |
SHA1: |
972dc1c632998e2c4ee4c469951009bc |
User & Date: | baruch 2016-01-28 22:15:14.772 |
Context
2016-01-28
| ||
22:15 | remove submenu items from branch list page that link to old-style list, since all the individual inforation is now available in aggregated and sortable form on the main list ... (Closed-Leaf check-in: 972dc1c6 user: baruch tags: do-not-merge, test-only) | |
20:51 | Test of feature branches, do not merge. ... (check-in: b0f2a0ac user: mistachkin tags: do-not-merge, test-only) | |
Changes
Changes to src/branch.c.
︙ | ︙ | |||
341 342 343 344 345 346 347 | static void new_brlist_page(void){ Stmt q; double rNow; int show_colors = PB("colors"); login_check_credentials(); if( !g.perm.Read ){ login_needed(g.anon.Read); return; } style_header("Branches"); | < < < < | 341 342 343 344 345 346 347 348 349 350 351 352 353 354 | static void new_brlist_page(void){ Stmt q; double rNow; int show_colors = PB("colors"); login_check_credentials(); if( !g.perm.Read ){ login_needed(g.anon.Read); return; } style_header("Branches"); style_adunit_config(ADUNIT_RIGHT_OK); style_submenu_binary("colors", "Show branch colors", "No branch colors", 0); login_anonymous_available(); db_prepare(&q, brlistQuery/*works-like:""*/); rNow = db_double(0.0, "SELECT julianday('now')"); @ <div class="brlist"><table id="branchlisttable"> |
︙ | ︙ |