[svnbook commit] r1707 - trunk/src/en/book

maxb svnbook-dev at red-bean.com
Tue Sep 27 12:34:39 CDT 2005


Author: maxb
Date: Tue Sep 27 12:34:37 2005
New Revision: 1707

Modified:
   trunk/src/en/book/ch09.xml
Log:
Make 'svnlook changed' reference page more complete.
Fix issue 2179.

Patch by: Tom Brown <tom at thecap.org>
(Significantly rewritten by me.)

* en/book/ch09.xml (svn.ref.svnlook.c.changed): Document all possible
    'svnlook changed' status codes, and mention that a trailing '/' indicates
    a directory. Expand examples appropriately.


Modified: trunk/src/en/book/ch09.xml
==============================================================================
--- trunk/src/en/book/ch09.xml	(original)
+++ trunk/src/en/book/ch09.xml	Tue Sep 27 12:34:37 2005
@@ -5123,13 +5123,54 @@
           <title>Description</title>
 
           <para>Print the paths that were changed in a particular
-            revision or transaction, as well as an <quote>svn
-            update-style</quote> status letter in the first column:
-            <literal>A</literal> for added, <literal>D</literal> for
-            deleted, and <literal>U</literal> for updated
-            (modified).</para>
+            revision or transaction, as well as <quote>svn
+            update-style</quote> status letters in the first two
+            columns:</para>
 
-          </refsect1>
+          <variablelist>
+            
+            <varlistentry>
+              <term>'<literal>A </literal>'</term>
+              <listitem>
+                <para>Item added to repository.</para>
+              </listitem>
+            </varlistentry>
+
+            <varlistentry>
+              <term>'<literal>D </literal>'</term>
+              <listitem>
+                <para>Item deleted from repository.</para>
+              </listitem>
+            </varlistentry>
+
+            <varlistentry>
+              <term>'<literal>U </literal>'</term>
+              <listitem>
+                <para>File contents changed.</para>
+              </listitem>
+            </varlistentry>
+
+            <varlistentry>
+              <term>'<literal>_U</literal>'</term>
+              <listitem>
+                <para>Properties of item changed.</para>
+              </listitem>
+            </varlistentry>
+
+            <varlistentry>
+              <term>'<literal>UU</literal>'</term>
+              <listitem>
+                <para>File contents and properties changed.</para>
+              </listitem>
+            </varlistentry>
+
+          </variablelist>
+
+          <para>Files and directories can be distinguished, as directory
+            paths are displayed with a trailing '<literal>/</literal>'
+            character.</para>
+
+        </refsect1>
 
         <refsect1>
           <title>Switches</title>
@@ -5152,6 +5193,10 @@
 A   trunk/vendors/deli/chips.txt
 A   trunk/vendors/deli/sandwich.txt
 A   trunk/vendors/deli/pickle.txt
+U   trunk/vendors/baker/bagel.txt
+_U  trunk/vendors/baker/croissant.txt
+UU  trunk/vendors/baker/pretzel.txt
+D   trunk/vendors/baker/baguette.txt
 </screen>
           
         </refsect1>



More information about the svnbook-dev mailing list