You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2010/12/03 21:24:11 UTC

svn commit: r1041979 - /httpd/httpd/branches/2.2.x/docs/manual/platform/windows.xml

Author: trawick
Date: Fri Dec  3 20:24:11 2010
New Revision: 1041979

URL: http://svn.apache.org/viewvc?rev=1041979&view=rev
Log:
Merge r1041945 from trunk:

clearly distinguish between independent UNC path examples to
prevent user confusion

Modified:
    httpd/httpd/branches/2.2.x/docs/manual/platform/windows.xml

Modified: httpd/httpd/branches/2.2.x/docs/manual/platform/windows.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/docs/manual/platform/windows.xml?rev=1041979&r1=1041978&r2=1041979&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/docs/manual/platform/windows.xml (original)
+++ httpd/httpd/branches/2.2.x/docs/manual/platform/windows.xml Fri Dec  3 20:24:11 2010
@@ -716,12 +716,15 @@
   (Arcane and error prone procedures may work around the restriction
   on mapped drive letters, but this is not recommended.)</p>
 
-  <example><title>Example directives with UNC paths</title>
+  <example><title>Example DocumentRoot with UNC path</title>
+  DocumentRoot //dochost/www/html/
+  </example>
 
-  DocumentRoot //dochost/www/html/<br />
-  <br />
+  <example><title>Example DocumentRoot with IP address in UNC path</title>
   DocumentRoot //192.168.1.50/docs/<br />
-  <br />
+  </example>
+
+  <example><title>Example Alias and corresponding Directory with UNC path</title>
   Alias /images/ //imagehost/www/images/<br />
   <br />
   &lt;Directory //imagehost/www/images/&gt;<br />