[svnbook] r4371 committed - * en/book/ch03-advanced-topics.xml,...

svnbook at googlecode.com svnbook at googlecode.com
Tue Jan 29 12:11:02 CST 2013


Revision: 4371
Author:   cmpilato at gmail.com
Date:     Tue Jan 29 10:10:34 2013
Log:      * en/book/ch03-advanced-topics.xml,
* en/book/ch04-branching-and-merging.xml,
* en/book/ch05-repository-admin.xml,
* en/book/ch06-server-configuration.xml
   Formatting/markup changes, mostly.

http://code.google.com/p/svnbook/source/detail?r=4371

Modified:
  /trunk/en/book/ch03-advanced-topics.xml
  /trunk/en/book/ch04-branching-and-merging.xml
  /trunk/en/book/ch05-repository-admin.xml
  /trunk/en/book/ch06-server-configuration.xml

=======================================
--- /trunk/en/book/ch03-advanced-topics.xml	Tue Jan 22 08:25:16 2013
+++ /trunk/en/book/ch03-advanced-topics.xml	Tue Jan 29 10:10:34 2013
@@ -230,17 +230,17 @@

        <informalexample>
          <screen>
-$ svn checkout -r {2006-02-17}
-$ svn checkout -r {15:30}
-$ svn checkout -r {15:30:00.200000}
-$ svn checkout -r {"2006-02-17 15:30"}
-$ svn checkout -r {"2006-02-17 15:30 +0230"}
-$ svn checkout -r {2006-02-17T15:30}
-$ svn checkout -r {2006-02-17T15:30Z}
-$ svn checkout -r {2006-02-17T15:30-04:00}
-$ svn checkout -r {20060217T1530}
-$ svn checkout -r {20060217T1530Z}
-$ svn checkout -r {20060217T1530-0500}
+$ svn update -r {2006-02-17}
+$ svn update -r {15:30}
+$ svn update -r {15:30:00.200000}
+$ svn update -r {"2006-02-17 15:30"}
+$ svn update -r {"2006-02-17 15:30 +0230"}
+$ svn update -r {2006-02-17T15:30}
+$ svn update -r {2006-02-17T15:30Z}
+$ svn update -r {2006-02-17T15:30-04:00}
+$ svn update -r {20060217T1530}
+$ svn update -r {20060217T1530Z}
+$ svn update -r {20060217T1530-0500}
  …
  </screen>
        </informalexample>
@@ -833,7 +833,7 @@
        <informalexample>
          <screen>
  $ svn commit -m "Fix up the last remaining known regression bug." \
-      --with-revprop "test-results=all passing"
+             --with-revprop "test-results=all passing"
  Sending        lib/crit_bits.c
  Transmitting file data .
  Committed revision 912.
@@ -2772,12 +2772,12 @@
        and still expanded correctly:</para>

      <informalexample>
-      <screen>
+      <programlisting>
  Here is the latest report from the front lines.
  $LastChangedDate: 2006-07-22 21:42:37 -0700 (Sat, 22 Jul 2006) $
  $Rev$
  Cumulus clouds are appearing more frequently as summer approaches.
-</screen>
+</programlisting>
      </informalexample>

      <para>If someone else now commits a change to
@@ -2837,11 +2837,11 @@
        like:</para>

      <informalexample>
-      <screen>
+      <programlisting>
  $Rev$:     Revision of last commit
  $Author$:  Author of last commit
  $Date$:    Date of last commit
-</screen>
+</programlisting>
      </informalexample>

      <para>Now, that looks nice and tabular at the start of things.
@@ -2849,11 +2849,11 @@
        enabled, of course), you see:</para>

      <informalexample>
-      <screen>
+      <programlisting>
  $Rev: 12 $:     Revision of last commit
  $Author: harry $:  Author of last commit
  $Date: 2006-03-15 02:33:03 -0500 (Wed, 15 Mar 2006) $:    Date of last  
