From: Stefan Eissing
Date: Fri, 1 Oct 2021 14:23:55 +0000 (+0000)
Subject: Post 2.4.50-rc1 tag updates
X-Git-Tag: candidate-2.4.50-rc1^0
X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e95bf67935b97c2be884154669bc569708b31a74;p=thirdparty%2Fapache%2Fhttpd.git
Post 2.4.50-rc1 tag updates
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/tags/candidate-2.4.50-rc1@1893787 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/docs/manual/mod/directives.html.de b/docs/manual/mod/directives.html.de
index e286642a30b..d0eb0d2037b 100644
--- a/docs/manual/mod/directives.html.de
+++ b/docs/manual/mod/directives.html.de
@@ -208,6 +208,7 @@
CharsetDefault
CharsetOptions
CharsetSourceEnc
+CheckBasenameMatch
CheckCaseOnly
CheckSpelling
ChrootDir
diff --git a/docs/manual/mod/directives.html.en b/docs/manual/mod/directives.html.en
index edc23c3e498..74c9052b9be 100644
--- a/docs/manual/mod/directives.html.en
+++ b/docs/manual/mod/directives.html.en
@@ -209,6 +209,7 @@
CharsetDefault
CharsetOptions
CharsetSourceEnc
+CheckBasenameMatch
CheckCaseOnly
CheckSpelling
ChrootDir
diff --git a/docs/manual/mod/directives.html.es b/docs/manual/mod/directives.html.es
index 6a1f7cb869b..9e42bbfd9ac 100644
--- a/docs/manual/mod/directives.html.es
+++ b/docs/manual/mod/directives.html.es
@@ -211,6 +211,7 @@
CharsetDefault
CharsetOptions
CharsetSourceEnc
+CheckBasenameMatch
CheckCaseOnly
CheckSpelling
ChrootDir
diff --git a/docs/manual/mod/directives.html.fr.utf8 b/docs/manual/mod/directives.html.fr.utf8
index f93f91b20f6..2db27d16753 100644
--- a/docs/manual/mod/directives.html.fr.utf8
+++ b/docs/manual/mod/directives.html.fr.utf8
@@ -209,6 +209,7 @@
CharsetDefault
CharsetOptions
CharsetSourceEnc
+CheckBasenameMatch
CheckCaseOnly
CheckSpelling
ChrootDir
diff --git a/docs/manual/mod/directives.html.ja.utf8 b/docs/manual/mod/directives.html.ja.utf8
index e4ddbcc6001..ff44249f8bb 100644
--- a/docs/manual/mod/directives.html.ja.utf8
+++ b/docs/manual/mod/directives.html.ja.utf8
@@ -206,6 +206,7 @@
CharsetDefault
CharsetOptions
CharsetSourceEnc
+CheckBasenameMatch
CheckCaseOnly
CheckSpelling
ChrootDir
diff --git a/docs/manual/mod/directives.html.ko.euc-kr b/docs/manual/mod/directives.html.ko.euc-kr
index 8a64e88b2ca..a2fea66c692 100644
--- a/docs/manual/mod/directives.html.ko.euc-kr
+++ b/docs/manual/mod/directives.html.ko.euc-kr
@@ -206,6 +206,7 @@
CharsetDefault
CharsetOptions
CharsetSourceEnc
+CheckBasenameMatch
CheckCaseOnly
CheckSpelling
ChrootDir
diff --git a/docs/manual/mod/directives.html.tr.utf8 b/docs/manual/mod/directives.html.tr.utf8
index 9135039e38a..a1756881d15 100644
--- a/docs/manual/mod/directives.html.tr.utf8
+++ b/docs/manual/mod/directives.html.tr.utf8
@@ -205,6 +205,7 @@
CharsetDefault
CharsetOptions
CharsetSourceEnc
+CheckBasenameMatch
CheckCaseOnly
CheckSpelling
ChrootDir
diff --git a/docs/manual/mod/directives.html.zh-cn.utf8 b/docs/manual/mod/directives.html.zh-cn.utf8
index 13d22e74b8b..3cb1072f9e6 100644
--- a/docs/manual/mod/directives.html.zh-cn.utf8
+++ b/docs/manual/mod/directives.html.zh-cn.utf8
@@ -204,6 +204,7 @@
CharsetDefault
CharsetOptions
CharsetSourceEnc
+CheckBasenameMatch
CheckCaseOnly
CheckSpelling
ChrootDir
diff --git a/docs/manual/mod/mod_speling.html.en b/docs/manual/mod/mod_speling.html.en
index 19793d6a31d..4a3fa71e090 100644
--- a/docs/manual/mod/mod_speling.html.en
+++ b/docs/manual/mod/mod_speling.html.en
@@ -50,26 +50,29 @@ misspellings.
up to one misspelling (character insertion /
omission / transposition or wrong character). A list is built
with all document names which were matched using this
- strategy.
+ strategy. Erroneous extension can also be fixed
+ by this module.
If, after scanning the directory,
- no matching document was found, Apache will proceed as
- usual and return a "document not found" error.
+ usual and return an error (404 - document not found).
- only one document is found that "almost" matches the
request, then it is returned in the form of a redirection
- response.
+ response (301 - Moved Permanently).
- more than one document with a close match was found, then
the list of the matches is returned to the client, and the
- client can select the correct candidate.
+ client can select the correct candidate (300 - Multiple
+ Choices).

