Differences From:
File
src/branch.c
part of check-in
[2fa4df1e47]
- Add timeline links on the leaves page. Also on the leaves page, do not
show Merge labels on check-ins. The second part is the fix for
ticket d6bb26f436d8299f95d63f45fa51c92acdc91c5a.
by
drh on
2009-01-21 18:59:11.
[view]
To:
File
src/branch.c
part of check-in
[08db9e11cb]
- Track the origin of tags and display that origin in the tag and properities
information field of the "vinfo" page. Must "fossil rebuild" after this
change.
by
drh on
2009-01-21 23:40:17.
[view]
@@ -256,8 +256,42 @@
" ORDER BY event.mtime DESC",
timeline_query_for_www(), TAG_NEWBRANCH
);
www_print_timeline(&q, 0, brlist_extra);
+ db_finalize(&q);
+ @ <br clear="both">
+ @ <script>
+ @ function xin(id){
+ @ }
+ @ function xout(id){
+ @ }
+ @ </script>
+ style_footer();
+}
+
+/*
+** WEBPAGE: symtaglist
+**
+** Show a timeline of all check-ins that have a primary symbolic tag.
+*/
+void symtaglist_page(void){
+ Stmt q;
+
+ login_check_credentials();
+ if( !g.okRead ){ login_needed(); return; }
+
+ style_header("Tagged Check-ins");
+ login_anonymous_available();
+ @ <h2>Check-ins that have one or more primary symbolic tags</h2>
+ db_prepare(&q,
+ "%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(), TAG_NEWBRANCH
+ );
+ www_print_timeline(&q, 0, 0);
db_finalize(&q);
@ <br clear="both">
@ <script>
@ function xin(id){