Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Add a checkbox to the /setup_timeline page to control the raw-bgcolor setting. |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
620e1e0fc484c4fa33b733be5d2c1921 |
| User & Date: | drh 2025-03-28 13:22:01.941 |
Context
|
2025-03-28
| ||
| 14:47 | Fix a ULARGE_INTEGER struct initialization warning on Windows. check-in: 1f0adaa7fd user: stephan tags: trunk | |
| 14:43 | Fix a ULARGE_INTEGER struct initialization warning on Windows. (Edit: moving to mistake branch because msys changed the exec bits of many files.) Closed-Leaf check-in: 263acf1668 user: stephan tags: mistake | |
| 13:22 | Add a checkbox to the /setup_timeline page to control the raw-bgcolor setting. check-in: 620e1e0fc4 user: drh tags: trunk | |
| 12:56 | Attempt to fix the graph CSS for the Xekri skin. check-in: d176fea43e user: drh tags: trunk | |
Changes
Changes to src/setup.c.
| ︙ | ︙ | |||
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 |
@ <hr>
onoff_attribute("Break comments at newline characters",
"timeline-hard-newlines", "thnl", 0, 0);
@ <p>In timeline displays, newline characters in check-in comments force
@ a line break on the display.
@ (Property: "timeline-hard-newlines")</p>
@ <hr>
onoff_attribute("Use Universal Coordinated Time (UTC)",
"timeline-utc", "utc", 1, 0);
@ <p>Show times as UTC (also sometimes called Greenwich Mean Time (GMT) or
@ Zulu) instead of in local time. On this server, local time is currently
tmDiff = db_double(0.0, "SELECT julianday('now')");
tmDiff = db_double(0.0,
| > > > > > > > > > > | 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 |
@ <hr>
onoff_attribute("Break comments at newline characters",
"timeline-hard-newlines", "thnl", 0, 0);
@ <p>In timeline displays, newline characters in check-in comments force
@ a line break on the display.
@ (Property: "timeline-hard-newlines")</p>
@ <hr>
onoff_attribute("Do not adjust user-selected background colors",
"raw-bgcolor", "rbgc", 0, 0);
@ <p>Fossil normally attempts to adjust the saturation and intensity of
@ user-specified background colors on check-ins and branches so that the
@ foreground text is easily readable on all skins. Enable this setting
@ to omit that adjustment and use exactly the background color specified
@ by users.
@ (Property: "raw-bgcolor")</p>
@ <hr>
onoff_attribute("Use Universal Coordinated Time (UTC)",
"timeline-utc", "utc", 1, 0);
@ <p>Show times as UTC (also sometimes called Greenwich Mean Time (GMT) or
@ Zulu) instead of in local time. On this server, local time is currently
tmDiff = db_double(0.0, "SELECT julianday('now')");
tmDiff = db_double(0.0,
|
| ︙ | ︙ |