mirror of
https://github.com/apache/httpd.git
synced 2025-08-08 15:02:10 +03:00
odd assortment of spelling fixes
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@947651 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
4
STATUS
4
STATUS
@@ -399,8 +399,8 @@ WISH LIST
|
|||||||
|
|
||||||
* mod_cache: Handle ESI tags.
|
* mod_cache: Handle ESI tags.
|
||||||
|
|
||||||
* mod_cache: Resolve issue of how to cache page fragements (or perhaps
|
* mod_cache: Resolve issue of how to cache page fragments (or perhaps
|
||||||
-if- we want to cache page fragements). Today, mod_cache/mod_mem_cache
|
-if- we want to cache page fragments). Today, mod_cache/mod_mem_cache
|
||||||
will cache #include 'virtual' requests (but not #include 'file'
|
will cache #include 'virtual' requests (but not #include 'file'
|
||||||
requests). This was accomplished by making CACHE_IN a
|
requests). This was accomplished by making CACHE_IN a
|
||||||
CONTENT_SET-1 filter to force it to run before the SUBREQ_CORE
|
CONTENT_SET-1 filter to force it to run before the SUBREQ_CORE
|
||||||
|
@@ -216,7 +216,7 @@ variables work.</p>
|
|||||||
contexts, including CGI programs, other RewriteRule directives, or
|
contexts, including CGI programs, other RewriteRule directives, or
|
||||||
CustomLog directives.</p>
|
CustomLog directives.</p>
|
||||||
|
|
||||||
<p>The following example sets an evironment variable called 'image' to a
|
<p>The following example sets an environment variable called 'image' to a
|
||||||
value of '1' if the requested URI is an image file. Then, that
|
value of '1' if the requested URI is an image file. Then, that
|
||||||
environment variable is used to exclude those requests from the access
|
environment variable is used to exclude those requests from the access
|
||||||
log.</p>
|
log.</p>
|
||||||
|
@@ -360,7 +360,7 @@ APR_DECLARE_OPTIONAL_FN(int,uldap_ssl_supported,(request_rec *r));
|
|||||||
/**
|
/**
|
||||||
* Init the LDAP cache
|
* Init the LDAP cache
|
||||||
* @param pool The pool to use to initialise the cache
|
* @param pool The pool to use to initialise the cache
|
||||||
* @param reqsize The size of the shared memory segement to request. A size
|
* @param reqsize The size of the shared memory segment to request. A size
|
||||||
* of zero requests the max size possible from
|
* of zero requests the max size possible from
|
||||||
* apr_shmem_init()
|
* apr_shmem_init()
|
||||||
* @fn void util_ldap_cache_init(apr_pool_t *p, util_ldap_state_t *st)
|
* @fn void util_ldap_cache_init(apr_pool_t *p, util_ldap_state_t *st)
|
||||||
|
@@ -81,7 +81,7 @@ mod_lua exports several additional directives:
|
|||||||
file.
|
file.
|
||||||
|
|
||||||
In general stat or forever is good production and stat or never
|
In general stat or forever is good production and stat or never
|
||||||
for deveopment.
|
for development.
|
||||||
|
|
||||||
Examples:
|
Examples:
|
||||||
LuaCodeCache stat
|
LuaCodeCache stat
|
||||||
|
@@ -59,7 +59,7 @@
|
|||||||
*
|
*
|
||||||
* Examples:
|
* Examples:
|
||||||
*
|
*
|
||||||
* To set the enviroment variable LOCALHOST if the client is the local
|
* To set the environment variable LOCALHOST if the client is the local
|
||||||
* machine:
|
* machine:
|
||||||
*
|
*
|
||||||
* SetEnvIf remote_addr 127.0.0.1 LOCALHOST
|
* SetEnvIf remote_addr 127.0.0.1 LOCALHOST
|
||||||
|
@@ -876,7 +876,7 @@ static int fcgi_do_request(apr_pool_t *p, request_rec *r,
|
|||||||
return HTTP_SERVICE_UNAVAILABLE;
|
return HTTP_SERVICE_UNAVAILABLE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Step 2: Send Enviroment via FCGI_PARAMS */
|
/* Step 2: Send Environment via FCGI_PARAMS */
|
||||||
rv = send_environment(conn, r, request_id);
|
rv = send_environment(conn, r, request_id);
|
||||||
if (rv != APR_SUCCESS) {
|
if (rv != APR_SUCCESS) {
|
||||||
ap_log_error(APLOG_MARK, APLOG_ERR, rv, r->server,
|
ap_log_error(APLOG_MARK, APLOG_ERR, rv, r->server,
|
||||||
|
@@ -25,7 +25,7 @@
|
|||||||
* this MPM has a dedicated thread for handling both the Listenting sockets,
|
* this MPM has a dedicated thread for handling both the Listenting sockets,
|
||||||
* and all sockets that are in a Keep Alive status.
|
* and all sockets that are in a Keep Alive status.
|
||||||
*
|
*
|
||||||
* The MPM assumes the underlying apr_pollset implmentation is somewhat
|
* The MPM assumes the underlying apr_pollset implementation is somewhat
|
||||||
* threadsafe. This currently is only compatible with KQueue and EPoll. This
|
* threadsafe. This currently is only compatible with KQueue and EPoll. This
|
||||||
* enables the MPM to avoid extra high level locking or having to wake up the
|
* enables the MPM to avoid extra high level locking or having to wake up the
|
||||||
* listener thread when a keep-alive socket needs to be sent to it.
|
* listener thread when a keep-alive socket needs to be sent to it.
|
||||||
|
@@ -81,7 +81,7 @@ apr_pool_t *pconf;
|
|||||||
/* definitions from child.c */
|
/* definitions from child.c */
|
||||||
void child_main(apr_pool_t *pconf);
|
void child_main(apr_pool_t *pconf);
|
||||||
|
|
||||||
/* Only one of these, the pipe from our parent, ment only for
|
/* Only one of these, the pipe from our parent, meant only for
|
||||||
* one child worker's consumption (not to be inherited!)
|
* one child worker's consumption (not to be inherited!)
|
||||||
* XXX: decorate this name for the trunk branch, was left simplified
|
* XXX: decorate this name for the trunk branch, was left simplified
|
||||||
* only to make the 2.2 patch trivial to read.
|
* only to make the 2.2 patch trivial to read.
|
||||||
|
Reference in New Issue
Block a user