From: Ken Coar
Date: Mon, 31 Aug 1998 01:18:48 +0000 (+0000)
Subject: Clean up mod_autoindex's storage of the IndexOptions settings.
X-Git-Tag: 1.3.2~18
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1a6dd5e389dff4fcb06c16325ff5d89eac471e9c;p=thirdparty%2Fapache%2Fhttpd.git
Clean up mod_autoindex's storage of the IndexOptions settings.
They are per-directory, not per-filename, so keeping them in
an array is confusing and pointless. They're now stored in an
int in the module config record. Also (finally!) fix the
FancyIndexing directive so it gets merged into any IndexOptions
settings for the current directory, rather than replacing them.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@81972 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/docs/manual/mod/mod_autoindex.html b/docs/manual/mod/mod_autoindex.html
index 2dc71e5411e..8f0bb3eecd4 100644
--- a/docs/manual/mod/mod_autoindex.html
+++ b/docs/manual/mod/mod_autoindex.html
@@ -373,10 +373,14 @@ The FancyIndexing directive sets the FancyIndexing option for a directory.
preference.
- Note that the FancyIndexing and
+ Note that in versions of Apache prior to 1.3.2, the
+ FancyIndexing and
IndexOptions directives will override each other. You
should use IndexOptions FancyIndexing in preference
- to the standalone FancyIndexing directive.
+ to the standalone FancyIndexing directive.
+ As of Apache 1.3.2, a standalone FancyIndexing directive
+ is combined with any IndexOptions directive already
+ specified for the current scope.