Differences From Artifact [96fca99e99]:
- File src/tag.c — part of check-in [9e318f6b48] at 2015-01-26 09:04:13 on branch trunk — Update custom MinGW makefile, add one "const" and remove some unnecessary eol-spaces (user: jan.nijtmans size: 17747) [more...]
To Artifact [19d4ca3b7d]:
- File src/tag.c — part of check-in [f4e299d0e5] at 2015-02-09 04:10:52 on branch trunk — On timelines, to show the "selected" entry, give the row some vertical space between the previous and following rows, a yellow background, a gray border, and a shadow-box (all adjustable via CSS). For the c=TIME "circa" query parameter, highlight the nearest entry. (user: drh size: 17750)
| ︙ | ︙ | |||
592 593 594 595 596 597 598 |
"%s AND blob.rid IN (SELECT rid FROM tagxref"
" WHERE tagtype=1 AND srcid>0"
" AND tagid IN (SELECT tagid FROM tag "
" WHERE tagname GLOB 'sym-*'))"
" ORDER BY event.mtime DESC",
timeline_query_for_www()
);
| | | 592 593 594 595 596 597 598 599 600 601 602 603 |
"%s AND blob.rid IN (SELECT rid FROM tagxref"
" WHERE tagtype=1 AND srcid>0"
" AND tagid IN (SELECT tagid FROM tag "
" WHERE tagname GLOB 'sym-*'))"
" ORDER BY event.mtime DESC",
timeline_query_for_www()
);
www_print_timeline(&q, 0, 0, 0, 0, 0);
db_finalize(&q);
@ <br />
style_footer();
}
|