Directives
@@ -77,6 +80,25 @@ misspellings.
+
+
+
+
When set, this directive extends the action of the spelling correction
+ to the file name extension. For example a file foo.gif will
+ match a request for foo or foo.jpg. This can be
+ particularly useful in conjunction with
+ MultiViews.
+
+
-
When set, this directive limits the action of the spelling correction to lower/upper case changes.
- Other potential corrections are not performed.
-
+
When set, this directive limits the action of the spelling correction
+ to lower/upper case changes. Other potential corrections are not performed,
+ except when CheckBasenameMatch is also set.
@@ -123,13 +145,13 @@ module
directory names.
spelling corrections apply strictly to existing files, so
- a request for the <Location "/status"> may
+ a request for the <Location /status> may
get incorrectly treated as the negotiated file
"/stats.html".
- mod_speling should not be enabled in DAV
+
mod_speling should not be enabled in DAV
enabled directories, because it will try to "spell fix" newly created
resource names against existing filenames, e.g., when trying to upload
a new document doc43.html it might redirect to an existing
diff --git a/docs/manual/mod/mod_speling.html.fr.utf8 b/docs/manual/mod/mod_speling.html.fr.utf8
index 77fb7ded545..7b14ff862a2 100644
--- a/docs/manual/mod/mod_speling.html.fr.utf8
+++ b/docs/manual/mod/mod_speling.html.fr.utf8
@@ -31,6 +31,8 @@
ja |
ko
+Cette traduction peut être périmée. Vérifiez la version
+ anglaise pour les changements récents.
| Description: | Tente de corriger les erreurs de casse dans les URLs ou les
fautes de frappe mineures. |
| Statut: | Extension |
@@ -69,6 +71,7 @@ fautes de frappe mineures.

Directives
@@ -76,6 +79,20 @@ fautes de frappe mineures.
+
+
+
La documentation de cette directive
+ n'a pas encore t traduite. Veuillez vous reporter la version
+ en langue anglaise.

diff --git a/docs/manual/mod/mod_speling.html.ja.utf8 b/docs/manual/mod/mod_speling.html.ja.utf8
index 3d1e772a5a4..d16d6185081 100644
--- a/docs/manual/mod/mod_speling.html.ja.utf8
+++ b/docs/manual/mod/mod_speling.html.ja.utf8
@@ -74,6 +74,7 @@

ãã£ã¬ã¯ãã£ã
@@ -81,6 +82,20 @@
+
+
+
ãã®ãã£ã¬ã¯ãã£ãã®è§£èª¬ææ¸ã¯
+ ã¾ã 翻訳ããã¦ãã¾ãããè±èªçãã覧ãã ããã
+

diff --git a/docs/manual/mod/mod_speling.html.ko.euc-kr b/docs/manual/mod/mod_speling.html.ko.euc-kr
index 2ce5ab16cf1..3628d2c8655 100644
--- a/docs/manual/mod/mod_speling.html.ko.euc-kr
+++ b/docs/manual/mod/mod_speling.html.ko.euc-kr
@@ -65,6 +65,7 @@

Áö½Ã¾îµé
@@ -72,6 +73,20 @@
+
+
+
+| ¼³¸í: | Also match files with differing file name extensions. |
+| ¹®¹ý: | CheckBasenameMatch on|off |
+| ±âº»°ª: | CheckBasenameMatch On |
+| »ç¿ëÀå¼Ò: | ÁÖ¼¹ö¼³Á¤, °¡»óÈ£½ºÆ®, directory, .htaccess |
+| Override ¿É¼Ç: | Options |
+| »óÅÂ: | Extension |
+| ¸ðµâ: | mod_speling |
+| Áö¿ø: | Available in httpd 2.4.50 and later |
+
The documentation for this directive has
+ not been translated yet. Please have a look at the English
+ version.
diff --git a/docs/manual/mod/mod_speling.xml.fr b/docs/manual/mod/mod_speling.xml.fr
index 464f00bef60..f297815040e 100644
--- a/docs/manual/mod/mod_speling.xml.fr
+++ b/docs/manual/mod/mod_speling.xml.fr
@@ -1,7 +1,7 @@
-
+
diff --git a/docs/manual/mod/mod_speling.xml.ja b/docs/manual/mod/mod_speling.xml.ja
index 26d694c60b6..ff675d2d0c9 100644
--- a/docs/manual/mod/mod_speling.xml.ja
+++ b/docs/manual/mod/mod_speling.xml.ja
@@ -1,7 +1,7 @@
-
+
+