Check-in [8be6204607]
Not logged in
Overview

SHA1 Hash:8be6204607fd78760ebcc8f455cd6707d62e358e
Date: 2009-02-09 04:41:08
User: bharder
Edited Comment:'fossil' encode tagnames for manifest (for ticket 15f49be6b2b1e) (allows for tags with spaces in name)
Original Comment:'fossil' encode tagnames for manifest (for ticket 15f49be6b2b1e)
Timelines: ancestors | descendants | both | trunk
Other Links: files | ZIP archive | manifest

Tags And Properties
Changes
[hide diffs]

Modified src/branch.c from [e6d1392f9d] to [3ef4b504fa].

@@ -122,11 +122,11 @@
       "   AND tagtype>0 AND tagname GLOB 'sym-*'"
       " ORDER BY tagname",
       rootid);
   while( db_step(&q)==SQLITE_ROW ){
     const char *zTag = db_column_text(&q, 0);
-    blob_appendf(&branch, "T -%s *\n", zTag);
+    blob_appendf(&branch, "T -%F *\n", zTag);
   }
   db_finalize(&q);
 
   blob_appendf(&branch, "U %F\n", g.zLogin);
   md5sum_blob(&branch, &mcksum);

Modified src/checkin.c from [c26c845ac6] to [a36b0dbf8a].

@@ -616,11 +616,11 @@
         "   AND tagname!='sym-'||%Q"
         " ORDER BY tagname",
         vid, zBranch);
     while( db_step(&q)==SQLITE_ROW ){
       const char *zTag = db_column_text(&q, 0);
-      blob_appendf(&manifest, "T -%s *\n", zTag);
+      blob_appendf(&manifest, "T -%F *\n", zTag);
     }
     db_finalize(&q);
   }
   blob_appendf(&manifest, "U %F\n", g.zLogin);
   md5sum_blob(&manifest, &mcksum);