From a0a67a3869cfd2d09ed4ec1ece1dede6d333c5d1 Mon Sep 17 00:00:00 2001 From: Christophe Jaillet Date: Sun, 14 Jun 2020 09:00:03 +0000 Subject: [PATCH] Add some html syntax highlight to a piece of code. + some missing links [skip ci] git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1878824 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/mod_autoindex.xml | 65 +++++++++++++------------------ 1 file changed, 28 insertions(+), 37 deletions(-) diff --git a/docs/manual/mod/mod_autoindex.xml b/docs/manual/mod/mod_autoindex.xml index 0c73aba3b81..78d1aded404 100644 --- a/docs/manual/mod/mod_autoindex.xml +++ b/docs/manual/mod/mod_autoindex.xml @@ -140,44 +140,35 @@

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 mod_autoindex encounters the X=Go input.

- - <form action="" method="get">
- - Show me a <select name="F">
- - <option value="0"> Plain list</option>
- <option value="1" selected="selected"> Fancy list</option>
- <option value="2"> Table list</option>
-
- </select>
- Sorted by <select name="C">
- - <option value="N" selected="selected"> Name</option>
- <option value="M"> Date Modified</option>
- <option value="S"> Size</option>
- <option value="D"> Description</option>
-
- </select>
- <select name="O">
- - <option value="A" selected="selected"> Ascending</option>
- <option value="D"> Descending</option>
-
- </select>
- <select name="V">
- - <option value="0" selected="selected"> in Normal order</option>
- <option value="1"> in Version order</option>
-
- </select>
- Matching <input type="text" name="P" value="*" />
- <input type="submit" name="X" value="Go" />
-
- </form> -
+ Example + +<form action="" method="get"> + Show me a <select name="F"> + <option value="0"> Plain list</option> + <option value="1" selected="selected"> Fancy list</option> + <option value="2"> Table list</option> + </select> + Sorted by <select name="C"> + <option value="N" selected="selected"> Name</option> + <option value="M"> Date Modified</option> + <option value="S"> Size</option> + <option value="D"> Description</option> + </select> + <select name="O"> + <option value="A" selected="selected"> Ascending</option> + <option value="D"> Descending</option> + </select> + <select name="V"> + <option value="0" selected="selected"> in Normal order</option> + <option value="1"> in Version order</option> + </select> + Matching <input type="text" name="P" value="*" /> + <input type="submit" name="X" value="Go" /> +</form> + @@ -559,7 +550,7 @@ a directory

The IndexIgnoreReset directive removes - any files ignored by IndexIgnore otherwise + any files ignored by IndexIgnore otherwise inherited from other configuration sections.

-- 2.47.3