Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 29423 invoked from network); 3 Oct 2009 16:22:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 3 Oct 2009 16:22:03 -0000 Received: (qmail 63426 invoked by uid 500); 3 Oct 2009 16:22:02 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 63348 invoked by uid 500); 3 Oct 2009 16:22:02 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 63135 invoked by uid 99); 3 Oct 2009 16:22:01 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 03 Oct 2009 16:22:01 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 03 Oct 2009 16:21:53 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 27D612388A13; Sat, 3 Oct 2009 16:20:58 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r821352 [13/34] - /httpd/site/trunk/docs/dev/apidoc/ Date: Sat, 03 Oct 2009 16:20:35 -0000 To: cvs@httpd.apache.org From: pquerna@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20091003162058.27D612388A13@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Added: httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_ALL.html URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_ALL.html?rev=821352&view=auto ============================================================================== --- httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_ALL.html (added) +++ httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_ALL.html [utf-8] Sat Oct 3 16:20:11 2009 @@ -0,0 +1,64 @@ + + + + Apache 1.3 API: OPT_ALL + + +

Apache 1.3 API Documentation

+

Constant OPT_ALL

+

+ Definition: +

+
+
+
+#include "http_core.h"
+     
+
+
+

+ Usage example: +

+
+
+
+if ((ap_allow_options(r) & OPT_ALL) == OPT_ALL) {
+    /* Options All covers this location
+     * Equivalent to Options [+]Indexes [+]Includes [+]ExecCGI [+]FollowSymLinks
+     */
+} 
+     
+
+
+

+ No documentation available. +

+
+
See also:
+
ap_allow_options, + OPT_EXECCGI, + OPT_INCLUDES, + OPT_INCNOEXEC, + OPT_INDEXES, + OPT_MULTI, + OPT_NONE, + OPT_SYM_LINKS, + OPT_SYM_OWNER, + OPT_UNSET +
+
+
+

+ Previous: OK + Next: OPT_EXECCGI +

+

+Table of Contents +(Routines, +Structures, +Data Cells, +Constants) +

+ + Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_ALL.html ------------------------------------------------------------------------------ svn:eol-style = native Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_ALL.html ------------------------------------------------------------------------------ svn:keywords = Date Revision Author HeadURL Id Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_ALL.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_EXECCGI.html URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_EXECCGI.html?rev=821352&view=auto ============================================================================== --- httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_EXECCGI.html (added) +++ httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_EXECCGI.html [utf-8] Sat Oct 3 16:20:11 2009 @@ -0,0 +1,62 @@ + + + + Apache 1.3 API: OPT_EXECCGI + + +

Apache 1.3 API Documentation

+

Constant OPT_EXECCGI

+

+ Definition: +

+
+
+
+#include "http_core.h"
+     
+
+
+

+ Usage example: +

+
+
+
+if (ap_allow_options(r) & OPT_EXECCGI) {
+    /* Options [+]ExecCGI covers this location */
+} 
+     
+
+
+

+ No documentation available. +

+
+
See also:
+
ap_allow_options, + OPT_ALL, + OPT_INCLUDES, + OPT_INCNOEXEC, + OPT_INDEXES, + OPT_MULTI, + OPT_NONE, + OPT_SYM_LINKS, + OPT_SYM_OWNER, + OPT_UNSET +
+
+
+

+ Previous: OPT_ALL + Next: OPT_INCLUDES +

+

+Table of Contents +(Routines, +Structures, +Data Cells, +Constants) +

+ + Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_EXECCGI.html ------------------------------------------------------------------------------ svn:eol-style = native Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_EXECCGI.html ------------------------------------------------------------------------------ svn:keywords = Date Revision Author HeadURL Id Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_EXECCGI.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_INCLUDES.html URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_INCLUDES.html?rev=821352&view=auto ============================================================================== --- httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_INCLUDES.html (added) +++ httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_INCLUDES.html [utf-8] Sat Oct 3 16:20:11 2009 @@ -0,0 +1,62 @@ + + + + Apache 1.3 API: OPT_INCLUDES + + +

Apache 1.3 API Documentation

+

Constant OPT_INCLUDES

+

+ Definition: +

+
+
+
+#include "http_core.h"
+     
+
+
+

+ Usage example: +

+
+
+
+if (ap_allow_options(r) & OPT_INCLUDES) {
+    /* Options [+]Includes covers this location */
+} 
+     
+
+
+

+ No documentation available. +

+
+
See also:
+
ap_allow_options, + OPT_ALL, + OPT_EXECCGI, + OPT_INCNOEXEC, + OPT_INDEXES, + OPT_MULTI, + OPT_NONE, + OPT_SYM_LINKS, + OPT_SYM_OWNER, + OPT_UNSET +
+
+
+

+ Previous: OPT_EXECCGI + Next: OPT_INCNOEXEC +

+

+Table of Contents +(Routines, +Structures, +Data Cells, +Constants) +

+ + Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_INCLUDES.html ------------------------------------------------------------------------------ svn:eol-style = native Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_INCLUDES.html ------------------------------------------------------------------------------ svn:keywords = Date Revision Author HeadURL Id Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_INCLUDES.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_INCNOEXEC.html URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_INCNOEXEC.html?rev=821352&view=auto ============================================================================== --- httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_INCNOEXEC.html (added) +++ httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_INCNOEXEC.html [utf-8] Sat Oct 3 16:20:11 2009 @@ -0,0 +1,62 @@ + + + + Apache 1.3 API: OPT_INCNOEXEC + + +

Apache 1.3 API Documentation

+

Constant OPT_INCNOEXEC

+

+ Definition: +

+
+
+
+#include "http_core.h"
+     
+
+
+

+ Usage example: +

+
+
+
+if (ap_allow_options(r) & OPT_INCNOEXEC) {
+    /* Options [+]IncludesNoExec covers this location */
+} 
+     
+
+
+

+ No documentation available. +

+
+
See also:
+
ap_allow_options, + OPT_ALL, + OPT_EXECCGI, + OPT_INCLUDES, + OPT_INDEXES, + OPT_MULTI, + OPT_NONE, + OPT_SYM_LINKS, + OPT_SYM_OWNER, + OPT_UNSET +
+
+
+

