From: Ken Coar Date: Tue, 15 Jul 1997 15:57:28 +0000 (+0000) Subject: Add documentation for IndexOptions SuppressHTMLPreamble (and X-Git-Tag: APACHE_1_3a1~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=19558a0804060637428bf2e5e0657c1ac784bace;p=thirdparty%2Fapache%2Fhttpd.git Add documentation for IndexOptions SuppressHTMLPreamble (and alphabetise the options list, too). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@78625 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_autoindex.html b/docs/manual/mod/mod_autoindex.html index a9e72415d24..f0f8b0b3f06 100644 --- a/docs/manual/mod/mod_autoindex.html +++ b/docs/manual/mod/mod_autoindex.html @@ -267,30 +267,6 @@ The IndexOptions directive specifies the behavior of the directory indexing.
FancyIndexing
This turns on fancy indexing of directories. -
IconsAreLinks -
- -This makes the icons part of the anchor for the filename, for -fancy indexing. -
ScanHTMLTitles -
-This enables the extraction of the title from HTML documents for fancy -indexing. If the file does not have a description given by -AddDescription then httpd will read the -document for the value of the TITLE tag. This is CPU and disk intensive. -
SuppressLastModified -
- -This will suppress the display of the last modification date, in fancy -indexing listings. -
SuppressSize -
- -This will suppress the file size in fancy indexing listings. -
SuppressDescription -
- -This will suppress the file description in fancy indexing listings.
IconHeight[=pixels] (Apache 1.3 and later)
@@ -301,6 +277,11 @@ precalculate the page layout without having to wait until all the images have been loaded. If no value is given for the option, it defaults to the standard height of the icons supplied with the Apache software. +
IconsAreLinks +
+ +This makes the icons part of the anchor for the filename, for +fancy indexing.
IconWidth[=pixels] (Apache 1.3 and later)
@@ -311,6 +292,38 @@ precalculate the page layout without having to wait until all the images have been loaded. If no value is given for the option, it defaults to the standard width of the icons supplied with the Apache software. +
ScanHTMLTitles +
+This enables the extraction of the title from HTML documents for fancy +indexing. If the file does not have a description given by +AddDescription then httpd will read the +document for the value of the TITLE tag. This is CPU and disk intensive. +
SuppressDescription +
+ +This will suppress the file description in fancy indexing listings. +
SuppressHTMLPreamble +
+ +If the directory actually contains a file specified by the +HeaderName +directive, the module usually includes the contents of the file +after a standard HTML preamble (<HTML>, <HEAD>, et +cetera). The SuppressHTMLPreamble option disables this behaviour, +causing the module to start the display with the header file contents. +The header file must contain appropriate HTML instructions in this case. +If there is no header file, the preamble is generated as usual. +
SuppressLastModified +
+ +This will suppress the display of the last modification date, in fancy +indexing listings. +
SuppressSize +
+ +This will suppress the file size in fancy indexing listings. This default is that no options are enabled. If multiple IndexOptions could apply to a directory, then the most specific one is taken complete;