534
535
536
537
538
539
540
541
542
543
544
545
546
547
|
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
|
+
+
|
tag_cmd_usage:
usage("add|cancel|find|list ...");
}
/*
** WEBPAGE: taglist
**
** List all non-propagating symbolic tags.
*/
void taglist_page(void){
Stmt q;
login_check_credentials();
if( !g.perm.Read ){
login_needed(g.anon.Read);
|
573
574
575
576
577
578
579
580
581
582
583
584
585
586
|
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
|
+
+
+
|
@ </ul>
db_finalize(&q);
style_footer();
}
/*
** WEBPAGE: /tagtimeline
**
** Render a timeline with all check-ins that contain non-propagating
** symbolic tags.
*/
void tagtimeline_page(void){
Stmt q;
login_check_credentials();
if( !g.perm.Read ){ login_needed(g.anon.Read); return; }
|