Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Use three U+002e characters to form the ellipsis in timelines, rather than the U+22ef, since some browsers do not know how to render U+22ef. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: | 1b78291f08e17c5181cb05fd75479f89 |
User & Date: | drh 2017-11-26 15:47:49 |
Context
2017-11-26
| ||
17:49 | Fix a problem in the /info page for check-ins wherein it was not showing the links to the descendents graph. check-in: 6fe8d461 user: drh tags: trunk | |
15:47 | Use three U+002e characters to form the ellipsis in timelines, rather than the U+22ef, since some browsers do not know how to render U+22ef. check-in: 1b78291f user: drh tags: trunk | |
11:14 | Change the default CSS so that the cursor is a pointer over the timeline check-in comment and the following ellipsis, as a hint to that one can click on those elements. check-in: b39ad68f user: drh tags: trunk | |
Changes
Changes to src/finfo.c.
527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 |
@ onclick='toggleEllipsis(%d(frid))'>
@ %W(zCom)</span>
if( bHashAfterComment && zUuid ){
hyperlink_to_uuid(zUuid);
}
if( bShowDetail ){
@ <span class='timelineEllipsis anticlutter' id='ellipsis-%d(frid)' \
@ onclick='expandEllipsis(%d(frid))'>⋯</span>
if( bSeparateDetail ){
if( zBgClr && zBgClr[0] ){
@ <td class="timelineTableCell timelineDetailCell"
@ style="background-color: %h(zBgClr);">
}else{
@ <td class="timelineTableCell timelineDetailCell">
}
|
| |
527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 |
@ onclick='toggleEllipsis(%d(frid))'>
@ %W(zCom)</span>
if( bHashAfterComment && zUuid ){
hyperlink_to_uuid(zUuid);
}
if( bShowDetail ){
@ <span class='timelineEllipsis anticlutter' id='ellipsis-%d(frid)' \
@ onclick='expandEllipsis(%d(frid))'>...</span>
if( bSeparateDetail ){
if( zBgClr && zBgClr[0] ){
@ <td class="timelineTableCell timelineDetailCell"
@ style="background-color: %h(zBgClr);">
}else{
@ <td class="timelineTableCell timelineDetailCell">
}
|
Changes to src/timeline.c.
554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 |
/* Generate extra information and hyperlinks to follow the comment.
** Example: "(check-in: [abcdefg], user: drh, tags: trunk)"
*/
if( bShowDetail ){
@ <span class='timelineEllipsis anticlutter' id='ellipsis-%d(rid)' \
@ onclick='toggleEllipsis(%d(rid))'>⋯</span>
if( bSeparateDetail ){
if( zBgClr && zBgClr[0] && rid!=selectedRid ){
@ <td class="timelineTableCell timelineDetailCell"
@ style="background-color: %h(zBgClr);">
}else{
@ <td class="timelineTableCell timelineDetailCell">
}
|
| |
554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 |
/* Generate extra information and hyperlinks to follow the comment.
** Example: "(check-in: [abcdefg], user: drh, tags: trunk)"
*/
if( bShowDetail ){
@ <span class='timelineEllipsis anticlutter' id='ellipsis-%d(rid)' \
@ onclick='toggleEllipsis(%d(rid))'>...</span>
if( bSeparateDetail ){
if( zBgClr && zBgClr[0] && rid!=selectedRid ){
@ <td class="timelineTableCell timelineDetailCell"
@ style="background-color: %h(zBgClr);">
}else{
@ <td class="timelineTableCell timelineDetailCell">
}
|