From: Takashi Sato
Date: Tue, 13 May 2008 11:51:36 +0000 (+0000)
Subject: backports minor fixes
X-Git-Tag: 2.2.9~173
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=406666dc622eb949fe3d9ed4643d01cdbab148ed;p=thirdparty%2Fapache%2Fhttpd.git
backports minor fixes
Merge r635137 from trunk:
Pet peeve: fix capitalisation of 'Require' directive
Merge r450473 from trunk:
Minor typo
Merge r545834 from trunk:
Fix a typo, as per PR 40447.
Submitted by Tony Stevenson.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@655823 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/docs/manual/mod/mod_authz_user.xml b/docs/manual/mod/mod_authz_user.xml
index b40018f2e36..c06366a9b96 100644
--- a/docs/manual/mod/mod_authz_user.xml
+++ b/docs/manual/mod/mod_authz_user.xml
@@ -34,7 +34,7 @@
authenticated users can be allowed or denied access to portions
of the web site. mod_authz_user grants
access if the authenticated user is listed in a Require user
- directive. Alternatively require valid-user
can be used to
+ directive. Alternatively Require valid-user
can be used to
grant access to all successfully authenticated users.
Require
diff --git a/docs/manual/mod/mod_dav.xml b/docs/manual/mod/mod_dav.xml
index 127e4122b4c..a086ef3fe8a 100644
--- a/docs/manual/mod/mod_dav.xml
+++ b/docs/manual/mod/mod_dav.xml
@@ -91,7 +91,7 @@
<LimitExcept GET OPTIONS>
- require user admin
+ Require user admin
</LimitExcept>
diff --git a/docs/manual/mod/mod_info.xml b/docs/manual/mod/mod_info.xml
index 3be866037dd..52555c51fcb 100644
--- a/docs/manual/mod/mod_info.xml
+++ b/docs/manual/mod/mod_info.xml
@@ -43,7 +43,7 @@ configuration
You may wish to use mod_access inside the
Location
- directive to limite access to your server configuration
+ directive to limit access to your server configuration
information:
diff --git a/docs/manual/mod/mod_proxy.xml b/docs/manual/mod/mod_proxy.xml
index a733d0e8144..dc544779a4c 100644
--- a/docs/manual/mod/mod_proxy.xml
+++ b/docs/manual/mod/mod_proxy.xml
@@ -639,7 +639,7 @@ expressions
Description |
min |
0 |
- Minumum number of connections that will always
+ | Minimum number of connections that will always
be open to the backend server. |
max |
1...n |
diff --git a/docs/manual/ssl/ssl_howto.xml b/docs/manual/ssl/ssl_howto.xml
index 4f9e10a25f4..87c9a0235a5 100644
--- a/docs/manual/ssl/ssl_howto.xml
+++ b/docs/manual/ssl/ssl_howto.xml
@@ -205,7 +205,7 @@ AuthName "Snake Oil Authentication"
AuthType Basic
AuthBasicProvider file
AuthUserFile /usr/local/apache2/conf/httpd.passwd
-require valid-user
+Require valid-user
</Directory>