+ Previous: OPT_INCLUDES + Next: OPT_INDEXES +

+

+Table of Contents +(Routines, +Structures, +Data Cells, +Constants) +

+ + Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_INCNOEXEC.html ------------------------------------------------------------------------------ svn:eol-style = native Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_INCNOEXEC.html ------------------------------------------------------------------------------ svn:keywords = Date Revision Author HeadURL Id Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_INCNOEXEC.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_INDEXES.html URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_INDEXES.html?rev=821352&view=auto ============================================================================== --- httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_INDEXES.html (added) +++ httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_INDEXES.html [utf-8] Sat Oct 3 16:20:11 2009 @@ -0,0 +1,62 @@ + + + + Apache 1.3 API: OPT_INDEXES + + +

Apache 1.3 API Documentation

+

Constant OPT_INDEXES

+

+ Definition: +

+
+
+
+#include "http_core.h"
+     
+
+
+

+ Usage example: +

+
+
+
+if (ap_allow_options(r) & OPT_INDEXES) {
+    /* Options [+]Indexes covers this location */
+} 
+     
+
+
+

+ No documentation available. +

+
+
See also:
+
ap_allow_options, + OPT_ALL, + OPT_EXECCGI, + OPT_INCLUDES, + OPT_INCNOEXEC, + OPT_MULTI, + OPT_NONE, + OPT_SYM_LINKS, + OPT_SYM_OWNER, + OPT_UNSET +
+
+
+

+ Previous: OPT_INCNOEXEC + Next: OPT_MULTI +

+

+Table of Contents +(Routines, +Structures, +Data Cells, +Constants) +

+ + Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_INDEXES.html ------------------------------------------------------------------------------ svn:eol-style = native Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_INDEXES.html ------------------------------------------------------------------------------ svn:keywords = Date Revision Author HeadURL Id Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_INDEXES.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_MULTI.html URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_MULTI.html?rev=821352&view=auto ============================================================================== --- httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_MULTI.html (added) +++ httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_MULTI.html [utf-8] Sat Oct 3 16:20:11 2009 @@ -0,0 +1,62 @@ + + + + Apache 1.3 API: OPT_MULTI + + +

Apache 1.3 API Documentation

+

Constant OPT_MULTI

+

+ Definition: +

+
+
+
+#include "http_core.h"
+     
+
+
+

+ Usage example: +

+
+
+
+if (ap_allow_options(r) & OPT_MULTI) {
+    /* Options [+]MultiViews covers this location */
+} 
+     
+
+
+

+ No documentation available. +

+
+
See also:
+
ap_allow_options, + OPT_ALL, + OPT_EXECCGI, + OPT_INCLUDES, + OPT_INCNOEXEC, + OPT_INDEXES, + OPT_NONE, + OPT_SYM_LINKS, + OPT_SYM_OWNER, + OPT_UNSET +
+
+
+

+ Previous: OPT_INDEXES + Next: OPT_NONE +

+

+Table of Contents +(Routines, +Structures, +Data Cells, +Constants) +

+ + Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_MULTI.html ------------------------------------------------------------------------------ svn:eol-style = native Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_MULTI.html ------------------------------------------------------------------------------ svn:keywords = Date Revision Author HeadURL Id Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_MULTI.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_NONE.html URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_NONE.html?rev=821352&view=auto ============================================================================== --- httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_NONE.html (added) +++ httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_NONE.html [utf-8] Sat Oct 3 16:20:11 2009 @@ -0,0 +1,63 @@ + + + + Apache 1.3 API: OPT_NONE + + +

Apache 1.3 API Documentation

+

Constant OPT_NONE

+

+ Definition: +

+
+
+
+#include "http_core.h"
+     
+
+
+

+ Usage example: +

+
+
+
+if (ap_allow_options(r) == OPT_NONE) {
+    /* No Options keywords are active for this location */
+} return DECLINED;
+} 
+     
+
+
+

+ No documentation available. +

+
+
See also:
+
ap_allow_options, + OPT_ALL, + OPT_EXECCGI, + OPT_INCLUDES, + OPT_INCNOEXEC, + OPT_INDEXES, + OPT_MULTI, + OPT_SYM_LINKS, + OPT_SYM_OWNER, + OPT_UNSET +
+
+
+

+ Previous: OPT_MULTI + Next: OPT_SYM_LINKS +

+

+Table of Contents +(Routines, +Structures, +Data Cells, +Constants) +

+ + Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_NONE.html ------------------------------------------------------------------------------ svn:eol-style = native Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_NONE.html ------------------------------------------------------------------------------ svn:keywords = Date Revision Author HeadURL Id Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_NONE.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_SYM_LINKS.html URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_SYM_LINKS.html?rev=821352&view=auto ============================================================================== --- httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_SYM_LINKS.html (added) +++ httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_SYM_LINKS.html [utf-8] Sat Oct 3 16:20:11 2009 @@ -0,0 +1,62 @@ + + + + Apache 1.3 API: OPT_SYM_LINKS + + +

Apache 1.3 API Documentation

+

Constant OPT_SYM_LINKS

+

+ Definition: +

+
+
+
+#include "http_core.h"
+     
+
+
+

+ Usage example: +

+
+
+
+if (ap_allow_options(r) & OPT_SYM_LINKS) {
+    /* Options [+]FollowSymLinks covers this location */
+} 
+     
+
+
+

+ No documentation available. +

+
+
See also:
+
ap_allow_options, + OPT_ALL, + OPT_EXECCGI, + OPT_INCLUDES, + OPT_INCNOEXEC, + OPT_INDEXES, + OPT_MULTI, + OPT_NONE, + OPT_SYM_OWNER, + OPT_UNSET +
+
+
+

+ Previous: OPT_NONE + Next: OPT_SYM_OWNER +

+

+Table of Contents +(Routines, +Structures, +Data Cells, +Constants) +

+ + Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_SYM_LINKS.html ------------------------------------------------------------------------------ svn:eol-style = native Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_SYM_LINKS.html ------------------------------------------------------------------------------ svn:keywords = Date Revision Author HeadURL Id Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_SYM_LINKS.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_SYM_OWNER.html URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_SYM_OWNER.html?rev=821352&view=auto ============================================================================== --- httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_SYM_OWNER.html (added) +++ httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_SYM_OWNER.html [utf-8] Sat Oct 3 16:20:11 2009 @@ -0,0 +1,62 @@ + + + + Apache 1.3 API: OPT_SYM_OWNER + + +

Apache 1.3 API Documentation

+

Constant OPT_SYM_OWNER

+

+ Definition: +

+
+
+
+#include "http_core.h"
+     
+
+
+

+ Usage example: +

+
+
+
+if (ap_allow_options(r) & OPT_SYM_OWNER) {
+    /* Options [+]SymLinksIfOwnerMatch covers this location */
+} 
+     
+
+
+

+ No documentation available. +

+
+
See also:
+
ap_allow_options, + OPT_ALL, + OPT_EXECCGI, + OPT_INCLUDES, + OPT_INCNOEXEC, + OPT_INDEXES, + OPT_MULTI, + OPT_NONE, + OPT_SYM_LINKS, + OPT_UNSET +
+
+
+

+ Previous: OPT_SYM_LINKS + Next: OPT_UNSET +

+

+Table of Contents +(Routines, +Structures, +Data Cells, +Constants) +

+ + Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_SYM_OWNER.html ------------------------------------------------------------------------------ svn:eol-style = native Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_SYM_OWNER.html ------------------------------------------------------------------------------ svn:keywords = Date Revision Author HeadURL Id Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_SYM_OWNER.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_UNSET.html URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_UNSET.html?rev=821352&view=auto ============================================================================== --- httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_UNSET.html (added) +++ httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_UNSET.html [utf-8] Sat Oct 3 16:20:11 2009 @@ -0,0 +1,60 @@ + + + + Apache 1.3 API: OPT_UNSET + + +

Apache 1.3 API Documentation

+

Constant OPT_UNSET

+

+ Definition: +

+
+
+
+#include "http_core.h"
+     
+
+
+

+ Usage example: +

+
+
+
+/* This value and its meaning are private to the core server. */ 
+     
+
+
+

+ No documentation available. +

+
+
See also:
+
ap_allow_options, + OPT_ALL, + OPT_EXECCGI, + OPT_INCLUDES, + OPT_INCNOEXEC, + OPT_INDEXES, + OPT_MULTI, + OPT_NONE, + OPT_SYM_LINKS, + OPT_SYM_OWNER +
+
+
+

+ Previous: OPT_SYM_OWNER + Next: OR_AUTHCFG +

+

+Table of Contents +(Routines, +Structures, +Data Cells, +Constants) +

+ + Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_UNSET.html ------------------------------------------------------------------------------ svn:eol-style = native Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_UNSET.html ------------------------------------------------------------------------------ svn:keywords = Date Revision Author HeadURL Id Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OPT_UNSET.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: httpd/site/trunk/docs/dev/apidoc/apidoc_OR_AUTHCFG.html URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_OR_AUTHCFG.html?rev=821352&view=auto ============================================================================== --- httpd/site/trunk/docs/dev/apidoc/apidoc_OR_AUTHCFG.html (added) +++ httpd/site/trunk/docs/dev/apidoc/apidoc_OR_AUTHCFG.html [utf-8] Sat Oct 3 16:20:11 2009 @@ -0,0 +1,76 @@ + + + + Apache 1.3 API: OR_AUTHCFG + + +

Apache 1.3 API Documentation

+

Constant OR_AUTHCFG

+

+ Definition: +

+
+
+
+#include "http_config.h"
+     
+
+
+

+ Usage example: +

+
+
+
+static const command_rec module_cmds[] =
+{
+        .
+    {"ModuleDirective", cmd_moduledirective, NULL, OR_AUTHCFG, RAW_ARGS,
+     "description of directive"},
+        .
+    {NULL}
+};
+     
+
+
+

+Allowed locations for a configuration directive are the union of +those indicated by each set bit in the req_override mask in the +command_rec structure. +

+

+A directive with the OR_AUTHCFG bit set may appear +in the server-wide configuration files (e.g., httpd.conf) +inside <Directory> or <Location> containers, and in +.htaccess files when the scope is covered by an +AllowOverride AuthConfig keyword. +

+ +
+
See also:
+
ACCESS_CONF, + ap_allow_overrides, + cmd_parms, + command_rec, + OR_FILEINFO, + OR_INDEXES, + OR_LIMIT, + OR_OPTIONS, + RSRC_CONF +
+
+
+

+ Previous: OPT_UNSET + Next: OR_FILEINFO +

+

+Table of Contents +(Routines, +Structures, +Data Cells, +Constants) +

+ + Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OR_AUTHCFG.html ------------------------------------------------------------------------------ svn:eol-style = native Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OR_AUTHCFG.html ------------------------------------------------------------------------------ svn:keywords = Date Revision Author HeadURL Id Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OR_AUTHCFG.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: httpd/site/trunk/docs/dev/apidoc/apidoc_OR_FILEINFO.html URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_OR_FILEINFO.html?rev=821352&view=auto ============================================================================== --- httpd/site/trunk/docs/dev/apidoc/apidoc_OR_FILEINFO.html (added) +++ httpd/site/trunk/docs/dev/apidoc/apidoc_OR_FILEINFO.html [utf-8] Sat Oct 3 16:20:11 2009 @@ -0,0 +1,76 @@ + + + + Apache 1.3 API: OR_FILEINFO + + +

Apache 1.3 API Documentation

+

Constant OR_FILEINFO

+

+ Definition: +

+
+
+
+#include "http_config.h"
+     
+
+
+

+ Usage example: +

+
+
+
+static const command_rec module_cmds[] =
+{
+        .
+    {"ModuleDirective", cmd_moduledirective, NULL, OR_FILEINFO, RAW_ARGS,
+     "description of directive"},
+        .
+    {NULL}
+};
+     
+
+
+

+Allowed locations for a configuration directive are the union of +those indicated by each set bit in the req_override mask in the +command_rec structure. +

