You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by hu...@apache.org on 2012/04/27 07:45:21 UTC

svn commit: r1331229 - in /httpd/httpd/trunk/docs/manual/mod: mod_unixd.xml mod_userdir.xml mod_usertrack.xml

Author: humbedooh
Date: Fri Apr 27 05:45:21 2012
New Revision: 1331229

URL: http://svn.apache.org/viewvc?rev=1331229&view=rev
Log:
Syntax updates for mod_u*.xml

Modified:
    httpd/httpd/trunk/docs/manual/mod/mod_unixd.xml
    httpd/httpd/trunk/docs/manual/mod/mod_userdir.xml
    httpd/httpd/trunk/docs/manual/mod/mod_usertrack.xml

Modified: httpd/httpd/trunk/docs/manual/mod/mod_unixd.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_unixd.xml?rev=1331229&r1=1331228&r2=1331229&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_unixd.xml (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_unixd.xml Fri Apr 27 05:45:21 2012
@@ -55,7 +55,9 @@ requests</description>
     </dl>
 
     <example><title>Example</title>
+    <highlight language="config">
       Group www-group
+      </highlight>
     </example>
 
     <p>It is recommended that you set up a new group specifically for

Modified: httpd/httpd/trunk/docs/manual/mod/mod_userdir.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_userdir.xml?rev=1331229&r1=1331228&r2=1331229&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_userdir.xml (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_userdir.xml Fri Apr 27 05:45:21 2012
@@ -124,24 +124,24 @@ host</context></contextlist>
     <p>To allow a few users to have <code>UserDir</code> directories, but
     not anyone else, use the following:</p>
 
-    <example>
-      UserDir disabled<br />
-      UserDir enabled user1 user2 user3
-    </example>
+    <highlight language="config">
+UserDir disabled
+UserDir enabled user1 user2 user3
+    </highlight>
 
     <p>To allow most users to have <code>UserDir</code> directories, but
     deny this to a few, use the following:</p>
 
-    <example>
+    <highlight language="config">
       UserDir disabled user4 user5 user6
-    </example>
+    </highlight>
 
     <p>It is also possible to specify alternative user directories.
     If you use a command like:</p>
 
-    <example>
-      Userdir public_html /usr/web http://www.example.com/
-    </example>
+    <highlight language="config">
+      UserDir public_html /usr/web http://www.example.com/
+    </highlight>
 
     <p>With a request for
     <code>http://www.example.com/~bob/one/two.html</code>, will try to

Modified: httpd/httpd/trunk/docs/manual/mod/mod_usertrack.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_usertrack.xml?rev=1331229&r1=1331228&r2=1331229&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_usertrack.xml (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_usertrack.xml Fri Apr 27 05:45:21 2012
@@ -41,10 +41,10 @@
     <p><module>mod_usertrack</module> sets a cookie which can be logged
     via <module>mod_log_config</module> configurable logging formats:</p>
 
-    <example>
-    LogFormat "%{Apache}n %r %t" usertrack<br />
-    CustomLog logs/clickstream.log usertrack
-    </example>
+    <highlight language="config">
+LogFormat "%{Apache}n %r %t" usertrack
+CustomLog logs/clickstream.log usertrack
+    </highlight>
 
 </section>
 
@@ -83,9 +83,9 @@
     level domain (for example <code>.example.co.uk</code>).
     </note>
 
-    <example>
+    <highlight language="config">
     CookieDomain .example.com
-    </example>
+    </highlight>
 </usage>
 </directivesynopsis>
 
@@ -114,9 +114,9 @@
     <p>If this directive is not used, cookies last only for the
     current browser session.</p>
 
-    <example>
+    <highlight language="config">
     CookieExpires "3 weeks"
-    </example>
+    </highlight>
 </usage>
 </directivesynopsis>
 
@@ -142,9 +142,9 @@
     unpredictable if you use a name containing unusual characters.
     Valid characters include A-Z, a-z, 0-9, "_", and "-".</p>
 
-    <example>
+    <highlight language="config">
     CookieName clicktrack
-    </example>
+    </highlight>
 </usage>
 
 </directivesynopsis>
@@ -185,9 +185,9 @@
     three of these formats, with <code>Cookie2</code> being the
     preferred format.</p>
 
-    <example>
+    <highlight language="config">
     CookieStyle Cookie2
-    </example>
+    </highlight>
 </usage>
 </directivesynopsis>
 
@@ -215,9 +215,9 @@
     <module>mod_usertrack</module> will <strong>not</strong>
     activate cookies. </p>
 
-    <example>
+    <highlight language="config">
     CookieTracking on
-    </example>
+    </highlight>
 
 </usage>
 </directivesynopsis>