You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rj...@apache.org on 2009/09/21 22:59:14 UTC

svn commit: r817413 - /httpd/mod_fcgid/trunk/modules/fcgid/mod_fcgid.c

Author: rjung
Date: Mon Sep 21 20:59:13 2009
New Revision: 817413

URL: http://svn.apache.org/viewvc?rev=817413&view=rev
Log:
Replace help of old directives with information
about new directive.

Modified:
    httpd/mod_fcgid/trunk/modules/fcgid/mod_fcgid.c

Modified: httpd/mod_fcgid/trunk/modules/fcgid/mod_fcgid.c
URL: http://svn.apache.org/viewvc/httpd/mod_fcgid/trunk/modules/fcgid/mod_fcgid.c?rev=817413&r1=817412&r2=817413&view=diff
==============================================================================
--- httpd/mod_fcgid/trunk/modules/fcgid/mod_fcgid.c (original)
+++ httpd/mod_fcgid/trunk/modules/fcgid/mod_fcgid.c Mon Sep 21 20:59:13 2009
@@ -691,94 +691,94 @@
      */
     AP_INIT_TAKE1("BusyScanInterval", set_busy_scan_interval, NULL,
                   RSRC_CONF,
-                  "DEPRECATED - scan interval for busy timeout process"),
+                  "Deprecated - Use 'FCGIDBusyScanInterval' instead"),
     AP_INIT_TAKE1("BusyTimeout", set_busy_timeout, NULL, RSRC_CONF,
-                  "DEPRECATED - a fastcgi application will be killed after handling a request for BusyTimeout"),
+                  "Deprecated - Use 'FCGIDBusyTimeout' instead"),
     AP_INIT_TAKE12("DefaultInitEnv", add_default_env_vars, NULL, RSRC_CONF,
-                   "DEPRECATED - an environment variable name and optional value to pass to FastCGI."),
+                   "Deprecated - Use 'FCGIDDefaultInitEnv' instead"),
     AP_INIT_TAKE1("DefaultMaxClassProcessCount",
                   set_max_class_process,
                   NULL, RSRC_CONF,
-                  "DEPRECATED - Max process count of one class of fastcgi application"),
+                  "Deprecated - Use 'FCGIDDefaultMaxClassProcessCount' instead"),
     AP_INIT_TAKE1("DefaultMinClassProcessCount",
                   set_min_class_process,
                   NULL, RSRC_CONF,
-                  "DEPRECATED - Min process count of one class of fastcgi application"),
+                  "Deprecated - Use 'FCGIDDefaultMinClassProcessCount' instead"),
     AP_INIT_TAKE1("ErrorScanInterval", set_error_scan_interval, NULL,
                   RSRC_CONF,
-                  "DEPRECATED - scan interval for exited process"),
+                  "Deprecated - Use 'FCGIDErrorScanInterval' instead"),
     AP_INIT_TAKE1("FastCgiAccessChecker", set_access_info, NULL,
                   ACCESS_CONF | OR_FILEINFO,
-                  "DEPRECATED - a absolute access checker file path"),
+                  "Deprecated - Use 'FCGIDAccessChecker' instead"),
     AP_INIT_FLAG("FastCgiAccessCheckerAuthoritative",
                  set_access_authoritative, NULL, ACCESS_CONF | OR_FILEINFO,
-                 "DEPRECATED - Set to 'off' to allow access control to be passed along to lower modules upon failure"),
+                 "Deprecated - Use 'FCGIDAccessCheckerAuthoritative' instead"),
     AP_INIT_TAKE1("FastCgiAuthenticator", set_authenticator_info, NULL,
                   ACCESS_CONF | OR_FILEINFO,
-                  "DEPRECATED - a absolute authenticator file path"),
+                  "Deprecated - Use 'FCGIDAuthenticator' instead"),
     AP_INIT_FLAG("FastCgiAuthenticatorAuthoritative",
                  set_authenticator_authoritative, NULL,
                  ACCESS_CONF | OR_FILEINFO,
-                 "DEPRECATED - Set to 'off' to allow authentication to be passed along to lower modules upon failure"),
+                 "Deprecated - Use 'FCGIDAuthenticatorAuthoritative' instead"),
     AP_INIT_TAKE1("FastCgiAuthorizer", set_authorizer_info, NULL,
                   ACCESS_CONF | OR_FILEINFO,
-                  "DEPRECATED - a absolute authorizer file path"),
+                  "Deprecated - Use 'FCGIDAuthorizer' instead"),
     AP_INIT_FLAG("FastCgiAuthorizerAuthoritative",
                  set_authorizer_authoritative, NULL,
                  ACCESS_CONF | OR_FILEINFO,
-                 "DEPRECATED - Set to 'off' to allow authorization to be passed along to lower modules upon failure"),
+                 "Deprecated - Use 'FCGIDAuthorizerAuthoritative' instead"),
     AP_INIT_TAKE123("FCGIWrapper", set_wrapper_config, NULL,
                     RSRC_CONF | ACCESS_CONF | OR_FILEINFO,
-                    "DEPRECATED - The CGI wrapper file an optional URL suffix and an optional flag"),
+                    "Deprecated - Use 'FCGIDWrapper' instead"),
     AP_INIT_TAKE1("IdleScanInterval", set_idle_scan_interval, NULL,
                   RSRC_CONF,
-                  "DEPRECATED - scan interval for idle timeout process"),
+                  "Deprecated - Use 'FCGIDIdleScanInterval' instead"),
     AP_INIT_TAKE1("IdleTimeout", set_idle_timeout, NULL, RSRC_CONF,
-                  "DEPRECATED - an idle fastcgi application will be killed after IdleTimeout"),
+                  "Deprecated - Use 'FCGIDIdleTimeout' instead"),
     AP_INIT_TAKE1("IPCCommTimeout", set_ipc_comm_timeout, NULL, RSRC_CONF,
-                  "DEPRECATED - Communication timeout to fastcgi server"),
+                  "Deprecated - Use 'FCGIDIPCCommTimeout' instead"),
     AP_INIT_TAKE1("IPCConnectTimeout", set_ipc_connect_timeout, NULL,
                   RSRC_CONF,
-                  "DEPRECATED - Connect timeout to fastcgi server"),
+                  "Deprecated - Use 'FCGIDIPCConnectTimeout' instead"),
     AP_INIT_TAKE1("MaxProcessCount", set_max_process, NULL, RSRC_CONF,
-                  "DEPRECATED - Max total process count"),
+                  "Deprecated - Use 'FCGIDMaxProcessCount' instead"),
     AP_INIT_TAKE1("MaxRequestInMem", set_max_mem_request_len, NULL,
                   RSRC_CONF,
-                  "DEPRECATED - The part of HTTP request which greater than this limit will swap to disk"),
+                  "Deprecated - Use 'FCGIDMaxRequestInMem' instead"),
     AP_INIT_TAKE1("MaxRequestLen", set_max_request_len, NULL, RSRC_CONF,
-                  "DEPRECATED - Max HTTP request length in byte"),
+                  "Deprecated - Use 'FCGIDMaxRequestLen' instead"),
     AP_INIT_TAKE1("MaxRequestsPerProcess", set_max_requests_per_process,
                   NULL, RSRC_CONF,
-                  "DEPRECATED - Max requests handled by each fastcgi application"),
+                  "Deprecated - Use 'FCGIDMaxRequestsPerProcess' instead"),
     AP_INIT_TAKE1("OutputBufferSize", set_output_buffersize, NULL,
                   RSRC_CONF,
-                  "DEPRECATED - CGI output buffer size"),
+                  "Deprecated - Use 'FCGIDOutputBufferSize' instead"),
     AP_INIT_TAKE1("PassHeader", add_pass_headers, NULL, RSRC_CONF,
-                  "DEPRECATED - Header name which will be passed to FastCGI as environment variable."),
+                  "Deprecated - Use 'FCGIDPassHeader' instead"),
     AP_INIT_TAKE1("PHP_Fix_Pathinfo_Enable",
                   set_php_fix_pathinfo_enable,
                   NULL, RSRC_CONF,
-                  "DEPRECATED - Set 1, if cgi.fix_pathinfo=1 in php.ini"),
+                  "Deprecated - Use 'FCGIDPHPFixPathinfoEnable' instead"),
     AP_INIT_TAKE1("ProcessLifeTime", set_proc_lifetime, NULL, RSRC_CONF,
-                  "DEPRECATED - fastcgi application lifetime"),
+                  "Deprecated - Use 'FCGIDProcessLifeTime' instead"),
     AP_INIT_TAKE1("SharememPath", set_shmpath, NULL, RSRC_CONF,
-                  "DEPRECATED - fastcgi share memory file path"),
+                  "Deprecated - Use 'FCGIDSharememPath' instead"),
     AP_INIT_TAKE1("SocketPath", set_socketpath, NULL, RSRC_CONF,
-                  "DEPRECATED - fastcgi socket file path"),
+                  "Deprecated - Use 'FCGIDSocketPath' instead"),
     AP_INIT_TAKE1("SpawnScore", set_spawn_score, NULL, RSRC_CONF,
-                  "DEPRECATED - Score of spawn"),
+                  "Deprecated - Use 'FCGIDSpawnScore' instead"),
     AP_INIT_TAKE1("SpawnScoreUpLimit", set_spawnscore_uplimit, NULL,
                   RSRC_CONF,
-                  "DEPRECATED - Spawn score up limit"),
+                  "Deprecated - Use 'FCGIDSpawnScoreUpLimit' instead"),
     AP_INIT_TAKE1("TerminationScore", set_termination_score, NULL,
                   RSRC_CONF,
-                  "DEPRECATED - Score of termination"),
+                  "Deprecated - Use 'FCGIDTerminationScore' instead"),
     AP_INIT_TAKE1("TimeScore", set_time_score, NULL,
                   RSRC_CONF,
-                  "DEPRECATED - Score of passage of time (in seconds)"),
+                  "Deprecated - Use 'FCGIDTimeScore' instead"),
     AP_INIT_TAKE1("ZombieScanInterval", set_zombie_scan_interval, NULL,
                   RSRC_CONF,
-                  "DEPRECATED - scan interval for zombie process"),
+                  "Deprecated - Use 'FCGIDZombieScanInterval' instead"),
     {NULL}
 };