You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by pq...@apache.org on 2009/10/03 18:20:35 UTC

svn commit: r821352 [13/34] - /httpd/site/trunk/docs/dev/apidoc/

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 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: OPT_ALL</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Constant OPT_ALL</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+#include "http_core.h"
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+if ((<a href="apidoc_ap_allow_options.html">ap_allow_options</a>(r) &amp; OPT_ALL) == OPT_ALL) {
+    /* Options All covers this location
+     * Equivalent to Options [+]Indexes [+]Includes [+]ExecCGI [+]FollowSymLinks
+     */
+} 
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ap_allow_options.html"><samp>ap_allow_options</samp></a>,
+        <a href="apidoc_OPT_EXECCGI.html"><samp>OPT_EXECCGI</samp></a>,
+        <a href="apidoc_OPT_INCLUDES.html"><samp>OPT_INCLUDES</samp></a>,
+        <a href="apidoc_OPT_INCNOEXEC.html"><samp>OPT_INCNOEXEC</samp></a>,
+        <a href="apidoc_OPT_INDEXES.html"><samp>OPT_INDEXES</samp></a>,
+        <a href="apidoc_OPT_MULTI.html"><samp>OPT_MULTI</samp></a>,
+        <a href="apidoc_OPT_NONE.html"><samp>OPT_NONE</samp></a>,
+        <a href="apidoc_OPT_SYM_LINKS.html"><samp>OPT_SYM_LINKS</samp></a>,
+        <a href="apidoc_OPT_SYM_OWNER.html"><samp>OPT_SYM_OWNER</samp></a>,
+        <a href="apidoc_OPT_UNSET.html"><samp>OPT_UNSET</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_OK.html"><code>OK</code></a>
+  Next: <a href="apidoc_OPT_EXECCGI.html"><code>OPT_EXECCGI</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

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 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: OPT_EXECCGI</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Constant OPT_EXECCGI</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+#include "http_core.h"
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+if (<a href="apidoc_ap_allow_options.html">ap_allow_options</a>(r) &amp; OPT_EXECCGI) {
+    /* Options [+]ExecCGI covers this location */
+} 
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ap_allow_options.html"><samp>ap_allow_options</samp></a>,
+        <a href="apidoc_OPT_ALL.html"><samp>OPT_ALL</samp></a>,
+        <a href="apidoc_OPT_INCLUDES.html"><samp>OPT_INCLUDES</samp></a>,
+        <a href="apidoc_OPT_INCNOEXEC.html"><samp>OPT_INCNOEXEC</samp></a>,
+        <a href="apidoc_OPT_INDEXES.html"><samp>OPT_INDEXES</samp></a>,
+        <a href="apidoc_OPT_MULTI.html"><samp>OPT_MULTI</samp></a>,
+        <a href="apidoc_OPT_NONE.html"><samp>OPT_NONE</samp></a>,
+        <a href="apidoc_OPT_SYM_LINKS.html"><samp>OPT_SYM_LINKS</samp></a>,
+        <a href="apidoc_OPT_SYM_OWNER.html"><samp>OPT_SYM_OWNER</samp></a>,
+        <a href="apidoc_OPT_UNSET.html"><samp>OPT_UNSET</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_OPT_ALL.html"><code>OPT_ALL</code></a>
+  Next: <a href="apidoc_OPT_INCLUDES.html"><code>OPT_INCLUDES</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

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 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: OPT_INCLUDES</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Constant OPT_INCLUDES</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+#include "http_core.h"
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+if (<a href="apidoc_ap_allow_options.html">ap_allow_options</a>(r) &amp; OPT_INCLUDES) {
+    /* Options [+]Includes covers this location */
+} 
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ap_allow_options.html"><samp>ap_allow_options</samp></a>,
+        <a href="apidoc_OPT_ALL.html"><samp>OPT_ALL</samp></a>,
+        <a href="apidoc_OPT_EXECCGI.html"><samp>OPT_EXECCGI</samp></a>,
+        <a href="apidoc_OPT_INCNOEXEC.html"><samp>OPT_INCNOEXEC</samp></a>,
+        <a href="apidoc_OPT_INDEXES.html"><samp>OPT_INDEXES</samp></a>,
+        <a href="apidoc_OPT_MULTI.html"><samp>OPT_MULTI</samp></a>,
+        <a href="apidoc_OPT_NONE.html"><samp>OPT_NONE</samp></a>,
+        <a href="apidoc_OPT_SYM_LINKS.html"><samp>OPT_SYM_LINKS</samp></a>,
+        <a href="apidoc_OPT_SYM_OWNER.html"><samp>OPT_SYM_OWNER</samp></a>,
+        <a href="apidoc_OPT_UNSET.html"><samp>OPT_UNSET</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_OPT_EXECCGI.html"><code>OPT_EXECCGI</code></a>
+  Next: <a href="apidoc_OPT_INCNOEXEC.html"><code>OPT_INCNOEXEC</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

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 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: OPT_INCNOEXEC</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Constant OPT_INCNOEXEC</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+#include "http_core.h"
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+if (<a href="apidoc_ap_allow_options.html">ap_allow_options</a>(r) &amp; OPT_INCNOEXEC) {
+    /* Options [+]IncludesNoExec covers this location */
+} 
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ap_allow_options.html"><samp>ap_allow_options</samp></a>,
+        <a href="apidoc_OPT_ALL.html"><samp>OPT_ALL</samp></a>,
+        <a href="apidoc_OPT_EXECCGI.html"><samp>OPT_EXECCGI</samp></a>,
+        <a href="apidoc_OPT_INCLUDES.html"><samp>OPT_INCLUDES</samp></a>,
+        <a href="apidoc_OPT_INDEXES.html"><samp>OPT_INDEXES</samp></a>,
+        <a href="apidoc_OPT_MULTI.html"><samp>OPT_MULTI</samp></a>,
+        <a href="apidoc_OPT_NONE.html"><samp>OPT_NONE</samp></a>,
+        <a href="apidoc_OPT_SYM_LINKS.html"><samp>OPT_SYM_LINKS</samp></a>,
+        <a href="apidoc_OPT_SYM_OWNER.html"><samp>OPT_SYM_OWNER</samp></a>,
+        <a href="apidoc_OPT_UNSET.html"><samp>OPT_UNSET</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_OPT_INCLUDES.html"><code>OPT_INCLUDES</code></a>
+  Next: <a href="apidoc_OPT_INDEXES.html"><code>OPT_INDEXES</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

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 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: OPT_INDEXES</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Constant OPT_INDEXES</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+#include "http_core.h"
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+if (<a href="apidoc_ap_allow_options.html">ap_allow_options</a>(r) &amp; OPT_INDEXES) {
+    /* Options [+]Indexes covers this location */
+} 
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ap_allow_options.html"><samp>ap_allow_options</samp></a>,
+        <a href="apidoc_OPT_ALL.html"><samp>OPT_ALL</samp></a>,
+        <a href="apidoc_OPT_EXECCGI.html"><samp>OPT_EXECCGI</samp></a>,
+        <a href="apidoc_OPT_INCLUDES.html"><samp>OPT_INCLUDES</samp></a>,
+        <a href="apidoc_OPT_INCNOEXEC.html"><samp>OPT_INCNOEXEC</samp></a>,
+        <a href="apidoc_OPT_MULTI.html"><samp>OPT_MULTI</samp></a>,
+        <a href="apidoc_OPT_NONE.html"><samp>OPT_NONE</samp></a>,
+        <a href="apidoc_OPT_SYM_LINKS.html"><samp>OPT_SYM_LINKS</samp></a>,
+        <a href="apidoc_OPT_SYM_OWNER.html"><samp>OPT_SYM_OWNER</samp></a>,
+        <a href="apidoc_OPT_UNSET.html"><samp>OPT_UNSET</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_OPT_INCNOEXEC.html"><code>OPT_INCNOEXEC</code></a>
+  Next: <a href="apidoc_OPT_MULTI.html"><code>OPT_MULTI</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

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 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: OPT_MULTI</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Constant OPT_MULTI</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+#include "http_core.h"
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+if (<a href="apidoc_ap_allow_options.html">ap_allow_options</a>(r) &amp; OPT_MULTI) {
+    /* Options [+]MultiViews covers this location */
+} 
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ap_allow_options.html"><samp>ap_allow_options</samp></a>,
+        <a href="apidoc_OPT_ALL.html"><samp>OPT_ALL</samp></a>,
+        <a href="apidoc_OPT_EXECCGI.html"><samp>OPT_EXECCGI</samp></a>,
+        <a href="apidoc_OPT_INCLUDES.html"><samp>OPT_INCLUDES</samp></a>,
+        <a href="apidoc_OPT_INCNOEXEC.html"><samp>OPT_INCNOEXEC</samp></a>,
+        <a href="apidoc_OPT_INDEXES.html"><samp>OPT_INDEXES</samp></a>,
+        <a href="apidoc_OPT_NONE.html"><samp>OPT_NONE</samp></a>,
+        <a href="apidoc_OPT_SYM_LINKS.html"><samp>OPT_SYM_LINKS</samp></a>,
+        <a href="apidoc_OPT_SYM_OWNER.html"><samp>OPT_SYM_OWNER</samp></a>,
+        <a href="apidoc_OPT_UNSET.html"><samp>OPT_UNSET</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_OPT_INDEXES.html"><code>OPT_INDEXES</code></a>
+  Next: <a href="apidoc_OPT_NONE.html"><code>OPT_NONE</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

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 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: OPT_NONE</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Constant OPT_NONE</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+#include "http_core.h"
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+if (<a href="apidoc_ap_allow_options.html">ap_allow_options</a>(r) == OPT_NONE) {
+    /* No Options keywords are active for this location */
+} return <a href="apidoc_DECLINED.html">DECLINED</a>;
+} 
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ap_allow_options.html"><samp>ap_allow_options</samp></a>,
+        <a href="apidoc_OPT_ALL.html"><samp>OPT_ALL</samp></a>,
+        <a href="apidoc_OPT_EXECCGI.html"><samp>OPT_EXECCGI</samp></a>,
+        <a href="apidoc_OPT_INCLUDES.html"><samp>OPT_INCLUDES</samp></a>,
+        <a href="apidoc_OPT_INCNOEXEC.html"><samp>OPT_INCNOEXEC</samp></a>,
+        <a href="apidoc_OPT_INDEXES.html"><samp>OPT_INDEXES</samp></a>,
+        <a href="apidoc_OPT_MULTI.html"><samp>OPT_MULTI</samp></a>,
+        <a href="apidoc_OPT_SYM_LINKS.html"><samp>OPT_SYM_LINKS</samp></a>,
+        <a href="apidoc_OPT_SYM_OWNER.html"><samp>OPT_SYM_OWNER</samp></a>,
+        <a href="apidoc_OPT_UNSET.html"><samp>OPT_UNSET</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_OPT_MULTI.html"><code>OPT_MULTI</code></a>
+  Next: <a href="apidoc_OPT_SYM_LINKS.html"><code>OPT_SYM_LINKS</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

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 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: OPT_SYM_LINKS</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Constant OPT_SYM_LINKS</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+#include "http_core.h"
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+if (<a href="apidoc_ap_allow_options.html">ap_allow_options</a>(r) &amp; OPT_SYM_LINKS) {
+    /* Options [+]FollowSymLinks covers this location */
+} 
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ap_allow_options.html"><samp>ap_allow_options</samp></a>,
+        <a href="apidoc_OPT_ALL.html"><samp>OPT_ALL</samp></a>,
+        <a href="apidoc_OPT_EXECCGI.html"><samp>OPT_EXECCGI</samp></a>,
+        <a href="apidoc_OPT_INCLUDES.html"><samp>OPT_INCLUDES</samp></a>,
+        <a href="apidoc_OPT_INCNOEXEC.html"><samp>OPT_INCNOEXEC</samp></a>,
+        <a href="apidoc_OPT_INDEXES.html"><samp>OPT_INDEXES</samp></a>,
+        <a href="apidoc_OPT_MULTI.html"><samp>OPT_MULTI</samp></a>,
+        <a href="apidoc_OPT_NONE.html"><samp>OPT_NONE</samp></a>,
+        <a href="apidoc_OPT_SYM_OWNER.html"><samp>OPT_SYM_OWNER</samp></a>,
+        <a href="apidoc_OPT_UNSET.html"><samp>OPT_UNSET</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_OPT_NONE.html"><code>OPT_NONE</code></a>
+  Next: <a href="apidoc_OPT_SYM_OWNER.html"><code>OPT_SYM_OWNER</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

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 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: OPT_SYM_OWNER</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Constant OPT_SYM_OWNER</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+#include "http_core.h"
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+if (<a href="apidoc_ap_allow_options.html">ap_allow_options</a>(r) &amp; OPT_SYM_OWNER) {
+    /* Options [+]SymLinksIfOwnerMatch covers this location */
+} 
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ap_allow_options.html"><samp>ap_allow_options</samp></a>,
+        <a href="apidoc_OPT_ALL.html"><samp>OPT_ALL</samp></a>,
+        <a href="apidoc_OPT_EXECCGI.html"><samp>OPT_EXECCGI</samp></a>,
+        <a href="apidoc_OPT_INCLUDES.html"><samp>OPT_INCLUDES</samp></a>,
+        <a href="apidoc_OPT_INCNOEXEC.html"><samp>OPT_INCNOEXEC</samp></a>,
+        <a href="apidoc_OPT_INDEXES.html"><samp>OPT_INDEXES</samp></a>,
+        <a href="apidoc_OPT_MULTI.html"><samp>OPT_MULTI</samp></a>,
+        <a href="apidoc_OPT_NONE.html"><samp>OPT_NONE</samp></a>,
+        <a href="apidoc_OPT_SYM_LINKS.html"><samp>OPT_SYM_LINKS</samp></a>,
+        <a href="apidoc_OPT_UNSET.html"><samp>OPT_UNSET</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_OPT_SYM_LINKS.html"><code>OPT_SYM_LINKS</code></a>
+  Next: <a href="apidoc_OPT_UNSET.html"><code>OPT_UNSET</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

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 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: OPT_UNSET</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Constant OPT_UNSET</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+#include "http_core.h"
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+/* This value and its meaning are private to the core server. */ 
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ap_allow_options.html"><samp>ap_allow_options</samp></a>,
+        <a href="apidoc_OPT_ALL.html"><samp>OPT_ALL</samp></a>,
+        <a href="apidoc_OPT_EXECCGI.html"><samp>OPT_EXECCGI</samp></a>,
+        <a href="apidoc_OPT_INCLUDES.html"><samp>OPT_INCLUDES</samp></a>,
+        <a href="apidoc_OPT_INCNOEXEC.html"><samp>OPT_INCNOEXEC</samp></a>,
+        <a href="apidoc_OPT_INDEXES.html"><samp>OPT_INDEXES</samp></a>,
+        <a href="apidoc_OPT_MULTI.html"><samp>OPT_MULTI</samp></a>,
+        <a href="apidoc_OPT_NONE.html"><samp>OPT_NONE</samp></a>,
+        <a href="apidoc_OPT_SYM_LINKS.html"><samp>OPT_SYM_LINKS</samp></a>,
+        <a href="apidoc_OPT_SYM_OWNER.html"><samp>OPT_SYM_OWNER</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_OPT_SYM_OWNER.html"><code>OPT_SYM_OWNER</code></a>
+  Next: <a href="apidoc_OR_AUTHCFG.html"><code>OR_AUTHCFG</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

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 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: OR_AUTHCFG</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Constant OR_AUTHCFG</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+#include "http_config.h"
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+static const <a href="apidoc_command_rec.html">command_rec</a> module_cmds[] =
+{
+        .
+    {"ModuleDirective", cmd_moduledirective, NULL, OR_AUTHCFG, <a href="apidoc_RAW_ARGS.html">RAW_ARGS</a>,
+     "description of directive"},
+        .
+    {NULL}
+};
+     </pre>
+    </dd>
+   </dl>
+<p>
+Allowed locations for a configuration directive are the union of
+those indicated by each set bit in the <code>req_override</code> mask in the
+<code><a href="apidoc_command_rec.html">command_rec</a></code> structure.
+</p>
+<p>
+A directive with the <code>OR_AUTHCFG</code> bit set may appear
+in the server-wide configuration files (<i>e.g.</i>, <code>httpd.conf</code>)
+inside &lt;Directory&gt; or &lt;Location&gt; containers, and in
+<code>.htaccess</code> files when the scope is covered by an
+<code>AllowOverride&nbsp;AuthConfig</code> keyword.
+</p>
+
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ACCESS_CONF.html"><samp>ACCESS_CONF</samp></a>,
+        <a href="apidoc_ap_allow_overrides.html"><samp>ap_allow_overrides</samp></a>,
+        <a href="apidoc_cmd_parms.html"><samp>cmd_parms</samp></a>,
+        <a href="apidoc_command_rec.html"><samp>command_rec</samp></a>,
+        <a href="apidoc_OR_FILEINFO.html"><samp>OR_FILEINFO</samp></a>,
+        <a href="apidoc_OR_INDEXES.html"><samp>OR_INDEXES</samp></a>,
+        <a href="apidoc_OR_LIMIT.html"><samp>OR_LIMIT</samp></a>,
+        <a href="apidoc_OR_OPTIONS.html"><samp>OR_OPTIONS</samp></a>,
+        <a href="apidoc_RSRC_CONF.html"><samp>RSRC_CONF</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_OPT_UNSET.html"><code>OPT_UNSET</code></a>
+  Next: <a href="apidoc_OR_FILEINFO.html"><code>OR_FILEINFO</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

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 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: OR_FILEINFO</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Constant OR_FILEINFO</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+#include "http_config.h"
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+static const <a href="apidoc_command_rec.html">command_rec</a> module_cmds[] =
+{
+        .
+    {"ModuleDirective", cmd_moduledirective, NULL, OR_FILEINFO, <a href="apidoc_RAW_ARGS.html">RAW_ARGS</a>,
+     "description of directive"},
+        .
+    {NULL}
+};
+     </pre>
+    </dd>
+   </dl>
+<p>
+Allowed locations for a configuration directive are the union of
+those indicated by each set bit in the <code>req_override</code> mask in the
+<code><a href="apidoc_command_rec.html">command_rec</a></code> structure.
+</p>
+<p>
+A directive with the <code>OR_FILEINFO</code> bit set may appear
+anywhere in the server-wide configuration files (<i>e.g.</i>,
+<code>httpd.conf</code>), and in
+<code>.htaccess</code> files when the scope is covered by an
+<code>AllowOverride&nbsp;FileInfo</code> keyword.
+</p>
+
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ACCESS_CONF.html"><samp>ACCESS_CONF</samp></a>,
+        <a href="apidoc_ap_allow_overrides.html"><samp>ap_allow_overrides</samp></a>,
+        <a href="apidoc_cmd_parms.html"><samp>cmd_parms</samp></a>,
+        <a href="apidoc_command_rec.html"><samp>command_rec</samp></a>,
+        <a href="apidoc_OR_AUTHCFG.html"><samp>OR_AUTHCFG</samp></a>,
+        <a href="apidoc_OR_INDEXES.html"><samp>OR_INDEXES</samp></a>,
+        <a href="apidoc_OR_LIMIT.html"><samp>OR_LIMIT</samp></a>,
+        <a href="apidoc_OR_OPTIONS.html"><samp>OR_OPTIONS</samp></a>,
+        <a href="apidoc_RSRC_CONF.html"><samp>RSRC_CONF</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_OR_AUTHCFG.html"><code>OR_AUTHCFG</code></a>
+  Next: <a href="apidoc_OR_INDEXES.html"><code>OR_INDEXES</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

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 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: OR_INDEXES</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Constant OR_INDEXES</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+#include "http_config.h"
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+static const <a href="apidoc_command_rec.html">command_rec</a> module_cmds[] =
+{
+        .
+    {"ModuleDirective", cmd_moduledirective, NULL, OR_INDEXES, <a href="apidoc_RAW_ARGS.html">RAW_ARGS</a>,
+     "description of directive"},
+        .
+    {NULL}
+};
+     </pre>
+    </dd>
+   </dl>
+<p>
+Allowed locations for a configuration directive are the union of
+those indicated by each set bit in the <code>req_override</code> mask in the
+<code><a href="apidoc_command_rec.html">command_rec</a></code> structure.
+</p>
+<p>
+A directive with the <code><a href="apidoc_OR_FILEINFO.html">OR_FILEINFO</a></code> bit set may appear
+anywhere in the server-wide configuration files (<i>e.g.</i>,
+<code>httpd.conf</code>), and in
+<code>.htaccess</code> files when the scope is covered by an
+<code>AllowOverride&nbsp;Indexes</code> keyword.
+</p>
+
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ACCESS_CONF.html"><samp>ACCESS_CONF</samp></a>,
+        <a href="apidoc_ap_allow_overrides.html"><samp>ap_allow_overrides</samp></a>,
+        <a href="apidoc_cmd_parms.html"><samp>cmd_parms</samp></a>,
+        <a href="apidoc_command_rec.html"><samp>command_rec</samp></a>,
+        <a href="apidoc_OR_AUTHCFG.html"><samp>OR_AUTHCFG</samp></a>,
+        <a href="apidoc_OR_FILEINFO.html"><samp>OR_FILEINFO</samp></a>,
+        <a href="apidoc_OR_LIMIT.html"><samp>OR_LIMIT</samp></a>,
+        <a href="apidoc_OR_OPTIONS.html"><samp>OR_OPTIONS</samp></a>,
+        <a href="apidoc_RSRC_CONF.html"><samp>RSRC_CONF</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_OR_FILEINFO.html"><code>OR_FILEINFO</code></a>
+  Next: <a href="apidoc_OR_LIMIT.html"><code>OR_LIMIT</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

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 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: OR_LIMIT</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Constant OR_LIMIT</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+#include "http_config.h"
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+static const <a href="apidoc_command_rec.html">command_rec</a> module_cmds[] =
+{
+        .
+    {"ModuleDirective", cmd_moduledirective, NULL, OR_LIMIT, <a href="apidoc_RAW_ARGS.html">RAW_ARGS</a>,
+     "description of directive"},
+        .
+    {NULL}
+};
+     </pre>
+    </dd>
+   </dl>
+<p>
+Allowed locations for a configuration directive are the union of
+those indicated by each set bit in the <code>req_override</code> mask in the
+<code><a href="apidoc_command_rec.html">command_rec</a></code> structure.
+</p>
+<p>
+A directive with the <code>OR_LIMIT</code> bit set may appear
+in the server-wide configuration files (<i>e.g.</i>, <code>httpd.conf</code>)
+inside &lt;Directory&gt; or &lt;Location&gt; containers, and in
+<code>.htaccess</code> files when the scope is covered by an
+<code>AllowOverride&nbsp;Limit</code> keyword.
+</p>
+
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ACCESS_CONF.html"><samp>ACCESS_CONF</samp></a>,
+        <a href="apidoc_ap_allow_overrides.html"><samp>ap_allow_overrides</samp></a>,
+        <a href="apidoc_cmd_parms.html"><samp>cmd_parms</samp></a>,
+        <a href="apidoc_command_rec.html"><samp>command_rec</samp></a>,
+        <a href="apidoc_OR_AUTHCFG.html"><samp>OR_AUTHCFG</samp></a>,
+        <a href="apidoc_OR_FILEINFO.html"><samp>OR_FILEINFO</samp></a>,
+        <a href="apidoc_OR_INDEXES.html"><samp>OR_INDEXES</samp></a>,
+        <a href="apidoc_OR_OPTIONS.html"><samp>OR_OPTIONS</samp></a>,
+        <a href="apidoc_RSRC_CONF.html"><samp>RSRC_CONF</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_OR_INDEXES.html"><code>OR_INDEXES</code></a>
+  Next: <a href="apidoc_OR_OPTIONS.html"><code>OR_OPTIONS</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

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 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: OR_OPTIONS</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Constant OR_OPTIONS</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+#include "http_config.h"
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+static const <a href="apidoc_command_rec.html">command_rec</a> module_cmds[] =
+{
+        .
+    {"ModuleDirective", cmd_moduledirective, NULL, OR_OPTIONS, <a href="apidoc_RAW_ARGS.html">RAW_ARGS</a>,
+     "description of directive"},
+        .
+    {NULL}
+};
+     </pre>
+    </dd>
+   </dl>
+<p>
+Allowed locations for a configuration directive are the union of
+those indicated by each set bit in the <code>req_override</code> mask in the
+<code><a href="apidoc_command_rec.html">command_rec</a></code> structure.
+</p>
+<p>
+A directive with the <code><a href="apidoc_OR_LIMIT.html">OR_LIMIT</a></code> bit set may appear
+anywhere in the server-wide configuration files (<i>e.g.</i>,
+<code>httpd.conf</code>), and in
+<code>.htaccess</code> files when the scope is covered by an
+<code>AllowOverride&nbsp;Options</code> keyword.
+</p>
+
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ACCESS_CONF.html"><samp>ACCESS_CONF</samp></a>,
+        <a href="apidoc_ap_allow_overrides.html"><samp>ap_allow_overrides</samp></a>,
+        <a href="apidoc_cmd_parms.html"><samp>cmd_parms</samp></a>,
+        <a href="apidoc_command_rec.html"><samp>command_rec</samp></a>,
+        <a href="apidoc_OR_AUTHCFG.html"><samp>OR_AUTHCFG</samp></a>,
+        <a href="apidoc_OR_FILEINFO.html"><samp>OR_FILEINFO</samp></a>,
+        <a href="apidoc_OR_INDEXES.html"><samp>OR_INDEXES</samp></a>,
+        <a href="apidoc_OR_LIMIT.html"><samp>OR_LIMIT</samp></a>,
+        <a href="apidoc_RSRC_CONF.html"><samp>RSRC_CONF</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_OR_LIMIT.html"><code>OR_LIMIT</code></a>
+  Next: <a href="apidoc_proxyreqtype.html"><code>proxyreqtype</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

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 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: OS_ASC</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Macro OS_ASC</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+#ifndef CHARSET_EBCDIC 
+#define OS_ASC(c) (c) 
+#else 
+#define OS_ASC(c) (os_toascii[c]) 
+#endif 
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+if (ch == <a href="apidoc_CR.html">CR</a> &#124;&#124; ch == <a href="apidoc_LF.html">LF</a> &#124;&#124; (OS_ASC(ch) &amp; 0x80)) {
+    return 0;
+}
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_CR.html"><samp>CR</samp></a>,
+        <a href="apidoc_CRLF.html"><samp>CRLF</samp></a>,
+        <a href="apidoc_HUGE_STRING_LEN.html"><samp>HUGE_STRING_LEN</samp></a>,
+        <a href="apidoc_LF.html"><samp>LF</samp></a>,
+        <a href="apidoc_MAX_STRING_LEN.html"><samp>MAX_STRING_LEN</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_opendir.html"><code>opendir</code></a>
+  Next: <a href="apidoc_os_spawnle.html"><code>os_spawnle</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

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 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: RAW_ARGS</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Constant RAW_ARGS</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+#include "httpd.h"
+<i>see</i> <a href="apidoc_cmd_how.html">cmd_how</a>.
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+static const <a href="apidoc_command_rec.html">command_rec</a> module_cmds[] =
+{
+        .
+    {"ModuleDirective", cmd_moduledirective, NULL, <a href="apidoc_OR_LIMIT.html">OR_LIMIT</a>, RAW_ARGS,
+     "directive description"},
+        .
+    {NULL}
+};
+     </pre>
+    </dd>
+   </dl>
+<p>
+Command function (in cmd_func) parses the command itself. Pstrdup() is
+usually used to copy arguments into local storage.
+</p>
+
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_cmd_how.html"><samp>cmd_how</samp></a>,
+        <a href="apidoc_FLAG.html"><samp>FLAG</samp></a>,
+        <a href="apidoc_ITERATE.html"><samp>ITERATE</samp></a>,
+        <a href="apidoc_ITERATE2.html"><samp>ITERATE2</samp></a>,
+        <a href="apidoc_NO_ARGS.html"><samp>NO_ARGS</samp></a>,
+        <a href="apidoc_TAKE1.html"><samp>TAKE1</samp></a>,
+        <a href="apidoc_TAKE12.html"><samp>TAKE12</samp></a>,
+        <a href="apidoc_TAKE123.html"><samp>TAKE123</samp></a>,
+        <a href="apidoc_TAKE13.html"><samp>TAKE13</samp></a>,
+        <a href="apidoc_TAKE2.html"><samp>TAKE2</samp></a>,
+        <a href="apidoc_TAKE23.html"><samp>TAKE23</samp></a>,
+        <a href="apidoc_TAKE3.html"><samp>TAKE3</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_proxyreqtype.html"><code>proxyreqtype</code></a>
+  Next: <a href="apidoc_REQUEST_CHUNKED_DECHUNK.html"><code>REQUEST_CHUNKED_DECHUNK</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

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 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: REQUEST_CHUNKED_DECHUNK</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Constant REQUEST_CHUNKED_DECHUNK</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+#include "httpd.h"
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+No examples available.
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ap_get_client_block.html"><samp>ap_get_client_block</samp></a>,
+        <a href="apidoc_ap_setup_client_block.html"><samp>ap_setup_client_block</samp></a>,
+        <a href="apidoc_REQUEST_CHUNKED_ERROR.html"><samp>REQUEST_CHUNKED_ERROR</samp></a>,
+        <a href="apidoc_REQUEST_CHUNKED_PASS.html"><samp>REQUEST_CHUNKED_PASS</samp></a>,
+        <a href="apidoc_REQUEST_NO_BODY.html"><samp>REQUEST_NO_BODY</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_RAW_ARGS.html"><code>RAW_ARGS</code></a>
+  Next: <a href="apidoc_REQUEST_CHUNKED_ERROR.html"><code>REQUEST_CHUNKED_ERROR</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

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 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: REQUEST_CHUNKED_ERROR</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Constant REQUEST_CHUNKED_ERROR</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+#include "httpd.h"
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+No examples available.
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ap_get_client_block.html"><samp>ap_get_client_block</samp></a>,
+        <a href="apidoc_ap_setup_client_block.html"><samp>ap_setup_client_block</samp></a>,
+        <a href="apidoc_REQUEST_CHUNKED_DECHUNK.html"><samp>REQUEST_CHUNKED_DECHUNK</samp></a>,
+        <a href="apidoc_REQUEST_CHUNKED_PASS.html"><samp>REQUEST_CHUNKED_PASS</samp></a>,
+        <a href="apidoc_REQUEST_NO_BODY.html"><samp>REQUEST_NO_BODY</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_REQUEST_CHUNKED_DECHUNK.html"><code>REQUEST_CHUNKED_DECHUNK</code></a>
+  Next: <a href="apidoc_REQUEST_CHUNKED_PASS.html"><code>REQUEST_CHUNKED_PASS</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

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 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: REQUEST_CHUNKED_PASS</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Constant REQUEST_CHUNKED_PASS</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+#include "httpd.h"
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+No examples available.
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ap_get_client_block.html"><samp>ap_get_client_block</samp></a>,
+        <a href="apidoc_ap_setup_client_block.html"><samp>ap_setup_client_block</samp></a>,
+        <a href="apidoc_REQUEST_CHUNKED_DECHUNK.html"><samp>REQUEST_CHUNKED_DECHUNK</samp></a>,
+        <a href="apidoc_REQUEST_CHUNKED_ERROR.html"><samp>REQUEST_CHUNKED_ERROR</samp></a>,
+        <a href="apidoc_REQUEST_NO_BODY.html"><samp>REQUEST_NO_BODY</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_REQUEST_CHUNKED_ERROR.html"><code>REQUEST_CHUNKED_ERROR</code></a>
+  Next: <a href="apidoc_REQUEST_NO_BODY.html"><code>REQUEST_NO_BODY</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

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 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: REQUEST_NO_BODY</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Constant REQUEST_NO_BODY</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+#include "httpd.h"
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+No examples available.
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ap_get_client_block.html"><samp>ap_get_client_block</samp></a>,
+        <a href="apidoc_ap_setup_client_block.html"><samp>ap_setup_client_block</samp></a>,
+        <a href="apidoc_REQUEST_CHUNKED_DECHUNK.html"><samp>REQUEST_CHUNKED_DECHUNK</samp></a>,
+        <a href="apidoc_REQUEST_CHUNKED_ERROR.html"><samp>REQUEST_CHUNKED_ERROR</samp></a>,
+        <a href="apidoc_REQUEST_CHUNKED_PASS.html"><samp>REQUEST_CHUNKED_PASS</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_REQUEST_CHUNKED_PASS.html"><code>REQUEST_CHUNKED_PASS</code></a>
+  Next: <a href="apidoc_RSRC_CONF.html"><code>RSRC_CONF</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

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 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: RSRC_CONF</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Constant RSRC_CONF</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+#include "http_config.h"
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+static const <a href="apidoc_command_rec.html">command_rec</a> module_cmds[] =
+{
+        .
+    {"ModuleDirective", cmd_moduledirective, NULL, RSRC_CONF, <a href="apidoc_RAW_ARGS.html">RAW_ARGS</a>,
+     "description of directive"},
+        .
+    {NULL}
+};
+     </pre>
+    </dd>
+   </dl>
+<p>
+Allowed locations for a configuration directive are the union of
+those indicated by each set bit in the <code>req_override</code> mask in the
+<code><a href="apidoc_command_rec.html">command_rec</a></code> structure.
+</p>
+<p>
+A directive with the <code>RSRC_CONF</code> bit set may appear
+in the server-wide configuration files (<i>e.g.</i>, <code>httpd.conf</code>)
+outside &lt;Directory&gt; or &lt;Location&gt; containers.
+</p>
+
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ACCESS_CONF.html"><samp>ACCESS_CONF</samp></a>,
+        <a href="apidoc_ap_allow_overrides.html"><samp>ap_allow_overrides</samp></a>,
+        <a href="apidoc_cmd_parms.html"><samp>cmd_parms</samp></a>,
+        <a href="apidoc_command_rec.html"><samp>command_rec</samp></a>,
+        <a href="apidoc_OR_AUTHCFG.html"><samp>OR_AUTHCFG</samp></a>,
+        <a href="apidoc_OR_FILEINFO.html"><samp>OR_FILEINFO</samp></a>,
+        <a href="apidoc_OR_INDEXES.html"><samp>OR_INDEXES</samp></a>,
+        <a href="apidoc_OR_LIMIT.html"><samp>OR_LIMIT</samp></a>,
+        <a href="apidoc_OR_OPTIONS.html"><samp>OR_OPTIONS</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_REQUEST_NO_BODY.html"><code>REQUEST_NO_BODY</code></a>
+  Next: <a href="apidoc_SECURITY_HOLE_PASS_AUTHORIZATION.html"><code>SECURITY_HOLE_PASS_AUTHORIZATION</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

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 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: SECURITY_HOLE_PASS_AUTHORIZATION</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Constant SECURITY_HOLE_PASS_AUTHORIZATION</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+Compile-time definition
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+env CFLAGS="-Wall -DSECURITY_HOLE_PASS_AUTHORIZATION" ./configure
+     </pre>
+    </dd>
+   </dl>
+<p>
+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
+<code>mod_include</code> and CGI scripts, keeping the password
+secret.  It can be configured to make the complete credential
+details available (in the <code>HTTP_AUTHORIZATION</code> or
+<code>HTTP_PROXY_AUTHORIZATION</code> environment variables),
+but only by completely rebuilding the server with this
+compile-time definition added (as shown in the example).
+</p>
+<p>
+<b>Warning:</b> 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 <code>Basic</code> authentication,
+the password is available in cleartext.
+</p>
+
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_BIG_SECURITY_HOLE.html"><samp>BIG_SECURITY_HOLE</samp></a>,
+        <a href="apidoc_DEFAULT_ADMIN.html"><samp>DEFAULT_ADMIN</samp></a>,
+        <a href="apidoc_DEFAULT_CONTENT_TYPE.html"><samp>DEFAULT_CONTENT_TYPE</samp></a>,
+        <a href="apidoc_DEFAULT_INDEX.html"><samp>DEFAULT_INDEX</samp></a>,
+        <a href="apidoc_DEFAULT_KEEPALIVE.html"><samp>DEFAULT_KEEPALIVE</samp></a>,
+        <a href="apidoc_DEFAULT_KEEPALIVE_TIMEOUT.html"><samp>DEFAULT_KEEPALIVE_TIMEOUT</samp></a>,
+        <a href="apidoc_DEFAULT_PATH.html"><samp>DEFAULT_PATH</samp></a>,
+        <a href="apidoc_DEFAULT_TIMEOUT.html"><samp>DEFAULT_TIMEOUT</samp></a>,
+        <a href="apidoc_DOCUMENT_LOCATION.html"><samp>DOCUMENT_LOCATION</samp></a>,
+        <a href="apidoc_DYNAMIC_MODULE_LIMIT.html"><samp>DYNAMIC_MODULE_LIMIT</samp></a>,
+        <a href="apidoc_HARD_SERVER_LIMIT.html"><samp>HARD_SERVER_LIMIT</samp></a>,
+        <a href="apidoc_HTTPD_ROOT.html"><samp>HTTPD_ROOT</samp></a>,
+        <a href="apidoc_TARGET.html"><samp>TARGET</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_RSRC_CONF.html"><code>RSRC_CONF</code></a>
+  Next: <a href="apidoc_SERVER_BUSY_DNS.html"><code>SERVER_BUSY_DNS</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

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 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: SERVER_BUSY_DNS</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Constant SERVER_BUSY_DNS</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+#include "<a href="apidoc_scoreboard.html">scoreboard</a>.h"
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+switch (score_record.status) {
+case SERVER_BUSY_DNS: 
+    <a href="apidoc_ap_rputs.html">ap_rputs</a>("&lt;B&gt;DNS lookup&lt;/B&gt;", r); 
+    break;
+}
+     </pre>
+    </dd>
+   </dl>
+<p>
+Scoreboard state constant indicating the server is performing a DNS lookup.
+</p>
+
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ap_exists_scoreboard_image.html"><samp>ap_exists_scoreboard_image</samp></a>,
+        <a href="apidoc_ap_scoreboard_image.html"><samp>ap_scoreboard_image</samp></a>,
+        <a href="apidoc_ap_sync_scoreboard_image.html"><samp>ap_sync_scoreboard_image</samp></a>,
+        <a href="apidoc_global_score.html"><samp>global_score</samp></a>,
+        <a href="apidoc_parent_score.html"><samp>parent_score</samp></a>,
+        <a href="apidoc_scoreboard.html"><samp>scoreboard</samp></a>,
+        <a href="apidoc_SERVER_BUSY_KEEPALIVE.html"><samp>SERVER_BUSY_KEEPALIVE</samp></a>,
+        <a href="apidoc_SERVER_BUSY_LOG.html"><samp>SERVER_BUSY_LOG</samp></a>,
+        <a href="apidoc_SERVER_BUSY_READ.html"><samp>SERVER_BUSY_READ</samp></a>,
+        <a href="apidoc_SERVER_BUSY_WRITE.html"><samp>SERVER_BUSY_WRITE</samp></a>,
+        <a href="apidoc_SERVER_DEAD.html"><samp>SERVER_DEAD</samp></a>,
+        <a href="apidoc_SERVER_GRACEFUL.html"><samp>SERVER_GRACEFUL</samp></a>,
+        <a href="apidoc_SERVER_NUM_STATUS.html"><samp>SERVER_NUM_STATUS</samp></a>,
+        <a href="apidoc_SERVER_READY.html"><samp>SERVER_READY</samp></a>,
+        <a href="apidoc_SERVER_STARTING.html"><samp>SERVER_STARTING</samp></a>,
+        <a href="apidoc_short_score.html"><samp>short_score</samp></a>,
+        <a href="apidoc_START_PREQUEST.html"><samp>START_PREQUEST</samp></a>,
+        <a href="apidoc_STOP_PREQUEST.html"><samp>STOP_PREQUEST</samp></a>,
+        <a href="apidoc_vtime_t.html"><samp>vtime_t</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_SECURITY_HOLE_PASS_AUTHORIZATION.html"><code>SECURITY_HOLE_PASS_AUTHORIZATION</code></a>
+  Next: <a href="apidoc_SERVER_BUSY_KEEPALIVE.html"><code>SERVER_BUSY_KEEPALIVE</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

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 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: SERVER_BUSY_KEEPALIVE</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Constant SERVER_BUSY_KEEPALIVE</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+#include "<a href="apidoc_scoreboard.html">scoreboard</a>.h"
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+switch (score_record.status) {
+case SERVER_BUSY_KEEPALIVE: 
+    <a href="apidoc_ap_rputs.html">ap_rputs</a>("&lt;B&gt;Keepalive&lt;/B&gt;", r); 
+    break;
+}
+     </pre>
+    </dd>
+   </dl>
+<p>
+Scoreboard state constant indicating the server is servicing a
+keepalive (persistent HTTP) request
+</p>
+
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ap_exists_scoreboard_image.html"><samp>ap_exists_scoreboard_image</samp></a>,
+        <a href="apidoc_ap_scoreboard_image.html"><samp>ap_scoreboard_image</samp></a>,
+        <a href="apidoc_ap_sync_scoreboard_image.html"><samp>ap_sync_scoreboard_image</samp></a>,
+        <a href="apidoc_global_score.html"><samp>global_score</samp></a>,
+        <a href="apidoc_parent_score.html"><samp>parent_score</samp></a>,
+        <a href="apidoc_scoreboard.html"><samp>scoreboard</samp></a>,
+        <a href="apidoc_SERVER_BUSY_DNS.html"><samp>SERVER_BUSY_DNS</samp></a>,
+        <a href="apidoc_SERVER_BUSY_LOG.html"><samp>SERVER_BUSY_LOG</samp></a>,
+        <a href="apidoc_SERVER_BUSY_READ.html"><samp>SERVER_BUSY_READ</samp></a>,
+        <a href="apidoc_SERVER_BUSY_WRITE.html"><samp>SERVER_BUSY_WRITE</samp></a>,
+        <a href="apidoc_SERVER_DEAD.html"><samp>SERVER_DEAD</samp></a>,
+        <a href="apidoc_SERVER_GRACEFUL.html"><samp>SERVER_GRACEFUL</samp></a>,
+        <a href="apidoc_SERVER_NUM_STATUS.html"><samp>SERVER_NUM_STATUS</samp></a>,
+        <a href="apidoc_SERVER_READY.html"><samp>SERVER_READY</samp></a>,
+        <a href="apidoc_SERVER_STARTING.html"><samp>SERVER_STARTING</samp></a>,
+        <a href="apidoc_short_score.html"><samp>short_score</samp></a>,
+        <a href="apidoc_START_PREQUEST.html"><samp>START_PREQUEST</samp></a>,
+        <a href="apidoc_STOP_PREQUEST.html"><samp>STOP_PREQUEST</samp></a>,
+        <a href="apidoc_vtime_t.html"><samp>vtime_t</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_SERVER_BUSY_DNS.html"><code>SERVER_BUSY_DNS</code></a>
+  Next: <a href="apidoc_SERVER_BUSY_LOG.html"><code>SERVER_BUSY_LOG</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

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 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: SERVER_BUSY_LOG</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Constant SERVER_BUSY_LOG</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+#include "<a href="apidoc_scoreboard.html">scoreboard</a>.h"
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+switch (score_record.status) {
+case SERVER_BUSY_LOG: 
+    <a href="apidoc_ap_rputs.html">ap_rputs</a>("&lt;B&gt;Logging&lt;/B&gt;", r); 
+    break;
+}
+     </pre>
+    </dd>
+   </dl>
+<p>
+Scoreboard state constant indicating the server is writing to a log file.
+</p>
+
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ap_exists_scoreboard_image.html"><samp>ap_exists_scoreboard_image</samp></a>,
+        <a href="apidoc_ap_scoreboard_image.html"><samp>ap_scoreboard_image</samp></a>,
+        <a href="apidoc_ap_sync_scoreboard_image.html"><samp>ap_sync_scoreboard_image</samp></a>,
+        <a href="apidoc_global_score.html"><samp>global_score</samp></a>,
+        <a href="apidoc_parent_score.html"><samp>parent_score</samp></a>,
+        <a href="apidoc_scoreboard.html"><samp>scoreboard</samp></a>,
+        <a href="apidoc_SERVER_BUSY_DNS.html"><samp>SERVER_BUSY_DNS</samp></a>,
+        <a href="apidoc_SERVER_BUSY_KEEPALIVE.html"><samp>SERVER_BUSY_KEEPALIVE</samp></a>,
+        <a href="apidoc_SERVER_BUSY_READ.html"><samp>SERVER_BUSY_READ</samp></a>,
+        <a href="apidoc_SERVER_BUSY_WRITE.html"><samp>SERVER_BUSY_WRITE</samp></a>,
+        <a href="apidoc_SERVER_DEAD.html"><samp>SERVER_DEAD</samp></a>,
+        <a href="apidoc_SERVER_GRACEFUL.html"><samp>SERVER_GRACEFUL</samp></a>,
+        <a href="apidoc_SERVER_NUM_STATUS.html"><samp>SERVER_NUM_STATUS</samp></a>,
+        <a href="apidoc_SERVER_READY.html"><samp>SERVER_READY</samp></a>,
+        <a href="apidoc_SERVER_STARTING.html"><samp>SERVER_STARTING</samp></a>,
+        <a href="apidoc_short_score.html"><samp>short_score</samp></a>,
+        <a href="apidoc_START_PREQUEST.html"><samp>START_PREQUEST</samp></a>,
+        <a href="apidoc_STOP_PREQUEST.html"><samp>STOP_PREQUEST</samp></a>,
+        <a href="apidoc_vtime_t.html"><samp>vtime_t</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_SERVER_BUSY_KEEPALIVE.html"><code>SERVER_BUSY_KEEPALIVE</code></a>
+  Next: <a href="apidoc_SERVER_BUSY_READ.html"><code>SERVER_BUSY_READ</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

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 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: SERVER_BUSY_READ</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Constant SERVER_BUSY_READ</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+#include "<a href="apidoc_scoreboard.html">scoreboard</a>.h"
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+switch (score_record.status) {
+case SERVER_BUSY_READ: 
+    <a href="apidoc_ap_rputs.html">ap_rputs</a>("&lt;B&gt;Read&lt;/B&gt;", r); 
+    break;
+}
+     </pre>
+    </dd>
+   </dl>
+<p>
+Scoreboard state constant indicating the server is reading data from
+a client (browser).
+</p>
+
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ap_exists_scoreboard_image.html"><samp>ap_exists_scoreboard_image</samp></a>,
+        <a href="apidoc_ap_scoreboard_image.html"><samp>ap_scoreboard_image</samp></a>,
+        <a href="apidoc_ap_sync_scoreboard_image.html"><samp>ap_sync_scoreboard_image</samp></a>,
+        <a href="apidoc_global_score.html"><samp>global_score</samp></a>,
+        <a href="apidoc_parent_score.html"><samp>parent_score</samp></a>,
+        <a href="apidoc_scoreboard.html"><samp>scoreboard</samp></a>,
+        <a href="apidoc_SERVER_BUSY_DNS.html"><samp>SERVER_BUSY_DNS</samp></a>,
+        <a href="apidoc_SERVER_BUSY_KEEPALIVE.html"><samp>SERVER_BUSY_KEEPALIVE</samp></a>,
+        <a href="apidoc_SERVER_BUSY_LOG.html"><samp>SERVER_BUSY_LOG</samp></a>,
+        <a href="apidoc_SERVER_BUSY_WRITE.html"><samp>SERVER_BUSY_WRITE</samp></a>,
+        <a href="apidoc_SERVER_DEAD.html"><samp>SERVER_DEAD</samp></a>,
+        <a href="apidoc_SERVER_GRACEFUL.html"><samp>SERVER_GRACEFUL</samp></a>,
+        <a href="apidoc_SERVER_NUM_STATUS.html"><samp>SERVER_NUM_STATUS</samp></a>,
+        <a href="apidoc_SERVER_READY.html"><samp>SERVER_READY</samp></a>,
+        <a href="apidoc_SERVER_STARTING.html"><samp>SERVER_STARTING</samp></a>,
+        <a href="apidoc_short_score.html"><samp>short_score</samp></a>,
+        <a href="apidoc_START_PREQUEST.html"><samp>START_PREQUEST</samp></a>,
+        <a href="apidoc_STOP_PREQUEST.html"><samp>STOP_PREQUEST</samp></a>,
+        <a href="apidoc_vtime_t.html"><samp>vtime_t</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_SERVER_BUSY_LOG.html"><code>SERVER_BUSY_LOG</code></a>
+  Next: <a href="apidoc_SERVER_BUSY_WRITE.html"><code>SERVER_BUSY_WRITE</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

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