This is an automated email from the ASF dual-hosted git repository. schultz pushed a commit to branch 8.5.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
commit 65cb0202b3d746609af1a432f909a662ac2aa171 Author: Christopher Schultz <[email protected]> AuthorDate: Sun May 5 15:10:12 2019 +0200 Add documentation, changelog for new DefaultServlet options. --- webapps/docs/changelog.xml | 7 +++++++ webapps/docs/default-servlet.xml | 6 ++++++ 2 files changed, 13 insertions(+) diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml index a6792d4..b0f6983 100644 --- a/webapps/docs/changelog.xml +++ b/webapps/docs/changelog.xml @@ -45,6 +45,13 @@ issues do not "pop up" wrt. others). --> <section name="Tomcat 8.5.42 (markt)" rtext="in development"> + <subsection name="Catalina"> + <changelog> + <add> + <bug>57287</bug>: Add file sorting to DefaultServlet (schultz) + </add> + </changelog> + </subsection> <subsection name="Other"> <changelog> <update>Switch from FindBugs to SpotBugs. (fschumacher)</update> diff --git a/webapps/docs/default-servlet.xml b/webapps/docs/default-servlet.xml index cc9a1ae..d849618 100644 --- a/webapps/docs/default-servlet.xml +++ b/webapps/docs/default-servlet.xml @@ -180,6 +180,12 @@ directory listings are disabled and debugging is turned off. Should server information be presented in the response sent to clients when directory listing is enabled. [true] </property> + <property name="sortListings"> + Should the server sort the listings in a directory. [false] + </property> + <property name="sortDirectoriesFirst"> + Should the server list all directories before all files. [false] + </property> </properties> </section> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
