From: Ken Coar Date: Mon, 4 Jan 1999 14:35:53 +0000 (+0000) Subject: Allow fancyindexed directories to be presorted in some other way X-Git-Tag: 1.3.4~7 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=89f6b366b55c776eebe7a294880cc0d8197fee11;p=apache Allow fancyindexed directories to be presorted in some other way than by name. PR: 1699 Submitted by: Ken Coar Reviewed by: Martin Kraemer git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@82594 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_autoindex.html b/docs/manual/mod/mod_autoindex.html index 93fe4e9f43..5755a94e3f 100644 --- a/docs/manual/mod/mod_autoindex.html +++ b/docs/manual/mod/mod_autoindex.html @@ -74,6 +74,7 @@ order) even though they both are shown as "1K".
  • HeaderName
  • IndexIgnore
  • IndexOptions +
  • IndexOrderDefault
  • ReadmeName
    @@ -668,6 +669,66 @@ keywords without either '+' or '-' prefixes.

    + +
    + +

    IndexOrderDefault

    + +Syntax: IndexOrderDefault + Ascending|Descending Name|Date|Size|Description +
    +Context: server config, virtual host, directory, + .htaccess +
    +Override: Indexes +
    +Status: Base +
    +Module: mod_autoindex +
    +Compatibility: IndexOrderDefault is only available in +Apache 1.3.4 and later. + +

    +The IndexOrderDefault directive is used in combination with +the FancyIndexing +index option. By default, fancyindexed directory listings are displayed in ascending order by filename; the IndexOrderDefault allows +you to change this initial display order. +

    +

    +IndexOrderDefault takes two arguments. The first must be either +Ascending or Descending, indicating the direction +of the sort. The second argument must be one of the keywords +Name, Date, Size, or +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. +

    +

    ReadmeName