Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Use timelineDate class for the date div on finfo page, just like on timeline page to ensure the date doesn't wrap. (problem reported on ml) |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
3dbe76fca9ef1264b2c237eefa9cdb46 |
| User & Date: | mgagnon 2015-03-03 17:16:54.191 |
Context
|
2015-03-03
| ||
| 23:26 | Update custom MinGW Makefile. check-in: 8ef8940478 user: mistachkin tags: trunk | |
| 22:52 | Merge updates from trunk. check-in: 0a0be9e1e1 user: mistachkin tags: mvAndRmFiles | |
| 21:54 | added note to docs about using FOSSIL_HOME to override config-db location Closed-Leaf check-in: 4984c5ef93 user: michai tags: ml-doc-changes | |
| 17:16 | Use timelineDate class for the date div on finfo page, just like on timeline page to ensure the date doesn't wrap. (problem reported on ml) check-in: 3dbe76fca9 user: mgagnon tags: trunk | |
| 14:42 | Add the Xekri skin. check-in: f05bfde912 user: drh tags: trunk | |
Changes
Changes to src/finfo.c.
| ︙ | ︙ | |||
445 446 447 448 449 450 451 |
}
gidx = graph_add_row(pGraph, frid>0 ? frid : fpid+1000000000,
nParent, aParent, zBr, zBgClr,
zUuid, 0);
if( strncmp(zDate, zPrevDate, 10) ){
sqlite3_snprintf(sizeof(zPrevDate), zPrevDate, "%.10s", zDate);
@ <tr><td>
| | | 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 |
}
gidx = graph_add_row(pGraph, frid>0 ? frid : fpid+1000000000,
nParent, aParent, zBr, zBgClr,
zUuid, 0);
if( strncmp(zDate, zPrevDate, 10) ){
sqlite3_snprintf(sizeof(zPrevDate), zPrevDate, "%.10s", zDate);
@ <tr><td>
@ <div class="divider timelineDate">%s(zPrevDate)</div>
@ </td><td></td><td></td></tr>
}
memcpy(zTime, &zDate[11], 5);
zTime[5] = 0;
@ <tr><td class="timelineTime">
@ %z(href("%R/timeline?c=%t",zDate))%s(zTime)</a></td>
@ <td class="timelineGraph"><div id="m%d(gidx)"></div></td>
|
| ︙ | ︙ |