From: Mike Rumph Date: Mon, 17 Feb 2020 21:41:22 +0000 (+0000) Subject: Fix spelling errors in docs found by codespell. [skip ci] X-Git-Tag: 2.5.0-alpha2-ci-test-only~1642 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6881183e845551ee636bfec6cf21b9f5c13a6278;p=thirdparty%2Fapache%2Fhttpd.git Fix spelling errors in docs found by codespell. [skip ci] git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1874148 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/developer/hooks.xml b/docs/manual/developer/hooks.xml index 8dc15ca95ee..010aa9ef8cf 100644 --- a/docs/manual/developer/hooks.xml +++ b/docs/manual/developer/hooks.xml @@ -41,7 +41,7 @@

The httpd's core modules offer a predefinined list of hooks used during the standard request processing phase. Creating a new hook will expose a function that - implements it (see sections below) but it is essential to undestand that you will not + implements it (see sections below) but it is essential to understand that you will not extend the httpd's core hooks. Their presence and order in the request processing is in fact a consequence of how they are called in server/request.c (check this section @@ -50,7 +50,7 @@

Reading guide for developing modules and request processing before proceeding is - highly recomended. + highly recommended.

diff --git a/docs/manual/developer/lua.xml b/docs/manual/developer/lua.xml index 32e84e3c8f2..fc738cfec1f 100644 --- a/docs/manual/developer/lua.xml +++ b/docs/manual/developer/lua.xml @@ -112,7 +112,7 @@ through the LuaCodeCache directive. If y your scripts on a production server, and you do not need to update them regularly, it may be advantageous to set this directive to the forever value, which will cause mod_lua to skip the stat process and always reuse the compiled byte-code from the first access to the -script, thus speeding up the processing. For Lua hooks, this can prove to increase peformance, +script, thus speeding up the processing. For Lua hooks, this can prove to increase performance, while for scripts handled by the lua-script handler, the increase in performance may be negligible, as files httpd will stat the files regardless.

diff --git a/docs/manual/howto/http2.xml b/docs/manual/howto/http2.xml index 4ba9b9aff1a..3f4b63c7f36 100644 --- a/docs/manual/howto/http2.xml +++ b/docs/manual/howto/http2.xml @@ -287,7 +287,7 @@ H2Push Off

All other headers are ignored. Cookies will also not be copied over. PUSHing resources that require a cookie to be present will not work. This can be a matter of debate. But unless this is more clearly discussed with browser, let's err on the side of caution and - not expose cookie where they might oridinarily not be visible.

+ not expose cookie where they might ordinarily not be visible.

diff --git a/docs/manual/howto/reverse_proxy.xml b/docs/manual/howto/reverse_proxy.xml index cef737cab36..6bc3c45401e 100644 --- a/docs/manual/howto/reverse_proxy.xml +++ b/docs/manual/howto/reverse_proxy.xml @@ -75,7 +75,7 @@ The ProxyPass directive specifies the mapping of incoming requests to the backend server (or a cluster of servers known as a Balancer - group). The simpliest example proxies all requests ("/") + group). The simplest example proxies all requests ("/") to a single backend:

diff --git a/docs/manual/misc/perf-scaling.xml b/docs/manual/misc/perf-scaling.xml index abf9b7caae1..f6186bf64a3 100644 --- a/docs/manual/misc/perf-scaling.xml +++ b/docs/manual/misc/perf-scaling.xml @@ -1437,7 +1437,7 @@ CacheMaxExpire 21600
Further Considerations -

Armed with the knowledge of how to tune a sytem to deliver the +

Armed with the knowledge of how to tune a system to deliver the desired the performance, we will soon discover that one system might prove a bottleneck. How to make a system fit for growth, or how to put a number of systems into tune will be diff --git a/docs/manual/mod/mod_auth_basic.xml b/docs/manual/mod/mod_auth_basic.xml index b7ddbec262c..49536ed8b33 100644 --- a/docs/manual/mod/mod_auth_basic.xml +++ b/docs/manual/mod/mod_auth_basic.xml @@ -240,7 +240,7 @@ Digest Authentication was in force instead of Basic Authentication. The inverse process of switching from Basic to Digest Authentication without assigning new passwords is generally not possible. Only if the Basic Authentication passwords - have been stored in plain text or with a reversable encryption + have been stored in plain text or with a reversible encryption scheme will it be possible to recover them and generate a new data store following the Digest Authentication password storage scheme. diff --git a/docs/manual/mod/mod_auth_digest.xml b/docs/manual/mod/mod_auth_digest.xml index 65339eb6e07..250b317a052 100644 --- a/docs/manual/mod/mod_auth_digest.xml +++ b/docs/manual/mod/mod_auth_digest.xml @@ -70,7 +70,7 @@ should list the locations that will be protected by this configuration.

