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

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_pfopen.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_pool.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_pool.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_pool.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_pool.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,23 @@
+<p>
+Memory pool allocation routines in Apache are designed so that
+developers don't have to keep track of <i>every</i> allocation
+so that it can be explicitly freed later.
+</p>
+<p>
+Instead, Apache uses memory <i>pools</i>, and items
+(both memory and I/O handlers) are allocated from them.
+Currently there are two long-term pools; one for <i>per</i>-transaction
+info (request_rec and conn_rec structures and such), and one for config
+info (server_rec structures, <i>et alia</i>).
+When a transaction is over, Apache can delete everything in the
+<i>per</i>-transaction pool without fear, and without thinking too
+hard about it either.
+</p>
+<p>
+There are two reasons a pool can be destroyed:
+</p>
+<ol>
+ <li>The server has finished with that pool, or</li>
+ <li>The server has forked and is preparing to <code>exec</code> another
+  program.</li>
+</ol>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_pool.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_popenf.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_popenf.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_popenf.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_popenf.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,7 @@
+<p>
+This function opens a file, with automatic cleanup when <EM>p</EM> is
+destroyed.
+</p>
+<p>
+Returns <EM>fd</EM>, or -1 on error.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_popenf.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_pregcomp.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_pregcomp.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_pregcomp.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_pregcomp.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,4 @@
+<p>
+Equivalent to <EM>regcomp</EM>, but any memory used is freed when <EM>p</EM> is
+destroyed.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_pregcomp.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_pregsub.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_pregsub.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_pregsub.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_pregsub.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,3 @@
+<p>
+Equivalent to regsub(), but uses <EM>p</EM> for memory allocation.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_pregsub.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_psprintf.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_psprintf.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_psprintf.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_psprintf.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,24 @@
+<p>
+Formats data <i>&agrave; la</i> <code>sprintf</code>, allocating
+the necessary storage from the supplied pool.
+Returns a pointer to the formatted string on success, returns NULL
+if an error (such as out-of-memory) is encountered.  More information
+<i>may</i> be available in <code>errno</code>.
+</p>
+<p>
+ap_psprintf is implemented by writing directly into the current
+block of the pool, starting right at first_avail.  If there's
+insufficient room, then a new block is allocated and the earlier
+output is copied over.  The new block isn't linked into the pool
+until all the output is done.
+</p>
+<p>
+Note that this is completely safe because nothing else can
+allocate in this pool while ap_psprintf is running.  Alarms are
+blocked, and the only thing outside of alloc.c that's invoked
+is ap_vformatter -- which was purposefully written to be
+self-contained with no callouts.
+</p>
+<p>
+ap_psprintf is implemented using ap_pvsprintf.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_psprintf.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_pstrcat.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_pstrcat.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_pstrcat.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_pstrcat.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,6 @@
+<p>
+Concatenates the NULL-terminated string list into a new block of memory.
+</p>
+<p>
+Returns a pointer to the new block of memory.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_pstrcat.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_pstrdup.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_pstrdup.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_pstrdup.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_pstrdup.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,7 @@
+<p>
+Duplicates a string within a pool.
+</p>
+<p>
+If <EM>s</EM> is NULL, the function returns NULL. Otherwise, returns a
+pointer to the new copy of the string <EM>s</EM>.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_pstrdup.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_pstrndup.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_pstrndup.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_pstrndup.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_pstrndup.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,8 @@
+<p>
+Allocates <EM>n</EM> + 1 bytes of memory and copies up to <EM>n</EM>
+characters from <EM>s</EM>. The result is NUL-terminated.
+</p>
+<p>
+Returns NULL if <EM>s</EM> is NULL, otherwise returns a pointer to the
+(possibly partly) copied memory.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_pstrndup.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_push_array.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_push_array.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_push_array.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_push_array.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,7 @@
+<p>
+Allocates more memory for the additional array element and adds
+it to the end of the array.
+</p>
+<p>
+Returns a pointer to the newly-created element of <i>arr</i>.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_push_array.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_pvsprintf.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_pvsprintf.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_pvsprintf.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_pvsprintf.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,7 @@
+<p>
+Writes a varargs list to a pool.
+Returns 0 on success, exits with return code 1 if out of memory.
+</p>
+<p>
+ap_psprintf is implemented using ap_pvsprintf.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_pvsprintf.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_rationalize_mtime.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_rationalize_mtime.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_rationalize_mtime.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_rationalize_mtime.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,10 @@
+<p>
+This routine is used to ensure compliance with the HTTP RFCs,
+which forbid a value for the <code>Last-modified</code> response
+header field that is in the future.  This response header field is
+set from the value in the <code>r-&gt;mtime</code> field.
+<code>ap_rationalize_mtime()</code>
+compares the specified time value against the current
+clock, and sets the <code>r-&gt;mtime</code> field to
+whichever is earlier.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_rationalize_mtime.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_register_cleanup.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_register_cleanup.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_register_cleanup.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_register_cleanup.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,17 @@
+<p>
+Registers two functions to be called when <EM>p</EM> is destroyed.
+There are two reasons a pool can be destroyed:
+</p>
+<OL>
+ <LI>The server has finished with that pool, or
+ </LI>
+ <LI>The server has forked and is preparing to <EM>exec</EM> another program.
+ </LI>
+</OL>
+<p>
+In the first case, the <EM>plain_cleanup</EM> function is called; in the
+second, the <EM>child_cleanup</EM> function is called.
+</p>
+<p>
+<EM>data</EM> is passed as the only argument to the cleanup function.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_register_cleanup.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_reset_timeout.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_reset_timeout.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_reset_timeout.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_reset_timeout.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,3 @@
+<p>
+Resets the hard or soft timeout to its original value.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_reset_timeout.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_restart_time.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_restart_time.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_restart_time.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_restart_time.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,3 @@
+<p>
+The time, represented as a time_t, when the server was started.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_restart_time.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_rprintf.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_rprintf.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_rprintf.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_rprintf.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,6 @@
+<p>
+Sends the printf() style list of strings to the client.
+</p>
+<p>
+Returns the number of bytes sent on success, or -1 on error.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_rprintf.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_rputc.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_rputc.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_rputc.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_rputc.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,6 @@
+<p>
+Sends the character in <EM>c</EM> to the client.
+</p>
+<p>
+Returns <EM>c</EM>, or EOF if the connection has been closed.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_rputc.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_rputs.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_rputs.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_rputs.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_rputs.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,6 @@
+<p>
+Sends the string <EM>str</EM> to the client.
+</p>
+<p>
+Returns the number of bytes sent on success, or -1 on error.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_rputs.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_run_cleanup.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_run_cleanup.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_run_cleanup.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_run_cleanup.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,6 @@
+<p>
+Runs a cleanup function <EM>cleanup</EM>, with alarms blocked.
+</p>
+<p>
+Usually not used except for special cases, as cleanups run automatically.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_run_cleanup.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_run_sub_req.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_run_sub_req.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_run_sub_req.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_run_sub_req.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,8 @@
+<p>
+Runs a subrequest generated with
+ap_sub_req_lookup_file or
+ap_sub_req_lookup_uri.
+</p>
+<p>
+Returns the status code of the request handler.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_run_sub_req.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_rvputs.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_rvputs.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_rvputs.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_rvputs.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,6 @@
+<p>
+Sends the NULL terminated list of strings to the client.
+</p>
+<p>
+Returns the number of bytes sent on success, or -1 on error.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_rvputs.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_scoreboard_image.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_scoreboard_image.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_scoreboard_image.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_scoreboard_image.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,3 @@
+<p>
+A (hopefully) shared memory image of the server scoreboard structure.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_scoreboard_image.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_send_fb.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_send_fb.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_send_fb.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_send_fb.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,6 @@
+<p>
+Copies the BUFF <EM>f</EM> to the client.
+</p>
+<p>
+Returns the number of bytes sent.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_send_fb.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_send_fb_length.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_send_fb_length.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_send_fb_length.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_send_fb_length.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,8 @@
+<p>
+Copies no more than <EM>length</EM> bytes from the BUFF <EM>f</EM> to
+the client.
+If <EM>length</EM> is &lt; 0, copies the whole buffer.
+</p>
+<p>
+Returns the number of bytes sent.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_send_fb_length.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_send_fd.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_send_fd.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_send_fd.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_send_fd.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,6 @@
+<p>
+Copies the stream <EM>f</EM> to the client.
+</p>
+<p>
+Returns the number of bytes sent.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_send_fd.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_send_fd_length.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_send_fd_length.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_send_fd_length.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_send_fd_length.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,8 @@
+<p>
+Copies no more than <EM>length</EM> bytes from the stream <EM>f</EM> to
+the client.
+If <EM>length</EM> is &lt; 0, copies the whole file.
+</p>
+<p>
+Returns the number of bytes sent.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_send_fd_length.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_send_http_header.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_send_http_header.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_send_http_header.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_send_http_header.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,12 @@
+<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>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_send_http_header.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_server_argv0.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_server_argv0.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_server_argv0.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_server_argv0.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,3 @@
+<p>
+The command line argument string by which Apache was invoked,
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_server_argv0.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_server_root.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_server_root.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_server_root.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_server_root.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,4 @@
+<p>
+The string value of the ServerRoot configuration directive, the root
+directory of the server installation.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_server_root.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_setup_client_block.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_setup_client_block.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_setup_client_block.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_setup_client_block.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,9 @@
+<p>
+Readies to receive data from the client, normally because the client made a
+PUT or POST request. Should be called before
+ap_should_client_block.
+</p>
+<p>
+Returns OK if data is allowed from the client, or a status code if it is not.
+Note that OK will be returned even if the request doesn't contain client data.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_setup_client_block.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_should_client_block.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_should_client_block.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_should_client_block.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_should_client_block.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,9 @@
+<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 ap_setup_client_block
+and before ap_get_client_block.
+</p>
+<p>
+Returns 1 if the client should send data, 0 if not.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_should_client_block.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_snprintf.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_snprintf.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_snprintf.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_snprintf.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,19 @@
+<p>
+These are snprintf implementations based on ap_vformatter().
+</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>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_snprintf.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_soft_timeout.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_soft_timeout.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_soft_timeout.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_soft_timeout.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,8 @@
+<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>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_soft_timeout.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_spawn_child_err.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_spawn_child_err.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_spawn_child_err.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_spawn_child_err.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,10 @@
+<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
+ap_cleanup_for_exec.
+</p>
+<p>
+See kill_conditions for the various ways
+the child process can be killed. Returns PID of the child, or -1 on error.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_spawn_child_err.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_spawn_child_err_buff.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_spawn_child_err_buff.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_spawn_child_err_buff.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_spawn_child_err_buff.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,10 @@
+<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 ap_cleanup_for_exec.
+</p>
+<p>
+See kill_conditions for the various ways
+the child process can be killed. Returns PID of the child, or -1 on error.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_spawn_child_err_buff.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_status_drops_connection.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_status_drops_connection.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_status_drops_connection.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_status_drops_connection.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,4 @@
+<p>
+Macro representing a Boolean expression for all HTTP error response values
+which will cause the current connection to be dropped.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_status_drops_connection.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_strcasecmp_match.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_strcasecmp_match.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_strcasecmp_match.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_strcasecmp_match.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,8 @@
+<p>
+Matches <EM>str</EM> to <EM>exp</EM>. '*' can be used for any
+number of characters, and '?' can be used for any single character.
+</p>
+<p>
+Returns 1 for success, 0 for failure, and -1 for abort. Deprecated, use
+newer regex functions instead.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_strcasecmp_match.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_strcmp_match.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_strcmp_match.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_strcmp_match.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_strcmp_match.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,8 @@
+<p>
+Matches <EM>str</EM> to <EM>exp</EM>. '*' can be used for any
+number of characters, and '?' can be used for any single character.
+</p>
+<p>
+Returns 1 for success, 0 for failure, and -1 for abort. Deprecated, use
+newer regex functions instead.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_strcmp_match.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_sub_req_lookup_file.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_sub_req_lookup_file.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_sub_req_lookup_file.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_sub_req_lookup_file.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,9 @@
+<p>
+Processes <EM>new_file</EM> to produce a new request_rec,
+which is processed up to the point where the new request handler would be
+called. If the URI is relative, it is processed relative to the URI of <EM>r</EM>.
+</p>
+<p>
+Returns the new request_rec, whose <EM>status</EM>
+member contains any error code.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_sub_req_lookup_file.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_sub_req_lookup_uri.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_sub_req_lookup_uri.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_sub_req_lookup_uri.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_sub_req_lookup_uri.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,10 @@
+<p>
+Processes the URI <EM>new_file</EM> to produce a new
+request_rec, which is processed up to the point
+where the new request handler would be called. If the URI is relative, it
+is processed relative to the URI of <EM>r</EM>.
+</p>
+<p>
+Returns the new request_rec, whose <EM>status</EM>
+member contains any error code.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_sub_req_lookup_uri.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_suexec_enabled.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_suexec_enabled.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_suexec_enabled.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_suexec_enabled.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,3 @@
+<p>
+Boolean value indicating whether the suexec facility is active.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_suexec_enabled.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_table_add.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_table_add.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_table_add.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_table_add.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,23 @@
+<p>
+Adds a new value <var>val</var> to table <var>t</var>, associated with key
+<var>key</var>.
+Both the key and the value are copied into the table's pool using
+<code>ap_pstrdup()</code> and pointers to the copies used in the table.
+If both values are constants, such
+as literal strings, you should use <code>ap_table_addn()</code>
+instead.
+</p>
+<p>
+A new table entry is always created, even if there are already one or
+more entries with the same key.
+To update an existing entry, or create it if it doesn't exist, use
+<code>ap_table_set()</code> (<i>q.v.</i>).  Be aware, though,
+that <code>ap_table_set()</code> will delete all other entries
+with the same key.
+</p>
+<p>
+If a table has multiple entries for a particular key, only the
+first will be returned by the direct lookup routines (<i>e.g.</i>,
+<code>ap_table_get()</code>).  The only way to access such duplicate
+entries is to traverse the table with <code>ap_table_do()</code>.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_table_add.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_table_addn.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_table_addn.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_table_addn.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_table_addn.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,19 @@
+<p>
+Adds a new value <i>val</i> to table <i>t</i>, associated with <i>key</i>.
+Pointers to the supplied strings are stored in the table, so they
+must either be constants or at least have a greater longevity than
+the table's pool, and they <b>must not</b> be modified after the
+entry has been added to the table.  If these conditions cannot be
+met, you should use <code>ap_table_add()</code> instead.
+</p>
+<p>
+A new table entry is always created, even if it duplicates another.
+To update an existing entry, or create it if it doesn't exist, use
+<code>ap_table_setn()</code>.
+</p>
+<p>
+If a table has multiple entries for a particular key, only the
+first will be returned by the direct lookup routines (<i>e.g.</i>,
+<code>ap_table_get()</code>).  The only way to access such duplicate
+entries is to traverse the table with <code>ap_table_do()</code>.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_table_addn.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_table_get.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_table_get.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_table_get.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_table_get.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,3 @@
+<p>
+Returns the value of <EM>key</EM> in table <EM>t</EM>.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_table_get.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_table_merge.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_table_merge.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_table_merge.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_table_merge.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,7 @@
+<p>
+If <EM>name</EM> exists as a key value in <EM>tab</EM>, <EM>more_val</EM> is
+added to the table. A new entry is created otherwise.
+</p>
+<p>
+If more than one occurrence of <EM>name</EM> exists, only the first is modified.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_table_merge.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_table_mergen.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_table_mergen.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_table_mergen.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_table_mergen.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,8 @@
+<p>
+If <EM>name</EM> exists as a key value in <EM>tab</EM>, <EM>more_val</EM> is
+added to the table. A new entry is created otherwise.
+</p>
+<p>
+If more than one occurrence of <EM>name</EM> exists, only the first is modified.
+This function does not use ap_pstrdup.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_table_mergen.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_table_set.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_table_set.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_table_set.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_table_set.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,12 @@
+<p>
+Sets the entry in table <var>t</var> with key <var>k</var> to have value
+<var>val</var>.  If no such entry exists, one is created.  If an
+entry does exist, its value is replaced.  If there are multiple
+entries with key <var>k</var>, the first one is modified, and
+all the other matching entries are deleted from the table.  The value
+is always duplicated from the routine argument into the table's pool
+using <code>ap_pstrdup()</code>, and a pointer to the copy used; if a new
+entry needs to be created, the key string is copied as well.  If both
+the key and the value are literals, use <code>ap_table_setn()</code>
+instead.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_table_set.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_table_setn.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_table_setn.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_table_setn.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_table_setn.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,12 @@
+<p>
+Sets the entry in table <var>t</var> with key <var>k</var> to have value
+<var>val</var>.  If no such entry exists, one is created.  If an
+entry does exist, its value is replaced.  If there are multiple
+entries with key <var>k</var>, the first one is modified, and
+all the other matching entries are deleted from the table.
+The key and value pointers from the argument list are inserted
+directly into the table, so the caller <b>must not</b> modify
+them after calling this routine.  If either the key or the
+value cannot be guaranteed immutable, you should use
+<code>ap_table_set()</code> (<i>q.v.</i>) instead.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_table_setn.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_table_unset.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_table_unset.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_table_unset.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_table_unset.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,6 @@
+<p>
+Removes the table entry corresponding to <EM>key</EM>.
+</p>
+<p>
+Removing nonexistent entries is not an error condition.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_table_unset.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_tm2sec.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_tm2sec.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_tm2sec.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_tm2sec.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,6 @@
+<p>
+Returns time <EM>t</EM> to seconds since 1 Jan 1970 00:00 GMT.
+</p>
+<p>
+<EM>t</EM> is assumed to be time in GMT format.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_tm2sec.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_uname2id.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_uname2id.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_uname2id.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_uname2id.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,7 @@
+<p>
+Returns the UID corresponding to <EM>name</EM>.
+</p>
+<p>
+If <EM>name</EM>'s first character is #, returns the number following as UID;
+otherwise, uses getpwnam() to look up the UID.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_uname2id.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_unblock_alarms.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_unblock_alarms.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_unblock_alarms.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_unblock_alarms.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,3 @@
+<p>
+Removes a block on alarms for a call to block_alarms.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_unblock_alarms.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_unescape_url.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_unescape_url.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_unescape_url.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_unescape_url.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,8 @@
+<p>
+Replaces escape sequences (%nn) in a URL with the original unescaped character.
+Replacement is done in place.
+</p>
+<p>
+Returns 0 on success, BAD_REQUEST if a bad escape sequence is found, or
+NOT_FOUND if %2F (/) is found.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_unescape_url.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_uudecode.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_uudecode.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_uudecode.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_uudecode.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,3 @@
+<p>
+Returns a uudecoded version of <EM>str</EM>.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_uudecode.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_vbprintf.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_vbprintf.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_vbprintf.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_vbprintf.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,6 @@
+<p>
+Copies formatted data to a BUFF structure.
+</p>
+<p>
+Returns 0 on success, -1 on failure.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_vbprintf.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-ap_vsnprintf.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-ap_vsnprintf.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-ap_vsnprintf.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-ap_vsnprintf.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,19 @@
+<p>
+These are vsnprintf implementations based on ap_vformatter().
+</p>
+<p>
+Note that various standards and implementations disagree on the return
+value of vsnprintf, and side-effects due to %n in the formatting string.
+ap_vsnprintf 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_vsnprintf 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>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-ap_vsnprintf.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-cmd_how.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-cmd_how.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-cmd_how.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-cmd_how.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,58 @@
+<p>
+A set of values designating how argument processing is done for a given
+instance of a <code>command_rec</code>. Note that for all of these values
+except <code>RAW_ARGS</code>, the config routine is passed a freshly
+allocated string which can be modified or stored. It's only necessary to do
+<code>ap_pstrdup()</code> copying with <code>RAW_ARGS</code>. The allowable
+values are:
+</p>
+<table>
+ <tr>
+  <td><code>RAW_ARGS</code></td>
+  <td>cmd_func parses command line itself</td>
+ </tr>
+ <tr>
+  <td><code>TAKE1</code></td>
+  <td>one argument only</td>
+ </tr>
+ <tr>
+  <td><code>TAKE2</code></td>
+  <td>two arguments only</td>
+ </tr>
+ <tr>
+  <td><code>ITERATE</code></td>
+  <td>one argument, occuring multiple times (<i>e.g.</i>, IndexIgnore)</td>
+ </tr>
+ <tr>
+  <td><code>ITERATE2</code></td>
+  <td>two arguments, 2nd occurs multiple times (<i>e.g.</i>, AddIcon)</td>
+ </tr>
+ <tr>
+  <td><code>FLAG</code></td>
+  <td>One of 'On' or 'Off'</td>
+ </tr>
+ <tr>
+  <td><code>NO_ARGS</code></td>
+  <td>No arguments at all (<i>e.g.</i> &lt;/Directory&gt;)</td>
+ </tr>
+ <tr>
+  <td><code>TAKE12</code></td>
+  <td>one or two arguments</td>
+ </tr>
+ <tr>
+  <td><code>TAKE3</code></td>
+  <td>three arguments only</td>
+ </tr>
+ <tr>
+  <td><code>TAKE23</code></td>
+  <td>two or three arguments</td>
+ </tr>
+ <tr>
+  <td><code>TAKE123</code></td>
+  <td>one, two or three arguments</td>
+ </tr>
+ <tr>
+  <td><code>TAKE13</code></td>
+  <td>one or three arguments</td>
+ </tr>
+</table>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-cmd_how.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-cmd_parms.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-cmd_parms.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-cmd_parms.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-cmd_parms.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,4 @@
+<p>
+This structure is passed to a command which is being invoked,
+to carry a large variety of miscellaneous data.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-cmd_parms.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-conn_rec.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-conn_rec.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-conn_rec.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-conn_rec.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,24 @@
+<p>
+The <code>conn_rec</code> structure is used to hold information
+about a currently-open connexion between the Web server and a
+client.  Since a connexion is made to a server host, a <code>conn_rec</code>
+record is tied to a particular <code>server_rec</code>, and a
+pointer to that server record is stored in the <code>conn_rec</code>
+structure.
+</p>
+<p>
+The structure also contains information about the client, such as its
+IP address and DNS name (if a lookup has been performed).
+</p>
+<dl compact>
+ <dt><b>Note:</b></dt>
+ <dd>An unfortunate assumption was made during the early days of
+  Apache that only one set of authentication credentials would be
+  in use for any connexion, even persistent ones.  That is why this
+  structure includes the credential information instead of the
+  <code>request_rec</code>, which is where it actually belongs.
+  This has been corrected for Apache 2.0.</dd>
+ <dt><b>Note:</b></dt>
+ <dd>This structure has been very stable through the Apache 1.3
+  series of releases, but has been updated for 2.0.</dd>
+</dl>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-conn_rec.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-core_module.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-core_module.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-core_module.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-core_module.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,4 @@
+<p>
+This global module structure will be first in the core static module list.
+The core_module is exposed to other modules for NCSA back compatibility.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-core_module.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-global_score.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-global_score.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-global_score.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-global_score.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,4 @@
+<p>
+<EM>exit_generation</EM> is a boolean, set by the main process if a graceful
+restart is required.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-global_score.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-kill_conditions.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-kill_conditions.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-kill_conditions.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-kill_conditions.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,22 @@
+<p>
+Enumeration of process termination conditions, used by Apache process
+control functions such as ap_note_subprocess() and ap_spawn_child().
+The values signify:
+</p>
+<TABLE BORDER=0>
+<TR>
+<TD>kill_never
+<TD>process is never sent any signals
+<TR>
+<TD>kill_always
+<TD>process is sent SIGKILL on pool cleanup
+<TR>
+<TD>kill_after_timeout
+<TD>send SIGTERM, wait 3 seconds, send SIGKILL
+<TR>
+<TD>just_wait
+<TD>wait forever for the process to complete
+<TR>
+<TD>kill_only_once
+<TD>send SIGTERM and then wait
+</TABLE>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-kill_conditions.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-module.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-module.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-module.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-module.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,22 @@
+<p>
+A server extension module in Apache can
+declare handlers for a particular phase --- these are C functions
+which return an integer status code, and which take as argument a pointer to a
+structure known as a request_rec, which contains and coordinates all
+of the information regarding a particular request: the URI requested,
+type of the request, relevant directory-specific configuration
+information, and the like. In fact, the interface between the server core
+and extension modules (including the ones which implement the server's
+native NCSA emulation functionality) is through a module structure which
+consists mostly of pointers to handlers for various phases, or NULL,
+if the module elects not to handle that phase (there is also other
+information concerned with configuration management). 
+</p>
+<p>
+As a special case, a module can declare several handlers for the
+response-handling phase, distinguished by the types of entities
+(scripts, directories, ordinary files of particular kinds, or anything
+at all) that they wish to handle. The server core code does a dispatch
+based on the type of the entity requested to find the handler (or
+handlers, if the first one declines the request) which it eventually invokes. 
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-module.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-mutex.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-mutex.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-mutex.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-mutex.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,4 @@
+<p>
+Mutual exclusion (mutex) semaphore locking mechanism used to serialise
+interthread intraprocess activities.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-mutex.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-parent_score.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-parent_score.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-parent_score.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-parent_score.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,8 @@
+<p>
+This structure contains data which the parent generally writes and the
+children rarely read.
+</p>
+<p>
+The parent_rec structure contains time(0) of the last change,
+and the last vtime the parent has seen.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-parent_score.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/dict-pool.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/dict-pool.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/dict-pool.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/dict-pool.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,8 @@
+<p>
+The <code>pool</code> type is another name for the
+<code>ap_pool</code> structure (<i>q.v.</i>).  The
+latter is the preferred type name, to avoid name collisions
+with third-party library symbols.  However, due to
+historical reasons, a lot of legacy usages of the
+<code>pool</code> type name exist.
+</p>

Propchange: httpd/site/trunk/docs/dev/apidoc/dict-pool.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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