Check-in [6ae51190cc]
Not logged in
Overview

SHA1 Hash:6ae51190cc04637983646d890f7ab976e41ef3f4
Date: 2009-12-10 02:19:16
User: rwilson
Comment:reserve the use of brackets in stdout for artifacts
Timelines: ancestors | descendants | both | trunk
Other Links: files | ZIP archive | manifest

Tags And Properties
Changes
[hide diffs]

Modified src/checkin.c from [895c64f8ea] to [f3f9a02e0a].

@@ -237,11 +237,11 @@
   while( db_step(&q)==SQLITE_ROW ){
     if( allFlag ){
       unlink(db_column_text(&q, 0));
     }else{
       Blob ans;
-      char *prompt = mprintf("remove unmanaged file \"%s\" [y/N]? ",
+      char *prompt = mprintf("remove unmanaged file \"%s\" (y/N)? ",
                               db_column_text(&q, 0));
       blob_zero(&ans);
       prompt_user(prompt, &ans);
       if( blob_str(&ans)[0]=='y' ){
         unlink(db_column_text(&q, 0));
@@ -545,11 +545,11 @@
     prepare_commit_comment(&comment, zInit);
     free(zInit);
     if( blob_size(&comment)==0 ){
       Blob ans;
       blob_zero(&ans);
-      prompt_user("empty check-in comment.  continue [y/N]? ", &ans);
+      prompt_user("empty check-in comment.  continue (y/N)? ", &ans);
       if( blob_str(&ans)[0]!='y' ){
         db_end_transaction(1);
         exit(1);
       }
     }else{
@@ -674,11 +674,11 @@
   blob_appendf(&manifest, "Z %b\n", &mcksum);
   zManifestFile = mprintf("%smanifest", g.zLocalRoot);
   if( !noSign && !g.markPrivate && clearsign(&manifest, &manifest) ){
     Blob ans;
     blob_zero(&ans);
-    prompt_user("unable to sign manifest.  continue [y/N]? ", &ans);
+    prompt_user("unable to sign manifest.  continue (y/N)? ", &ans);
     if( blob_str(&ans)[0]!='y' ){
       db_end_transaction(1);
       exit(1);
     }
   }

Modified src/rebuild.c from [fa901199b7] to [ab6ed5de1a].

@@ -371,11 +371,11 @@
   if( !bForce ){
     Blob ans;
     blob_zero(&ans);
     prompt_user("Scrubbing the repository will permanently remove user\n"
                 "passwords and other information. Changes cannot be undone.\n"
-                "Continue [y/N]? ", &ans);
+                "Continue (y/N)? ", &ans);
     if( blob_str(&ans)[0]!='y' ){
       exit(1);
     }
   }
   db_begin_transaction();

Modified src/update.c from [807405a4a8] to [74a2862e7d].

@@ -304,11 +304,11 @@
   file_tree_name(zFile, &fname, 1);
 
   if( access(zFile, 0) ) yesRevert = 1;
   if( yesRevert==0 ){
     char *prompt = mprintf("revert file %B? this will"
-                           " destroy local changes [y/N]? ",
+                           " destroy local changes (y/N)? ",
                            &fname);
     blob_zero(&ans);
     prompt_user(prompt, &ans);
     free( prompt );
     if( blob_str(&ans)[0]=='y' ){