]> granicus.if.org Git - apache/commitdiff
Syntax updates for mod_u*.xml
authorDaniel Gruno <humbedooh@apache.org>
Fri, 27 Apr 2012 05:45:21 +0000 (05:45 +0000)
committerDaniel Gruno <humbedooh@apache.org>
Fri, 27 Apr 2012 05:45:21 +0000 (05:45 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1331229 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_unixd.xml
docs/manual/mod/mod_userdir.xml
docs/manual/mod/mod_usertrack.xml

index f16541f892aa2aec8ccedc2a4e80ed140daae26a..2e8377193ee5582de3b0c4c47b4760e301ef5c9f 100644 (file)
@@ -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
index 4937aa9733e469e3ed4061f8786540f6ea98e396..5e883c8a3ad5d3881f72cc42b607598ec86dc680 100644 (file)
@@ -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
index 173fd1ba75f6e87349092ef62f0c322ae74213b4..acaf6b3be81dfba1f250c478295043cf31610287 100644 (file)
     <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>
 
     <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>
 
     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>
     three of these formats, with <code>Cookie2</code> being the
     preferred format.</p>
 
-    <example>
+    <highlight language="config">
     CookieStyle Cookie2
-    </example>
+    </highlight>
 </usage>
 </directivesynopsis>
 
     <module>mod_usertrack</module> will <strong>not</strong>
     activate cookies. </p>
 
-    <example>
+    <highlight language="config">
     CookieTracking on
-    </example>
+    </highlight>
 
 </usage>
 </directivesynopsis>