Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Missing "unhide" option in link to timeline. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
32bb2a31f4ea05f1bf05112058476e4a |
| User & Date: | jan.nijtmans 2014-01-09 13:14:11.215 |
| Original Comment: | Midding "unhide" option in link to timeline. |
Context
|
2014-01-09
| ||
| 13:18 | Make sure it is not possible to add files that are outside of the current checkout. ... (check-in: c6f32a262d user: drh tags: trunk) | |
| 13:14 | Missing "unhide" option in link to timeline. ... (check-in: 32bb2a31f4 user: jan.nijtmans tags: trunk) | |
| 11:57 | Change C++ comments to C commenting style ... (check-in: 25950f8b67 user: jan.nijtmans tags: trunk) | |
Changes
Changes to src/info.c.
| ︙ | ︙ | |||
608 609 610 611 612 613 614 |
}
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);
| | | 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 |
}
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>
}
db_finalize(&q2);
/* The Download: line */
if( g.perm.Zip ){
char *zUrl = mprintf("%R/tarball/%t-%S.tar.gz?uuid=%s",
|
| ︙ | ︙ |