You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ja...@apache.org on 2020/06/14 09:00:04 UTC

svn commit: r1878824 - /httpd/httpd/trunk/docs/manual/mod/mod_autoindex.xml

Author: jailletc36
Date: Sun Jun 14 09:00:03 2020
New Revision: 1878824

URL: http://svn.apache.org/viewvc?rev=1878824&view=rev
Log:
Add some html syntax highlight to a piece of code.
+ some missing links

[skip ci]

Modified:
    httpd/httpd/trunk/docs/manual/mod/mod_autoindex.xml

Modified: httpd/httpd/trunk/docs/manual/mod/mod_autoindex.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_autoindex.xml?rev=1878824&r1=1878823&r2=1878824&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_autoindex.xml (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_autoindex.xml Sun Jun 14 09:00:03 2020
@@ -140,44 +140,35 @@
     <p>The simple example below, which can be clipped and saved in
     a header.html file, illustrates these query options. Note that
     the unknown "X" argument, for the submit button, is listed last
-    to assure the arguments are all parsed before mod_autoindex
+    to assure the arguments are all parsed before <module>mod_autoindex</module>
     encounters the X=Go input.</p>
 
-    <example>
-      &lt;form action="" method="get"&gt;<br />
-      <indent>
-        Show me a &lt;select name="F"&gt;<br />
-        <indent>
-          &lt;option value="0"&gt; Plain list&lt;/option&gt;<br />
-          &lt;option value="1" selected="selected"&gt; Fancy list&lt;/option&gt;<br />
-          &lt;option value="2"&gt; Table list&lt;/option&gt;<br />
-        </indent>
-        &lt;/select&gt;<br />
-        Sorted by &lt;select name="C"&gt;<br />
-        <indent>
-          &lt;option value="N" selected="selected"&gt; Name&lt;/option&gt;<br />
-          &lt;option value="M"&gt; Date Modified&lt;/option&gt;<br />
-          &lt;option value="S"&gt; Size&lt;/option&gt;<br />
-          &lt;option value="D"&gt; Description&lt;/option&gt;<br />
-        </indent>
-        &lt;/select&gt;<br />
-        &lt;select name="O"&gt;<br />
-        <indent>
-          &lt;option value="A" selected="selected"&gt; Ascending&lt;/option&gt;<br />
-          &lt;option value="D"&gt; Descending&lt;/option&gt;<br />
-        </indent>
-        &lt;/select&gt;<br />
-        &lt;select name="V"&gt;<br />
-        <indent>
-          &lt;option value="0" selected="selected"&gt; in Normal order&lt;/option&gt;<br />
-          &lt;option value="1"&gt; in Version order&lt;/option&gt;<br />
-        </indent>
-        &lt;/select&gt;<br />
-        Matching &lt;input type="text" name="P" value="*" /&gt;<br />
-        &lt;input type="submit" name="X" value="Go" /&gt;<br />
-      </indent>
-      &lt;/form&gt;
-    </example>
+    <example><title>Example</title>
+        <highlight language="html">
+&lt;form action="" method="get"&gt;
+    Show me a &lt;select name="F"&gt;
+        &lt;option value="0"&gt; Plain list&lt;/option&gt;
+        &lt;option value="1" selected="selected"&gt; Fancy list&lt;/option&gt;
+        &lt;option value="2"&gt; Table list&lt;/option&gt;
+    &lt;/select&gt;
+    Sorted by &lt;select name="C"&gt;
+        &lt;option value="N" selected="selected"&gt; Name&lt;/option&gt;
+        &lt;option value="M"&gt; Date Modified&lt;/option&gt;
+        &lt;option value="S"&gt; Size&lt;/option&gt;
+        &lt;option value="D"&gt; Description&lt;/option&gt;
+    &lt;/select&gt;
+    &lt;select name="O"&gt;
+        &lt;option value="A" selected="selected"&gt; Ascending&lt;/option&gt;
+        &lt;option value="D"&gt; Descending&lt;/option&gt;
+    &lt;/select&gt;
+    &lt;select name="V"&gt;
+        &lt;option value="0" selected="selected"&gt; in Normal order&lt;/option&gt;
+        &lt;option value="1"&gt; in Version order&lt;/option&gt;
+    &lt;/select&gt;
+    Matching &lt;input type="text" name="P" value="*" /&gt;
+    &lt;input type="submit" name="X" value="Go" /&gt;
+&lt;/form&gt;
+    </highlight></example>
 
 </section>
 
@@ -559,7 +550,7 @@ a directory</description>
 
 <usage>
     <p>The <directive>IndexIgnoreReset</directive> directive removes
-    any files ignored by <directive>IndexIgnore</directive> otherwise
+    any files ignored by <directive module="autoindex">IndexIgnore</directive> otherwise
     inherited from other configuration sections. </p>
 
     <highlight language="config">