Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Restore the Classic View mode for the File History web page. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | fix-timeline-view |
| Files: | files | file ages | folders |
| SHA3-256: |
33882ef8219bcfe82af1295072650ef3 |
| User & Date: | florian 2018-12-24 06:32:00.000 |
Context
|
2018-12-24
| ||
| 06:40 | Restore background colors and clickable nodes for the Leaves web page. check-in: d28f9e99a0 user: florian tags: fix-timeline-view | |
| 06:32 | Restore the Classic View mode for the File History web page. check-in: 33882ef821 user: florian tags: fix-timeline-view | |
|
2018-12-12
| ||
| 20:43 | Next and Previous submenu buttons on the /wdiff page in order to step through all versions of a wiki page. check-in: 19eaa3cae4 user: drh tags: trunk | |
Changes
Changes to src/finfo.c.
| ︙ | ︙ | |||
328 329 330 331 332 333 334 335 336 337 338 339 340 341 |
tmFlags = timeline_ss_submenu();
if( tmFlags & TIMELINE_COLUMNAR ){
zStyle = "Columnar";
}else if( tmFlags & TIMELINE_COMPACT ){
zStyle = "Compact";
}else if( tmFlags & TIMELINE_VERBOSE ){
zStyle = "Verbose";
}else{
zStyle = "Modern";
}
url_initialize(&url, "finfo");
if( brBg ) url_add_parameter(&url, "brbg", 0);
if( uBg ) url_add_parameter(&url, "ubg", 0);
baseCheckin = name_to_rid_www("ci");
| > > | 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 |
tmFlags = timeline_ss_submenu();
if( tmFlags & TIMELINE_COLUMNAR ){
zStyle = "Columnar";
}else if( tmFlags & TIMELINE_COMPACT ){
zStyle = "Compact";
}else if( tmFlags & TIMELINE_VERBOSE ){
zStyle = "Verbose";
}else if( tmFlags & TIMELINE_CLASSIC ){
zStyle = "Classic";
}else{
zStyle = "Modern";
}
url_initialize(&url, "finfo");
if( brBg ) url_add_parameter(&url, "brbg", 0);
if( uBg ) url_add_parameter(&url, "ubg", 0);
baseCheckin = name_to_rid_www("ci");
|
| ︙ | ︙ |