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

cmpilato noreply at red-bean.com
Wed Feb 28 08:29:08 CST 2007


Author: cmpilato
Date: Wed Feb 28 08:29:08 2007
New Revision: 2725

Modified:
   trunk/src/en/book/ch01-fundamental-concepts.xml

Log:
* src/en/book/ch01-fundamental-concepts.xml
  Formatting fixes only.


Modified: trunk/src/en/book/ch01-fundamental-concepts.xml
==============================================================================
--- trunk/src/en/book/ch01-fundamental-concepts.xml	(original)
+++ trunk/src/en/book/ch01-fundamental-concepts.xml	Wed Feb 28 08:29:08 2007
@@ -212,8 +212,9 @@
         file A.  Chances are that Sally's changes don't overlap with
         his own; so once he has both sets of changes integrated, he
         saves his working copy back to the repository.  <xref
-        linkend="svn.basic.vsn-models.copy-merge.dia-1"/> and <xref linkend="svn.basic.vsn-models.copy-merge.dia-2"/>
-        show this process.</para>
+        linkend="svn.basic.vsn-models.copy-merge.dia-1"/> and <xref
+        linkend="svn.basic.vsn-models.copy-merge.dia-2"/> show this
+        process.</para>
 
       <figure id="svn.basic.vsn-models.copy-merge.dia-1">
         <title>The copy-modify-merge solution</title>
@@ -309,9 +310,9 @@
         part of the URL:</para>
   
       <screen>
-  $ svn checkout http://svn.example.com:9834/repos
-  …
-  </screen>
+$ svn checkout http://svn.example.com:9834/repos
+…
+</screen>
   
       <para>But there are some nuances in Subversion's handling of URLs
         that are notable.  For example, URLs containing the
@@ -321,11 +322,11 @@
         all:</para>
    
       <screen>
-  $ svn checkout file:///path/to/repos
-  …
-  $ svn checkout file://localhost/path/to/repos
-  …
-  </screen>
+$ svn checkout file:///path/to/repos
+…
+$ svn checkout file://localhost/path/to/repos
+…
+</screen>
   
       <para>Also, users of the <literal>file://</literal> scheme on
         Windows platforms will need to use an unofficially
@@ -337,11 +338,11 @@
         resides:</para>
   
       <screen>
-  C:\> svn checkout file:///X:/path/to/repos
-  …
-  C:\> svn checkout "file:///X|/path/to/repos"
-  …
-  </screen>
+C:\> svn checkout file:///X:/path/to/repos
+…
+C:\> svn checkout "file:///X|/path/to/repos"
+…
+</screen>
    
       <para>In the second syntax, you need to quote the URL so that the
         vertical bar character is not interpreted as a pipe.  Also, note
@@ -367,15 +368,15 @@
         character:</para>
   
       <screen>
-  $ svn checkout "http://host/path with space/project/españa"
-  </screen>
+$ svn checkout "http://host/path with space/project/españa"
+</screen>
       
       <para>…then Subversion will escape the unsafe characters
         and behave as if you had typed:</para>
   
       <screen>
-  $ svn checkout http://host/path%20with%20space/project/espa%C3%B1a
-  </screen>
+$ svn checkout http://host/path%20with%20space/project/espa%C3%B1a
+</screen>
   
       <para>If the URL contains spaces, be sure to place it within quote
         marks, so that your shell treats the whole thing as a single




More information about the svnbook-dev mailing list