-

The pasword file referenced in the The password file referenced in the AuthUserFile directive may be created and managed using the htdigest tool.

diff --git a/docs/manual/mod/mod_authn_dbd.xml b/docs/manual/mod/mod_authn_dbd.xml index 2ee2e9fa6d6..9266cb89b11 100644 --- a/docs/manual/mod/mod_authn_dbd.xml +++ b/docs/manual/mod/mod_authn_dbd.xml @@ -58,7 +58,7 @@ Password Formats
-Performance and Cacheing +Performance and Caching

Some users of DBD authentication in HTTPD 2.2/2.4 have reported that it imposes a problematic load on the database. This is most likely where an HTML page contains hundreds of objects (e.g. images, scripts, etc) @@ -73,7 +73,7 @@ to cache credentials and take most of the load off the database.

the Authentication and DBD frameworks.

# mod_dbd configuration -# UPDATED to include authentication cacheing +# UPDATED to include authentication caching DBDriver pgsql DBDParams "dbname=apacheauth user=apache password=xxxxxx" diff --git a/docs/manual/mod/mod_authz_host.xml b/docs/manual/mod/mod_authz_host.xml index 31a0735140a..1eb9bf536ff 100644 --- a/docs/manual/mod/mod_authz_host.xml +++ b/docs/manual/mod/mod_authz_host.xml @@ -28,7 +28,7 @@ address) Base mod_authz_host.c authz_host_module -The forward-dns provider was addded in 2.4.19 +The forward-dns provider was added in 2.4.19

The authorization providers implemented by mod_authz_host are diff --git a/docs/manual/mod/mod_autoindex.xml b/docs/manual/mod/mod_autoindex.xml index 4594305786f..0c73aba3b81 100644 --- a/docs/manual/mod/mod_autoindex.xml +++ b/docs/manual/mod/mod_autoindex.xml @@ -814,7 +814,7 @@ indexing as usual. If you also specify a ReadmeName, and if that file exists, The closing </body></html> tags are also - ommitted from the output, under the assumption that you'll likely + omitted from the output, under the assumption that you'll likely put those closing tags in that file.

filter runs any provider.

Flags specified with this directive are merged with the flags - that underlying providers may have registerd with + that underlying providers may have registered with mod_filter. For example, a filter may internally specify the equivalent of change=yes, but a particular configuration of the module can override with change=no. diff --git a/docs/manual/mod/mod_http2.xml b/docs/manual/mod/mod_http2.xml index aa9acf1e024..a4db59cbfd5 100644 --- a/docs/manual/mod/mod_http2.xml +++ b/docs/manual/mod/mod_http2.xml @@ -375,7 +375,7 @@ H2Push off all bandwidth allocated to Y can be used by X.

- When a stream has more than one dependant, say X1 and X2 both + When a stream has more than one dependent, say X1 and X2 both depend on Y, the weight determines the bandwidth allocation. If X1 and X2 have the same weight, they both get half of the available bandwidth. If the weight of X1 is twice @@ -968,7 +968,7 @@ H2TLSCoolDownSecs 0

