Differences From Artifact [0e7d5b304c]:
- File src/finfo.c — part of check-in [4d0af2a68f] at 2021-02-04 00:57:34 on branch user-color-revamp — Split off the automatic background color chooser into a separate source file "color.c". Add a separate routine "user_color()" to choose background colors based on user name. Abandon the "color-hash-seed" setting. Instead, provide the "user-color-map" setting for overriding the automatic color choices for a few users, which color collisions occur between key project members. (user: drh size: 32603) [more...]
To Artifact [8baea2d10a]:
- File src/finfo.c — part of check-in [71a2d68a7a] at 2021-03-02 07:11:08 on branch skin-preference-cookie — Skin selection is now stored in the user display prefs cookie and can be modified from any page by passing the skin=xyz URL parameter. Gets trumped by /draftX URI or --skin CLI flag or skin: CGI config setting. Removed /skn_XYZ URI handling. /skins page now uses the new mechanism for skin selection. UDC is now rendered on every page if it was modified during that request, regardless of the 'udc' URL parameter. See discussion at [https://fossil-scm.org/forum/forumpost/4d3a10c72a|/forumpost/4d3a10c72a]. (user: stephan size: 32584) [more...]
| ︙ | ︙ | |||
362 363 364 365 366 367 368 |
zStyle = "Modern";
}
url_initialize(&url, "finfo");
if( brBg ) url_add_parameter(&url, "brbg", 0);
if( uBg ) url_add_parameter(&url, "ubg", 0);
ridFrom = name_to_rid_www("from");
zPrevDate[0] = 0;
| < | 362 363 364 365 366 367 368 369 370 371 372 373 374 375 |
zStyle = "Modern";
}
url_initialize(&url, "finfo");
if( brBg ) url_add_parameter(&url, "brbg", 0);
if( uBg ) url_add_parameter(&url, "ubg", 0);
ridFrom = name_to_rid_www("from");
zPrevDate[0] = 0;
if( fnid==0 ){
@ No such file: %h(zFilename)
style_finish_page();
return;
}
if( g.perm.Admin ){
style_submenu_element("MLink Table", "%R/mlink?name=%t", zFilename);
|
| ︙ | ︙ |