You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2010/05/24 16:26:50 UTC

svn commit: r947651 - in /httpd/httpd/trunk: ./ docs/manual/rewrite/ include/ modules/lua/docs/ modules/metadata/ modules/proxy/ server/mpm/event/ server/mpm/winnt/

Author: trawick
Date: Mon May 24 14:26:49 2010
New Revision: 947651

URL: http://svn.apache.org/viewvc?rev=947651&view=rev
Log:
odd assortment of spelling fixes

Modified:
    httpd/httpd/trunk/STATUS
    httpd/httpd/trunk/docs/manual/rewrite/flags.xml
    httpd/httpd/trunk/include/util_ldap.h
    httpd/httpd/trunk/modules/lua/docs/basic-configuration.txt
    httpd/httpd/trunk/modules/metadata/mod_setenvif.c
    httpd/httpd/trunk/modules/proxy/mod_proxy_fcgi.c
    httpd/httpd/trunk/server/mpm/event/event.c
    httpd/httpd/trunk/server/mpm/winnt/mpm_winnt.c

Modified: httpd/httpd/trunk/STATUS
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/STATUS?rev=947651&r1=947650&r2=947651&view=diff
==============================================================================
--- httpd/httpd/trunk/STATUS (original)
+++ httpd/httpd/trunk/STATUS Mon May 24 14:26:49 2010
@@ -399,8 +399,8 @@ WISH LIST
 
   * mod_cache: Handle ESI tags.
 
-  * mod_cache: Resolve issue of how to cache page fragements (or perhaps
-    -if- we want to cache page fragements). Today, mod_cache/mod_mem_cache
+  * mod_cache: Resolve issue of how to cache page fragments (or perhaps
+    -if- we want to cache page fragments). Today, mod_cache/mod_mem_cache
     will cache #include 'virtual' requests (but not #include 'file'
     requests). This was accomplished by making CACHE_IN a
     CONTENT_SET-1 filter to force it to run before the SUBREQ_CORE

Modified: httpd/httpd/trunk/docs/manual/rewrite/flags.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/rewrite/flags.xml?rev=947651&r1=947650&r2=947651&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/rewrite/flags.xml (original)
+++ httpd/httpd/trunk/docs/manual/rewrite/flags.xml Mon May 24 14:26:49 2010
@@ -216,7 +216,7 @@ variables work.</p>
 contexts, including CGI programs, other RewriteRule directives, or
 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
 environment variable is used to exclude those requests from the access
 log.</p>

Modified: httpd/httpd/trunk/include/util_ldap.h
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/include/util_ldap.h?rev=947651&r1=947650&r2=947651&view=diff
==============================================================================
--- httpd/httpd/trunk/include/util_ldap.h (original)
+++ httpd/httpd/trunk/include/util_ldap.h Mon May 24 14:26:49 2010
@@ -360,7 +360,7 @@ APR_DECLARE_OPTIONAL_FN(int,uldap_ssl_su
 /**
  * Init the LDAP 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
  *                apr_shmem_init()
  * @fn void util_ldap_cache_init(apr_pool_t *p, util_ldap_state_t *st)

Modified: httpd/httpd/trunk/modules/lua/docs/basic-configuration.txt
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/lua/docs/basic-configuration.txt?rev=947651&r1=947650&r2=947651&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/lua/docs/basic-configuration.txt (original)
+++ httpd/httpd/trunk/modules/lua/docs/basic-configuration.txt Mon May 24 14:26:49 2010
@@ -81,7 +81,7 @@ mod_lua exports several additional direc
         file.
         
         In general stat or forever is good production and stat or never
-        for deveopment.
+        for development.
         
         Examples:
             LuaCodeCache stat

Modified: httpd/httpd/trunk/modules/metadata/mod_setenvif.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/metadata/mod_setenvif.c?rev=947651&r1=947650&r2=947651&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/metadata/mod_setenvif.c (original)
+++ httpd/httpd/trunk/modules/metadata/mod_setenvif.c Mon May 24 14:26:49 2010
@@ -59,7 +59,7 @@
  *
  * 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:
  *
  *    SetEnvIf remote_addr 127.0.0.1 LOCALHOST

Modified: httpd/httpd/trunk/modules/proxy/mod_proxy_fcgi.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/proxy/mod_proxy_fcgi.c?rev=947651&r1=947650&r2=947651&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/proxy/mod_proxy_fcgi.c (original)
+++ httpd/httpd/trunk/modules/proxy/mod_proxy_fcgi.c Mon May 24 14:26:49 2010
@@ -876,7 +876,7 @@ static int fcgi_do_request(apr_pool_t *p
         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);
     if (rv != APR_SUCCESS) {
         ap_log_error(APLOG_MARK, APLOG_ERR, rv, r->server,

Modified: httpd/httpd/trunk/server/mpm/event/event.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/mpm/event/event.c?rev=947651&r1=947650&r2=947651&view=diff
==============================================================================
--- httpd/httpd/trunk/server/mpm/event/event.c (original)
+++ httpd/httpd/trunk/server/mpm/event/event.c Mon May 24 14:26:49 2010
@@ -25,7 +25,7 @@
  * this MPM has a dedicated thread for handling both the Listenting sockets,
  * 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
  * 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.

Modified: httpd/httpd/trunk/server/mpm/winnt/mpm_winnt.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/mpm/winnt/mpm_winnt.c?rev=947651&r1=947650&r2=947651&view=diff
==============================================================================
--- httpd/httpd/trunk/server/mpm/winnt/mpm_winnt.c (original)
+++ httpd/httpd/trunk/server/mpm/winnt/mpm_winnt.c Mon May 24 14:26:49 2010
@@ -81,7 +81,7 @@ apr_pool_t *pconf;
 /* definitions from child.c */
 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!)
  * XXX: decorate this name for the trunk branch, was left simplified
  *      only to make the 2.2 patch trivial to read.