Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Make the labels on the color submenu of the /brlist page more succinct. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
a1b0ec8e3953a248abdf2bac42bc8999 |
User & Date: | drh 2016-10-26 23:33:03 |
Context
2016-10-27
| ||
05:28 | Now that FuseFS support is conditional, permit config.h to be included so FOSSIL_HAVE_FUSEFS can be correctly included from autoconfig.h to avoid linker failure to find fusefs_cmd. check-in: a4bb89ba user: andybradford tags: trunk | |
2016-10-26
| ||
23:33 | Make the labels on the color submenu of the /brlist page more succinct. check-in: a1b0ec8e user: drh tags: trunk | |
21:45 | Create a temporary index to speed up incremental Git import. check-in: 0fa60142 user: mistachkin tags: trunk | |
Changes
Changes to src/branch.c.
348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 |
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">
@ <thead><tr>
@ <th>Branch Name</th>
|
| |
348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 |
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", "Color", "B/W", 0);
login_anonymous_available();
db_prepare(&q, brlistQuery/*works-like:""*/);
rNow = db_double(0.0, "SELECT julianday('now')");
@ <div class="brlist"><table id="branchlisttable">
@ <thead><tr>
@ <th>Branch Name</th>
|