+

+A directive with the OR_FILEINFO bit set may appear +anywhere in the server-wide configuration files (e.g., +httpd.conf), and in +.htaccess files when the scope is covered by an +AllowOverride FileInfo keyword. +

+ +
+
See also:
+
ACCESS_CONF, + ap_allow_overrides, + cmd_parms, + command_rec, + OR_AUTHCFG, + OR_INDEXES, + OR_LIMIT, + OR_OPTIONS, + RSRC_CONF +
+
+
+

+ Previous: OR_AUTHCFG + Next: OR_INDEXES +

+

+Table of Contents +(Routines, +Structures, +Data Cells, +Constants) +

+ + Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OR_FILEINFO.html ------------------------------------------------------------------------------ svn:eol-style = native Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OR_FILEINFO.html ------------------------------------------------------------------------------ svn:keywords = Date Revision Author HeadURL Id Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OR_FILEINFO.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: httpd/site/trunk/docs/dev/apidoc/apidoc_OR_INDEXES.html URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_OR_INDEXES.html?rev=821352&view=auto ============================================================================== --- httpd/site/trunk/docs/dev/apidoc/apidoc_OR_INDEXES.html (added) +++ httpd/site/trunk/docs/dev/apidoc/apidoc_OR_INDEXES.html [utf-8] Sat Oct 3 16:20:11 2009 @@ -0,0 +1,76 @@ + + + + Apache 1.3 API: OR_INDEXES + + +

Apache 1.3 API Documentation

+

Constant OR_INDEXES

+

+ Definition: +

+
+
+
+#include "http_config.h"
+     
+
+
+

+ Usage example: +

+
+
+
+static const command_rec module_cmds[] =
+{
+        .
+    {"ModuleDirective", cmd_moduledirective, NULL, OR_INDEXES, RAW_ARGS,
+     "description of directive"},
+        .
+    {NULL}
+};
+     
+
+
+

+Allowed locations for a configuration directive are the union of +those indicated by each set bit in the req_override mask in the +command_rec structure. +

+

+A directive with the OR_FILEINFO bit set may appear +anywhere in the server-wide configuration files (e.g., +httpd.conf), and in +.htaccess files when the scope is covered by an +AllowOverride Indexes keyword. +

+ +
+
See also:
+
ACCESS_CONF, + ap_allow_overrides, + cmd_parms, + command_rec, + OR_AUTHCFG, + OR_FILEINFO, + OR_LIMIT, + OR_OPTIONS, + RSRC_CONF +
+
+
+

+ Previous: OR_FILEINFO + Next: OR_LIMIT +

+

+Table of Contents +(Routines, +Structures, +Data Cells, +Constants) +

+ + Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OR_INDEXES.html ------------------------------------------------------------------------------ svn:eol-style = native Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OR_INDEXES.html ------------------------------------------------------------------------------ svn:keywords = Date Revision Author HeadURL Id Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OR_INDEXES.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: httpd/site/trunk/docs/dev/apidoc/apidoc_OR_LIMIT.html URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_OR_LIMIT.html?rev=821352&view=auto ============================================================================== --- httpd/site/trunk/docs/dev/apidoc/apidoc_OR_LIMIT.html (added) +++ httpd/site/trunk/docs/dev/apidoc/apidoc_OR_LIMIT.html [utf-8] Sat Oct 3 16:20:11 2009 @@ -0,0 +1,76 @@ + + + + Apache 1.3 API: OR_LIMIT + + +

Apache 1.3 API Documentation

+

Constant OR_LIMIT

+

+ Definition: +

+
+
+
+#include "http_config.h"
+     
+
+
+

+ Usage example: +

+
+
+
+static const command_rec module_cmds[] =
+{
+        .
+    {"ModuleDirective", cmd_moduledirective, NULL, OR_LIMIT, RAW_ARGS,
+     "description of directive"},
+        .
+    {NULL}
+};
+     
+
+
+

+Allowed locations for a configuration directive are the union of +those indicated by each set bit in the req_override mask in the +command_rec structure. +

+

+A directive with the OR_LIMIT bit set may appear +in the server-wide configuration files (e.g., httpd.conf) +inside <Directory> or <Location> containers, and in +.htaccess files when the scope is covered by an +AllowOverride Limit keyword. +

+ +
+
See also:
+
ACCESS_CONF, + ap_allow_overrides, + cmd_parms, + command_rec, + OR_AUTHCFG, + OR_FILEINFO, + OR_INDEXES, + OR_OPTIONS, + RSRC_CONF +
+
+
+

+ Previous: OR_INDEXES + Next: OR_OPTIONS +

+

+Table of Contents +(Routines, +Structures, +Data Cells, +Constants) +

+ + Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OR_LIMIT.html ------------------------------------------------------------------------------ svn:eol-style = native Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OR_LIMIT.html ------------------------------------------------------------------------------ svn:keywords = Date Revision Author HeadURL Id Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OR_LIMIT.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: httpd/site/trunk/docs/dev/apidoc/apidoc_OR_OPTIONS.html URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_OR_OPTIONS.html?rev=821352&view=auto ============================================================================== --- httpd/site/trunk/docs/dev/apidoc/apidoc_OR_OPTIONS.html (added) +++ httpd/site/trunk/docs/dev/apidoc/apidoc_OR_OPTIONS.html [utf-8] Sat Oct 3 16:20:11 2009 @@ -0,0 +1,76 @@ + + + + Apache 1.3 API: OR_OPTIONS + + +

Apache 1.3 API Documentation

+

Constant OR_OPTIONS

+

+ Definition: +

+
+
+
+#include "http_config.h"
+     
+
+
+

+ Usage example: +

+
+
+
+static const command_rec module_cmds[] =
+{
+        .
+    {"ModuleDirective", cmd_moduledirective, NULL, OR_OPTIONS, RAW_ARGS,
+     "description of directive"},
+        .
+    {NULL}
+};
+     
+
+
+

+Allowed locations for a configuration directive are the union of +those indicated by each set bit in the req_override mask in the +command_rec structure. +

+