When configuring numbits of 1-8, a random number in range [0, 2^numbits[ are added to each frame. The random value is chosen - independantly for each frame that the module sends back to the client. + independently for each frame that the module sends back to the client.

While more padding bytes give better message length obfuscation, they diff --git a/docs/manual/mod/mod_include.xml b/docs/manual/mod/mod_include.xml index 78c5e6441ff..0997ff295db 100644 --- a/docs/manual/mod/mod_include.xml +++ b/docs/manual/mod/mod_include.xml @@ -318,7 +318,7 @@ Options +Includes to the usual set of CGI variables.

The use of #include virtual is almost always prefered to using + >#include virtual is almost always preferred to using either #exec cgi or #exec cmd. The former (#include virtual) uses the standard Apache sub-request mechanism to include files or scripts. It is much better tested and diff --git a/docs/manual/mod/mod_ldap.xml b/docs/manual/mod/mod_ldap.xml index 68bd29113bc..58362e04acf 100644 --- a/docs/manual/mod/mod_ldap.xml +++ b/docs/manual/mod/mod_ldap.xml @@ -536,7 +536,7 @@ valid

"default"

When set to "default", the underlying SDK's referral chasing state is not changed, LDAPReferralHopLimit is not - used to overide the SDK's hop limit, and no LDAP rebind callback is + used to override the SDK's hop limit, and no LDAP rebind callback is registered.

diff --git a/docs/manual/mod/mod_lua.xml b/docs/manual/mod/mod_lua.xml index 313d629af29..98a315fe5b2 100644 --- a/docs/manual/mod/mod_lua.xml +++ b/docs/manual/mod/mod_lua.xml @@ -1100,7 +1100,7 @@ r:emerg("This is an emerg log message") function filter(r) -- Our first yield is to signal that we are ready to receive buckets. -- Before this yield, we can set up our environment, check for conditions, - -- and, if we deem it necessary, decline filtering a request alltogether: + -- and, if we deem it necessary, decline filtering a request altogether: if something_bad then return -- This would skip this filter. end diff --git a/docs/manual/mod/mod_md.xml b/docs/manual/mod/mod_md.xml index a80691411fb..82bbaaddae0 100644 --- a/docs/manual/mod/mod_md.xml +++ b/docs/manual/mod/mod_md.xml @@ -513,7 +513,7 @@ MDCertificateAuthority https://acme-staging-v02.api.letsencrypt.org/directory

You can override this default in either way. If you specify 'always', - the module will renew certificates for an MD, irregardless if the + the module will renew certificates for an MD, regardless if the domains are in use or if there are static files.

@@ -834,7 +834,7 @@ MDRequireHttps permanent

Sets challenge types (in order of preference) when proving domain ownership. Supported by the module are the challenge methods 'tls-alpn-01', 'dns-01' - and 'http-01'. The module will look at the overall configuation of the server + and 'http-01'. The module will look at the overall configuration of the server to find out which methods can be used.

If the server listens on port 80, for example, the 'http-01' method is available. @@ -1125,7 +1125,7 @@ MDMessageCmd /etc/apache/md-message

mod_md offers an implementation for providing OCSP stapling information. This is an alternative to the one provided by 'mod_ssl'. For backward - compatiblity, this is disabled by default. + compatibility, this is disabled by default.

The stapling can be switched on for all certificates on the server or for an individual MDomain. This will replace any stapling configuration @@ -1190,7 +1190,7 @@ MDMessageCmd /etc/apache/md-message If the validity of the OCSP response used in stapling falls below 'duration', mod_md will obtain a new OCSP response.

- The CA issueing a certificate commonly also operates the OCSP responder + The CA issuing a certificate commonly also operates the OCSP responder service and determines how long its signed response about the validity of a certificate are itself valid. The longer a response is valid, the longer it can be cached which mean better overall performance for everyone. diff --git a/docs/manual/mod/mod_proxy_balancer.xml b/docs/manual/mod/mod_proxy_balancer.xml index 0ed96cedb9e..397bcc8b90b 100644 --- a/docs/manual/mod/mod_proxy_balancer.xml +++ b/docs/manual/mod/mod_proxy_balancer.xml @@ -253,7 +253,7 @@ ProxyPassReverse "/test" "balancer://mycluster" a path info appended to the URL using a semicolon (;) as the separator and add the session id behind. As in the cookie case, Apache Tomcat can include the configured jvmRoute in this path - info. To let Apache find this sort of path info, you neet to set + info. To let Apache find this sort of path info, you need to set scolonpathdelim to On in ProxyPass or ProxySet.

diff --git a/docs/manual/mod/mod_speling.xml b/docs/manual/mod/mod_speling.xml index 54f9d7684c1..e430b400ce8 100644 --- a/docs/manual/mod/mod_speling.xml +++ b/docs/manual/mod/mod_speling.xml @@ -151,7 +151,7 @@ module

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 - particulary useful in conjunction with + particularly useful in conjunction with MultiViews.

diff --git a/docs/manual/mod/mod_substitute.xml b/docs/manual/mod/mod_substitute.xml index 8404b9e6740..f8d17ad5e9d 100644 --- a/docs/manual/mod/mod_substitute.xml +++ b/docs/manual/mod/mod_substitute.xml @@ -72,7 +72,7 @@

The substitution may contain literal text and regular expression backreferences. If the substitution begins with the text - expr= it is intepreted as an + expr= it is interpreted as an expression which allows access to environment variables and header values.

@@ -86,7 +86,7 @@

The character which is used to separate (or "delimit") the - various parts of the substituion string is referred to as the + various parts of the substitution string is referred to as the "delimiter", and it is most common to use a slash for this purpose.

diff --git a/docs/manual/mod/mpm_common.xml b/docs/manual/mod/mpm_common.xml index c845d670720..1ab611f898b 100644 --- a/docs/manual/mod/mpm_common.xml +++ b/docs/manual/mod/mpm_common.xml @@ -322,7 +322,7 @@ in *BSDs.

This also means that multiple instances of Apache httpd configured on a same IP:port and with a positive ListenCoresBucketsRatio would start without an error too, and then run with incoming connections - evenly distributed accross both instances (this is NOT a recommendation or + evenly distributed across both instances (this is NOT a recommendation or a sensible usage in any case, but just a notice that it would prevent such possible issues to be detected).

Within the same instance, Apache httpd will check and fail to start if diff --git a/docs/manual/mod/mpmt_os2.xml b/docs/manual/mod/mpmt_os2.xml index 8a54c881e3b..368e2540919 100644 --- a/docs/manual/mod/mpmt_os2.xml +++ b/docs/manual/mod/mpmt_os2.xml @@ -32,7 +32,7 @@

The Server consists of a main, parent process and a small, static number of child processes.

-

The parent process' job is to manage the child processes. This +

The parent process's job is to manage the child processes. This involves spawning children as required to ensure there are always StartServers processes accepting connections.

diff --git a/docs/manual/platform/netware.xml b/docs/manual/platform/netware.xml index 258b80e08e8..373ee3d2240 100644 --- a/docs/manual/platform/netware.xml +++ b/docs/manual/platform/netware.xml @@ -644,7 +644,7 @@ Netware\build netware-libc nw-nasm enable-mdc2 enable-md5 - Warning: dont use the CodeWarrior Assembler - it produces broken code! + Warning: don't use the CodeWarrior Assembler - it produces broken code!
  • Before building Apache, set the environment variable diff --git a/docs/manual/programs/htdbm.xml b/docs/manual/programs/htdbm.xml index 522431725e8..19b90d7b6db 100644 --- a/docs/manual/programs/htdbm.xml +++ b/docs/manual/programs/htdbm.xml @@ -284,7 +284,7 @@

    The first line creates a new password database with a temporary - placeholder entry, and the thrid line removes that placeholder.

    + placeholder entry, and the third line removes that placeholder.

  • diff --git a/docs/manual/rewrite/remapping.xml b/docs/manual/rewrite/remapping.xml index 5a2491c69f5..b7534d7b864 100644 --- a/docs/manual/rewrite/remapping.xml +++ b/docs/manual/rewrite/remapping.xml @@ -619,7 +619,7 @@ RewriteRule "(.*)" "$1?%1%3" -
  • This solution uses the captured value in the URL subsitution, +
  • This solution uses the captured value in the URL substitution, discarding the rest of the original query by appending a '?': diff --git a/docs/manual/rewrite/rewritemap.xml b/docs/manual/rewrite/rewritemap.xml index e206f7b3dec..c733dde2a50 100644 --- a/docs/manual/rewrite/rewritemap.xml +++ b/docs/manual/rewrite/rewritemap.xml @@ -66,7 +66,7 @@ RewriteMap MapName MapType:MapSource

    The MapName is an - arbitray name that you assign to the map, and which you will use in + arbitrary name that you assign to the map, and which you will use in directives later on. Arguments are passed to the map via the following syntax:

    diff --git a/docs/manual/rewrite/vhosts.xml b/docs/manual/rewrite/vhosts.xml index 8910f5440f7..bbca372626f 100644 --- a/docs/manual/rewrite/vhosts.xml +++ b/docs/manual/rewrite/vhosts.xml @@ -65,7 +65,7 @@ mod_rewrite document. SITE.example.com for each user, and serve their content out of /home/SITE/www. However, we want - www.example.com to be ommitted from this mapping.

    + www.example.com to be omitted from this mapping.

    Solution:
    diff --git a/docs/manual/style/common.dtd b/docs/manual/style/common.dtd index ed8d1e03bc8..2cd308078c6 100644 --- a/docs/manual/style/common.dtd +++ b/docs/manual/style/common.dtd @@ -196,6 +196,6 @@ highlight | blockquote"> + describes a pronunciation --> diff --git a/docs/manual/style/latex/html.xsl b/docs/manual/style/latex/html.xsl index e610fad6db1..3b53bf96955 100644 --- a/docs/manual/style/latex/html.xsl +++ b/docs/manual/style/latex/html.xsl @@ -147,7 +147,7 @@ - diff --git a/docs/manual/style/latex/synopsis.xsl b/docs/manual/style/latex/synopsis.xsl index 14bdc5ca149..a468a770603 100644 --- a/docs/manual/style/latex/synopsis.xsl +++ b/docs/manual/style/latex/synopsis.xsl @@ -310,7 +310,7 @@ - + diff --git a/docs/manual/style/scripts/prettify.js b/docs/manual/style/scripts/prettify.js index f8dbecf18b8..5d3a052964d 100644 --- a/docs/manual/style/scripts/prettify.js +++ b/docs/manual/style/scripts/prettify.js @@ -657,7 +657,7 @@ var REGEXP_PRECEDER_PATTERN = '(?:^^\\.?|[+-]|[!=]=?=?|\\#|%=?|&&?=?|\\(|\\*=?|[ * recognized. * * Shortcut is an optional string of characters, any of which, if the first - * character, gurantee that this pattern and only this pattern matches. + * character, guarantee that this pattern and only this pattern matches. * * @param {Array} shortcutStylePatterns patterns that always start with * a known character. Must have a shortcut string. diff --git a/docs/manual/style/xsl/common.xsl b/docs/manual/style/xsl/common.xsl index af2524a2463..c92ad281f5d 100644 --- a/docs/manual/style/xsl/common.xsl +++ b/docs/manual/style/xsl/common.xsl @@ -688,7 +688,7 @@ if (typeof(prettyPrint) !== 'undefined') { &lf; - + @@ -1248,7 +1248,7 @@ if (typeof(prettyPrint) !== 'undefined') { - + diff --git a/docs/manual/style/xsl/list_for_prettify.xsl b/docs/manual/style/xsl/list_for_prettify.xsl index f3e0a964b26..65306cb8e90 100644 --- a/docs/manual/style/xsl/list_for_prettify.xsl +++ b/docs/manual/style/xsl/list_for_prettify.xsl @@ -37,7 +37,7 @@ # in order to be ready to use for the JS used in prettify.js&lf; &lf; # The next line has to be copy/pasted into prettify.js around line 135&lf; -# in place of the correponding CONFIG_KEYWORDS array.&lf; +# in place of the corresponding CONFIG_KEYWORDS array.&lf; &lf; # The next line has to be copy/pasted into prettify.js around line 920&lf; -# in place of the correponding PR_TAG array.&lf; +# in place of the corresponding PR_TAG array.&lf; &lf; [PR_TAG, /^\b( diff --git a/docs/manual/style/xsl/nroff.xsl b/docs/manual/style/xsl/nroff.xsl index 1345933864d..17df5f6a118 100644 --- a/docs/manual/style/xsl/nroff.xsl +++ b/docs/manual/style/xsl/nroff.xsl @@ -46,7 +46,7 @@ * dealings in this Software without prior written authorization * from the individuals in question. * - * Any stylesheet derived from this Software that is publically + * Any stylesheet derived from this Software that is publicly * distributed will be identified with a different name and the * version strings in any derived Software will be changed so that * no possibility of confusion between the derived package and this diff --git a/docs/manual/style/xsl/synopsis.xsl b/docs/manual/style/xsl/synopsis.xsl index 1b464a7324b..0547a91006a 100644 --- a/docs/manual/style/xsl/synopsis.xsl +++ b/docs/manual/style/xsl/synopsis.xsl @@ -274,7 +274,7 @@
  • -
  • - - + diff --git a/docs/manual/suexec.xml b/docs/manual/suexec.xml index 2d42a839557..e447a79706b 100644 --- a/docs/manual/suexec.xml +++ b/docs/manual/suexec.xml @@ -309,7 +309,7 @@ to ensure safe operations?

    - suEXEC cleans the process' environment by establishing a + suEXEC cleans the process's environment by establishing a safe execution PATH (defined during configuration), as well as only passing through those variables whose names are listed in the safe environment list (also created