From d0ba81e6df7735fcdb28545e6bcf10452f40a731 Mon Sep 17 00:00:00 2001
From: =?utf8?q?Andr=C3=A9=20Malo?=
Date: Sun, 15 Aug 2004 22:33:29 +0000
Subject: [PATCH] update transformation
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/APACHE_2_0_BRANCH@104669 13f79535-47bb-0310-9956-ffa450edef68
---
docs/manual/mod/directives.html.de | 1 +
docs/manual/mod/directives.html.en | 1 +
docs/manual/mod/directives.html.es | 1 +
docs/manual/mod/directives.html.ru.koi8-r | 1 +
docs/manual/mod/mod_dir.html.en | 54 ++
docs/manual/mod/mod_dir.html.ja.euc-jp | 2 +
docs/manual/mod/mod_dir.html.ko.euc-kr | 2 +
docs/manual/mod/mod_dir.xml.ja | 2 +-
docs/manual/mod/mod_dir.xml.ko | 2 +-
docs/manual/mod/mod_dir.xml.meta | 4 +-
docs/manual/mod/quickreference.html.de | 531 +++++++++---------
docs/manual/mod/quickreference.html.en | 529 ++++++++---------
docs/manual/mod/quickreference.html.es | 529 ++++++++---------
docs/manual/mod/quickreference.html.ru.koi8-r | 529 ++++++++---------
14 files changed, 1127 insertions(+), 1061 deletions(-)
diff --git a/docs/manual/mod/directives.html.de b/docs/manual/mod/directives.html.de
index d9522929476..3e0eb957c4b 100644
--- a/docs/manual/mod/directives.html.de
+++ b/docs/manual/mod/directives.html.de
@@ -162,6 +162,7 @@
<Directory>
DirectoryIndex
<DirectoryMatch>
+DirectorySlash
DocumentRoot
EnableExceptionHook
EnableMMAP
diff --git a/docs/manual/mod/directives.html.en b/docs/manual/mod/directives.html.en
index d7db293298f..44f2bbdfff4 100644
--- a/docs/manual/mod/directives.html.en
+++ b/docs/manual/mod/directives.html.en
@@ -163,6 +163,7 @@
<Directory>
DirectoryIndex
<DirectoryMatch>
+DirectorySlash
DocumentRoot
EnableExceptionHook
EnableMMAP
diff --git a/docs/manual/mod/directives.html.es b/docs/manual/mod/directives.html.es
index f8867bc4257..8e1c2c474e7 100644
--- a/docs/manual/mod/directives.html.es
+++ b/docs/manual/mod/directives.html.es
@@ -165,6 +165,7 @@
<Directory>
DirectoryIndex
<DirectoryMatch>
+DirectorySlash
DocumentRoot
EnableExceptionHook
EnableMMAP
diff --git a/docs/manual/mod/directives.html.ru.koi8-r b/docs/manual/mod/directives.html.ru.koi8-r
index 28c11bbb581..3b2398a3a52 100644
--- a/docs/manual/mod/directives.html.ru.koi8-r
+++ b/docs/manual/mod/directives.html.ru.koi8-r
@@ -164,6 +164,7 @@
<Directory>
DirectoryIndex
<DirectoryMatch>
+DirectorySlash
DocumentRoot
EnableExceptionHook
EnableMMAP
diff --git a/docs/manual/mod/mod_dir.html.en b/docs/manual/mod/mod_dir.html.en
index 6850f4e082f..20ca79b8f84 100644
--- a/docs/manual/mod/mod_dir.html.en
+++ b/docs/manual/mod/mod_dir.html.en
@@ -57,6 +57,7 @@
@@ -103,6 +104,59 @@ a directory
executed if neither index.html
or index.txt
existed in a directory.
+
+
+
+
+
The DirectorySlash
directive determines, whether
+ mod_dir
should fixup URLs pointing to a directory or
+ not.
+
+
Typically if a user requests a resource without a trailing slash, which
+ points to a directory, mod_dir
redirects him to the same
+ ressource, but with trailing slash for some good reasons:
+
+
+ - The user is finally requesting the canonical URL of the resource
+ mod_autoindex
works correctly. Since it doesn't emit
+ the path in the link, it would point to the wrong path.
+ DirectoryIndex
will be evaluated
+ only for directories requested with trailing slash.
+ - Relative URL references inside html pages will work correctly.
+
+
+
Well, if you don't want this effect and the reasons above don't
+ apply to you, you can turn off the redirect with:
+
+
+ # see security warning below!
+ <Location /some/path>
+
+ DirectorySlash Off
+ SetHandler some-handler
+
+ </Location>
+
+
+
Security Warning
+
Turning off the trailing slash redirect may result in an information
+ disclosure. Consider a situation where mod_autoindex
is
+ active (Options +Indexes
) and DirectoryIndex
is set to a valid resource (say,
+ index.html
) and there's no other special handler defined for
+ that URL. In this case a request with a trailing slash would show the
+ index.html
file. But a request without trailing slash
+ would list the directory contents.
+
+
diff --git a/docs/manual/mod/mod_dir.html.ja.euc-jp b/docs/manual/mod/mod_dir.html.ja.euc-jp
index 4d8b8439c62..253814ec836 100644
--- a/docs/manual/mod/mod_dir.html.ja.euc-jp
+++ b/docs/manual/mod/mod_dir.html.ja.euc-jp
@@ -25,6 +25,8 @@
ja |
ko
+This translation may be out of date. Check the
+ English version for recent changes.
ÀâÌÀ: | ¡ÖºÇ¸å¤Î¥¹¥é¥Ã¥·¥å¡×¤Î¥ê¥À¥¤¥ì¥¯¥È¤È¡¢¥Ç¥£¥ì¥¯¥È¥ê¤Î
¥¤¥ó¥Ç¥Ã¥¯¥¹¥Õ¥¡¥¤¥ë¤ò°·¤¦µ¡Ç½¤òÄ󶡤¹¤ë |
¥¹¥Æ¡¼¥¿¥¹: | Base |
diff --git a/docs/manual/mod/mod_dir.html.ko.euc-kr b/docs/manual/mod/mod_dir.html.ko.euc-kr
index c0bb00176a9..697e1493754 100644
--- a/docs/manual/mod/mod_dir.html.ko.euc-kr
+++ b/docs/manual/mod/mod_dir.html.ko.euc-kr
@@ -25,6 +25,8 @@
ja |
ko
+ÀÌ ¹®¼´Â ÃÖ½ÅÆÇ ¹ø¿ªÀÌ ¾Æ´Õ´Ï´Ù.
+ ÃÖ±Ù¿¡ º¯°æµÈ ³»¿ëÀº ¿µ¾î ¹®¼¸¦ Âü°íÇϼ¼¿ä.
¼³¸í: | "¸¶Áö¸· ½½·¡½¬" ¸®´ÙÀÌ·º¼ÇÀ» Á¦°øÇÏ°í µð·ºÅ丮
index ÆÄÀÏÀ» ¼ºñ½ºÇÑ´Ù |
»óÅÂ: | Base |
diff --git a/docs/manual/mod/mod_dir.xml.ja b/docs/manual/mod/mod_dir.xml.ja
index 5d4e5d3f101..8549b0bfde5 100644
--- a/docs/manual/mod/mod_dir.xml.ja
+++ b/docs/manual/mod/mod_dir.xml.ja
@@ -1,7 +1,7 @@
-
+
+