+A directive with the OR_LIMIT bit set may appear +anywhere in the server-wide configuration files (e.g., +httpd.conf), and in +.htaccess files when the scope is covered by an +AllowOverride Options keyword. +

+ +
+
See also:
+
ACCESS_CONF, + ap_allow_overrides, + cmd_parms, + command_rec, + OR_AUTHCFG, + OR_FILEINFO, + OR_INDEXES, + OR_LIMIT, + RSRC_CONF +
+
+
+

+ Previous: OR_LIMIT + Next: proxyreqtype +

+

+Table of Contents +(Routines, +Structures, +Data Cells, +Constants) +

+ + Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OR_OPTIONS.html ------------------------------------------------------------------------------ svn:eol-style = native Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OR_OPTIONS.html ------------------------------------------------------------------------------ svn:keywords = Date Revision Author HeadURL Id Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OR_OPTIONS.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: httpd/site/trunk/docs/dev/apidoc/apidoc_OS_ASC.html URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_OS_ASC.html?rev=821352&view=auto ============================================================================== --- httpd/site/trunk/docs/dev/apidoc/apidoc_OS_ASC.html (added) +++ httpd/site/trunk/docs/dev/apidoc/apidoc_OS_ASC.html [utf-8] Sat Oct 3 16:20:11 2009 @@ -0,0 +1,61 @@ + + + + Apache 1.3 API: OS_ASC + + +

Apache 1.3 API Documentation

+

Macro OS_ASC

+

+ Definition: +

+
+
+
+#ifndef CHARSET_EBCDIC 
+#define OS_ASC(c) (c) 
+#else 
+#define OS_ASC(c) (os_toascii[c]) 
+#endif 
+     
+
+
+

+ Usage example: +

+
+
+
+if (ch == CR || ch == LF || (OS_ASC(ch) & 0x80)) {
+    return 0;
+}
+     
+
+
+

+ No documentation available. +

+
+
See also:
+
CR, + CRLF, + HUGE_STRING_LEN, + LF, + MAX_STRING_LEN +
+
+
+

+ Previous: opendir + Next: os_spawnle +

+

+Table of Contents +(Routines, +Structures, +Data Cells, +Constants) +

+ + Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OS_ASC.html ------------------------------------------------------------------------------ svn:eol-style = native Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OS_ASC.html ------------------------------------------------------------------------------ svn:keywords = Date Revision Author HeadURL Id Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_OS_ASC.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: httpd/site/trunk/docs/dev/apidoc/apidoc_RAW_ARGS.html URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_RAW_ARGS.html?rev=821352&view=auto ============================================================================== --- httpd/site/trunk/docs/dev/apidoc/apidoc_RAW_ARGS.html (added) +++ httpd/site/trunk/docs/dev/apidoc/apidoc_RAW_ARGS.html [utf-8] Sat Oct 3 16:20:11 2009 @@ -0,0 +1,72 @@ + + + + Apache 1.3 API: RAW_ARGS + + +

Apache 1.3 API Documentation

+

Constant RAW_ARGS

+

+ Definition: +

+
+
+
+#include "httpd.h"
+see cmd_how.
+     
+
+
+

+ Usage example: +

+
+
+
+static const command_rec module_cmds[] =
+{
+        .
+    {"ModuleDirective", cmd_moduledirective, NULL, OR_LIMIT, RAW_ARGS,
+     "directive description"},
+        .
+    {NULL}
+};
+     
+
+
+

+Command function (in cmd_func) parses the command itself. Pstrdup() is +usually used to copy arguments into local storage. +

+ +
+
See also:
+
cmd_how, + FLAG, + ITERATE, + ITERATE2, + NO_ARGS, + TAKE1, + TAKE12, + TAKE123, + TAKE13, + TAKE2, + TAKE23, + TAKE3 +
+
+
+

+ Previous: proxyreqtype + Next: REQUEST_CHUNKED_DECHUNK +

+

+Table of Contents +(Routines, +Structures, +Data Cells, +Constants) +

+ + Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_RAW_ARGS.html ------------------------------------------------------------------------------ svn:eol-style = native Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_RAW_ARGS.html ------------------------------------------------------------------------------ svn:keywords = Date Revision Author HeadURL Id Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_RAW_ARGS.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: httpd/site/trunk/docs/dev/apidoc/apidoc_REQUEST_CHUNKED_DECHUNK.html URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_REQUEST_CHUNKED_DECHUNK.html?rev=821352&view=auto ============================================================================== --- httpd/site/trunk/docs/dev/apidoc/apidoc_REQUEST_CHUNKED_DECHUNK.html (added) +++ httpd/site/trunk/docs/dev/apidoc/apidoc_REQUEST_CHUNKED_DECHUNK.html [utf-8] Sat Oct 3 16:20:11 2009 @@ -0,0 +1,55 @@ + + + + Apache 1.3 API: REQUEST_CHUNKED_DECHUNK + + +

Apache 1.3 API Documentation

+

Constant REQUEST_CHUNKED_DECHUNK

+

+ Definition: +

+
+
+
+#include "httpd.h"
+     
+
+
+

+ Usage example: +

+
+
+
+No examples available.
+     
+
+
+

+ No documentation available. +

+
+
See also:
+
ap_get_client_block, + ap_setup_client_block, + REQUEST_CHUNKED_ERROR, + REQUEST_CHUNKED_PASS, + REQUEST_NO_BODY +
+
+
+

+ Previous: RAW_ARGS + Next: REQUEST_CHUNKED_ERROR +

+

+Table of Contents +(Routines, +Structures, +Data Cells, +Constants) +

+ + Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_REQUEST_CHUNKED_DECHUNK.html ------------------------------------------------------------------------------ svn:eol-style = native Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_REQUEST_CHUNKED_DECHUNK.html ------------------------------------------------------------------------------ svn:keywords = Date Revision Author HeadURL Id Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_REQUEST_CHUNKED_DECHUNK.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: httpd/site/trunk/docs/dev/apidoc/apidoc_REQUEST_CHUNKED_ERROR.html URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_REQUEST_CHUNKED_ERROR.html?rev=821352&view=auto ============================================================================== --- httpd/site/trunk/docs/dev/apidoc/apidoc_REQUEST_CHUNKED_ERROR.html (added) +++ httpd/site/trunk/docs/dev/apidoc/apidoc_REQUEST_CHUNKED_ERROR.html [utf-8] Sat Oct 3 16:20:11 2009 @@ -0,0 +1,55 @@ + + + + Apache 1.3 API: REQUEST_CHUNKED_ERROR + + +

