From: Rich Bowen
Date: Sun, 16 Jan 2011 15:58:58 +0000 (+0000)
Subject: Merges changes from trunk as per tid50417
X-Git-Tag: 2.0.65~133
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=24826e03c90b5240b9c71dc3f96a70824183a9e6;p=thirdparty%2Fapache%2Fhttpd.git
Merges changes from trunk as per tid50417
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@1059591 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/docs/manual/mod/mod_autoindex.xml b/docs/manual/mod/mod_autoindex.xml
index 7d7abd0fab3..cce6606566a 100644
--- a/docs/manual/mod/mod_autoindex.xml
+++ b/docs/manual/mod/mod_autoindex.xml
@@ -322,7 +322,7 @@ icon selected by MIME content-type
This sets the icon to display next to a file ending in
name for FancyIndexing
. Icon is either a (%-escaped)
- relative URL to the icon, or of the format
+ relative URL to the icon, a fully qualified remote URL, or of the format
(alttext,url)
where alttext
is the text tag given for an icon for non-graphical browsers.
@@ -331,6 +331,10 @@ icon selected by MIME content-type
correctly), a file extension, a wildcard expression, a partial
filename or a complete filename.
+ ^^BLANKICON^^
is only used for formatting, and so
+ is unnecessary if you're using IndexOptions
+ HTMLTable
.
+
Examples
AddIcon (IMG,/icons/image.xbm) .gif .jpg .xbm
AddIcon /icons/dir.xbm ^^DIRECTORY^^
@@ -358,6 +362,7 @@ content-encoding
This sets the icon to display next to files with FancyIndexing
.
Icon is either a (%-escaped) relative URL to the icon,
+ a fully qualified remote URL,
or of the format (alttext,url)
where alttext is the text tag given for an icon for
non-graphical browsers.
@@ -387,6 +392,7 @@ content-type
MIME-type for FancyIndexing
.
Icon is either a (%-escaped) relative URL to the icon,
+ a fully qualified remote URL,
or of the format (alttext,url)
where alttext is the text tag given for an icon for
non-graphical browsers.
@@ -414,7 +420,8 @@ configured
The DefaultIcon directive sets the icon
to display for files when no specific icon is known, for FancyIndexing
.
- Url-path is a (%-escaped) relative URL to the icon.
+ Url-path is a (%-escaped) relative URL to the icon,
+ or a fully qualified remote URL.
Example
DefaultIcon /icon/unknown.xbm
@@ -488,6 +495,7 @@ of the index listing
Adds to the list of files to hide when listing
a directory
IndexIgnore file [file] ...
+IndexIgnore "."
server configvirtual host
directory.htaccess
@@ -503,7 +511,7 @@ a directory
directory).
- IndexIgnore README .htaccess *.bak *~
+ IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t
@@ -514,6 +522,7 @@ a directory
indexing
IndexOptions [+|-]option [[+|-]option]
...
+By default, no options are enabled.
server configvirtual host
directory.htaccess
@@ -901,12 +910,14 @@ Name|Date|Size|Description
and identifies the primary key. The secondary key is
always the ascending filename.
- You can force a directory listing to only be displayed in a
- particular order by combining this directive with the SuppressColumnSorting
index option; this will prevent
- the client from requesting the directory listing in a different
- order.
+ You can, if desired, prevent the client from reordering the list
+ by also adding the SuppressColumnSorting
+ index option to remove the sort link from the top of the column,
+ along with the IgnoreClient
index
+ option to prevent them from manually adding sort options to the
+ query string in order to override your ordering preferences.