You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2008/04/05 21:39:22 UTC

svn commit: r645164 - /httpd/httpd/trunk/include/http_config.h

Author: wrowe
Date: Sat Apr  5 12:39:17 2008
New Revision: 645164

URL: http://svn.apache.org/viewvc?rev=645164&view=rev
Log:
"Method" in HTTP has a particular meaning, simple descriptive
change to avoid using that phrase in another context.

Modified:
    httpd/httpd/trunk/include/http_config.h

Modified: httpd/httpd/trunk/include/http_config.h
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/include/http_config.h?rev=645164&r1=645163&r2=645164&view=diff
==============================================================================
--- httpd/httpd/trunk/include/http_config.h (original)
+++ httpd/httpd/trunk/include/http_config.h Sat Apr  5 12:39:17 2008
@@ -113,43 +113,43 @@
 /** This configuration directive takes a flag (on/off) as a argument*/
 # define AP_FLAG	func.flag
 
-/** method of declaring a directive with no arguments */
+/** mechanism for declaring a directive with no arguments */
 # define AP_INIT_NO_ARGS(directive, func, mconfig, where, help) \
     { directive, { .no_args=func }, mconfig, where, RAW_ARGS, help }
-/** method of declaring a directive with raw argument parsing */
+/** mechanism for declaring a directive with raw argument parsing */
 # define AP_INIT_RAW_ARGS(directive, func, mconfig, where, help) \
     { directive, { .raw_args=func }, mconfig, where, RAW_ARGS, help }
-/** method of declaring a directive with raw argument parsing */
+/** mechanism for declaring a directive with raw argument parsing */
 # define AP_INIT_TAKE_ARGV(directive, func, mconfig, where, help) \
     { directive, { .take_argv=func }, mconfig, where, TAKE_ARGV, help }
-/** method of declaring a directive which takes 1 argument */
+/** mechanism for declaring a directive which takes 1 argument */
 # define AP_INIT_TAKE1(directive, func, mconfig, where, help) \
     { directive, { .take1=func }, mconfig, where, TAKE1, help }
-/** method of declaring a directive which takes multiple arguments */
+/** mechanism for declaring a directive which takes multiple arguments */
 # define AP_INIT_ITERATE(directive, func, mconfig, where, help) \
     { directive, { .take1=func }, mconfig, where, ITERATE, help }
-/** method of declaring a directive which takes 2 arguments */
+/** mechanism for declaring a directive which takes 2 arguments */
 # define AP_INIT_TAKE2(directive, func, mconfig, where, help) \
     { directive, { .take2=func }, mconfig, where, TAKE2, help }
-/** method of declaring a directive which takes 1 or 2 arguments */
+/** mechanism for declaring a directive which takes 1 or 2 arguments */
 # define AP_INIT_TAKE12(directive, func, mconfig, where, help) \
     { directive, { .take2=func }, mconfig, where, TAKE12, help }
-/** method of declaring a directive which takes multiple 2 arguments */
+/** mechanism for declaring a directive which takes multiple 2 arguments */
 # define AP_INIT_ITERATE2(directive, func, mconfig, where, help) \
     { directive, { .take2=func }, mconfig, where, ITERATE2, help }
-/** method of declaring a directive which takes 1 or 3 arguments */
+/** mechanism for declaring a directive which takes 1 or 3 arguments */
 # define AP_INIT_TAKE13(directive, func, mconfig, where, help) \
     { directive, { .take3=func }, mconfig, where, TAKE13, help }
-/** method of declaring a directive which takes 2 or 3 arguments */
+/** mechanism for declaring a directive which takes 2 or 3 arguments */
 # define AP_INIT_TAKE23(directive, func, mconfig, where, help) \
     { directive, { .take3=func }, mconfig, where, TAKE23, help }
-/** method of declaring a directive which takes 1 to 3 arguments */
+/** mechanism for declaring a directive which takes 1 to 3 arguments */
 # define AP_INIT_TAKE123(directive, func, mconfig, where, help) \
     { directive, { .take3=func }, mconfig, where, TAKE123, help }
-/** method of declaring a directive which takes 3 arguments */
+/** mechanism for declaring a directive which takes 3 arguments */
 # define AP_INIT_TAKE3(directive, func, mconfig, where, help) \
     { directive, { .take3=func }, mconfig, where, TAKE3, help }
-/** method of declaring a directive which takes a flag (on/off) as a argument*/
+/** mechanism for declaring a directive which takes a flag (on/off) argument */
 # define AP_INIT_FLAG(directive, func, mconfig, where, help) \
     { directive, { .flag=func }, mconfig, where, FLAG, help }