commit
-</screen>
+</programlisting>
      </informalexample>

      <para>The result is not so beautiful.  And you might be
@@ -2868,11 +2868,11 @@
        seem sane, so your file might look like this:</para>

      <informalexample>
-      <screen>
+      <programlisting>
  $Rev::               $:  Revision of last commit
  $Author::            $:  Author of last commit
  $Date::              $:  Date of last commit
-</screen>
+</programlisting>
      </informalexample>

      <para>You commit this change to your file.  This time,
@@ -2886,11 +2886,11 @@
        field is truncated by a hash character:</para>

      <informalexample>
-      <screen>
+      <programlisting>
  $Rev:: 13            $:  Revision of last commit
  $Author:: harry      $:  Author of last commit
  $Date:: 2006-03-15 0#$:  Date of last commit
-</screen>
+</programlisting>
      </informalexample>

      <para>The use of fixed-length keywords is especially handy when
@@ -4784,7 +4784,7 @@
        <informalexample>
          <screen>
  $ svn commit -m "Fix a UI bug found while working on math logic." \
-      --changelist ui-fix
+             --changelist ui-fix
  Sending        button.c
  Transmitting file data .
  Committed revision 1158.
=======================================
--- /trunk/en/book/ch04-branching-and-merging.xml	Fri Jan 25 09:07:40 2013
+++ /trunk/en/book/ch04-branching-and-merging.xml	Tue Jan 29 10:10:34 2013
@@ -179,7 +179,7 @@
          <screen>
  $ svn copy http://svn.example.com/repos/calc/trunk \
             http://svn.example.com/repos/calc/branches/my-calc-branch \
-      -m "Creating a private branch of /calc/trunk."
+           -m "Creating a private branch of /calc/trunk."

  Committed revision 341.
  $
@@ -1129,7 +1129,7 @@
        <informalexample>
          <screen>
  $ svn delete ^/calc/branches/my-calc-branch \
-      -m "Remove my-calc-branch, reintegrated with trunk in r391."
+             -m "Remove my-calc-branch, reintegrated with trunk in r391."
  Committed revision 392.
  </screen>
        </informalexample>
@@ -1157,12 +1157,12 @@
        <informalexample>
          <screen>
  $ svn delete http://svn.example.com/repos/calc/branches/my-calc-branch \
-      -m "Remove my-calc-branch, reintegrated with trunk in r391."
+             -m "Remove my-calc-branch, reintegrated with trunk in r391."
  Committed revision 392.

  $ svn copy http://svn.example.com/repos/calc/trunk \
-           http://svn.example.com/repos/calc/branches/my-calc-branch
-      -m "Recreate my-calc-branch from trunk at HEAD."
+           http://svn.example.com/repos/calc/branches/my-calc-branch \
+           -m "Recreate my-calc-branch from trunk at HEAD."
  Committed revision 393.
  </screen>
        </informalexample>
@@ -1715,7 +1715,7 @@
        <informalexample>
          <screen>
  $ svn copy ^/calc/trunk/real.c at 807 ^/calc/trunk/ \
-      -m "Resurrect real.c from revision 807."
+           -m "Resurrect real.c from revision 807."
  Committed revision 1390.

  $ svn update
@@ -3135,7 +3135,7 @@
          <screen>
  $ svn copy http://svn.example.com/repos/calc/trunk \
             http://svn.example.com/repos/calc/branches/newbranch \
-      -m "Create branch 'newbranch'."
+           -m "Create branch 'newbranch'."
  Committed revision 353.
  $ svn switch ^/calc/branches/newbranch
  At revision 353.
@@ -3188,7 +3188,7 @@
          <screen>
  $ svn copy http://svn.example.com/repos/calc/trunk \
             http://svn.example.com/repos/calc/tags/release-1.0 \
-      -m "Tagging the 1.0 release of the 'calc' project."
+           -m "Tagging the 1.0 release of the 'calc' project."

  Committed revision 902.
  </screen>
