Diff
Not logged in

Differences From:

File src/db.c part of check-in [0c6ea0d93f] - When creating a new repository or cloning a repository, print the initial administrator password on standard output. This is intended to help new users figure out how to log in. Ticket ca08d51f19 by drh on 2008-11-20 01:07:10. [view]

To:

File src/db.c part of check-in [8d529a7ae9] - Tidy up the raw tags web page, and provide a way to get there, for admins only by eric on 2008-11-26 21:59:42. [view]

@@ -1396,9 +1396,9 @@
   char *z;                   /* Rendered HTML text */
 
   zUuid = (const char*)sqlite3_value_text(argv[0]);
   if( g.okHistory && zUuid && strlen(zUuid)>=10 ){
-    z = mprintf("<tt><a href='%s/vinfo/%t'><span style='font-size:1.5em'>"
+    z = mprintf("<tt><a href='%s/info/%t'><span style='font-size:1.5em'>"
                 "%#h</span>%h</a></tt>",
                 g.zBaseURL, zUuid, 10, zUuid, &zUuid[10]);
     sqlite3_result_text(pCxt, z, -1, free);
   }else{
@@ -1441,9 +1441,9 @@
   char *z;                   /* rendered html text */
 
   zTag = (const char*)sqlite3_value_text(argv[0]);
   if( g.okHistory ){
-    z = mprintf("<a href='%s/tagview?name=%T'>%h</a>",
+    z = mprintf("<a href='%s/tagview?name=%T&raw=y'>%h</a>",
                   g.zBaseURL, zTag, zTag);
   }else{
     z = mprintf("%h", zTag);
   }