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 [25/34] - /httpd/site/trunk/docs/dev/apidoc/

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_send_header_field.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_send_header_field.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_send_header_field.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_send_header_field.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,46 @@
+<!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: ap_send_header_field</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_send_header_field</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_send_header_field(<a href="apidoc_request_rec.html">request_rec</a> *r, const char *fieldname, const char *fieldval);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+No examples available.
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_send_fd_length.html"><code>ap_send_fd_length</code></a>
+  Next: <a href="apidoc_ap_send_http_header.html"><code>ap_send_http_header</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_ap_send_header_field.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_send_header_field.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_send_header_field.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_send_http_header.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_send_http_header.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_send_http_header.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_send_http_header.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,57 @@
+<!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: ap_send_http_header</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_send_http_header</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+void ap_send_http_header(<a href="apidoc_request_rec.html">request_rec</a> *r);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+<a href="apidoc_request_rec.html">request_rec</a> *r;
+ap_send_http_header(r);
+     </pre>
+    </dd>
+   </dl>
+<p>
+Sends the accumulated HTTP header fields to the client from
+<code>r-&gt;headers_out</code> and <code>r-&gt;err_headers_out</code>.
+Additional HTTP header fields may be added by the server, depending on
+HTTP protocol version.
+</p>
+<p>
+This must be called by content handlers before they send any actual
+content.  Once this routine has been called, further changes to the
+<code>r-&gt;headers_out</code> and <code>r-&gt;err_headers_out</code>
+tables are ignored.
+</p>
+
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_send_header_field.html"><code>ap_send_header_field</code></a>
+  Next: <a href="apidoc_ap_send_http_options.html"><code>ap_send_http_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_ap_send_http_header.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_send_http_header.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_send_http_header.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_send_http_options.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_send_http_options.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_send_http_options.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_send_http_options.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,48 @@
+<!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: ap_send_http_options</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_send_http_options</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_send_http_options(<a href="apidoc_request_rec.html">request_rec</a> *r);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+<a href="apidoc_request_rec.html">request_rec</a> *r;
+int result;
+result = ap_send_http_options(r);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_send_http_header.html"><code>ap_send_http_header</code></a>
+  Next: <a href="apidoc_ap_send_http_trace.html"><code>ap_send_http_trace</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_ap_send_http_options.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_send_http_options.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_send_http_options.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_send_http_trace.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_send_http_trace.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_send_http_trace.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_send_http_trace.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,48 @@
+<!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: ap_send_http_trace</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_send_http_trace</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_send_http_trace(<a href="apidoc_request_rec.html">request_rec</a> *r);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+<a href="apidoc_request_rec.html">request_rec</a> *r;
+int result;
+result = ap_send_http_trace(r);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_send_http_options.html"><code>ap_send_http_options</code></a>
+  Next: <a href="apidoc_ap_send_mmap.html"><code>ap_send_mmap</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_ap_send_http_trace.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_send_http_trace.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_send_http_trace.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_send_mmap.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_send_mmap.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_send_mmap.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_send_mmap.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,46 @@
+<!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: ap_send_mmap</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_send_mmap</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+size_t ap_send_mmap(void *mm, <a href="apidoc_request_rec.html">request_rec</a> *r, size_t offset, size_t length);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+No examples available.
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_send_http_trace.html"><code>ap_send_http_trace</code></a>
+  Next: <a href="apidoc_ap_send_size.html"><code>ap_send_size</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_ap_send_mmap.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_send_mmap.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_send_mmap.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_send_size.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_send_size.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_send_size.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_send_size.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,46 @@
+<!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: ap_send_size</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_send_size</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+void ap_send_size(size_t size, <a href="apidoc_request_rec.html">request_rec</a> *r);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+No examples available.
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_send_mmap.html"><code>ap_send_mmap</code></a>
+  Next: <a href="apidoc_ap_server_root_relative.html"><code>ap_server_root_relative</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_ap_send_size.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_send_size.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_send_size.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_server_argv0.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_server_argv0.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_server_argv0.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_server_argv0.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,48 @@
+<!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: ap_server_argv0</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Global Data Cell ap_server_argv0</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+char *ap_server_argv0;
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+extern char *ap_server_argv0; 
+ap_server_argv0 = argv[0];
+     </pre>
+    </dd>
+   </dl>
+<p>
+The command line argument string by which Apache was invoked,
+</p>
+
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_scoreboard_image.html"><code>ap_scoreboard_image</code></a>
+  Next: <a href="apidoc_ap_server_confname.html"><code>ap_server_confname</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_ap_server_argv0.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_server_argv0.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_server_argv0.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_server_confname.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_server_confname.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_server_confname.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_server_confname.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,46 @@
+<!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: ap_server_confname</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Global Data Cell ap_server_confname</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+char ap_server_confname[<a href="apidoc_MAX_STRING_LEN.html">MAX_STRING_LEN</a>];
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+No examples available.
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_server_argv0.html"><code>ap_server_argv0</code></a>
+  Next: <a href="apidoc_ap_server_root.html"><code>ap_server_root</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_ap_server_confname.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_server_confname.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_server_confname.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_server_root.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_server_root.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_server_root.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_server_root.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,49 @@
+<!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: ap_server_root</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Global Data Cell ap_server_root</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+char ap_server_root[<a href="apidoc_MAX_STRING_LEN.html">MAX_STRING_LEN</a>];
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+extern char ap_server_root[<a href="apidoc_MAX_STRING_LEN.html">MAX_STRING_LEN</a>]; 
+<a href="apidoc_ap_cpystrn.html">ap_cpystrn</a>(ap_coredump_dir, ap_server_root, sizeof(ap_coredump_dir)); 
+     </pre>
+    </dd>
+   </dl>
+<p>
+The string value of the ServerRoot configuration directive, the root
+directory of the server installation.
+</p>
+
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_server_confname.html"><code>ap_server_confname</code></a>
+  Next: <a href="apidoc_ap_standalone.html"><code>ap_standalone</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_ap_server_root.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_server_root.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_server_root.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_server_root_relative.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_server_root_relative.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_server_root_relative.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_server_root_relative.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,46 @@
+<!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: ap_server_root_relative</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_server_root_relative</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+char *ap_server_root_relative(<a href="apidoc_pool.html">pool</a> *p, char *fname);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+No examples available.
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_send_size.html"><code>ap_send_size</code></a>
+  Next: <a href="apidoc_ap_setup_client_block.html"><code>ap_setup_client_block</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_ap_server_root_relative.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_server_root_relative.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_server_root_relative.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_byterange.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_byterange.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_byterange.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_byterange.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,48 @@
+<!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: ap_set_byterange</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_set_byterange</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_set_byterange(<a href="apidoc_request_rec.html">request_rec</a> *r);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+<a href="apidoc_request_rec.html">request_rec</a> *r;
+int result;
+result = ap_set_byterange(r);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_setup_prelinked_modules.html"><code>ap_setup_prelinked_modules</code></a>
+  Next: <a href="apidoc_ap_set_callback_and_alarm.html"><code>ap_set_callback_and_alarm</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_ap_set_byterange.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_byterange.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_byterange.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_callback_and_alarm.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_callback_and_alarm.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_callback_and_alarm.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_callback_and_alarm.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,46 @@
+<!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: ap_set_callback_and_alarm</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_set_callback_and_alarm</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+unsigned int ap_set_callback_and_alarm(void (*fn) (int), int x);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+No examples available.
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_set_byterange.html"><code>ap_set_byterange</code></a>
+  Next: <a href="apidoc_ap_set_content_length.html"><code>ap_set_content_length</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_ap_set_callback_and_alarm.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_callback_and_alarm.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_callback_and_alarm.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_content_length.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_content_length.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_content_length.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_content_length.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,46 @@
+<!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: ap_set_content_length</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_set_content_length</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_set_content_length(<a href="apidoc_request_rec.html">request_rec</a> *r, long length);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+No examples available.
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_set_callback_and_alarm.html"><code>ap_set_callback_and_alarm</code></a>
+  Next: <a href="apidoc_ap_set_etag.html"><code>ap_set_etag</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_ap_set_content_length.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_content_length.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_content_length.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_etag.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_etag.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_etag.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_etag.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,47 @@
+<!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: ap_set_etag</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_set_etag</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+void ap_set_etag(<a href="apidoc_request_rec.html">request_rec</a> *r);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+<a href="apidoc_request_rec.html">request_rec</a> *r;
+ap_set_etag(r);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_set_content_length.html"><code>ap_set_content_length</code></a>
+  Next: <a href="apidoc_ap_set_file_slot.html"><code>ap_set_file_slot</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_ap_set_etag.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_etag.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_etag.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_file_slot.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_file_slot.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_file_slot.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_file_slot.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,46 @@
+<!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: ap_set_file_slot</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_set_file_slot</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+const char *ap_set_file_slot(<a href="apidoc_cmd_parms.html">cmd_parms</a> *cmd, char *s1, char *s2);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+No examples available.
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_set_etag.html"><code>ap_set_etag</code></a>
+  Next: <a href="apidoc_ap_set_flag_slot.html"><code>ap_set_flag_slot</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_ap_set_file_slot.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_file_slot.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_file_slot.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_flag_slot.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_flag_slot.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_flag_slot.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_flag_slot.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,46 @@
+<!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: ap_set_flag_slot</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_set_flag_slot</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+const char *ap_set_flag_slot(<a href="apidoc_cmd_parms.html">cmd_parms</a> *cmd, char *s1, int flag);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+No examples available.
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_set_file_slot.html"><code>ap_set_file_slot</code></a>
+  Next: <a href="apidoc_ap_set_keepalive.html"><code>ap_set_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_ap_set_flag_slot.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_flag_slot.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_flag_slot.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_keepalive.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_keepalive.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_keepalive.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_keepalive.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,48 @@
+<!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: ap_set_keepalive</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_set_keepalive</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_set_keepalive(<a href="apidoc_request_rec.html">request_rec</a> *r);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+<a href="apidoc_request_rec.html">request_rec</a> *r;
+int result;
+result = ap_set_keepalive(r);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_set_flag_slot.html"><code>ap_set_flag_slot</code></a>
+  Next: <a href="apidoc_ap_set_last_modified.html"><code>ap_set_last_modified</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_ap_set_keepalive.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_keepalive.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_keepalive.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_last_modified.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_last_modified.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_last_modified.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_last_modified.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,47 @@
+<!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: ap_set_last_modified</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_set_last_modified</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+void ap_set_last_modified(<a href="apidoc_request_rec.html">request_rec</a> *r);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+<a href="apidoc_request_rec.html">request_rec</a> *r;
+ap_set_last_modified(r);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_set_keepalive.html"><code>ap_set_keepalive</code></a>
+  Next: <a href="apidoc_ap_set_module_config.html"><code>ap_set_module_config</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_ap_set_last_modified.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_last_modified.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_last_modified.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_module_config.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_module_config.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_module_config.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_module_config.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,46 @@
+<!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: ap_set_module_config</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_set_module_config</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+void ap_set_module_config(void *conf_vector, <a href="apidoc_module.html">module</a> *m, void *val);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+No examples available.
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_set_last_modified.html"><code>ap_set_last_modified</code></a>
+  Next: <a href="apidoc_ap_set_name_virtual_host.html"><code>ap_set_name_virtual_host</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_ap_set_module_config.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_module_config.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_module_config.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_name_virtual_host.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_name_virtual_host.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_name_virtual_host.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_name_virtual_host.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,46 @@
+<!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: ap_set_name_virtual_host</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_set_name_virtual_host</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+const char *ap_set_name_virtual_host(<a href="apidoc_cmd_parms.html">cmd_parms</a> *cmd, void *dummy, char *arg);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+No examples available.
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_set_module_config.html"><code>ap_set_module_config</code></a>
+  Next: <a href="apidoc_ap_set_string_slot.html"><code>ap_set_string_slot</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_ap_set_name_virtual_host.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_name_virtual_host.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_name_virtual_host.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_string_slot.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_string_slot.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_string_slot.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_string_slot.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,46 @@
+<!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: ap_set_string_slot</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_set_string_slot</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+const char *ap_set_string_slot(<a href="apidoc_cmd_parms.html">cmd_parms</a> *cmd, char *s1, char *s2);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+No examples available.
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_set_name_virtual_host.html"><code>ap_set_name_virtual_host</code></a>
+  Next: <a href="apidoc_ap_set_string_slot_lower.html"><code>ap_set_string_slot_lower</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_ap_set_string_slot.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_string_slot.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_string_slot.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_string_slot_lower.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_string_slot_lower.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_string_slot_lower.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_string_slot_lower.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,46 @@
+<!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: ap_set_string_slot_lower</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_set_string_slot_lower</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+const char *ap_set_string_slot_lower(<a href="apidoc_cmd_parms.html">cmd_parms</a> *cmd, char *s1, char *s2);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+No examples available.
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_set_string_slot.html"><code>ap_set_string_slot</code></a>
+  Next: <a href="apidoc_ap_set_sub_req_protocol.html"><code>ap_set_sub_req_protocol</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_ap_set_string_slot_lower.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_string_slot_lower.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_string_slot_lower.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_sub_req_protocol.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_sub_req_protocol.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_sub_req_protocol.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_sub_req_protocol.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,46 @@
+<!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: ap_set_sub_req_protocol</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_set_sub_req_protocol</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+void ap_set_sub_req_protocol(request_rec *rnew, const <a href="apidoc_request_rec.html">request_rec</a> *r);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+No examples available.
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_set_string_slot_lower.html"><code>ap_set_string_slot_lower</code></a>
+  Next: <a href="apidoc_ap_SHA1Final.html"><code>ap_SHA1Final</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_ap_set_sub_req_protocol.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_sub_req_protocol.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_set_sub_req_protocol.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_setup_client_block.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_setup_client_block.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_setup_client_block.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_setup_client_block.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: ap_setup_client_block</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_setup_client_block</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_setup_client_block(<a href="apidoc_request_rec.html">request_rec</a> *r, int read_policy);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+No examples available.
+     </pre>
+    </dd>
+   </dl>
+<p>
+Readies to receive data from the client, normally because the client made a
+PUT or POST request. Should be called before
+<a href="apidoc_ap_should_client_block.html">ap_should_client_block</a>.
+</p>
+<p>
+Returns OK if data is allowed from the client, or a status code if it is not.
+Note that <a href="apidoc_OK.html">OK</a> will be returned even if the request doesn't contain client data.
+</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_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>,
+        <a href="apidoc_REQUEST_NO_BODY.html"><samp>REQUEST_NO_BODY</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_server_root_relative.html"><code>ap_server_root_relative</code></a>
+  Next: <a href="apidoc_ap_setup_prelinked_modules.html"><code>ap_setup_prelinked_modules</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_ap_setup_client_block.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_setup_client_block.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_setup_client_block.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_setup_prelinked_modules.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_setup_prelinked_modules.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_setup_prelinked_modules.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_setup_prelinked_modules.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,46 @@
+<!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: ap_setup_prelinked_modules</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_setup_prelinked_modules</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+void ap_setup_prelinked_modules(void);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+ap_setup_prelinked_modules();
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_setup_client_block.html"><code>ap_setup_client_block</code></a>
+  Next: <a href="apidoc_ap_set_byterange.html"><code>ap_set_byterange</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_ap_setup_prelinked_modules.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_setup_prelinked_modules.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_setup_prelinked_modules.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_sha1_base64.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_sha1_base64.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_sha1_base64.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_sha1_base64.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,46 @@
+<!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: ap_sha1_base64</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_sha1_base64</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+void ap_sha1_base64(const char *clear, int len, char *out);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+No examples available.
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_SHA1Update_binary.html"><code>ap_SHA1Update_binary</code></a>
+  Next: <a href="apidoc_ap_should_client_block.html"><code>ap_should_client_block</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_ap_sha1_base64.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_sha1_base64.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_sha1_base64.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_should_client_block.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_should_client_block.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_should_client_block.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_should_client_block.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: ap_should_client_block</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_should_client_block</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_should_client_block(<a href="apidoc_request_rec.html">request_rec</a> *r);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+<a href="apidoc_request_rec.html">request_rec</a> *r;
+int result;
+result = ap_should_client_block(r);
+     </pre>
+    </dd>
+   </dl>
+<p>
+Checks if the client will send data and invites it to continue doing so.
+Sends a 100 Continue response if HTTP 1.1 or higher. This function should
+be called after <a href="apidoc_ap_setup_client_block.html">ap_setup_client_block</a>
+and before <a href="apidoc_ap_get_client_block.html">ap_get_client_block</a>.
+</p>
+<p>
+Returns 1 if the client should send data, 0 if not.
+</p>
+
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_sha1_base64.html"><code>ap_sha1_base64</code></a>
+  Next: <a href="apidoc_ap_show_directives.html"><code>ap_show_directives</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_ap_should_client_block.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_should_client_block.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_should_client_block.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_show_directives.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_show_directives.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_show_directives.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_show_directives.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,46 @@
+<!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: ap_show_directives</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_show_directives</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+void ap_show_directives(void);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+ap_show_directives();
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_should_client_block.html"><code>ap_should_client_block</code></a>
+  Next: <a href="apidoc_ap_show_modules.html"><code>ap_show_modules</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_ap_show_directives.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_show_directives.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_show_directives.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_show_modules.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_show_modules.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_show_modules.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_show_modules.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,46 @@
+<!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: ap_show_modules</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_show_modules</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+void ap_show_modules(void);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+ap_show_modules();
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_show_directives.html"><code>ap_show_directives</code></a>
+  Next: <a href="apidoc_ap_size_list_item.html"><code>ap_size_list_item</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_ap_show_modules.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_show_modules.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_show_modules.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_size_list_item.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_size_list_item.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_size_list_item.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_size_list_item.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,46 @@
+<!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: ap_size_list_item</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_size_list_item</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+const char *ap_size_list_item(const char **field, int *len);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+No examples available.
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_show_modules.html"><code>ap_show_modules</code></a>
+  Next: <a href="apidoc_ap_snprintf.html"><code>ap_snprintf</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_ap_size_list_item.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_size_list_item.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_size_list_item.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_snprintf.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_snprintf.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_snprintf.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_snprintf.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,65 @@
+<!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: ap_snprintf</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_snprintf</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_snprintf(char *buf, size_t nbytes, const char *fmt, ...);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+char buffer[<a href="apidoc_HUGE_STRING_LEN.html">HUGE_STRING_LEN</a>];
+<a href="apidoc_request_rec.html">request_rec</a> *r;
+ap_snprintf(buffer, sizeof(buffer), "connect %s http/1.0" crlf, r-&gt;uri);
+     </pre>
+    </dd>
+   </dl>
+<p>
+These are snprintf implementations based on <a href="apidoc_ap_vformatter.html">ap_vformatter</a>().
+</p>
+<p>
+Note that various standards and implementations disagree on the return
+value of snprintf, and side-effects due to %n in the formatting string.
+ap_snprintf behaves as follows:
+</p>
+<p>
+Process the format string until the entire string is exhausted, or
+the buffer fills.  If the buffer fills then stop processing immediately
+(so no further %n arguments are processed), and return the buffer
+length.  In all cases the buffer is NUL terminated.
+</p>
+<p>
+In no event does ap_snprintf return a negative number.  It's not possible
+to distinguish between an output which was truncated, and an output which
+exactly filled the buffer.
+</p>
+
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_size_list_item.html"><code>ap_size_list_item</code></a>
+  Next: <a href="apidoc_ap_soft_timeout.html"><code>ap_soft_timeout</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_ap_snprintf.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_snprintf.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_snprintf.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_soft_timeout.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_soft_timeout.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_soft_timeout.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_soft_timeout.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,52 @@
+<!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: ap_soft_timeout</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_soft_timeout</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+void ap_soft_timeout(char *str, <a href="apidoc_request_rec.html">request_rec</a> *r);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+No examples available.
+     </pre>
+    </dd>
+   </dl>
+<p>
+Sets an alarm to expire when the server's configured timeout expires.
+When the alarm expires, the client connection is closed, and no further
+I/O is done.
+</p>
+<p>
+<EM>str</EM> is logged to the error log.
+</p>
+
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_snprintf.html"><code>ap_snprintf</code></a>
+  Next: <a href="apidoc_ap_some_auth_required.html"><code>ap_some_auth_required</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_ap_soft_timeout.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_soft_timeout.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_soft_timeout.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_some_auth_required.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_some_auth_required.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_some_auth_required.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_some_auth_required.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,48 @@
+<!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: ap_some_auth_required</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_some_auth_required</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_some_auth_required(<a href="apidoc_request_rec.html">request_rec</a> *r);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+<a href="apidoc_request_rec.html">request_rec</a> *r;
+int result;
+result = ap_some_auth_required(r);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_soft_timeout.html"><code>ap_soft_timeout</code></a>
+  Next: <a href="apidoc_ap_spawn_child.html"><code>ap_spawn_child</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_ap_some_auth_required.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_some_auth_required.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_some_auth_required.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_spawn_child.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_spawn_child.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_spawn_child.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_spawn_child.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,46 @@
+<!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: ap_spawn_child</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_spawn_child</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_spawn_child(<a href="apidoc_pool.html">pool</a> *, int(*)(void *, <a href="apidoc_child_info.html">child_info</a> *), void *, enum <a href="apidoc_kill_conditions.html">kill_conditions</a>, FILE **pipe_in, FILE **pipe_out, FILE **pipe_err);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+No examples available.
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_some_auth_required.html"><code>ap_some_auth_required</code></a>
+  Next: <a href="apidoc_ap_spawn_child_err.html"><code>ap_spawn_child_err</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_ap_spawn_child.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_spawn_child.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_spawn_child.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_spawn_child_err.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_spawn_child_err.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_spawn_child_err.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_spawn_child_err.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,54 @@
+<!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: ap_spawn_child_err</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_spawn_child_err</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_spawn_child_err(<a href="apidoc_pool.html">pool</a> *p, int (*func)(void *), void *data, enum <a href="apidoc_kill_conditions.html">kill_conditions</a>, FILE **pipe_in, FILE **pipe_out, FILE **pipe_err);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+No examples available.
+     </pre>
+    </dd>
+   </dl>
+<p>
+Spawns a child process. Pipes may be optionally connected to the child's
+standard input, output, and error. If any of the pipes are NULL, they aren't
+created. If <EM>func</EM> will need cleanup, it calls
+<a href="apidoc_ap_cleanup_for_exec.html">ap_cleanup_for_exec</a>.
+</p>
+<p>
+See <a href="apidoc_kill_conditions.html">kill_conditions</a> for the various ways
+the child process can be killed. Returns PID of the child, or -1 on error.
+</p>
+
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_spawn_child.html"><code>ap_spawn_child</code></a>
+  Next: <a href="apidoc_ap_spawn_child_err_buff.html"><code>ap_spawn_child_err_buff</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_ap_spawn_child_err.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_spawn_child_err.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_spawn_child_err.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_spawn_child_err_buff.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_spawn_child_err_buff.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_spawn_child_err_buff.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_spawn_child_err_buff.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: ap_spawn_child_err_buff</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_spawn_child_err_buff</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_spawn_child_err_buff(<a href="apidoc_pool.html">pool</a> *p, int (*func)(void *), void *data, enum <a href="apidoc_kill_conditions.html">kill_conditions</a>, 
+                            BUFF **pipe_in, BUFF **pipe_out, <a href="apidoc_BUFF.html">BUFF</a> **pipe_err);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+No examples available.
+     </pre>
+    </dd>
+   </dl>
+<p>
+Spawns a child process. BUFFs may be optionally connected
+to the child's standard input, output, and error. If any of the
+BUFFs are NULL, they aren't created. If <EM>func</EM> will
+need cleanup, it calls <a href="apidoc_ap_cleanup_for_exec.html">ap_cleanup_for_exec</a>.
+</p>
+<p>
+See <a href="apidoc_kill_conditions.html">kill_conditions</a> for the various ways
+the child process can be killed. Returns PID of the child, or -1 on error.
+</p>
+
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_spawn_child_err.html"><code>ap_spawn_child_err</code></a>
+  Next: <a href="apidoc_ap_srm_command_loop.html"><code>ap_srm_command_loop</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_ap_spawn_child_err_buff.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_spawn_child_err_buff.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_spawn_child_err_buff.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_srm_command_loop.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_srm_command_loop.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_srm_command_loop.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_srm_command_loop.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,46 @@
+<!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: ap_srm_command_loop</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_srm_command_loop</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+const char *ap_srm_command_loop(<a href="apidoc_cmd_parms.html">cmd_parms</a> *parms, void *config);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+No examples available.
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_spawn_child_err_buff.html"><code>ap_spawn_child_err_buff</code></a>
+  Next: <a href="apidoc_ap_start_restart.html"><code>ap_start_restart</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_ap_srm_command_loop.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_srm_command_loop.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_srm_command_loop.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_standalone.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_standalone.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_standalone.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_standalone.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,46 @@
+<!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: ap_standalone</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Global Data Cell ap_standalone</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_standalone;
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+No examples available.
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_server_root.html"><code>ap_server_root</code></a>
+  Next: <a href="apidoc_ap_suexec_enabled.html"><code>ap_suexec_enabled</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_ap_standalone.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_standalone.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_standalone.html
------------------------------------------------------------------------------
    svn:mime-type = text/html