[Unison-hackers] [unison-svn] r336 - in branches/2.32: doc src

Benjamin C. Pierce bcpierce at seas.upenn.edu
Tue May 19 12:51:45 EDT 2009


Author: bcpierce
Date: 2009-05-19 12:51:43 -0400 (Tue, 19 May 2009)
New Revision: 336

Modified:
   branches/2.32/doc/unison-manual.tex
   branches/2.32/src/NEWS
   branches/2.32/src/RECENTNEWS
   branches/2.32/src/mkProjectInfo.ml
   branches/2.32/src/strings.ml
Log:
* Small documentation fix suggested by mszsummer.




Modified: branches/2.32/doc/unison-manual.tex
===================================================================
--- branches/2.32/doc/unison-manual.tex	2009-05-19 16:50:48 UTC (rev 335)
+++ branches/2.32/doc/unison-manual.tex	2009-05-19 16:51:43 UTC (rev 336)
@@ -1255,7 +1255,7 @@
 \verb|rootalias| preference.  The preference file may contain any number of
 lines of the form: 
 \begin{alltt}
-    rootalias = //\NT{hostnameA}//\NT{path-to-replicaA} -> //\NT{hostnameB}//\NT{path-to-replicaB}
+    rootalias = //\NT{hostnameA}//\NT{path-to-replicaA} -> //\NT{hostnameB}/\NT{path-to-replicaB}
 \end{alltt}
 When calculating the name of the archive files for a given pair of roots,
 Unison replaces any root that matches the left-hand side of any rootalias
@@ -1264,8 +1264,10 @@
 So, if you need to relocate a root on one of the hosts, you can add a
 rule of the form:
 \begin{alltt}
-    rootalias = //\NT{new-hostname}//\NT{new-path} -> //\NT{old-hostname}//\NT{old-path}
+    rootalias = //\NT{new-hostname}//\NT{new-path} -> //\NT{old-hostname}/\NT{old-path}
 \end{alltt}
+Note that root aliases are case-sensitive, even on case-insensitive file
+systems.
 
 {\em Warning}: The \verb|rootalias| option is dangerous and should only
 be used if you are sure you know what you're doing.  In particular, it

Modified: branches/2.32/src/NEWS
===================================================================
--- branches/2.32/src/NEWS	2009-05-19 16:50:48 UTC (rev 335)
+++ branches/2.32/src/NEWS	2009-05-19 16:51:43 UTC (rev 336)
@@ -1,11 +1,7 @@
 
-Changes in Version 2.32.10
+Changes in Version 2.32.12
 
    Changes since 2.31:
-     * Small user interface changes
-          + Small change to text UI "scanning..." messages, to print just
-            directories (hopefully making it clearer that individual
-            files are not necessarily being fingerprinted).
      * Minor fixes and improvements:
           + Ignore one hour differences when deciding whether a file may
             have been updated. This avoids slow update detection after

Modified: branches/2.32/src/RECENTNEWS
===================================================================
--- branches/2.32/src/RECENTNEWS	2009-05-19 16:50:48 UTC (rev 335)
+++ branches/2.32/src/RECENTNEWS	2009-05-19 16:51:43 UTC (rev 336)
@@ -1,3 +1,10 @@
+CHANGES FROM VERSION 2.32.19
+
+* Small documentation fix suggested by mszsummer.
+
+
+
+-------------------------------
 CHANGES FROM VERSION 2.32.12
 
 * Fixed bug in GTK UI: buttons could be incorrectly activated back during

Modified: branches/2.32/src/mkProjectInfo.ml
===================================================================
--- branches/2.32/src/mkProjectInfo.ml	2009-05-19 16:50:48 UTC (rev 335)
+++ branches/2.32/src/mkProjectInfo.ml	2009-05-19 16:51:43 UTC (rev 336)
@@ -109,3 +109,4 @@
 
 
 
+

Modified: branches/2.32/src/strings.ml
===================================================================
--- branches/2.32/src/strings.ml	2009-05-19 16:50:48 UTC (rev 335)
+++ branches/2.32/src/strings.ml	2009-05-19 16:51:43 UTC (rev 336)
@@ -4,7 +4,7 @@
 let docs =
     ("about", ("About Unison", 
      "Unison File Synchronizer\n\
-      Version 2.32.10\n\
+      Version 2.32.12\n\
       \n\
       "))
 ::
@@ -2582,14 +2582,10 @@
       \n\
       "))
 ::
-    ("news", ("Changes in Version 2.32.10", 
-     "Changes in Version 2.32.10\n\
+    ("news", ("Changes in Version 2.32.12", 
+     "Changes in Version 2.32.12\n\
       \n\
       \032  Changes since 2.31:\n\
-      \032    * Small user interface changes\n\
-      \032         + Small change to text UI \"scanning...\" messages, to print just\n\
-      \032           directories (hopefully making it clearer that individual\n\
-      \032           files are not necessarily being fingerprinted).\n\
       \032    * Minor fixes and improvements:\n\
       \032         + Ignore one hour differences when deciding whether a file may\n\
       \032           have been updated. This avoids slow update detection after\n\



More information about the Unison-hackers mailing list