Apache 1.3 API Documentation

+

Constant REQUEST_CHUNKED_ERROR

+

+ Definition: +

+
+
+
+#include "httpd.h"
+     
+
+
+

+ Usage example: +

+
+
+
+No examples available.
+     
+
+
+

+ No documentation available. +

+
+
See also:
+
ap_get_client_block, + ap_setup_client_block, + REQUEST_CHUNKED_DECHUNK, + REQUEST_CHUNKED_PASS, + REQUEST_NO_BODY +
+
+
+

+ Previous: REQUEST_CHUNKED_DECHUNK + Next: REQUEST_CHUNKED_PASS +

+

+Table of Contents +(Routines, +Structures, +Data Cells, +Constants) +

+ + Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_REQUEST_CHUNKED_ERROR.html ------------------------------------------------------------------------------ svn:eol-style = native Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_REQUEST_CHUNKED_ERROR.html ------------------------------------------------------------------------------ svn:keywords = Date Revision Author HeadURL Id Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_REQUEST_CHUNKED_ERROR.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: httpd/site/trunk/docs/dev/apidoc/apidoc_REQUEST_CHUNKED_PASS.html URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_REQUEST_CHUNKED_PASS.html?rev=821352&view=auto ============================================================================== --- httpd/site/trunk/docs/dev/apidoc/apidoc_REQUEST_CHUNKED_PASS.html (added) +++ httpd/site/trunk/docs/dev/apidoc/apidoc_REQUEST_CHUNKED_PASS.html [utf-8] Sat Oct 3 16:20:11 2009 @@ -0,0 +1,55 @@ + + + + Apache 1.3 API: REQUEST_CHUNKED_PASS + + +

Apache 1.3 API Documentation

+

Constant REQUEST_CHUNKED_PASS

+

+ Definition: +

+
+
+
+#include "httpd.h"
+     
+
+
+

+ Usage example: +

+
+
+
+No examples available.
+     
+
+
+

+ No documentation available. +

+
+
See also:
+
ap_get_client_block, + ap_setup_client_block, + REQUEST_CHUNKED_DECHUNK, + REQUEST_CHUNKED_ERROR, + REQUEST_NO_BODY +
+
+
+

+ Previous: REQUEST_CHUNKED_ERROR + Next: REQUEST_NO_BODY +

+

+Table of Contents +(Routines, +Structures, +Data Cells, +Constants) +

+ + Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_REQUEST_CHUNKED_PASS.html ------------------------------------------------------------------------------ svn:eol-style = native Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_REQUEST_CHUNKED_PASS.html ------------------------------------------------------------------------------ svn:keywords = Date Revision Author HeadURL Id Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_REQUEST_CHUNKED_PASS.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: httpd/site/trunk/docs/dev/apidoc/apidoc_REQUEST_NO_BODY.html URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_REQUEST_NO_BODY.html?rev=821352&view=auto ============================================================================== --- httpd/site/trunk/docs/dev/apidoc/apidoc_REQUEST_NO_BODY.html (added) +++ httpd/site/trunk/docs/dev/apidoc/apidoc_REQUEST_NO_BODY.html [utf-8] Sat Oct 3 16:20:11 2009 @@ -0,0 +1,55 @@ + + + + Apache 1.3 API: REQUEST_NO_BODY + + +

Apache 1.3 API Documentation

+

Constant REQUEST_NO_BODY

+

+ Definition: +

+
+
+
+#include "httpd.h"
+     
+
+
+

+ Usage example: +

+
+
+
+No examples available.
+     
+
+
+

+ No documentation available. +

+
+
See also:
+
ap_get_client_block, + ap_setup_client_block, + REQUEST_CHUNKED_DECHUNK, + REQUEST_CHUNKED_ERROR, + REQUEST_CHUNKED_PASS +
+
+
+

+ Previous: REQUEST_CHUNKED_PASS + Next: RSRC_CONF +

+

+Table of Contents +(Routines, +Structures, +Data Cells, +Constants) +

+ + Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_REQUEST_NO_BODY.html ------------------------------------------------------------------------------ svn:eol-style = native Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_REQUEST_NO_BODY.html ------------------------------------------------------------------------------ svn:keywords = Date Revision Author HeadURL Id Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_REQUEST_NO_BODY.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: httpd/site/trunk/docs/dev/apidoc/apidoc_RSRC_CONF.html URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_RSRC_CONF.html?rev=821352&view=auto ============================================================================== --- httpd/site/trunk/docs/dev/apidoc/apidoc_RSRC_CONF.html (added) +++ httpd/site/trunk/docs/dev/apidoc/apidoc_RSRC_CONF.html [utf-8] Sat Oct 3 16:20:11 2009 @@ -0,0 +1,74 @@ + + + + Apache 1.3 API: RSRC_CONF + + +

Apache 1.3 API Documentation

+

Constant RSRC_CONF

+

+ Definition: +

+
+
+
+#include "http_config.h"
+     
+
+
+

+ Usage example: +

+
+
+
+static const command_rec module_cmds[] =
+{
+        .
+    {"ModuleDirective", cmd_moduledirective, NULL, RSRC_CONF, RAW_ARGS,
+     "description of directive"},
+        .
+    {NULL}
+};
+     
+
+
+

+Allowed locations for a configuration directive are the union of +those indicated by each set bit in the req_override mask in the +command_rec structure. +

+

+A directive with the RSRC_CONF bit set may appear +in the server-wide configuration files (e.g., httpd.conf) +outside <Directory> or <Location> containers. +

+ +
+
See also:
+
ACCESS_CONF, + ap_allow_overrides, + cmd_parms, + command_rec, + OR_AUTHCFG, + OR_FILEINFO, + OR_INDEXES, + OR_LIMIT, + OR_OPTIONS +
+
+
+