=======================================
--- /trunk/en/book/ch05-repository-admin.xml	Fri Jan 25 11:03:44 2013
+++ /trunk/en/book/ch05-repository-admin.xml	Tue Jan 29 10:10:34 2013
@@ -273,7 +273,7 @@
        <para>For example, your repository might look like this:</para>

        <informalexample>
-        <screen>
+        <literallayout>
  /
     calc/
        trunk/
@@ -288,7 +288,7 @@
        tags/
        branches/
     …
-</screen>
+</literallayout>>
        </informalexample>

        <para>Note that it doesn't matter where in your repository each
@@ -302,7 +302,7 @@
          like this:</para>

        <informalexample>
-        <screen>
+        <literallayout>
  /
     utils/
        calc/
@@ -320,7 +320,7 @@
           tags/
           branches/
        …
-</screen>
+</literallayout>
        </informalexample>

        <para>Lay out your repository in whatever way you see fit.
@@ -338,7 +338,7 @@
          subdirectories beneath those, like so:</para>

        <informalexample>
-        <screen>
+        <literallayout>
  /
     trunk/
        calc/
@@ -355,7 +355,7 @@
        calendar/
        spreadsheet/
        …
-</screen>
+</literallayout>
        </informalexample>

        <para>There's nothing particularly incorrect about such a
@@ -2276,9 +2276,9 @@
          <informalexample>
            <screen>
  $ svn mkdir -m "Initial project roots" \
-      file:///var/svn/projects/calc \
-      file:///var/svn/projects/calendar \
-      file:///var/svn/projects/spreadsheet
+            file:///var/svn/projects/calc \
+            file:///var/svn/projects/calendar \
+            file:///var/svn/projects/spreadsheet
  Committed revision 1.
  $
  </screen>
=======================================
--- /trunk/en/book/ch06-server-configuration.xml	Mon Jan 21 07:19:41 2013
+++ /trunk/en/book/ch06-server-configuration.xml	Tue Jan 29 10:10:34 2013
@@ -1187,8 +1187,8 @@

          <informalexample>
            <programlisting>
-          [sasl]
-          use-sasl = true
+[sasl]
+use-sasl = true
  </programlisting>
          </informalexample>

@@ -3110,7 +3110,7 @@
            this:</para>

          <informalexample>
-          <screen>
+          <programlisting>
  [26/Jan/2007:22:25:29 -0600] "PROPFIND /svn/calc/!svn/vcc/default  
HTTP/1.1" 207 398
  [26/Jan/2007:22:25:29 -0600] "PROPFIND /svn/calc/!svn/bln/59 HTTP/1.1" 207  
449
  [26/Jan/2007:22:25:29 -0600] "PROPFIND /svn/calc HTTP/1.1" 207 647
@@ -3118,7 +3118,7 @@
  [26/Jan/2007:22:25:31 -0600] "OPTIONS /svn/calc HTTP/1.1" 200 188
  [26/Jan/2007:22:25:31 -0600] "MKACTIVITY  
/svn/calc/!svn/act/e6035ef7-5df0-4ac0-b811-4be7c823f998 HTTP/1.1" 201 227
  …
-</screen>
+</programlisting>
          </informalexample>

          <para>you can peruse a much more
@@ -3126,12 +3126,12 @@
            this:</para>

          <informalexample>
-          <screen>
+          <programlisting>
  [26/Jan/2007:22:24:20 -0600] - get-dir /tags r1729 props
  [26/Jan/2007:22:24:27 -0600] - update /trunk r1729 depth=infinity
  [26/Jan/2007:22:25:29 -0600] - status /trunk/foo r1729 depth=infinity
  [26/Jan/2007:22:25:31 -0600] sally commit r1730
-</screen>
+</programlisting>
          </informalexample>

          <para>In addition to the <literal>SVN-ACTION</literal>




More information about the svnbook-dev mailing list