Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix a problem in the /info page for check-ins wherein it was not showing the links to the descendents graph. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
6fe8d46106113ae4bc004bd8e7b128e7 |
| User & Date: | drh 2017-11-26 17:49:39.174 |
Context
|
2017-11-26
| ||
| 23:19 | If there is a selection or marked entry, scroll the /timeline so that the marked entry as as close to the middle of the screen as we can get, upon initial display of the timeline. ... (check-in: 66e6c97bd4 user: drh tags: trunk) | |
| 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: 6fe8d46106 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: 1b78291f08 user: drh tags: trunk) | |
Changes
Changes to src/info.c.
| ︙ | ︙ | |||
629 630 631 632 633 634 635 |
if( zRe ) re_compile(&pRe, zRe, 0);
zUuid = db_text(0, "SELECT uuid FROM blob WHERE rid=%d", rid);
zParent = db_text(0,
"SELECT uuid FROM plink, blob"
" WHERE plink.cid=%d AND blob.rid=plink.pid AND plink.isprim",
rid
);
| | | 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 |
if( zRe ) re_compile(&pRe, zRe, 0);
zUuid = db_text(0, "SELECT uuid FROM blob WHERE rid=%d", rid);
zParent = db_text(0,
"SELECT uuid FROM plink, blob"
" WHERE plink.cid=%d AND blob.rid=plink.pid AND plink.isprim",
rid
);
isLeaf = !db_exists("SELECT 1 FROM plink WHERE pid=%d", rid);
db_prepare(&q1,
"SELECT uuid, datetime(mtime,toLocal()), user, comment,"
" datetime(omtime,toLocal()), mtime"
" FROM blob, event"
" WHERE blob.rid=%d"
" AND event.objid=%d",
rid, rid
|
| ︙ | ︙ |