+ Previous: REQUEST_NO_BODY + Next: SECURITY_HOLE_PASS_AUTHORIZATION +

+

+Table of Contents +(Routines, +Structures, +Data Cells, +Constants) +

+ + Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_RSRC_CONF.html ------------------------------------------------------------------------------ svn:eol-style = native Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_RSRC_CONF.html ------------------------------------------------------------------------------ svn:keywords = Date Revision Author HeadURL Id Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_RSRC_CONF.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: httpd/site/trunk/docs/dev/apidoc/apidoc_SECURITY_HOLE_PASS_AUTHORIZATION.html URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_SECURITY_HOLE_PASS_AUTHORIZATION.html?rev=821352&view=auto ============================================================================== --- httpd/site/trunk/docs/dev/apidoc/apidoc_SECURITY_HOLE_PASS_AUTHORIZATION.html (added) +++ httpd/site/trunk/docs/dev/apidoc/apidoc_SECURITY_HOLE_PASS_AUTHORIZATION.html [utf-8] Sat Oct 3 16:20:11 2009 @@ -0,0 +1,83 @@ + + + + Apache 1.3 API: SECURITY_HOLE_PASS_AUTHORIZATION + + +

Apache 1.3 API Documentation

+

Constant SECURITY_HOLE_PASS_AUTHORIZATION

+

+ Definition: +

+
+
+
+Compile-time definition
+     
+
+
+

+ Usage example: +

+
+
+
+env CFLAGS="-Wall -DSECURITY_HOLE_PASS_AUTHORIZATION" ./configure
+     
+
+
+

+When user authentication is required to obtain access to a document, +the user credentials (username and password) are available to the +server. Ordinarily Apache only makes the username available to +mod_include and CGI scripts, keeping the password +secret. It can be configured to make the complete credential +details available (in the HTTP_AUTHORIZATION or +HTTP_PROXY_AUTHORIZATION environment variables), +but only by completely rebuilding the server with this +compile-time definition added (as shown in the example). +

+

+Warning: Enabling this feature is considered a security +risk, as scripts and documents can capture all aspects of the +user credentials. For example, your configuration may include +an authentication database that is accessible only by the server, +and not directly available to users. With this feature enabled, +any script that is flagged as needing authentication checks against +that database, even a user script, will be able to capture the +credentials. In the case of Basic authentication, +the password is available in cleartext. +

+ +
+
See also:
+
BIG_SECURITY_HOLE, + DEFAULT_ADMIN, + DEFAULT_CONTENT_TYPE, + DEFAULT_INDEX, + DEFAULT_KEEPALIVE, + DEFAULT_KEEPALIVE_TIMEOUT, + DEFAULT_PATH, + DEFAULT_TIMEOUT, + DOCUMENT_LOCATION, + DYNAMIC_MODULE_LIMIT, + HARD_SERVER_LIMIT, + HTTPD_ROOT, + TARGET +
+
+
+

+ Previous: RSRC_CONF + Next: SERVER_BUSY_DNS +

+

+Table of Contents +(Routines, +Structures, +Data Cells, +Constants) +

+ + Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_SECURITY_HOLE_PASS_AUTHORIZATION.html ------------------------------------------------------------------------------ svn:eol-style = native Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_SECURITY_HOLE_PASS_AUTHORIZATION.html ------------------------------------------------------------------------------ svn:keywords = Date Revision Author HeadURL Id Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_SECURITY_HOLE_PASS_AUTHORIZATION.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: httpd/site/trunk/docs/dev/apidoc/apidoc_SERVER_BUSY_DNS.html URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_SERVER_BUSY_DNS.html?rev=821352&view=auto ============================================================================== --- httpd/site/trunk/docs/dev/apidoc/apidoc_SERVER_BUSY_DNS.html (added) +++ httpd/site/trunk/docs/dev/apidoc/apidoc_SERVER_BUSY_DNS.html [utf-8] Sat Oct 3 16:20:11 2009 @@ -0,0 +1,74 @@ + + + + Apache 1.3 API: SERVER_BUSY_DNS + + +

Apache 1.3 API Documentation

+

Constant SERVER_BUSY_DNS

+

+ Definition: +

+
+
+
+#include "scoreboard.h"
+     
+
+
+

+ Usage example: +

+
+
+
+switch (score_record.status) {
+case SERVER_BUSY_DNS: 
+    ap_rputs("<B>DNS lookup</B>", r); 
+    break;
+}
+     
+
+
+

+Scoreboard state constant indicating the server is performing a DNS lookup. +

+ +
+
See also:
+
ap_exists_scoreboard_image, + ap_scoreboard_image, + ap_sync_scoreboard_image, + global_score, + parent_score, + scoreboard, + SERVER_BUSY_KEEPALIVE, + SERVER_BUSY_LOG, + SERVER_BUSY_READ, + SERVER_BUSY_WRITE, + SERVER_DEAD, + SERVER_GRACEFUL, + SERVER_NUM_STATUS, + SERVER_READY, + SERVER_STARTING, + short_score, + START_PREQUEST, + STOP_PREQUEST, + vtime_t +
+
+
+

+ Previous: SECURITY_HOLE_PASS_AUTHORIZATION + Next: SERVER_BUSY_KEEPALIVE +

+

+Table of Contents +(Routines, +Structures, +Data Cells, +Constants) +

+ + Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_SERVER_BUSY_DNS.html ------------------------------------------------------------------------------ svn:eol-style = native Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_SERVER_BUSY_DNS.html ------------------------------------------------------------------------------ svn:keywords = Date Revision Author HeadURL Id Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_SERVER_BUSY_DNS.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: httpd/site/trunk/docs/dev/apidoc/apidoc_SERVER_BUSY_KEEPALIVE.html URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_SERVER_BUSY_KEEPALIVE.html?rev=821352&view=auto ============================================================================== --- httpd/site/trunk/docs/dev/apidoc/apidoc_SERVER_BUSY_KEEPALIVE.html (added) +++ httpd/site/trunk/docs/dev/apidoc/apidoc_SERVER_BUSY_KEEPALIVE.html [utf-8] Sat Oct 3 16:20:11 2009 @@ -0,0 +1,75 @@ + + + + Apache 1.3 API: SERVER_BUSY_KEEPALIVE + + +

