diff options
author | Jim Jagielski <jim@apache.org> | 2007-08-29 22:37:14 +0000 |
---|---|---|
committer | Jim Jagielski <jim@apache.org> | 2007-08-29 22:37:14 +0000 |
commit | 1dc11bfcd735041f3f60c2cd07c819f5407a12bc (patch) | |
tree | 6229d9ca03c2df9e8230de5a09c55f75c1ca73df /docs/manual/mod/mod_autoindex.xml | |
parent | ce6e6985777f17d0e3402c49304d1d2deb9cb98e (diff) | |
download | httpd-1dc11bfcd735041f3f60c2cd07c819f5407a12bc.tar.gz |
Merge r570532, r570535, r570558 from trunk:
IndexOptions ContentType=text/html Charset=UTF-8
magic.
Document new IndexOptions options
Make Bill happy ;)
Submitted by: jim
Reviewed by: root
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@570961 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/mod_autoindex.xml')
-rw-r--r-- | docs/manual/mod/mod_autoindex.xml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/docs/manual/mod/mod_autoindex.xml b/docs/manual/mod/mod_autoindex.xml index c2160b57aa..6f3437de81 100644 --- a/docs/manual/mod/mod_autoindex.xml +++ b/docs/manual/mod/mod_autoindex.xml @@ -525,6 +525,36 @@ indexing</description> of</p> <dl> + <dt><a name="indexoptions.charset" + id="indexoptions.charset" + >Charset=<var>character-set</var></a> (<em>Apache 2.0.61 and + later</em>)</dt> + + <dd>The <code>Charset</code> keyword allows you to + specify the character set of the generated page. The + default is either <var>ISO-8859-1</var> or <var>UTF-8</var>, + depending on whether the underlying file system is unicode + or not. + + <example><title>Example:</title> + IndexOptions Charset=UTF-8 + </example> + </dd> + + <dt><a name="indexoptions.type" + id="indexoptions.type" + >Type=<var>MIME content-type</var></a> (<em>Apache 2.0.61 and + later</em>)</dt> + + <dd>The <code>Type</code> keyword allows you to + specify the MIME content-type of the generated page. The default + is <var>text/html</var>. + + <example><title>Example:</title> + IndexOptions Type=text/plain + </example> + </dd> + <dt><a name="indexoptions.descriptionwidth" id="indexoptions.descriptionwidth" >DescriptionWidth=[<var>n</var> | *]</a> (<em>Apache 2.0.23 and |