Check-in [bf7ca1a4d8]
Not logged in
Overview

SHA1 Hash:bf7ca1a4d8ce33c852164c9105fa35c3e8c81339
Date: 2009-01-20 23:47:47
User: drh
Comment:Change the page header from Baseline to Check-in on the "vinfo" page. Fix a bug introduced into tagview (ticket 309c57b3d27219fa6ad601c0021dc067a7cb992d).
Timelines: ancestors | descendants | both | trunk
Other Links: files | ZIP archive | manifest

Tags And Properties
Changes
[hide diffs]

Modified src/info.c from [53c5bc287b] to [34fba006b8].

@@ -316,11 +316,11 @@
 
   login_check_credentials();
   if( !g.okRead ){ login_needed(); return; }
   rid = name_to_rid(PD("name","0"));
   if( rid==0 ){
-    style_header("Baseline Information Error");
+    style_header("Check-in Information Error");
     @ No such object: %h(g.argv[2])
     style_footer();
     return;
   }
   isLeaf = !db_exists("SELECT 1 FROM plink WHERE pid=%d", rid);
@@ -331,11 +331,11 @@
      "   AND event.objid=%d",
      rid, rid
   );
   if( db_step(&q)==SQLITE_ROW ){
     const char *zUuid = db_column_text(&q, 0);
-    char *zTitle = mprintf("Baseline [%.10s]", zUuid);
+    char *zTitle = mprintf("Check-in [%.10s]", zUuid);
     char *zEUser, *zEComment;
     const char *zUser;
     const char *zComment;
     style_header(zTitle);
     login_anonymous_available();

Modified src/tagview.c from [3ccdf1ea64] to [565eefa2cf].

@@ -177,11 +177,11 @@
                         zPrefix, zName);
   zSql = mprintf("%s AND EXISTS (SELECT 1"
          " FROM tagxref"
          "  WHERE tagxref.rid = event.objid"
          "  AND tagxref.tagtype > 0"
-         "  AND tagxref.tagid = %d"
+         "  AND tagxref.tagid = %d)"
          " ORDER BY 3 desc",
          timeline_query_for_www(), tagid
   );
   db_prepare(&q, zSql);
   free(zSql);