Apache 1.3 API Documentation

+

Constant SERVER_BUSY_KEEPALIVE

+

+ Definition: +

+
+
+
+#include "scoreboard.h"
+     
+
+
+

+ Usage example: +

+
+
+
+switch (score_record.status) {
+case SERVER_BUSY_KEEPALIVE: 
+    ap_rputs("<B>Keepalive</B>", r); 
+    break;
+}
+     
+
+
+

+Scoreboard state constant indicating the server is servicing a +keepalive (persistent HTTP) request +

+ +
+
See also:
+
ap_exists_scoreboard_image, + ap_scoreboard_image, + ap_sync_scoreboard_image, + global_score, + parent_score, + scoreboard, + SERVER_BUSY_DNS, + SERVER_BUSY_LOG, + SERVER_BUSY_READ, + SERVER_BUSY_WRITE, + SERVER_DEAD, + SERVER_GRACEFUL, + SERVER_NUM_STATUS, + SERVER_READY, + SERVER_STARTING, + short_score, + START_PREQUEST, + STOP_PREQUEST, + vtime_t +
+
+
+

+ Previous: SERVER_BUSY_DNS + Next: SERVER_BUSY_LOG +

+

+Table of Contents +(Routines, +Structures, +Data Cells, +Constants) +

+ + Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_SERVER_BUSY_KEEPALIVE.html ------------------------------------------------------------------------------ svn:eol-style = native Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_SERVER_BUSY_KEEPALIVE.html ------------------------------------------------------------------------------ svn:keywords = Date Revision Author HeadURL Id Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_SERVER_BUSY_KEEPALIVE.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: httpd/site/trunk/docs/dev/apidoc/apidoc_SERVER_BUSY_LOG.html URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_SERVER_BUSY_LOG.html?rev=821352&view=auto ============================================================================== --- httpd/site/trunk/docs/dev/apidoc/apidoc_SERVER_BUSY_LOG.html (added) +++ httpd/site/trunk/docs/dev/apidoc/apidoc_SERVER_BUSY_LOG.html [utf-8] Sat Oct 3 16:20:11 2009 @@ -0,0 +1,74 @@ + + + + Apache 1.3 API: SERVER_BUSY_LOG + + +

Apache 1.3 API Documentation

+

Constant SERVER_BUSY_LOG

+

+ Definition: +

+
+
+
+#include "scoreboard.h"
+     
+
+
+

+ Usage example: +

+
+
+
+switch (score_record.status) {
+case SERVER_BUSY_LOG: 
+    ap_rputs("<B>Logging</B>", r); 
+    break;
+}
+     
+
+
+

+Scoreboard state constant indicating the server is writing to a log file. +

+ +
+
See also:
+
ap_exists_scoreboard_image, + ap_scoreboard_image, + ap_sync_scoreboard_image, + global_score, + parent_score, + scoreboard, + SERVER_BUSY_DNS, + SERVER_BUSY_KEEPALIVE, + SERVER_BUSY_READ, + SERVER_BUSY_WRITE, + SERVER_DEAD, + SERVER_GRACEFUL, + SERVER_NUM_STATUS, + SERVER_READY, + SERVER_STARTING, + short_score, + START_PREQUEST, + STOP_PREQUEST, + vtime_t +
+
+
+

+ Previous: SERVER_BUSY_KEEPALIVE + Next: SERVER_BUSY_READ +

+

+Table of Contents +(Routines, +Structures, +Data Cells, +Constants) +

+ + Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_SERVER_BUSY_LOG.html ------------------------------------------------------------------------------ svn:eol-style = native Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_SERVER_BUSY_LOG.html ------------------------------------------------------------------------------ svn:keywords = Date Revision Author HeadURL Id Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_SERVER_BUSY_LOG.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: httpd/site/trunk/docs/dev/apidoc/apidoc_SERVER_BUSY_READ.html URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_SERVER_BUSY_READ.html?rev=821352&view=auto ============================================================================== --- httpd/site/trunk/docs/dev/apidoc/apidoc_SERVER_BUSY_READ.html (added) +++ httpd/site/trunk/docs/dev/apidoc/apidoc_SERVER_BUSY_READ.html [utf-8] Sat Oct 3 16:20:11 2009 @@ -0,0 +1,75 @@ + + + + Apache 1.3 API: SERVER_BUSY_READ + + +

Apache 1.3 API Documentation

+

Constant SERVER_BUSY_READ

+

+ Definition: +

+
+
+
+#include "scoreboard.h"
+     
+
+
+

+ Usage example: +

+
+
+
+switch (score_record.status) {
+case SERVER_BUSY_READ: 
+    ap_rputs("<B>Read</B>", r); 
+    break;
+}
+     
+
+
+

+Scoreboard state constant indicating the server is reading data from +a client (browser). +

+ +
+
See also:
+
ap_exists_scoreboard_image, + ap_scoreboard_image, + ap_sync_scoreboard_image, + global_score, + parent_score, + scoreboard, + SERVER_BUSY_DNS, + SERVER_BUSY_KEEPALIVE, + SERVER_BUSY_LOG, + SERVER_BUSY_WRITE, + SERVER_DEAD, + SERVER_GRACEFUL, + SERVER_NUM_STATUS, + SERVER_READY, + SERVER_STARTING, + short_score, + START_PREQUEST, + STOP_PREQUEST, + vtime_t +
+
+
+

+ Previous: SERVER_BUSY_LOG + Next: SERVER_BUSY_WRITE +

+

+Table of Contents +(Routines, +Structures, +Data Cells, +Constants) +

+ + Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_SERVER_BUSY_READ.html ------------------------------------------------------------------------------ svn:eol-style = native Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_SERVER_BUSY_READ.html ------------------------------------------------------------------------------ svn:keywords = Date Revision Author HeadURL Id Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_SERVER_BUSY_READ.html ------------------------------------------------------------------------------ svn:mime-type = text/html