Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch andygoth-circa Excluding Merge-Ins
This is equivalent to a diff from 6ef1500850 to 4f92a66387
|
2016-10-12
| ||
| 22:51 | Update the built-in SQLite again for a bug fix. ... (check-in: 78fcfd46ad user: drh tags: trunk) | |
| 22:04 | Closing because functionality already available in Fossil by clicking on the date in the info page ... (Closed-Leaf check-in: 4f92a66387 user: andygoth tags: andygoth-circa) | |
| 18:35 | Merge trunk ... (check-in: a7d576ddb2 user: andygoth tags: andygoth-circa) | |
| 16:05 | Update the built-in SQLite to the next 3.15.0 beta for testing. ... (check-in: 6ef1500850 user: drh tags: trunk) | |
| 13:31 | Tweak stash help text for internal consistency ... (check-in: de4e4e2a30 user: andygoth tags: trunk) | |
Changes to src/info.c.
| ︙ | |||
661 662 663 664 665 666 667 668 669 670 671 672 673 674 | 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 | + |
}
if( !isLeaf ){
@ | %z(href("%R/timeline?d=%!S&unhide",zUuid))descendants</a>
}
if( zParent && !isLeaf ){
@ | %z(href("%R/timeline?dp=%!S&unhide",zUuid))both</a>
}
@ | %z(href("%R/timeline?c=%!S&unhide",zUuid))circa</a>
db_prepare(&q2,"SELECT substr(tag.tagname,5) FROM tagxref, tag "
" WHERE rid=%d AND tagtype>0 "
" AND tag.tagid=tagxref.tagid "
" AND +tag.tagname GLOB 'sym-*'", rid);
while( db_step(&q2)==SQLITE_ROW ){
const char *zTagName = db_column_text(&q2, 0);
@ | %z(href("%R/timeline?r=%T&unhide",zTagName))%h(zTagName)</a>
|
| ︙ |