From 85541e7dd02f89f415284205137aa6aed44f7832 Mon Sep 17 00:00:00 2001
From: =?utf8?q?Andr=C3=A9=20Malo?=
Date: Sun, 4 Jul 2004 10:25:22 +0000
Subject: [PATCH] update transformation
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@104160 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/mod_dir.html.en | 53 +++
docs/manual/mod/mod_dir.html.ja.jis | 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 | 547 +++++++++++++------------
docs/manual/mod/quickreference.html.en | 545 ++++++++++++------------
docs/manual/mod/quickreference.html.es | 545 ++++++++++++------------
12 files changed, 884 insertions(+), 821 deletions(-)
diff --git a/docs/manual/mod/directives.html.de b/docs/manual/mod/directives.html.de
index bc41815df5..53044f6982 100644
--- a/docs/manual/mod/directives.html.de
+++ b/docs/manual/mod/directives.html.de
@@ -166,6 +166,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 ed07dee940..12614c43a3 100644
--- a/docs/manual/mod/directives.html.en
+++ b/docs/manual/mod/directives.html.en
@@ -167,6 +167,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 4435449008..af0c550d83 100644
--- a/docs/manual/mod/directives.html.es
+++ b/docs/manual/mod/directives.html.es
@@ -169,6 +169,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 d37b57fe8f..c3b68e9119 100644
--- a/docs/manual/mod/mod_dir.html.en
+++ b/docs/manual/mod/mod_dir.html.en
@@ -57,6 +57,7 @@
@@ -103,6 +104,58 @@ 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.
+
+
+
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.jis b/docs/manual/mod/mod_dir.html.ja.jis
index 7f2943d231..eba931cc64 100644
--- a/docs/manual/mod/mod_dir.html.ja.jis
+++ b/docs/manual/mod/mod_dir.html.ja.jis
@@ -25,6 +25,8 @@
ja |
ko
+This translation may be out of date. Check the
+ English version for recent changes.
$B@bL@(B: | $B!V:G8e$N%9%i%C%7%e!W$N%j%@%$%l%/%H$H!"%G%#%l%/%H%j$N(B
$B%$%s%G%C%/%9%U%!%$%k$r07$&5!G=$rDs6!$9$k(B |
$B%9%F!<%?%9(B: | Base |
diff --git a/docs/manual/mod/mod_dir.html.ko.euc-kr b/docs/manual/mod/mod_dir.html.ko.euc-kr
index 095dde99e3..d7de3c6532 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 e031c6e62c..4894f22b21 100644
--- a/docs/manual/mod/mod_dir.xml.ja
+++ b/docs/manual/mod/mod_dir.xml.ja
@@ -1,7 +1,7 @@
-
+
+