You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jo...@apache.org on 2005/07/20 18:09:24 UTC

svn commit: r219933 [18/18] - in /httpd/site/trunk: docs/apreq/docs/libapreq2/ xdocs/apreq/docs/libapreq2/

Modified: httpd/site/trunk/xdocs/apreq/docs/libapreq2/group__apreq__xs__request.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/xdocs/apreq/docs/libapreq2/group__apreq__xs__request.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/xdocs/apreq/docs/libapreq2/group__apreq__xs__request.html (original)
+++ httpd/site/trunk/xdocs/apreq/docs/libapreq2/group__apreq__xs__request.html Wed Jul 20 09:09:19 2005
@@ -1,7 +1,7 @@
 <html>
 <head>
   <link rel="stylesheet" type="text/css" href="dox.css" />
-  <title>libapreq2-2.05-dev: libapreq2: Apache2::Request</title> 
+  <title>libapreq2-2.06-dev: libapreq2: Apache2::Request</title> 
 </head>
 <body>
 <div id="page-header">
@@ -10,7 +10,7 @@
 <a href="http://httpd.apache.org/apreq/">Request Library Subproject</a></p>
 <p class="apache">Apache HTTP Server Request Library</p>
 <img alt="" src="feather.gif" /></div>
-<!-- Generated by Doxygen 1.4.2 -->
+<!-- Generated by Doxygen 1.4.3-20050530 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related&nbsp;Pages</a></div>
 <h1>Apache2::Request<br>
 <small>
@@ -20,9 +20,12 @@
 </table>
 
 
+
 <p><a name="__index__"></a></p>
+
 <!-- INDEX BEGIN -->
 
+
 <ul>
 
 	<li><a href="#name">NAME</a></li>
@@ -48,159 +51,276 @@
 	<li><a href="#see_also">SEE ALSO</a></li>
 	<li><a href="#copyright">COPYRIGHT</a></li>
 </ul>
+
 <!-- INDEX END -->
 
+
 <hr />
+
 <p>
+
 </p>
+
 <h1><a name="name">NAME</a></h1>
+
 <p>Apache2::Request - Methods for dealing with client request data</p>
+
 <p>
+
 </p>
 <hr />
+
 <h1><a name="synopsis">SYNOPSIS</a></h1>
+
 <pre>
     use Apache2::Request;
     $req = Apache2::Request-&gt;new($r);
     @foo = $req-&gt;param(&quot;foo&quot;);
     $bar = $req-&gt;args(&quot;bar&quot;);</pre>
+
 <p>
+
 </p>
 <hr />
+
 <h1><a name="description">DESCRIPTION</a></h1>
+
 <p>The Apache2::Request module provides methods for parsing GET and POST parameters
 encoded with either <em>application/x-www-form-urlencoded</em> or <em>multipart/form-data</em>.
 Although Apache2::Request provides a few new APIs for accessing the parsed data,
 it remains largely backwards-compatible with the original 1.X API.  See the
 <a href="#porting_from_1_x">PORTING from 1.X</a> section below for a list of known issues.</p>
+
 <p>This manpage documents the Apache2::Request package.</p>
+
 <p>
+
 </p>
 <hr />
+
 <h1><a name="apache2__request">Apache2::Request</a></h1>
+
 <p>The interface is designed to mimic the CGI.pm routines for parsing
 query parameters. The main differences are</p>
+
 <ul>
-<li><strong><a name="item_as"><code>Apache2::Request::new</code> takes an environment-specific
+
+<li>
+<strong>
+<a name="item_as"><code>Apache2::Request::new</code> takes an environment-specific
         object <code>$r</code> as (second) argument.  Newer versions of CGI.pm also accept
-        this syntax within modperl.</a></strong><br />
+        this syntax within modperl.</a>
+</strong><br />
+
 </li>
-<li><strong><a name="item_the_query_parameters_are_stored_in_apr_3a_3atable_">The query parameters are stored in APR::Table derived objects, and
-        are therefore retrieved from the table by using case-insensitive keys.</a></strong><br />
+
+
+<li>
+<strong>
+<a name="item_the_query_parameters_are_stored_in_apr_3a_3atable_">The query parameters are stored in APR::Table derived objects, and
+        are therefore retrieved from the table by using case-insensitive keys.</a>
+</strong><br />
+
 </li>
-<li><strong><a name="item_the_query_string_is_always_parsed_immediately_2c_e">The query string is always parsed immediately, even for POST requests.</a></strong><br />
+
+
+<li>
+<strong>
+<a name="item_the_query_string_is_always_parsed_immediately_2c_e">The query string is always parsed immediately, even for POST requests.</a>
+</strong><br />
+
 </li>
+
+
 </ul>
+
+
 <p>
+
 </p>
+
 <h2><a name="new">new</a></h2>
+
 <pre>
     Apache2::Request-&gt;new($r, %args)</pre>
+
 <p>Creates a new Apache2::Request object.</p>
+
 <pre>
     my $req = Apache2::Request-&gt;new($r, POST_MAX =&gt; &quot;1M&quot;);</pre>
+
 <p>With mod_perl2, the environment object $r must be an Apache2::RequestRec
 object.  In that case, all methods from Apache2::RequestRec are inherited.
 In the (default) CGI environment, $r must be an APR::Pool object.</p>
+
 <p>The following args are optional:</p>
+
 <ul>
-<li><strong><a name="item_post_max_2c_max_body"><code>POST_MAX</code>, <code>MAX_BODY</code></a></strong><br />
+
+<li>
+<strong>
+<a name="item_post_max_2c_max_body"><code>POST_MAX</code>, <code>MAX_BODY</code></a>
+</strong><br />
+
 </li>
+
+
 Limit the size of POST data (in bytes).
+
 <p></p>
-<li><strong><a name="item_disable_uploads"><code>DISABLE_UPLOADS</code></a></strong><br />
+
+<li>
+<strong>
+<a name="item_disable_uploads"><code>DISABLE_UPLOADS</code></a>
+</strong><br />
+
 </li>
+
+
 Disable file uploads.
+
 <p></p>
-<li><strong><a name="item_temp_dir"><code>TEMP_DIR</code></a></strong><br />
+
+<li>
+<strong>
+<a name="item_temp_dir"><code>TEMP_DIR</code></a>
+</strong><br />
+
 </li>
+
+
 Sets the directory where upload files are spooled.  On a *nix-like
 that supports <em>link(2)</em>, the TEMP_DIR should be located on the same
 file system as the final destination file:
+
 <pre>
  use Apache2::Upload;
  my $req = Apache2::Request-&gt;new($r, TEMP_DIR =&gt; &quot;/home/httpd/tmp&quot;);
  my $upload = $req-&gt;upload('file');
  $upload-&gt;link(&quot;/home/user/myfile&quot;);</pre>
+
 <p>For more details on <code>link</code>, see <a href="/Apache2/Upload.html">the Apache2::Upload manpage</a>.</p>
+
 <p></p>
-<li><strong><a name="item_hook_data"><code>HOOK_DATA</code></a></strong><br />
+
+<li>
+<strong>
+<a name="item_hook_data"><code>HOOK_DATA</code></a>
+</strong><br />
+
 </li>
+
+
 Extra configuration info passed as the fourth argument 
 to an upload hook.  See the description for the next item, 
 <a href="#item_upload_hook"><code>UPLOAD_HOOK</code></a>.
+
 <p></p>
-<li><strong><a name="item_upload_hook"><code>UPLOAD_HOOK</code></a></strong><br />
+
+<li>
+<strong>
+<a name="item_upload_hook"><code>UPLOAD_HOOK</code></a>
+</strong><br />
+
 </li>
+
+
 Sets up a callback to run whenever file upload data is read. This
 can be used to provide an upload progress meter during file uploads.
 Apache will automatically continue writing the original data to
 $upload-&gt;fh after the hook exits.
+
 <pre>
   my $transparent_hook = sub {
     my ($upload, $data, $data_len, $hook_data) = @_;
     warn &quot;$hook_data: got $data_len bytes for &quot; . $upload-&gt;name;
   };</pre>
+
 <pre>
   my $req = Apache2::Request-&gt;new($r, 
                                   HOOK_DATA =&gt; &quot;Note&quot;,
                                   UPLOAD_HOOK =&gt; $transparent_hook,
                                  );</pre>
-<p></p></ul>
+
+<p></p>
+</ul>
+
+
 <p>
+
 </p>
+
 <h2><a name="instance">instance</a></h2>
+
 <pre>
     Apache2::Request-&gt;instance($r)</pre>
+
 <p>The default (and only) behavior of <em>Apache2::Request</em> is to intelligently
 cache <strong>POST</strong> data for the duration of the request.  Thus there is no longer
 the need for a separate <a href="#item_instance"><code>instance()</code></a> method as existed in <em>Apache2::Request</em>
 for Apache 1.3 - all <strong>POST</strong> data is always available from each and every 
 <em>Apache2::Request</em> object created during the request's lifetime.</p>
+
 <p>However an <a href="#item_instance"><code>instance()</code></a> method is aliased to <code>new()</code> in this release
 to ease the pain of porting from 1.X to 2.X.</p>
+
 <p>
+
 </p>
+
 <h2><a name="param">param</a></h2>
+
 <pre>
     $req-&gt;param()
     $req-&gt;param($name)</pre>
+
 <p>Get the request parameters (using case-insensitive keys) by
 mimicing the OO interface of <code>CGI::param</code>.</p>
+
 <pre>
     # similar to CGI.pm</pre>
+
 <pre>
     my $foo_value   = $req-&gt;param('foo');
     my @foo_values  = $req-&gt;param('foo');
     my @param_names = $req-&gt;param;</pre>
+
 <pre>
     # the following differ slightly from CGI.pm</pre>
+
 <pre>
     # returns ref to APR::Request::Param::Table object representing 
     # all (args + body) params
     my $table = $req-&gt;param;
     @table_keys = keys %$table;</pre>
+
 <p>In list context, or when invoked with no arguments as 
 <code>$req-&gt;param()</code>, <code>param</code> induces libapreq2 to read 
 and parse all remaining data in the request body.
 However, <code>scalar $req-&gt;param(&quot;foo&quot;)</code> is lazy: libapreq2 
 will only read and parse more data if</p>
+
 <pre>
     1) no &quot;foo&quot; param appears in the query string arguments, AND
     2) no &quot;foo&quot; param appears in the previously parsed POST data.</pre>
+
 <p>In this circumstance libapreq2 will read and parse additional
 blocks of the incoming request body until either</p>
+
 <pre>
     1) it has found the the &quot;foo&quot; param, or 
     2) parsing is completed.</pre>
+
 <p>Observe that <code>scalar $req-&gt;param(&quot;foo&quot;)</code> will not raise
 an exception if it can locate ``foo'' in the existing body or
 args tables, even if the query-string parser or the body parser
 has failed.  In all other circumstances <code>param</code> will throw an
 Apache2::Request::Error object into $@ should either parser fail.</p>
+
 <pre>
     $req-&gt;args_status(1); # set error state for query-string parser 
     ok $req-&gt;param_status == 1;</pre>
+
 <pre>
     $foo = $req-&gt;param(&quot;foo&quot;);
     ok $foo == 1;
@@ -209,127 +329,181 @@
     undef $@;
     eval { my $not_found = $req-&gt;param(&quot;non-existent-param&quot;) };
     ok $@-&gt;isa(&quot;Apache2::Request::Error&quot;);</pre>
+
 <pre>
     $req-&gt;args_status(0); # reset query-string parser state to &quot;success&quot;</pre>
+
 <p>Note: modifications to the <code>scalar $req-&gt;param()</code> table only
 affect the returned table object (the underlying C apr_table_t is 
 <em>generated</em> from the parse data by apreq_params()).  Modifications 
 do not affect the actual request data, and will not be seen by other 
 libapreq2 applications.</p>
+
 <p>
+
 </p>
+
 <h2><a name="parms__params">parms, params</a></h2>
+
 <p>The functionality of these functions is assumed by <code>param</code>,
 so they are no longer necessary.  Aliases to <code>param</code> are
 provided in this release for backwards compatibility,
 however they are deprecated and may be removed from a future 
 release.</p>
+
 <p>
+
 </p>
+
 <h2><a name="body">body</a></h2>
+
 <pre>
     $req-&gt;body()
     $req-&gt;body($name)</pre>
+
 <p>Returns an <em>APR::Request::Param::Table</em> object containing the POST data
 parameters of the <em>Apache2::Request</em> object.</p>
+
 <pre>
     my $body = $req-&gt;body;</pre>
+
 <p>An optional name parameter can be passed to return the POST data
 parameter associated with the given name:</p>
+
 <pre>
     my $foo_body = $req-&gt;body(&quot;foo&quot;);</pre>
+
 <p>More generally, <code>body()</code> follows the same pattern as <code>param()</code>
 with respect to its return values and argument list.  The main difference
 is that modifications to the <code>scalar $req-&gt;body()</code> table affect
 the underlying apr_table_t attribute in apreq_request_t, so their impact 
 will be noticed by all libapreq2 applications during this request.</p>
+
 <p>
+
 </p>
+
 <h2><a name="upload">upload</a></h2>
+
 <pre>
     $req-&gt;upload()
     $req-&gt;upload($name)</pre>
+
 <p>Requires <code>Apache2::Upload</code>.  With no arguments, this method
 returns an <em>APR::Request::Param::Table</em> object in scalar context, 
 or the names of all <em>Apache2::Upload</em> objects in list context.</p>
+
 <p>An optional name parameter can be passed to return the <em>Apache2::Upload</em>
 object associated with the given name:</p>
+
 <pre>
     my $upload = $req-&gt;upload($name);</pre>
+
 <p>More generally, <code>upload()</code> follows the same pattern as <code>param()</code>
 with respect to its return values and argument list.  The main difference
 is that its returned values are Apache2::Upload object refs, not 
 simple scalars.</p>
+
 <p>Note: modifications to the <code>scalar $req-&gt;upload()</code> table only
 affect the returned table object (the underlying C apr_table_t is 
 <em>generated</em> by apreq_uploads()).  They do not affect the actual request 
 data, and will not be seen by other libapreq2 applications.</p>
+
 <p>
+
 </p>
+
 <h2><a name="args_status">args_status</a></h2>
+
 <pre>
-    $req-&gt;args_status()
-    $req-&gt;args_status($set)</pre>
-<p>Get/set the <em>APR</em> status code of the query-string parser.
+    $req-&gt;args_status()</pre>
+
+<p>Get the <em>APR</em> status code of the query-string parser.
 APR_SUCCESS on success, error otherwise.</p>
+
 <p>
+
 </p>
+
 <h2><a name="body_status">body_status</a></h2>
+
 <pre>
-    $req-&gt;body_status()
-    $req-&gt;body_status($set)</pre>
-<p>Get/set the current <em>APR</em> status code of the parsed POST data.
+    $req-&gt;body_status()</pre>
+
+<p>Get the current <em>APR</em> status code of the parsed POST data.
 APR_SUCCESS when parser has completed, APR_INCOMPLETE if parser
 has more data to parse, APR_EINIT if no post data has been parsed,
 error otherwise.</p>
+
 <p>
+
 </p>
+
 <h2><a name="param_status">param_status</a></h2>
+
 <pre>
     $req-&gt;param_status()</pre>
+
 <p>In scalar context, this returns <code>args_status</code> if there was
 an error during the query-string parse, otherwise this returns
 <code>body_status</code>, ie</p>
+
 <pre>
     $req-&gt;args_status || $req-&gt;body_status</pre>
+
 <p>In list context <code>param_status</code> returns the list 
 <code>(args_status, body_status)</code>.</p>
+
 <p>
+
 </p>
+
 <h2><a name="parse">parse</a></h2>
+
 <pre>
     $req-&gt;parse()</pre>
+
 <p>Forces the request to be parsed immediately.  In void context,
 this will throw an APR::Request::Error should the either the
 query-string or body parser fail. In all other contexts it will
 return the two parsers' combined <em>APR</em> status code</p>
+
 <pre>
     $req-&gt;body_status || $req-&gt;args_status</pre>
+
 <p>However <code>parse</code> should be avoided in most normal situations.  For example,
 in a mod_perl content handler it is more efficient to write</p>
+
 <pre>
     sub handler {
         my $r = shift;
         my $req = Apache2::Request-&gt;new($r);
         $r-&gt;discard_request_body;   # efficiently parses the request body
         my $parser_status = $req-&gt;body_status;</pre>
+
 <pre>
         #...
     }</pre>
+
 <p>Calling <code>$r-&gt;discard_request_body</code> outside the content handler
 is generally a mistake, so use <code>$req-&gt;parse</code> there, but 
 <strong>only as a last resort</strong>.  The Apache2::Request API is <strong>designed</strong> 
 around a lazy-parsing scheme, so calling <code>parse</code> should not
 affect the behavior of any other methods.</p>
+
 <p>
+
 </p>
 <hr />
+
 <h1><a name="subclassing_apache2__request">SUBCLASSING Apache2::Request</a></h1>
+
 <p>If the instances of your subclass are hash references then you can actually
 inherit from Apache2::Request as long as the Apache2::Request object is stored in
 an attribute called ``r'' or ``_r''. (The Apache2::Request class effectively does the
 delegation for you automagically, as long as it knows where to find the
 Apache2::Request object to delegate to.)  For example:</p>
+
 <pre>
         package MySubClass;
         use Apache2::Request;
@@ -338,65 +512,91 @@
                 my($class, @args) = @_;
                 return bless { r =&gt; Apache2::Request-&gt;new(@args) }, $class;
         }</pre>
+
 <p>
+
 </p>
 <hr />
+
 <h1><a name="porting_from_1_x">PORTING from 1.X</a></h1>
+
 <p>This is the complete list of changes to existing methods 
 from Apache2::Request 1.X.  These issues need to be 
 addressed when porting 1.X apps to the new 2.X API.</p>
+
 <ul>
-<li><strong><a name="item_apache2_3a_3aupload_is_now_a_separate_module_2e_ap">Apache2::Upload is now a separate module.  Applications
+
+<li>
+<strong>
+<a name="item_apache2_3a_3aupload_is_now_a_separate_module_2e_ap">Apache2::Upload is now a separate module.  Applications
         requiring the upload API must <code>use Apache2::Upload</code> in 2.X.
         This is easily addressed by preloading the modules during 
-        server startup.</a></strong><br />
+        server startup.</a>
+</strong><br />
+
+</li>
+
+
+<li>
+<strong>
+<a name="item_add">You can no longer add (or set or delete) parameters in the
+        <code>scalar $req-&gt;param</code>, <code>scalar $req-&gt;args</code> or
+        <code>scalar $req-&gt;body</code> tables.  Nor can you add (or set or delete)
+        cookies in the <code>scalar $req-&gt;jar</code> table.</a>
+</strong><br />
+
 </li>
-<li><strong><a name="item_args">You must use the <code>Apache2::Request::Table</code> API via 
-        <code>scalar $req-&gt;args</code> or <code>scalar $req-&gt;body</code> 
-        to assign new parameters to the request.  You may 
-        no longer use the two-argument method calls; e.g.</a></strong><br />
-</li>
-<pre>
-          $req-&gt;param(&quot;foo&quot; =&gt; &quot;bar&quot;); # NO: usage error in 2.X
-          $req-&gt;args-&gt;{foo} = &quot;bar&quot;;   # OK: assign to args table
-          $req-&gt;body-&gt;add(foo =&gt; &quot;bar&quot;);  # OK: add to body table</pre>
-<pre>
-          $req-&gt;param-&gt;add(foo =&gt; &quot;bar&quot;); # NO: this is an expensive noop,
-                                          # because the param table is
-                                          # generated by overlaying $req-&gt;args
-                                          # and $req-&gt;body.</pre>
-<pre>
-          my $params = $req-&gt;param;
-          $params-&gt;set(foo =&gt; &quot;bar&quot;); # OK: sets &quot;foo&quot; entry in $params, which
-                                      # is a local (args + body) table. Neither
-                                      # $req-&gt;args, $req-&gt;body, nor future calls
-                                      # to $req-&gt;param, are affected by mods to
-                                      # $params.</pre>
-<li><strong><a name="item_instance"><code>instance()</code> is now identical to <code>new()</code>, and is now deprecated.  It 
-        may be removed from a future 2.X release.</a></strong><br />
+
+
+<li>
+<strong>
+<a name="item_instance"><code>instance()</code> is now identical to <code>new()</code>, and is now deprecated.  It 
+        may be removed from a future 2.X release.</a>
+</strong><br />
+
 </li>
-<li><strong><a name="item_parms"><code>param</code> includes the functionality of <code>parms()</code> and <code>params()</code>, so
-        they are now deprecated and may be removed from a future 2.X release.</a></strong><br />
+
+
+<li>
+<strong>
+<a name="item_parms"><code>param</code> includes the functionality of <code>parms()</code> and <code>params()</code>, so
+        they are now deprecated and may be removed from a future 2.X release.</a>
+</strong><br />
+
 </li>
+
+
 </ul>
+
+
 <p>
+
 </p>
 <hr />
+
 <h1><a name="see_also">SEE ALSO</a></h1>
+
 <p><a href="/APR/Request/Param.html">the APR::Request::Param manpage</a>, <a href="/APR/Request/Error.html">the APR::Request::Error manpage</a>, <a href="/Apache2/Upload.html">the Apache2::Upload manpage</a>,
 <a href="/Apache2/Cookie.html">the Apache2::Cookie manpage</a>, APR::Table(3).</p>
+
 <p>
+
 </p>
 <hr />
+
 <h1><a name="copyright">COPYRIGHT</a></h1>
+
 <pre>
   Copyright 2003-2005  The Apache Software Foundation</pre>
+
 <pre>
   Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at</pre>
+
 <pre>
       <a href="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</a></pre>
+
 <pre>
   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
@@ -404,13 +604,14 @@
   See the License for the specific language governing permissions and
   limitations under the License.</pre>
 
- <div id="footer">
+
+<div id="footer">
 <p class="apache">
 Copyright &copy; 2003-2005 <a href="http://www.apache.org">The Apache Software Foundation</a>.<br/>
 See <a href="apreq_license.html">LICENSE</a>.</p>
 <p class="menu">
 <span style="color:#aaa">page generated by <a href="http://www.doxygen.org/"><code>doxygen</code></a>
-version 1.4.2 on 4 May 2005</span>
+version 1.4.3-20050530 on 19 Jul 2005</span>
 </p>
 </div>
 </body>

Modified: httpd/site/trunk/xdocs/apreq/docs/libapreq2/group__apreq__xs__upload.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/xdocs/apreq/docs/libapreq2/group__apreq__xs__upload.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/xdocs/apreq/docs/libapreq2/group__apreq__xs__upload.html (original)
+++ httpd/site/trunk/xdocs/apreq/docs/libapreq2/group__apreq__xs__upload.html Wed Jul 20 09:09:19 2005
@@ -1,7 +1,7 @@
 <html>
 <head>
   <link rel="stylesheet" type="text/css" href="dox.css" />
-  <title>libapreq2-2.05-dev: libapreq2: Apache2::Upload</title> 
+  <title>libapreq2-2.06-dev: libapreq2: Apache2::Upload</title> 
 </head>
 <body>
 <div id="page-header">
@@ -10,7 +10,7 @@
 <a href="http://httpd.apache.org/apreq/">Request Library Subproject</a></p>
 <p class="apache">Apache HTTP Server Request Library</p>
 <img alt="" src="feather.gif" /></div>
-<!-- Generated by Doxygen 1.4.2 -->
+<!-- Generated by Doxygen 1.4.3-20050530 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related&nbsp;Pages</a></div>
 <h1>Apache2::Upload<br>
 <small>
@@ -20,9 +20,12 @@
 </table>
 
 
+
 <p><a name="__index__"></a></p>
+
 <!-- INDEX BEGIN -->
 
+
 <ul>
 
 	<li><a href="#name">NAME</a></li>
@@ -56,238 +59,382 @@
 	<li><a href="#see_also">SEE ALSO</a></li>
 	<li><a href="#copyright">COPYRIGHT</a></li>
 </ul>
+
 <!-- INDEX END -->
 
+
 <hr />
+
 <p>
+
 </p>
+
 <h1><a name="name">NAME</a></h1>
+
 <p>Apache2::Upload - Methods for dealing with file uploads.</p>
+
 <p>
+
 </p>
 <hr />
+
 <h1><a name="synopsis">SYNOPSIS</a></h1>
+
 <pre>
     use Apache2::Upload;</pre>
+
 <pre>
     $req = Apache2::Request-&gt;new($r);
     $upload = $req-&gt;upload(&quot;foo&quot;);
     $size = $upload-&gt;size;</pre>
+
 <pre>
     # three methods to get at the upload's contents ... slurp, fh, io</pre>
+
 <pre>
     $upload-&gt;slurp($slurp_data);</pre>
+
 <pre>
     read $upload-&gt;fh, $fh_data, $size;
     ok $slurp_data eq $fh_data;</pre>
+
 <pre>
     my $io = $upload-&gt;io;
     print while &lt;$io&gt;;</pre>
+
 <p>
+
 </p>
 <hr />
+
 <h1><a name="description">DESCRIPTION</a></h1>
+
 <p>Apache2::Upload is a new module based on the original package included
 in Apache2::Request 1.X.  Users requiring the upload API must now 
 <code>use Apache2::Upload</code>, which adds the <code>upload</code> method to Apache2::Request.
 Apache2::Upload is largely backwards-compatible with the original 1.X API.
 See the <a href="#porting_from_1_x">PORTING from 1.X</a> section below for a list of known issues.</p>
+
 <p>This manpage documents the Apache2::Upload package.</p>
+
 <p>
+
 </p>
 <hr />
+
 <h1><a name="apache2__upload">Apache2::Upload</a></h1>
+
 <p>
+
 </p>
+
 <h2><a name="name">name</a></h2>
+
 <pre>
     $upload-&gt;name()</pre>
+
 <p>The name of the HTML form element which generated the upload.</p>
+
 <p>
+
 </p>
+
 <h2><a name="filename">filename</a></h2>
+
 <pre>
     $upload-&gt;filename()</pre>
+
 <p>The (client-side) filename as submitted in the HTML form.  Note: 
 some agents will submit the file's full pathname, while others 
 may submit just the basename.</p>
+
 <p>
+
 </p>
+
 <h2><a name="fh">fh</a></h2>
+
 <pre>
     $upload-&gt;fh()</pre>
+
 <p>Creates filehandle reference to the upload's spooled tempfile,
 which contains the full contents of the upload.</p>
+
 <p>
+
 </p>
+
 <h2><a name="io">io</a></h2>
+
 <pre>
     $upload-&gt;io()</pre>
+
 <p>Creates a tied IO handle.  This method is a more efficient version 
 of <code>fh</code>, but with <code>io</code> the handle ref returned is not seekable.  
 It is tied to an APR::Request::Brigade object, so you may use the 
 brigade API on the tied object if you want to manipulate the IO stream 
 (beyond simply reading from it).</p>
+
 <p>The returned reference is actually an object which has <code>read</code> and 
 <code>readline</code> methods available.  However these methods are just 
 syntactic sugar for the underlying <code>READ</code> and <code>READLINE</code> methods from 
 APR::Request::Brigade.</p>
+
 <pre>
     $io = $upload-&gt;io;
     print while $io-&gt;read($_); # equivalent to: tied(*$io)-&gt;READ($_)</pre>
+
 <p>See <a href="#read">READ</a> and <a href="#readline">READLINE</a> below for additional notes 
 on their usage.</p>
+
 <p>
+
 </p>
+
 <h2><a name="bb">bb</a></h2>
+
 <pre>
     $upload-&gt;bb()
     $upload-&gt;bb($set)</pre>
+
 <p>Get/set the APR::Brigade which represents the upload's contents.</p>
+
 <p>
+
 </p>
+
 <h2><a name="size">size</a></h2>
+
 <pre>
     $upload-&gt;size()</pre>
+
 <p>Returns the size of the upload in bytes.</p>
+
 <p>
+
 </p>
+
 <h2><a name="info">info</a></h2>
+
 <pre>
     $upload-&gt;info()
     $upload-&gt;info($set)</pre>
+
 <p>Get/set the additional header information table for the 
 uploaded file.
 Returns a hash reference tied to the <em>APR::Table</em> class.
 An optional <code>$table</code> argument can be passed to reassign
 the upload's internal (apr_table_t) info table to the one
 <code>$table</code> represents.</p>
+
 <pre>
     my $info = $upload-&gt;info;
     while (my($hdr_name, $hdr_value) = each %$info) {
         # ...
     }</pre>
+
 <pre>
     # fetch upload's Content-Type header
     my $type = $upload-&gt;info-&gt;{&quot;Content-type&quot;};</pre>
+
 <p>
+
 </p>
+
 <h2><a name="type">type</a></h2>
+
 <pre>
     $upload-&gt;type()</pre>
+
 <p>Returns the MIME type of the given <em>Apache2::Upload</em> object.</p>
+
 <pre>
     my $type = $upload-&gt;type;</pre>
+
 <pre>
     #same as
     my $content_type = $upload-&gt;info-&gt;{&quot;Content-Type&quot;};
     $content_type =~ s/;.*$//ms;</pre>
+
 <p>
+
 </p>
+
 <h2><a name="link">link</a></h2>
+
 <pre>
     $upload-&gt;link()</pre>
+
 <p>To avoid recopying the upload's internal tempfile brigade on a 
 *nix-like system, <em>link</em> will create a hard link to it:</p>
+
 <pre>
   my $upload = $req-&gt;upload('foo');
   $upload-&gt;link(&quot;/path/to/newfile&quot;) or
       die sprintf &quot;link from '%s' failed: $!&quot;, $upload-&gt;tempname;</pre>
+
 <p>Typically the new name must lie on the same device and partition 
 as the brigade's tempfile.  If this or any other reason prevents
 the OS from linking the files, <code>link()</code> will instead 
 copy the temporary file to the specified location.</p>
+
 <p>
+
 </p>
+
 <h2><a name="slurp">slurp</a></h2>
+
 <pre>
     $upload-&gt;slurp($contents)</pre>
+
 <p>Reads the full contents of a file upload into the scalar argument.
 The return value is the length of the file.</p>
+
 <pre>
     my $size = $upload-&gt;slurp($contents);</pre>
+
 <p>
+
 </p>
+
 <h2><a name="tempname">tempname</a></h2>
+
 <pre>
     $upload-&gt;tempname()</pre>
+
 <p>Provides the name of the spool file.</p>
+
 <pre>
     my $tempname = $upload-&gt;tempname;</pre>
+
 <p>
+
 </p>
 <hr />
+
 <h1><a name="apr__request__brigade">APR::Request::Brigade</a></h1>
+
 <p>This class is derived from APR::Brigade, providing additional
 methods for TIEHANDLE, READ and READLINE.  To be memory efficient,
 these methods delete buckets from the brigade as soon as their 
 data is actually read, so you cannot <code>seek</code> on handles tied to
 this class.  Such handles have semantics similar to that of a 
 read-only socket.</p>
+
 <p>
+
 </p>
+
 <h2><a name="tiehandle">TIEHANDLE</a></h2>
+
 <pre>
     APR::Request::Brigade-&gt;TIEHANDLE($bb)</pre>
+
 <p>Creates a copy of the bucket brigade represented by $bb, and
 blesses that copy into the APR::Request::Brigade class.  This
 provides syntactic sugar for using perl's builtin <code>read</code>, <code>readline</code>,
 and <code>&lt;&gt;</code> operations on handles tied to this package:</p>
+
 <pre>
     use Symbol;
     $fh = gensym;
     tie *$fh, &quot;APR::Request:Brigade&quot;, $bb;
     print while &lt;$fh&gt;;</pre>
+
 <p>
+
 </p>
+
 <h2><a name="read">READ</a></h2>
+
 <pre>
     $bb-&gt;READ($contents)
     $bb-&gt;READ($contents, $length)
     $bb-&gt;READ($contents, $length, $offset)</pre>
+
 <p>Reads data from the brigade $bb into $contents.  When omitted
 $length defaults to <code>-1</code>, which reads the first bucket into $contents.  
 A positive $length will read in $length bytes, or the remainder of the 
 brigade, whichever is greater. $offset represents the index in $context 
 to read the new data.</p>
+
 <p>
+
 </p>
+
 <h2><a name="readline">READLINE</a></h2>
+
 <pre>
     $bb-&gt;READLINE()</pre>
+
 <p>Returns the first line of data from the bride. Lines are terminated by
 linefeeds (the '\012' character), but we may eventually use <code>$/</code> instead.</p>
+
 <p>
+
 </p>
 <hr />
+
 <h1><a name="porting_from_1_x">PORTING from 1.X</a></h1>
+
 <ul>
-<li><strong><a name="item_next"><code>$upload-&gt;next()</code> is no longer available;  please use the 
-<code>APR::Request::Param::Table</code> API when iterating over upload entries.</a></strong><br />
+
+<li>
+<strong>
+<a name="item_next"><code>$upload-&gt;next()</code> is no longer available;  please use the 
+<code>APR::Request::Param::Table</code> API when iterating over upload entries.</a>
+</strong><br />
+
 </li>
-<li><strong><a name="item_info"><code>info($header_name)</code> is replaced by <code>info($set)</code>.</a></strong><br />
+
+
+<li>
+<strong>
+<a name="item_info"><code>info($header_name)</code> is replaced by <code>info($set)</code>.</a>
+</strong><br />
+
 </li>
-<li><strong><a name="item_type"><code>type()</code> returns only the MIME-type portion of the Content-Type header.</a></strong><br />
+
+
+<li>
+<strong>
+<a name="item_type"><code>type()</code> returns only the MIME-type portion of the Content-Type header.</a>
+</strong><br />
+
 </li>
+
+
 </ul>
+
+
 <p>
+
 </p>
 <hr />
+
 <h1><a name="see_also">SEE ALSO</a></h1>
+
 <p><a href="/APR/Request/Param/Table.html">the APR::Request::Param::Table manpage</a>, <a href="/APR/Request/Error.html">the APR::Request::Error manpage</a>, <a href="/Apache2/Request.html">the Apache2::Request manpage</a>,
 APR::Table(3)</p>
+
 <p>
+
 </p>
 <hr />
+
 <h1><a name="copyright">COPYRIGHT</a></h1>
+
 <pre>
   Copyright 2003-2005  The Apache Software Foundation</pre>
+
 <pre>
   Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at</pre>
+
 <pre>
       <a href="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</a></pre>
+
 <pre>
   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
@@ -295,13 +442,14 @@
   See the License for the specific language governing permissions and
   limitations under the License.</pre>
 
- <div id="footer">
+
+<div id="footer">
 <p class="apache">
 Copyright &copy; 2003-2005 <a href="http://www.apache.org">The Apache Software Foundation</a>.<br/>
 See <a href="apreq_license.html">LICENSE</a>.</p>
 <p class="menu">
 <span style="color:#aaa">page generated by <a href="http://www.doxygen.org/"><code>doxygen</code></a>
-version 1.4.2 on 4 May 2005</span>
+version 1.4.3-20050530 on 19 Jul 2005</span>
 </p>
 </div>
 </body>

Modified: httpd/site/trunk/xdocs/apreq/docs/libapreq2/group__libapreq2.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/xdocs/apreq/docs/libapreq2/group__libapreq2.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/xdocs/apreq/docs/libapreq2/group__libapreq2.html (original)
+++ httpd/site/trunk/xdocs/apreq/docs/libapreq2/group__libapreq2.html Wed Jul 20 09:09:19 2005
@@ -1,7 +1,7 @@
 <html>
 <head>
   <link rel="stylesheet" type="text/css" href="dox.css" />
-  <title>libapreq2-2.05-dev: libapreq2: Apache Request Library</title> 
+  <title>libapreq2-2.06-dev: libapreq2: Apache Request Library</title> 
 </head>
 <body>
 <div id="page-header">
@@ -10,25 +10,28 @@
 <a href="http://httpd.apache.org/apreq/">Request Library Subproject</a></p>
 <p class="apache">Apache HTTP Server Request Library</p>
 <img alt="" src="feather.gif" /></div>
-<!-- Generated by Doxygen 1.4.2 -->
+<!-- Generated by Doxygen 1.4.3-20050530 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related&nbsp;Pages</a></div>
-<h1>Apache Request Library</h1>libapreq2 Version 2.1.0  
+<h1>Apache Request Library</h1>libapreq2 Version 2.1.3  
 <a href="#_details">More...</a><table border="0" cellpadding="0" cellspacing="0">
 <tr><td></td></tr>
 <tr><td colspan="2"><br><h2>Files</h2></td></tr>
 <tr><td class="memItemLeft" nowrap align="right" valign="top">file &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="apreq_8h.html">apreq.h</a></td></tr>
 
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Main header file... <br></td></tr>
+<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Main header file...<p>
+Define the generic APREQ_ macros and common data structures. <br></td></tr>
 
 <p>
 <tr><td class="memItemLeft" nowrap align="right" valign="top">file &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="apreq__cookie_8h.html">apreq_cookie.h</a></td></tr>
 
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Cookies and Jars. <br></td></tr>
+<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Cookies and Jars.<p>
+<a class="el" href="apreq__cookie_8h.html">apreq_cookie.h</a> describes a common server-side API for request (incoming) and response (outgoing) cookies. It aims towards compliance with the standard cookie specifications listed below. <br></td></tr>
 
 <p>
 <tr><td class="memItemLeft" nowrap align="right" valign="top">file &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="apreq__error_8h.html">apreq_error.h</a></td></tr>
 
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Error status codes. <br></td></tr>
+<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Error status codes.<p>
+Define the APREQ_ error codes. <br></td></tr>
 
 <p>
 <tr><td class="memItemLeft" nowrap align="right" valign="top">file &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="apreq__module_8h.html">apreq_module.h</a></td></tr>
@@ -53,23 +56,24 @@
 <p>
 <tr><td class="memItemLeft" nowrap align="right" valign="top">file &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="apreq__version_8h.html">apreq_version.h</a></td></tr>
 
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Versioning API for libapreq. <br></td></tr>
+<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Versioning API for libapreq<p>
+There are several different mechanisms for accessing the version. There is a string form, and a set of numbers; in addition, there are constants which can be compiled into your application, and you can query the library being used for its actual version. <br></td></tr>
 
 <p>
 </table>
 <hr><a name="_details"></a><h2>Detailed Description</h2>
-libapreq2 Version 2.1.0 
+libapreq2 Version 2.1.3 
 <p>
 libapreq2 is a shared library based on the <a class="elRef" doxygen="apu.tag:http://apr.apache.org/docs/apr-util/" href="http://apr.apache.org/docs/apr-util/namespace_apache.html">Apache</a> Portable Runtime libraries libapr and libaprutil. <dl compact><dt><b>See also:</b></dt><dd><a href="http://apr.apache.org/">http://apr.apache.org/</a></dd></dl>
 <h2><a class="anchor" name="apreq2_config">
 Configuring libapreq2 Applications</a></h2>
-This package includes <code>apreq2-config</code>, a configuration script for building applications with libapreq2. Run <code>apreq2-config --help</code> to display its options. XXX add examples here XXX <div id="footer">
+This package includes <code>apreq2-config</code>, a configuration script for building applications with libapreq2. Run <code>apreq2-config --help</code> to display its options. XXX add examples here XXX<div id="footer">
 <p class="apache">
 Copyright &copy; 2003-2005 <a href="http://www.apache.org">The Apache Software Foundation</a>.<br/>
 See <a href="apreq_license.html">LICENSE</a>.</p>
 <p class="menu">
 <span style="color:#aaa">page generated by <a href="http://www.doxygen.org/"><code>doxygen</code></a>
-version 1.4.2 on 4 May 2005</span>
+version 1.4.3-20050530 on 19 Jul 2005</span>
 </p>
 </div>
 </body>

Modified: httpd/site/trunk/xdocs/apreq/docs/libapreq2/group__mod__apreq2.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/xdocs/apreq/docs/libapreq2/group__mod__apreq2.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/xdocs/apreq/docs/libapreq2/group__mod__apreq2.html (original)
+++ httpd/site/trunk/xdocs/apreq/docs/libapreq2/group__mod__apreq2.html Wed Jul 20 09:09:19 2005
@@ -1,7 +1,7 @@
 <html>
 <head>
   <link rel="stylesheet" type="text/css" href="dox.css" />
-  <title>libapreq2-2.05-dev: libapreq2: Apache 2.X Filter Module</title> 
+  <title>libapreq2-2.06-dev: libapreq2: Apache 2.X Filter Module</title> 
 </head>
 <body>
 <div id="page-header">
@@ -10,7 +10,7 @@
 <a href="http://httpd.apache.org/apreq/">Request Library Subproject</a></p>
 <p class="apache">Apache HTTP Server Request Library</p>
 <img alt="" src="feather.gif" /></div>
-<!-- Generated by Doxygen 1.4.2 -->
+<!-- Generated by Doxygen 1.4.3-20050530 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related&nbsp;Pages</a></div>
 <h1>Apache 2.X Filter Module<br>
 <small>
@@ -18,6 +18,13 @@
 </h1>mod_apreq2 - DSO that ties libapreq2 to <a class="elRef" doxygen="apu.tag:http://apr.apache.org/docs/apr-util/" href="http://apr.apache.org/docs/apr-util/namespace_apache.html">Apache</a> HTTPD 2.X.  
 <a href="#_details">More...</a><table border="0" cellpadding="0" cellspacing="0">
 <tr><td></td></tr>
+<tr><td colspan="2"><br><h2>Defines</h2></td></tr>
+<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="ga1"></a><!-- doxytag: member="mod_apreq2::APREQ_FILTER_NAME" ref="ga1" args="" -->
+#define&nbsp;</td><td class="memItemRight" valign="bottom"><b>APREQ_FILTER_NAME</b>&nbsp;&nbsp;&nbsp;&quot;apreq2&quot;</td></tr>
+
+<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="ga2"></a><!-- doxytag: member="mod_apreq2::APREQ_APACHE2_MMN" ref="ga2" args="" -->
+#define&nbsp;</td><td class="memItemRight" valign="bottom"><b>APREQ_APACHE2_MMN</b>&nbsp;&nbsp;&nbsp;20050712</td></tr>
+
 <tr><td colspan="2"><br><h2>Functions</h2></td></tr>
 <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="structapreq__handle__t.html">apreq_handle_t</a> *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__mod__apreq2.html#ga0">apreq_handle_apache2</a> (request_rec *r)</td></tr>
 
@@ -46,9 +53,9 @@
 <tr>
 <th>Directive </th><th>Context </th><th>Default</th><th>Description  </th></tr>
 <tr class="odd">
-<td>APREQ2_ReadLimit </td><td>directory </td><td>#APREQ_DEFAULT_READ_LIMIT  </td><td>Maximum number of bytes mod_apreq2 will send off to libapreq2 for parsing. mod_apreq2 will log this event and subsequently remove itself from the filter chain.   </td></tr>
+<td>APREQ2_ReadLimit </td><td>directory </td><td>APREQ_DEFAULT_READ_LIMIT  </td><td>Maximum number of bytes mod_apreq2 will send off to libapreq2 for parsing. mod_apreq2 will log this event and subsequently remove itself from the filter chain.   </td></tr>
 <tr>
-<td>APREQ2_BrigadeLimit </td><td>directory </td><td>#APREQ_DEFAULT_BRIGADE_LIMIT </td><td>Maximum number of bytes mod_apreq2 will let accumulate within the heap-buckets in a brigade. Excess data will be spooled to an appended file bucket.   </td></tr>
+<td>APREQ2_BrigadeLimit </td><td>directory </td><td>APREQ_DEFAULT_BRIGADE_LIMIT </td><td>Maximum number of bytes mod_apreq2 will let accumulate within the heap-buckets in a brigade. Excess data will be spooled to an appended file bucket.   </td></tr>
 <tr class="odd">
 <td>APREQ2_TempDir </td><td>directory </td><td>NULL </td><td>Sets the location of the temporary directory apreq will use to spool overflow brigade data (based on the APREQ2_BrigadeLimit setting). If left unset, libapreq2 will select a platform-specific location via <a class="elRef" doxygen="apr.tag:http://apr.apache.org/docs/apr/" href="http://apr.apache.org/docs/apr/group__apr__file__io.html#gga52">apr_temp_dir_get()</a>.   </td></tr>
 </table>
@@ -60,8 +67,8 @@
    XXX apreq as a "virtual" content handler.
    XXX apreq as a transparent "tee".
    XXX apreq parser registration in post_config
- </pre> <hr><h2>Function Documentation</h2>
-<a class="anchor" name="ga0" doxytag="apreq_module_apache2.h::apreq_handle_apache2"></a><p>
+ </pre><hr><h2>Function Documentation</h2>
+<a class="anchor" name="ga0"></a><!-- doxytag: member="apreq_module_apache2.h::apreq_handle_apache2" ref="ga0" args="(request_rec *r)" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -86,7 +93,7 @@
     <td>
 
 <p>
-Create an apreq handle which communicates with an <a class="elRef" doxygen="apu.tag:http://apr.apache.org/docs/apr-util/" href="http://apr.apache.org/docs/apr-util/namespace_apache.html">Apache</a> 2.X request_rec.     </td>
+Create an apreq handle which communicates with an <a class="elRef" doxygen="apu.tag:http://apr.apache.org/docs/apr-util/" href="http://apr.apache.org/docs/apr-util/namespace_apache.html">Apache</a> 2.X request_rec.    </td>
   </tr>
 </table>
 <div id="footer">
@@ -95,7 +102,7 @@
 See <a href="apreq_license.html">LICENSE</a>.</p>
 <p class="menu">
 <span style="color:#aaa">page generated by <a href="http://www.doxygen.org/"><code>doxygen</code></a>
-version 1.4.2 on 4 May 2005</span>
+version 1.4.3-20050530 on 19 Jul 2005</span>
 </p>
 </div>
 </body>

Modified: httpd/site/trunk/xdocs/apreq/docs/libapreq2/index.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/xdocs/apreq/docs/libapreq2/index.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/xdocs/apreq/docs/libapreq2/index.html (original)
+++ httpd/site/trunk/xdocs/apreq/docs/libapreq2/index.html Wed Jul 20 09:09:19 2005
@@ -1,7 +1,7 @@
 <html>
 <head>
   <link rel="stylesheet" type="text/css" href="dox.css" />
-  <title>libapreq2-2.05-dev: libapreq2: Main Page</title> 
+  <title>libapreq2-2.06-dev: libapreq2: Main Page</title> 
 </head>
 <body>
 <div id="page-header">
@@ -10,11 +10,11 @@
 <a href="http://httpd.apache.org/apreq/">Request Library Subproject</a></p>
 <p class="apache">Apache HTTP Server Request Library</p>
 <img alt="" src="feather.gif" /></div>
-<!-- Generated by Doxygen 1.4.2 -->
+<!-- Generated by Doxygen 1.4.3-20050530 -->
 <div class="qindex"><a class="qindexHL" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related&nbsp;Pages</a></div>
 <h1>libapreq2 Documentation</h1>
 <p>
-<h3 align="center">2.05-dev </h3>Project Website: <a href="http://httpd.apache.org/apreq/">http://httpd.apache.org/apreq/</a><p>
+<h3 align="center">2.06-dev </h3>Project Website: <a href="http://httpd.apache.org/apreq/">http://httpd.apache.org/apreq/</a><p>
 <div class="fragment"><pre class="fragment">
                     Apache HTTP Server Request Library
 
@@ -135,7 +135,7 @@
 See <a href="apreq_license.html">LICENSE</a>.</p>
 <p From cvs-return-22413-apmail-httpd-cvs-archive=httpd.apache.org@httpd.apache.org Wed Jul 20 16:11:52 2005
Return-Path: <cv...@httpd.apache.org>
Delivered-To: apmail-httpd-cvs-archive@www.apache.org
Received: (qmail 12410 invoked from network); 20 Jul 2005 16:11:49 -0000
Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199)
  by minotaur.apache.org with SMTP; 20 Jul 2005 16:11:49 -0000
Received: (qmail 45517 invoked by uid 500); 20 Jul 2005 16:10:59 -0000
Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org
Received: (qmail 44689 invoked by uid 500); 20 Jul 2005 16:10:51 -0000
Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm
Precedence: bulk
Reply-To: dev@httpd.apache.org
list-help: <ma...@httpd.apache.org>
list-unsubscribe: <ma...@httpd.apache.org>
List-Post: <ma...@httpd.apache.org>
List-Id: <cvs.httpd.apache.org>
Delivered-To: mailing list cvs@httpd.apache.org
Received: (qmail 43695 invoked by uid 99); 20 Jul 2005 16:10:41 -0000
X-ASF-Spam-Status: No, hits=-9.8 required=10.0
	tests=ALL_TRUSTED,NO_REAL_NAME
X-Spam-Check-By: apache.org
Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194)
    by apache.org (qpsmtpd/0.29) with SMTP; Wed, 20 Jul 2005 09:09:58 -0700
Received: (qmail 5836 invoked by uid 65534); 20 Jul 2005 16:09:56 -0000
Message-ID: <20...@minotaur.apache.org>
Content-Type: text/plain; charset="utf-8"
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Subject: svn commit: r219933 [16/18] - in /httpd/site/trunk:
 docs/apreq/docs/libapreq2/ xdocs/apreq/docs/libapreq2/
Date: Wed, 20 Jul 2005 16:09:24 -0000
To: cvs@httpd.apache.org
From: joes@apache.org
X-Mailer: svnmailer-1.0.2
X-Virus-Checked: Checked by ClamAV on apache.org
X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N

Modified: httpd/site/trunk/xdocs/apreq/docs/libapreq2/apreq__version_8h.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/xdocs/apreq/docs/libapreq2/apreq__version_8h.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/xdocs/apreq/docs/libapreq2/apreq__version_8h.html (original)
+++ httpd/site/trunk/xdocs/apreq/docs/libapreq2/apreq__version_8h.html Wed Jul 20 09:09:19 2005
@@ -1,7 +1,7 @@
 <html>
 <head>
   <link rel="stylesheet" type="text/css" href="dox.css" />
-  <title>libapreq2-2.05-dev: libapreq2: include/apreq_version.h File Reference</title> 
+  <title>libapreq2-2.06-dev: libapreq2: include/apreq_version.h File Reference</title> 
 </head>
 <body>
 <div id="page-header">
@@ -10,14 +10,15 @@
 <a href="http://httpd.apache.org/apreq/">Request Library Subproject</a></p>
 <p class="apache">Apache HTTP Server Request Library</p>
 <img alt="" src="feather.gif" /></div>
-<!-- Generated by Doxygen 1.4.2 -->
+<!-- Generated by Doxygen 1.4.3-20050530 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related&nbsp;Pages</a></div>
 <div class="nav">
 <a class="el" href="dir_000000.html">include</a></div>
-<h1>apreq_version.h File Reference</h1>Versioning API for libapreq. <a href="#_details">More...</a>
+<h1>apreq_version.h File Reference</h1>Versioning API for libapreq<p>
+There are several different mechanisms for accessing the version. There is a string form, and a set of numbers; in addition, there are constants which can be compiled into your application, and you can query the library being used for its actual version. <a href="#_details">More...</a>
 <p>
-<code>#include "<a class="elRef" doxygen="apr.tag:http://apr.apache.org/docs/apr/" href="http://apr.apache.org/docs/apr/apr__version_8h.html">apr_version.h</a>"</code><br>
-<code>#include "<a class="el" href="apreq_8h-source.html">apreq.h</a>"</code><br>
+<code>#include &quot;<a class="elRef" doxygen="apr.tag:http://apr.apache.org/docs/apr/" href="http://apr.apache.org/docs/apr/apr__version_8h.html">apr_version.h</a>&quot;</code><br>
+<code>#include &quot;<a class="el" href="apreq_8h-source.html">apreq.h</a>&quot;</code><br>
 
 <p>
 <a href="apreq__version_8h-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
@@ -27,13 +28,13 @@
 
 <tr><td class="memItemLeft" nowrap align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="apreq__version_8h.html#a1">APREQ_MINOR_VERSION</a>&nbsp;&nbsp;&nbsp;1</td></tr>
 
-<tr><td class="memItemLeft" nowrap align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="apreq__version_8h.html#a2">APREQ_PATCH_VERSION</a>&nbsp;&nbsp;&nbsp;0</td></tr>
+<tr><td class="memItemLeft" nowrap align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="apreq__version_8h.html#a2">APREQ_PATCH_VERSION</a>&nbsp;&nbsp;&nbsp;3</td></tr>
 
 <tr><td class="memItemLeft" nowrap align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="apreq__version_8h.html#a3">APREQ_IS_DEV_VERSION</a></td></tr>
 
 <tr><td class="memItemLeft" nowrap align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="apreq__version_8h.html#a4">APREQ_VERSION_STRING</a></td></tr>
 
-<tr><td class="memItemLeft" nowrap align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="apreq__version_8h.html#a5">APREQ_IS_DEV_STRING</a>&nbsp;&nbsp;&nbsp;"-dev"</td></tr>
+<tr><td class="memItemLeft" nowrap align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="apreq__version_8h.html#a5">APREQ_IS_DEV_STRING</a>&nbsp;&nbsp;&nbsp;&quot;-dev&quot;</td></tr>
 
 <tr><td colspan="2"><br><h2>Functions</h2></td></tr>
 <tr><td class="memItemLeft" nowrap align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="apreq__version_8h.html#a6">apreq_version</a> (<a class="elRef" doxygen="apr.tag:http://apr.apache.org/docs/apr/" href="http://apr.apache.org/docs/apr/structapr__version__t.html">apr_version_t</a> *pvsn)</td></tr>
@@ -42,19 +43,19 @@
 
 </table>
 <hr><a name="_details"></a><h2>Detailed Description</h2>
-Versioning API for libapreq. 
+Versioning API for libapreq<p>
+There are several different mechanisms for accessing the version. There is a string form, and a set of numbers; in addition, there are constants which can be compiled into your application, and you can query the library being used for its actual version. 
 <p>
-There are several different mechanisms for accessing the version. There is a string form, and a set of numbers; in addition, there are constants which can be compiled into your application, and you can query the library being used for its actual version.<p>
 Note that it is possible for an application to detect that it has been compiled against a different version of libapreq by use of the compile-time constants and the use of the run-time query function.<p>
 libapreq version numbering follows the guidelines specified in:<p>
-<a href="http://apr.apache.org/versioning.html">http://apr.apache.org/versioning.html</a> <hr><h2>Define Documentation</h2>
-<a class="anchor" name="a5" doxytag="apreq_version.h::APREQ_IS_DEV_STRING"></a><p>
+<a href="http://apr.apache.org/versioning.html">http://apr.apache.org/versioning.html</a><hr><h2>Define Documentation</h2>
+<a class="anchor" name="a5"></a><!-- doxytag: member="apreq_version.h::APREQ_IS_DEV_STRING" ref="a5" args="" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
       <table cellpadding="0" cellspacing="0" border="0">
         <tr>
-          <td class="md" nowrap valign="top">#define APREQ_IS_DEV_STRING&nbsp;&nbsp;&nbsp;"-dev"          </td>
+          <td class="md" nowrap valign="top">#define APREQ_IS_DEV_STRING&nbsp;&nbsp;&nbsp;&quot;-dev&quot;          </td>
         </tr>
       </table>
     </td>
@@ -71,7 +72,7 @@
 Internal: string form of the "is dev" flag     </td>
   </tr>
 </table>
-<a class="anchor" name="a3" doxytag="apreq_version.h::APREQ_IS_DEV_VERSION"></a><p>
+<a class="anchor" name="a3"></a><!-- doxytag: member="apreq_version.h::APREQ_IS_DEV_VERSION" ref="a3" args="" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -91,10 +92,10 @@
     <td>
 
 <p>
-This symbol is defined for internal, "development" copies of libapreq. This symbol will be #undef'd for releases.     </td>
+This symbol is defined for internal, "development" copies of libapreq. This symbol will be undef'd for releases.    </td>
   </tr>
 </table>
-<a class="anchor" name="a0" doxytag="apreq_version.h::APREQ_MAJOR_VERSION"></a><p>
+<a class="anchor" name="a0"></a><!-- doxytag: member="apreq_version.h::APREQ_MAJOR_VERSION" ref="a0" args="" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -114,10 +115,10 @@
     <td>
 
 <p>
-major version Major API changes that could cause compatibility problems for older programs such as structure size changes. No binary compatibility is possible across a change in the major version.     </td>
+major version Major API changes that could cause compatibility problems for older programs such as structure size changes. No binary compatibility is possible across a change in the major version.    </td>
   </tr>
 </table>
-<a class="anchor" name="a1" doxytag="apreq_version.h::APREQ_MINOR_VERSION"></a><p>
+<a class="anchor" name="a1"></a><!-- doxytag: member="apreq_version.h::APREQ_MINOR_VERSION" ref="a1" args="" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -137,16 +138,16 @@
     <td>
 
 <p>
-Minor API changes that do not cause binary compatibility problems. Should be reset to 0 when upgrading APREQ_MAJOR_VERSION     </td>
+Minor API changes that do not cause binary compatibility problems. Should be reset to 0 when upgrading APREQ_MAJOR_VERSION    </td>
   </tr>
 </table>
-<a class="anchor" name="a2" doxytag="apreq_version.h::APREQ_PATCH_VERSION"></a><p>
+<a class="anchor" name="a2"></a><!-- doxytag: member="apreq_version.h::APREQ_PATCH_VERSION" ref="a2" args="" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
       <table cellpadding="0" cellspacing="0" border="0">
         <tr>
-          <td class="md" nowrap valign="top">#define APREQ_PATCH_VERSION&nbsp;&nbsp;&nbsp;0          </td>
+          <td class="md" nowrap valign="top">#define APREQ_PATCH_VERSION&nbsp;&nbsp;&nbsp;3          </td>
         </tr>
       </table>
     </td>
@@ -163,7 +164,7 @@
 patch level     </td>
   </tr>
 </table>
-<a class="anchor" name="a4" doxytag="apreq_version.h::APREQ_VEclass="menu">
 <span style="color:#aaa">page generated by <a href="http://www.doxygen.org/"><code>doxygen</code></a>
-version 1.4.2 on 4 May 2005</span>
+version 1.4.3-20050530 on 19 Jul 2005</span>
 </p>
 </div>
 </body>

Modified: httpd/site/trunk/xdocs/apreq/docs/libapreq2/modules.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/xdocs/apreq/docs/libapreq2/modules.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/xdocs/apreq/docs/libapreq2/modules.html (original)
+++ httpd/site/trunk/xdocs/apreq/docs/libapreq2/modules.html Wed Jul 20 09:09:19 2005
@@ -1,7 +1,7 @@
 <html>
 <head>
   <link rel="stylesheet" type="text/css" href="dox.css" />
-  <title>libapreq2-2.05-dev: libapreq2: Module Index</title> 
+  <title>libapreq2-2.06-dev: libapreq2: Module Index</title> 
 </head>
 <body>
 <div id="page-header">
@@ -10,7 +10,7 @@
 <a href="http://httpd.apache.org/apreq/">Request Library Subproject</a></p>
 <p class=RSION_STRING"></a><p>
+<a class="anchor" name="a4"></a><!-- doxytag: member="apreq_version.h::APREQ_VERSION_STRING" ref="a4" args="" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -191,7 +192,7 @@
   </tr>
 </table>
 <hr><h2>Function Documentation</h2>
-<a class="anchor" name="a6" doxytag="apreq_version.h::apreq_version"></a><p>
+<a class="anchor" name="a6"></a><!-- doxytag: member="apreq_version.h::apreq_version" ref="a6" args="(apr_version_t *pvsn)" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -219,13 +220,13 @@
 Return libapreq's version information information in a numeric form.<p>
 <dl compact><dt><b>Parameters:</b></dt><dd>
   <table border="0" cellspacing="2" cellpadding="0">
-    <tr><td valign="top"></td><td valign="top"><em>pvsn</em>&nbsp;</td><td>Pointer to a version structure for returning the version information. </td></tr>
+    <tr><td valign="top"></td><td valign="top"><em>pvsn</em>&nbsp;</td><td>Pointer to a version structure for returning the version information.</td></tr>
   </table>
 </dl>
     </td>
   </tr>
 </table>
-<a class="anchor" name="a7" doxytag="apreq_version.h::apreq_version_string"></a><p>
+<a class="anchor" name="a7"></a><!-- doxytag: member="apreq_version.h::apreq_version_string" ref="a7" args="(void)" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -259,7 +260,7 @@
 See <a href="apreq_license.html">LICENSE</a>.</p>
 <p class="menu">
 <span style="color:#aaa">page generated by <a href="http://www.doxygen.org/"><code>doxygen</code></a>
-version 1.4.2 on 4 May 2005</span>
+version 1.4.3-20050530 on 19 Jul 2005</span>
 </p>
 </div>
 </body>

Modified: httpd/site/trunk/xdocs/apreq/docs/libapreq2/apreq_changes.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/xdocs/apreq/docs/libapreq2/apreq_changes.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
-"apache">Apache HTTP Server Request Library</p>
 <img alt="" src="feather.gif" /></div>
-<!-- Generated by Doxygen 1.4.2 -->
+<!-- Generated by Doxygen 1.4.3-20050530 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindexHL" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related&nbsp;Pages</a></div>
 <h1>libapreq2 Modules</h1>Here is a list of all modules:<ul>
 <li><a class="el" href="group__libapreq2.html">Apache Request Library</a>
@@ -25,6 +25,12 @@
 <li><a class="el" href="group__apreq__xs__request.html">Apache2::Request</a>
 <li><a class="el" href="group__apreq__xs__upload.html">Apache2::Upload</a>
 <li><a class="el" href="group__apreq__xs__cookie.html-- httpd/site/trunk/xdocs/apreq/docs/libapreq2/apreq_changes.html (original)
+++ httpd/site/trunk/xdocs/apreq/docs/libapreq2/apreq_changes.html Wed Jul 20 09:09:19 2005
@@ -1,7 +1,7 @@
 <html>
 <head>
   <link rel="stylesheet" type="text/css" href="dox.css" />
-  <title>libapreq2-2.05-dev: libapreq2: CHANGES</title> 
+  <title>libapreq2-2.06-dev: libapreq2: CHANGES</title> 
 </head>
 <body>
 <div id="page-header">
@@ -10,11 +10,37 @@
 <a href="http://httpd.apache.org/apreq/">Request Library Subproject</a></p>
 <p class="apache">Apache HTTP Server Request Library</p>
 <img alt="" src="feather.gif" /></div>
-<!-- Generated by Doxygen 1.4.2 -->
+<!-- Generated by Doxygen 1.4.3-20050530 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related&nbsp;Pages</a></div>
-<div class="nav">
-<b>CHANGES</b></div>
-<h1><a class="anchor" name="apreq_changes">CHANGES</a></h1><h2><a class="anchor" name="v2_05_dev">
+<h1><a class="anchor" name="apreq_changes">CHANGES</a></h1>! brief List of major changes.<h2><a class="anchor" name="v2_06">
+Changes with libapreq2-2.06 (released July 20, 2005)</a></h2>
+<ul>
+<li>C API [Marc Gràcia, joes] Fix apreq_decode(v) when iso-latin-1 chars appear at the end of an encoded string.</li></ul>
+<p>
+<ul>
+<li>Perl API [Philip M. Gollucci] Fix "Attempt to free temp prematurely" error in apreq_xs_croak().</li></ul>
+<p>
+<ul>
+<li>C API [Philip M. Gollucci] Add mod_apreq2 to httpd's server tokens.</li></ul>
+<p>
+<ul>
+<li>Perl API [joes] Drop support for $req-&gt;env(), which also died with 2.05-dev.</li></ul>
+<p>
+<ul>
+<li>Perl API [joes] Support for table set/add/delete methods is formally withdrawn. Technically this feature died with the module API refactoring in 2.05-dev.</li></ul>
+<p>
+<ul>
+<li>C API [max] Right-hand limit of <a class="el" href="apreq__util_8h.html#a16">apreq_brigade_move()</a> is declared as "excluding", but <a class="elRef" doxygen="apr.tag:http://apr.apache.org/docs/apr/" href="http://apr.apache.org/docs/apr/group__apr__ring.html#ga20">APR_RING_UNSPLICE()</a> wants an "including" right-hand limit. Fixed this by passing the previous bucket.</li></ul>
+<p>
+<ul>
+<li>Perl API [joes] Drop support for Apache2::Request::new's HOOK_DATA. UPLOAD_HOOK now takes only two arguments: ($upload, $data).</li></ul>
+<p>
+<ul>
+<li>Perl API [joes] Drop support for Apache2::Cookie::Jar::new's VALUE_CLASS. 2.05-dev broke that API, and it's not worth trying to fix. People who need that should use APR::Request::Cookie::Table's cookie_class() API instead.</li></ul>
+<p>
+<ul>
+<li>Perl API [joes] Fix cookie domain/path munging in Apache2::Cookie::new().</li></ul>
+<h2><a class="anchor" name="v2_05_dev">
 Changes with libapreq2-2.05-dev (released May 5, 2005)</a></h2>
 <ul>
 <li>Win32 build [Randy Kobes] Have top-level 'nmake', 'nmake test', and 'nmake install' targets, respectively, also include building, testing, and installing the corresponding perl glue targets.</li></ul>
@@ -41,7 +67,7 @@
 <li>Perl API [joes] Move bake, bake2 to Apache2::Cookie, now requiring an extra $r argument. Also ""-operator is mapped to as_string() for Apache2::Cookie; but APR::Request::Cookie maps it to value().</li></ul>
 <p>
 <ul>
-<li>C API [joes] Remove header_in &amp; header_out from <a class="el" href="structapreq__module__t.html">apreq_module_t</a>. Remove <a class="el" href="apreq__module_8h.html#a24">apreq_ua_cookie_version()</a> and apreq_cookie_bake*(). Remove cookie2 argument to <a class="el" href="apreq__module_8h.html#a21">apreq_handle_custom()</a>.</li></ul>
+<li>C API [joes] Remove header_in &amp; header_out from <a class="el" href="structapreq__module__t.html">apreq_module_t</a>. Remove apreq_ua_cookie_version() and apreq_cookie_bake*(). Remove cookie2 argument to <a class="el" href="apreq__module_8h.html#a21">apreq_handle_custom()</a>.</li></ul>
 <p>
 <ul>
 <li>C API [joes] s/APREQ/APREQ2/g in webserver configuration directives.</li></ul>
@@ -134,10 +160,10 @@
 <li>Build system [joes] Add --with-apache2-httpd option so users can override apxs's notion of where the httpd executable is. XSBuilder's header parser runs from buildconf now instead of configure, so we will include those tables in the release tarball. buildconf gets an additional --with-perl option for running the xsbuilder.pl parsing script. The XS generation code in xsbuilder.pl has moved to glue/perl/Makefile.PL.</li></ul>
 <p>
 <ul>
-<li>Perl API [joes] Allow ctors for Apache::Cookie, Apache::Cookie::Jar and <a class="elRef" doxygen="apu.tag:http://apr.apache.org/docs/apr-util/" href="http://apr.apache.org/docs/apr-util/namespace_apache.html">Apache</a>:::Request to accept Apache::Request objects (instead of requiring an Apache::RequestRec object). This thread details the bug <a href="http://thread.gmane.org/gmane.comp.apache.mod-perl/15727">http://thread.gmane.org/gmane.comp.apache.mod-perl/15727</a></li></ul>
+<li>Perl API [joes] Allow ctors for Apache::Cookie, Apache::Cookie::Jar and <a class="elRef" doxygen="apu.tag:http://apr.apache.org/docs/apr-util/" href="http://apr.apache.org/docs/apr-util/namespace_apache.html">Apache</a>:Request to accept Apache::Request objects (instead of requiring an Apache::RequestRec object). This thread details the bug <a href="http://thread.gmane.org/gmane.comp.apache.mod-perl/15727">http://thread.gmane.org/gmane.comp.apache.mod-perl/15727</a></li></ul>
 <p>
 <ul>
-<li>C API [Bojan Smojver] Bake cookies with err_headers_out so they are sent on non-2xx server responses (ie. a 304 redirect). Also ensure that headers are copied with apr_table_add instead of apr_table_addn. Since <a class="el" href="apreq__module_8h.html#a22">apreq_cookie_bake()</a> allocates from the stack, the Set-Cookie headers would occasi">Apache2::Cookie</a>
+<li><a class="el" href="group__apreq__xs__apr__request.html">APR::Request</a>
+<li><a class="el" href="group__apreq__xs__apr__request__cookie.html">APR::Request::Cookie</a>
+<li><a class="el" href="group__apreq__xs__apr__request__param.html">APR::Request::Param</a>
+<li><a class="el" href="group__apreq__xs__apr__request__error.html">APR::Request::Error</a>
+<li><a class="el" href="group__apreq__xs__apr__request__cgi.html">APR::Request::CGI</a>
+<li><a class="el" href="group__apreq__xs__apr__request__apache2.html">APR::Request::Apache2</a>
 </ul>
 </ul>
 </ul>
@@ -34,7 +40,7 @@
 See <a href="apreq_license.html">LICENSE</a>.</p>
 <p class="menu">
 <span style="color:#aaa">page generated by <a href="http://www.doxygen.org/"><code>doxygen</code></a>
-version 1.4.2 on 4 May 2005</span>
+version 1.4.3-20050530 on 19 Jul 2005</span>
 </p>
 </div>
 </body>

Modified: httpd/site/trunk/xdocs/apreq/docs/libapreq2/pages.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/xdocs/apreq/docs/libaponally get mangled without this patch.</li></ul>
+<li>C API [Bojan Smojver] Bake cookies with err_headers_out so they are sent on non-2xx server responses (ie. a 304 redirect). Also ensure that headers are copied with apr_table_add instead of apr_table_addn. Since apreq_cookie_bake() allocates from the stack, the Set-Cookie headers would occasionally get mangled without this patch.</li></ul>
 <p>
 <ul>
 <li>C API [joes] Add <a class="el" href="apreq__parser_8h.html#a19">apreq_register_parser()</a>, which allows users to add their own parsers to <a class="el" href="apreq__parser_8h.html#a18">apreq_parser()</a>'s recognized MIME types.</li></ul>
@@ -192,8 +218,9 @@
 <li>Perl API [joes] Added $jar-&gt;status, $req-&gt;args_status and $req-&gt;body_status to report parsing errors. Also add $upload-&gt;tempname per user request.</li></ul>
 <p>
 <ul>
-<li>C API [joes] Dropped status attribute of <a class="el" href="structapreq__value__t.html">apreq_value_t</a>. Added status field to apreq_jar_t and added args_statureq2/pages.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/xdocs/apreq/docs/libapreq2/pages.html (original)
+++ httpd/site/trunk/xdocs/apreq/docs/libapreq2/pages.html Wed Jul 20 09:09:19 2005
@@ -1,7 +1,7 @@
 <html>
 <head>
   <link rel="stylesheet" type="text/css" href="dox.css" />
-  <title>libapreq2-2.05-dev: libapreq2: Page Index</title> 
+  <title>libapreq2-2.06-dev: libapreq2: Page Index</title> 
 </head>
 <body>
 <div id="page-header">
@@ -10,7 +10,7 @@
 <a href="http://httpd.apache.org/apreq/">Request Library Subproject</a></p>
 <p class="apache">Apache HTTP Server Request Library</p>
 <img alt="" src="feather.gif" /></div>
-<!-- Generated by Doxygen 1.4.2 -->
+<!-- Generated by Doxygen 1.4.3-20050530 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a> | <a class="qindexHL" href="pages.html">Related&nbsp;Pages</a></div>
 <h1>libapreq2 Related Pages</h1>Here is a list of all related documentation pages:<ul>
 <li><a class="el" href="apreq_changes.html">CHANGES</a>
@@ -34,7 +34,7 @@
 See <a href="apreq_license.html">LICENSE</a>.</p>
 <p class="menu">
 <span style="color:#aaa">page generated by <a href="http://www.doxygen.org/"><code>doxygen</code></a>
-version 1.4.2 on 4 May 2005</span>
+version 1.4.3-20050530 on 19 Jul 2005</span>
 </p>
 </div>
 </body>

Modified: httpd/site/trunk/xdocs/apreq/docs/libapreq2/structapreq__cookie__t.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/xdocs/apreq/docs/libapreq2/structapreq__cookie__t.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/xdocs/apreq/docs/libapreq2/structapreq__cookie__t.html (original)
+++ httpd/site/trunk/xdocs/apreq/docs/libapreq2/structapreq__cookie__t.html Wed Jul 20 09:09:19 2005
@@ -1,7 +1,7 @@
 <html>
 <head>
   <link rel="stylesheet" type="text/css" href="dox.css" />
-  <title>libapreq2-2.05-dev: libapreq2: apreq_cookie_t Struct Reference</title> 
+  <title>libapreq2-2.06-dev: libapreq2: apreq_cookie_t Struct Reference</title> 
 </head>
 <body>
 <div id="page-header">
@@ -10,9 +10,9 @@
 <a href="http://httpd.apache.org/apreq/">Request Library Subproject</a></p>
 <p class="apache">Apache HTTP Server Request Library</p>
 <img alt="" src="feather.gif" /></div>
-<!-- Generated by Doxygen 1.4.2 -->
+<!-- Generated by Doxygen 1.4.3-20050530 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related&nbsp;Pages</a></div>
-<h1>apreq_cookie_t Struct Reference</h1>Cookie type, supporting both Netscape and RFC cookie specifications.  
+<h1>apreq_cookie_t Struct Reference</h1><!-- doxytag: class="apreq_cookie_t" -->Cookie type, supporting both Netscape and RFC cookie specifications.  
 <a href="#_details">More...</a>
 <p>
 <code>#include &lt;<a class="el" href="apreq__cookie_8h-source.html">apreq_cookie.h</a>&gt;</code>
@@ -41,7 +41,7 @@
 Cookie type, supporting both Netscape and RFC cookie specifications. 
 <p>
 <hr><h2>Field Documentation</h2>
-<a class="anchor" name="o3" doxytag="apreq_cookie_t::comment"></a><p>
+<a class="anchor" name="o3"></a><!-- doxytag: member="apreq_cookie_t::comment" ref="o3" args="" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -64,7 +64,7 @@
 RFC cookies may send a comment     </td>
   </tr>
 </table>
-<a class="anchor" name="o4" doxytag="apreq_cookie_t::commentURL"></a><p>
+<a class="anchor" name="o4"></a><!-- doxytag: member="apreq_cookie_t::commentURL" ref="o4" args="" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -87,7 +87,7 @@
 RFC cookies may place an URL here     </td>
   </tr>
 </table>
-<a class="anchor" name="o1" doxytag="apreq_cookie_t::domain"></a><p>
+<a class="anchor" name="o1"></a><!-- doxytag: member="apreq_cookie_t::domain" ref="o1" args="" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -110,7 +110,7 @@
 Restricts server domain     </td>
   </tr>
 </table>
-<a class="anchor" name="o6" doxytag="apreq_cookie_t::flags"></a><p>
+<a class="anchor" name="o6"></a><!-- doxytag: member="apreq_cookie_t::flags" ref="o6" args="" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -133,7 +133,7 @@
 charsets, taint marks, app-specific bits     </td>
   </tr>
 </table>
-<a class="anchor" name="o5" doxytag="apreq_cookie_t::max_age"></a><p>
+<a class="anchor" name="o5"></a><!-- doxytag: member="apreq_cookie_t::max_age" ref="o5" args="" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -156,7 +156,7 @@
 total duration of cookie: -1 == session     </td>
   </tr>
 </table>
-<a class="anchor" name="o0" doxytag="apreq_cookie_t::path"></a><p>
+<a class="anchor" name="o0"></a><!-- doxytag: member="apreq_cookie_t::path" ref="o0" args="" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -179,7 +179,7 @@
 Restricts url path     </td>
   </tr>
 </table>
-<a class="anchor" name="o2" doxytag="apreq_cookie_t::port"></a><p>
+<a class="anchor" name="o2"></a><!-- doxytag: member="apreq_cookie_t::port" ref="o2" args="" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -202,7 +202,7 @@
 Restricts server port     </td>
   </tr>
 </table>
-<a class="anchor" name="o7" doxytag="apreq_cookie_t::v"></a><p>
+<a class="anchor" name="o7"></a><!-- doxytag: member="apreq_cookie_t::v" ref="o7" args="" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -233,7 +233,7 @@
 See <a href="apreq_license.html">LICENSE</a>.</p>
 <p class="menu">
 <span style="color:#aaa">page generated by <a href="http://www.doxygen.org/"><code>doxygen</code></a>
-version 1.4.2 on 4 May 2005</span>
+version 1.4.3-20050530 on 19 Jul 2005</span>
 </p>
 </div>
 </body>

Modified: httpd/site/trunk/xdocs/apreq/docs/libapreq2/structapreq__handle__t.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/xdocs/apreq/docs/libapreq2/structapreq__handle__t.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/xdocs/apreq/docs/libapreq2/structapreq__handle__t.html (original)
+++ httpd/site/trunk/xdocs/apreq/docs/libapreq2/structapreq__handle__t.html Wed Jul 20 09:09:19 2005
@@ -1,7 +1,7 @@
 <html>
 <head>
   <link rel="stylesheet" type="text/css" href="dox.css" />
-  <title>libapreq2-2.05-dev: libapreq2: apreq_handle_t Struct Reference</title> 
+  <title>libapreq2-2.06-dev: libapreq2: apreq_handle_t Struct Reference</title> 
 </head>
 <body>
 <div id="page-header">
@@ -10,9 +10,9 @@
 <a href="http://httpd.apache.org/apreq/">Request Library Subproject</a></p>
 <p class="apache">Apache HTTP Server Request Library</p>
 <img alt="" src="feather.gif" /></div>
-<!-- Generated by Doxygen 1.4.2 -->
+<!-- Generated by Doxygen 1.4.3-20050530 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.s field to apreq_request_t. Parsers also must return their public status code when a NULL brigade is passed. apreq_hook_disable_uploads() is also added. This is an ABI change affecting all versions of libapreq2 prior to 2.0.12.</li></ul>
+<li>C API [joes] Dropped status attribute of <a class="el" href="structapreq__value__t.html">apreq_value_t</a>. Added status field to apreq_jar_t and added args_status field to apreq_request_t. Parsers also must return their public status code when a NULL brigade is passed. apreq_hook_disable_uploads() is also added.</li></ul>
 <p>
+This is an ABI change affecting all versions of libapreq2 prior to 2.0.12.<p>
 <ul>
 <li>Perl API [joes] $upload-&gt;info returns a proper APR::Table object now. Also implemented $upload-&gt;size, $upload-&gt;fh, and $upload-&gt;type.</li></ul>
 <p>
@@ -334,7 +361,7 @@
 See <a href="apreq_license.html">LICENSE</a>.</p>
 <p class="menu">
 <span style="color:#aaa">page generated by <a href="http://www.doxygen.org/"><code>doxygen</code></a>
-version 1.4.2 on 4 May 2005</span>
+version 1.4.3-20050530 on 19 Jul 2005</span>
 </p>
 </div>
 </body>

Modified: httpd/site/trunk/xdocs/apreq/docs/libapreq2/apreq_faq.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/xdocs/apreq/docs/libapreq2/apreq_faq.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/xdocs/apreq/docs/libapreq2/apreq_faq.html (original)
+++ httpd/site/trunk/xdocs/apreq/docs/libapreq2/apreq_faq.html Wed Jul 20 09:09:19 2005
@@ -1,7 +1,7 @@
 <html>
 <head>
   <link rel="stylesheet" type="text/css" href="dox.css" />
-  <title>libapreq2-2.05-dev: libapreq2: FAQ</title> 
+  <title>libapreq2-2.06-dev: libapreq2: FAQ</title> 
 </head>
 <body>
 <div id="page-header">
@@ -10,70 +10,152 @@
 <a href="http://httpd.apache.org/apreq/">Request Library Subproject</a></p>
 <p class="apache">Apache HTTP Server Request Library</p>
 <img alt="" src="feather.gif" /></div>
-<!-- Generated by Doxygen 1.4.2 -->
+<!-- Generated by Doxygen 1.4.3-20050530 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related&nbsp;Pages</a></div>
-<div class="nav">
-<b>groups.dox</b></div>
 <h1><a class="anchor" name="apreq_faq">FAQ</a></h1>
 
+
 <p><a name="__index__"></a></p>
+
 <!-- INDEX BEGIN -->
 
+
 <ul>
 
 	<li><a href="#issues_during_installation_">Issues during installation.</a></li>
-	<li><a href="#using_libapreq2_with_apache_2_and_mod_perl_2_">Using libapreq2 with Apache 2 and mod_perl 2.</a></li>
+	<li><a href="#using_libapreq2_with_apache2_and_mod_perl2_">Using libapreq2 with Apache2 and mod_perl2.</a></li>
 	<ul>
 
-		<li><a href="#when_i_use_apache__request_in_my_output_filter__it_seems_to_lose_the_incoming_post_variables_">When I use Apache::Request in my output filter, it seems to lose the incoming POST variables.</a></li>
-		<li><a href="#when_i_try_to_upload_a_file__why_do_i_get_this_error__error__can_t_locate_____apache_request_upload_al_in__inc">When I try to upload a file, why do I get this error ``[error] Can't locate .../Apache/Request/upload.al in @INC''?</a></li>
+		<li><a href="#i_keep_getting_undefined_symbol_errors_whenever">I keep getting ``undefined symbol'' errors whenever </a></li>
+		<li><a href="#when_i_use_apache2__request_in_my_output_filter__it_seems_to_lose">When I use Apache2::Request in my output filter, it seems to lose</a></li>
+		<li><a href="#when_i_try_to_upload_a_file__why_do_i_get_this_error">When I try to upload a file, why do I get this error </a></li>
 	</ul>
 
 	<li><a href="#using_libapreq2_outside_of_apache_">Using libapreq2 outside of Apache.</a></li>
+	<li><a href="#contributing_to_apreq_development_">Contributing to apreq development.</a></li>
+	<ul>
+
+		<li><a href="#how_is_the_subversion_repository_managed">How is the subversion repository managed?</a></li>
+	</ul>
+
 </ul>
+
 <!-- INDEX END -->
 
+
 <hr />
+
 <p>
+
 </p>
+
 <h1><a name="issues_during_installation_">Issues during installation.</a></h1>
+
 <p>[...]</p>
+
 <p>
+
 </p>
 <hr />
-<h1><a name="using_libapreq2_with_apache_2_and_mod_perl_2_">Using libapreq2 with Apache 2 and mod_perl 2.</a></h1>
+
+<h1><a name="using_libapreq2_with_apache2_and_mod_perl2_">Using libapreq2 with Apache2 and mod_perl2.</a></h1>
+
+<p>
+
+</p>
+
+<h2><a name="i_keep_getting_undefined_symbol_errors_whenever_i_use_apache2__request_or_apr__request__apache2_">I keep getting ``undefined symbol'' errors whenever 
+       I use Apache2::Request or APR::Request::Apache2.</a></h2>
+
+<p>You need to load mod_apreq2.so at server startup, which grabs
+all the required symbols at server startup.  Be sure your server
+config contains a line like</p>
+
+<pre>
+html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related&nbsp;Pages</a></div>
-<h1>apreq_handle_t Struct Reference</h1><code>#include &lt;<a class="el" href="apreq__module_8h-source.html">apreq_module.h</a>&gt;</code>
+<h1>apreq_handle_t Struct Reference</h1><!-- doxytag: class="apreq_handle_t" --><code>#include &lt;<a class="el" href="apreq__module_8h-source.html">apreq_module.h</a>&gt;</code>
 <p>
 <table border="0" cellpadding="0" cellspacing="0">
 <tr><td></td></tr>
@@ -25,10 +25,10 @@
 
 </table>
 <hr><a name="_details"></a><h2>Detailed Description</h2>
-An apreq handle associated with a module. The structure may have variable size, because the module may append its own data structures after it. 
+An apreq handle associated with a module. The structure may have variable size, because the module may append its own data structures after it.
 <p>
 <hr><h2>Field Documentation</h2>
-<a class="anchor" name="o2" doxytag="apreq_handle_t::bucket_alloc"></a><p>
+<a class="anchor" name="o2"></a><!-- doxytag: member="apreq_handle_t::bucket_alloc" ref="o2" args="" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -51,7 +51,7 @@
 the allocator, which persists at least as long as the pool     </td>
   </tr>
 </table>
-<a class="anchor" name="o0" doxytag="apreq_handle_t::module"></a><p>
+<a class="anchor" name="o0"></a><!-- doxytag: member="apreq_handle_t::module" ref="o0" args="" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -74,7 +74,7 @@
 the apreq module which implements this handle     </td>
   </tr>
 </table>
-<a class="anchor" name="o1" doxytag="apreq_handle_t::pool"></a><p>
+<a class="anchor" name="o1"></a><!-- doxytag: member="apreq_handle_t::pool" ref="o1" args="" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -105,7 +105,7 @@
 See <a href="apreq_license.html">LICENSE</a>.</p>
 <p class="menu">
 <span style="color:#aaa">page generated by <a href="http://www.doxygen.org/"><code>doxygen</code></a>
-version 1.4.2 on 4 May 2005</span>
+version 1.4.3-20050530 on 19 Jul 2005</span>
 </p>
 </div>
 </body>

Modified: httpd/site/trunk/xdocs/apreq/docs/libapreq2/structapreq__hook__t.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/xdocs/apreq/docs/libapreq2/structapreq__hook__t.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/xdocs/apreq/docs/libapreq2/structapreq__hook__t.html (original)
+++ httpd/site/trunk/xdocs/apreq/docs/libapreq2/structapreq__hook__t.html Wed Jul 20 09:09:19 2005
@@ -1,7 +1,7 @@
 <html>
 <head>
   <link rel="stylesheet" type="text/css" href="dox.css" />
-  <title>libapreq2-2.05-dev: libapreq2: apreq_hook_t Struct Reference</title> 
+  <title>libapreq2-2.06-dev: libapreq2: apreq_hook_t Struct Reference</title> 
 </head>
 <body>
 <div id="page-header">
@@ -10,9 +10,9 @@
 <a href="http://httpd.apache.org/apreq/">Request Library Subproject</a></p>
 <p class="apache">Apache HTTP Server Request Library</p>
 <img alt="" src="feather.gif" /></div>
-<!-- Generated by Doxygen 1.4.2 -->
+<!-- Generated by Doxygen 1.4.3-20050530 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related&nbsp;Pages</a></div>
-<h1>apreq_hook_t Struct Reference</h1><code>#include &lt;<a class="el" href="apreq__parser_8h-source.html">apreq_parser.h</a>&gt;</code>
+<h1>apreq_hook_t Struct Reference</h1><!-- doxytag: class="apreq_hook_t" --><code>#include &lt;<a class="el" href="apreq__parser_8h-source.html">apreq_parser.h</a>&gt;</code>
 <p>
 <table border="0" cellpadding="0" cellspacing="0">
 <tr><td></td></tr>
@@ -27,10 +27,10 @@
 
 </table>
 <hr><a name="_details"></a><h2>Detailed Description</h2>
-A hook is called by the parser whenever data arrives in a file upload parameter of the request body. You may associate any number of hooks with a parser instance with <a class="el" href="apreq__parser_8h.html#a17">apreq_parser_add_hook()</a>. 
+A hook is called by the parser whenever data arrives in a file upload parameter of the request body. You may associate any number of hooks with a parser instance with <a class="el" href="apreq__parser_8h.html#a17">apreq_parser_add_hook()</a>.
 <p>
 <hr><h2>Field Documentation</h2>
-<a class="anchor" name="o3" doxytag="apreq_hook_t::ctx"></a><p>
+<a class="anchor" name="o3"></a><!-- doxytag: member="apreq_hook_t::ctx" ref="o3" args="" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -53,7 +53,7 @@
 a user defined pointer passed to the hook function     </td>
   </tr>
 </table>
-<a class="anchor" name="o0" doxytag="apreq_hook_t::hook"></a><p>
+<a class="anchor" name="o0"></a><!-- doxytag: member="apreq_hook_t::hook" ref="o0" args="" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -76,7 +76,7 @@
 the hook function     </td>
   </tr>
 </table>
-<a class="anchor" name="o1" doxytag="apreq_hook_t::next"></a><p>
+<a class="anchor" name="o1"></a><!-- doxytag: member="apreq_hook_t::next" ref="o1" args="" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -99,7 +99,7 @@
 next item in the linked list     </td>
   </tr>
 </table>
-<a class="anchor" name="o2" doxytag="apreq_hook_t::pool"></a><p>
+<a class="anchor" name="o2"></a><!-- doxytag: member="apreq_hook_t::pool" ref="o2" args="" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -130,7 +130,7 @@
 See <a href="apreq_license.html">LICENSE</a>.</p>
 <p class="menu">
 <span style="color:#aaa">page generated by <a href="http://www.doxygen.org/"><code>doxygen</code></a>
-version 1.4.2 on 4 May 2005</span>
+version 1.4.3-20050530 on 19 Jul 2005</span>
 </p>
 </div>
 </body>

Modified: httpd/site/trunk/xdocs/apreq/docs/libapreq2/structapreq__module__t.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/xdocs/apreq/docs/libapreq2/structapreq__module__t.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/xdocs/apreq/docs/libapreq2/structapreq__module__t.html (original)
+++ httpd/site/trunk/xdocs/apreq/docs/libapreq2/structapreq__module__t.html Wed Jul 20 09:09:19 2005
@@ -1,7 +1,7 @@
 <html>
 <head>
   <link rel="stylesheet" type="text/css" href="dox.css" />
-  <title>libapreq2-2.05-dev: libapreq2: apreq_module_t Struct Reference</title> 
+  <title>libapreq2-2.06-dev: libapreq2: apreq_module_t Struct Reference</title> 
 </head>
 <body>
 <div id="page-header">
@@ -10,9 +        LoadModule apreq_module   modules/mod_apreq2.so</pre>
+
 <p>
+
 </p>
-<h2><a name="when_i_use_apache__request_in_my_output_filter__it_seems_to_lose_the_incoming_post_variables_">When I use Apache::Request in my output filter, it seems to lose the incoming POST variables.</a></h2>
-<p>The problem is likely that the mod_apreq filter has not been 
+
+<h2><a name="when_i_use_apache2__request_in_my_output_filter__it_seems_to_lose_the_incoming_post_variables_">When I use Apache2::Request in my output filter, it seems to lose
+       the incoming POST variables.</a></h2>
+
+<p>The problem is likely that the mod_apreq2 filter has not been 
 added to the input filter chain in time to read the POST data.</p>
+
 <p>There are two solutions to this problem:</p>
+
 <pre>
- 1) Write a filter init handler for you filter that instantiates an Apache::Request object.</pre>
+ 1) Write a filter init handler for you filter that instantiates an
+    Apache2::Request object.</pre>
+
 <pre>
-    <a href="http://perl.apache.org/docs/2.0/api/Apache/Filter.html#C_FilterInitHandler_">http://perl.apache.org/docs/2.0/api/Apache/Filter.html#C_FilterInitHandler_</a></pre>
+    <a href="http://perl.apache.org/docs/2.0/api/Apache2/Filter.html#C_FilterInitHandler_">http://perl.apache.org/docs/2.0/api/Apache2/Filter.html#C_FilterInitHandler_</a></pre>
+
 <pre>
  2) Use .htaccess or your server config to ensure the apreq input filter
     is active for this request with &quot;AddInputFilter APREQ&quot; or somesuch.</pre>
+
 <p>We recommend using (1), and falling back to (2) until you get (1) working.</p>
+
 <p>
+
 </p>
-<h2><a name="when_i_try_to_upload_a_file__why_do_i_get_this_error__error__can_t_locate_____apache_request_upload_al_in__inc">When I try to upload a file, why do I get this error ``[error] Can't locate .../Apache/Request/upload.al in @INC''?</a></h2>
-<p><em>Apache::Upload</em> is now a separate module in apreq2, so you need to 
-<code>use Apache::Upload</code> to load the <code>Apache::Request::upload</code> function.</p>
+
+<10,9 @@
 <a href="http://httpd.apache.org/apreq/">Request Library Subproject</a></p>
 <p class="apache">Apache HTTP Server Request Library</p>
 <img alt="" src="feather.gif" /></div>
-<!-- Generated by Doxygen 1.4.2 -->
+<!-- Generated by Doxygen 1.4.3-20050530 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related&nbsp;Pages</a></div>
-<h1>apreq_module_t Struct Reference</h1>Vtable describing the necessary environment functions.  
+<h1>apreq_module_t Struct Reference</h1><!-- doxytag: class="apreq_module_t" -->Vtable describing the necessary environment functions.  
 <a href="#_details">More...</a>
 <h2><a name="when_i_try_to_upload_a_file__why_do_i_get_this_error__error__can_t_locate_____apache2_request_upload_al_in__inc">When I try to upload a file, why do I get this error 
+       ``[error] Can't locate .../Apache2/Request/upload.al in @INC''?</a></h2>
+
+<p><em>Apache2::Upload</em> is now a separate module in apreq2, so you need to 
+<code>use Apache2::Upload</code> to load the <code>Apache2::Request::upload</code> function.</p>
+
 <p>
+
 </p>
 <hr />
+
 <h1><a name="using_libapreq2_outside_of_apache_">Using libapreq2 outside of Apache.</a></h1>
+
 <p>[...]</p>
 
+<p>
+
+</p>
+<hr />
+
+<h1><a name="contributing_to_apreq_development_">Contributing to apreq development.</a></h1>
+
+<p>
+
+</p>
+
+<h2><a name="how_is_the_subversion_repository_managed">How is the subversion repository managed?</a></h2>
+
+<p>apreq's repository is broken into three subdirectories:</p>
+
+<pre>
+    /trunk    - the current codebase for active development.
+    /tags     - release snapshots.
+    /branches - where older releases and experimental development lines live.</pre>
+
+<p>apreq follows a Commit-then-Review policy for its entire repository,
+but being a shared library places certain restrictions on the admissible
+changes for stable trees.   Basically the header files cannot be modified;
+only new functions and structures may be added to them.  Any time that 
+happens, the minor-version needs to be bumped, and the patch-level gets
+reset to zero.  Changes that only modify the library's implementation (.c)
+files require a bump to the patch-level.  On stable trees, this version 
+tracking should happen on each commit, to make auditing easy for other 
+developers without resorting to a draconian Review-then-Commit policy.</p>
+
+
  <div id="footer">
 <p class="apache">
 Copyright &copy; 2003-2005 <a href="http://www.apache.org">The Apache Software Foundation</a>.<br/>
 See <a href="apreq_license.html">LICENSE</a>.</p>
 <p class="menu">
 <span style="color:#aaa">page generated by <a href="http://www.doxygen.org/"><code>doxygen</code></a>
-version 1.4.2 on 4 May 2005</span>
+version 1.4.3-20050530 on 19 Jul 2005</span>
 </p>
 </div>
 </body>

Modified: httpd/site/trunk/xdocs/apreq/docs/libapreq2/apreq_install.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/xdocs/apreq/docs/libapreq2/apreq_install.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/xdocs/apreq/docs/libapreq2/apreq_install.html (original)
+++ httpd/site/trunk/xdocs/apreq/docs/libapreq2/apreq_install.html Wed Jul 20 09:09:19 2005
@@ -1,7 +1,7 @@
 <html>
 <head>
   <link rel="stylesheet" type="text/css" href="dox.css" />
-  <title>libapreq2-2.05-dev: libapreq2: INSTALL</title> 
+  <title>libapreq2-2.06-dev: libapreq2: INSTALL</title> 
 </head>
 <body>
 <div id="page-header">
@@ -10,10 +10,8 @@
 <a href="http://httpd.apache.org/apreq/">Request Library Subproject</a></p>
 <p class="apache">Apache HTTP Server Request Library</p>
 <img alt="" src="feather.gif" /></divp>
 <code>#include &lt;<a class="el" href="apreq__module_8h-source.html">apreq_module.h</a>&gt;</code>
@@ -59,7 +59,7 @@
 Vtable describing the necessary environment functions. 
 <p>
 <hr><h2>Field Documentation</h2>
-<a class="anchor" name="o3" doxytag="apreq_module_t::args"></a><p>
+<a class="anchor" name="o3"></a><!-- doxytag: member="apreq_module_t::args" ref="o3" args=")(apreq_handle_t *, const apr_table_t **)" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -82,7 +82,7 @@
 get a table with all query string parameters     </td>
   </tr>
 </table>
-<a class="anchor" name="o6" doxytag="apreq_module_t::args_get"></a><p>
+<a class="anchor" name="o6"></a><!-- doxytag: member="apreq_module_t::args_get" ref="o6" args=")(apreq_handle_t *, const char *)" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -105,7 +105,7 @@
 get a query string parameter by its name     </td>
   </tr>
 </table>
-<a class="anchor" name="o4" doxytag="apreq_module_t::body"></a><p>
+<a class="anchor" name="o4"></a><!-- doxytag: member="apreq_module_t::body" ref="o4" args=")(apreq_handle_t *, const apr_table_t **)" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -128,7 +128,7 @@
 get a table with all body parameters     </td>
   </tr>
 </table>
-<a class="anchor" name="o7" doxytag="apreq_module_t::body_get"></a><p>
+<a class="anchor" name="o7"></a><!-- doxytag: member="apreq_module_t::body_get" ref="o7" args=")(apreq_handle_t *, const char *)" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -151,7 +151,7 @@
 get a body parameter by its name     </td>
   </tr>
 </table>
-<a class="anchor" name="o11" doxytag="apreq_module_t::brigade_limit_get"></a><p>
+<a class="anchor" name="o11"></a><!-- doxytag: member="apreq_module_t::brigade_limit_get" ref="o11" args=")(apreq_handle_t *, apr_size_t *)" --><p>
 <table class="mdTable" cellpadding="2" cellspacin>
-<!-- Generated by Doxygen 1.4.2 -->
+<!-- Generated by Doxygen 1.4.3-20050530 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related&nbsp;Pages</a></div>
-<div class="nav">
-<b>groups.dox</b></div>
 <h1><a class="anchor" name="apreq_install">INSTALL</a></h1><div class="fragment"><pre class="fragment">PREREQUISITES:
 
 Please see the PREREQUISITES file.  If you are building httpd-apreq-2 
@@ -34,8 +32,8 @@
             % make install
 
 
-Or using the CPAN/perlish way (which includes the Apache::Request and
-Apache::Cookie modules):
+Or using the CPAN/perlish way (which includes the Apache2::Request g="0">
   <tr>
     <td class="mdRow">
@@ -174,7 +174,7 @@
 determine the maximum in-memory bytes a brigade may use     </td>
   </tr>
 </table>
-<a class="anchor" name="o12" doxytag="apreq_module_t::brigade_limit_set"></a><p>
+<a class="anchor" name="o12"></a><!-- doxytag: member="apreq_module_t::brigade_limit_set" ref="o12" args=")(apreq_handle_t *, apr_size_t)" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -197,7 +197,7 @@
 set the maximum in-memory bytes a brigade may use     </td>
   </tr>
 </table>
-<a class="anchor" name="o10" doxytag="apreq_module_t::hook_add"></a><p>
+<a class="anchor" name="o10"></a><!-- doxytag: member="apreq_module_t::hook_add" ref="o10" args=")(apreq_handle_t *, apreq_hook_t *)" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -220,7 +220,7 @@
 add a hook function     </td>
   </tr>
 </table>
-<a class="anchor" name="o2" doxytag="apreq_module_t::jar"></a><p>
+<a class="anchor" nand
+Apache2::Cookie modules):
 
             % perl Makefile.PL --with-apache2-apxs=/path/to/apache2/bin/apxs
             % make
@@ -108,7 +106,7 @@
 See <a href="apreq_license.html">LICENSE</a>.</p>
 <p class="menu">
 <span style="color:#aaa">page generated by <a href="http://www.doxygen.org/"><code>doxygen</code></a>
-version 1.4.2 on 4 May 2005</span>
+version 1.4.3-20050530 on 19 Jul 2005</span>
 </p>
 </div>
 </body>

Modified: httpd/site/trunk/xdocs/apreq/docs/libapreq2/apreq_license.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/xdocs/apreq/docs/libapreq2/apreq_license.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/xdocs/apreq/docs/libapreq2/apreq_license.html (original)
+++ httpd/site/trunk/xdocs/apreq/docs/libapreq2/apreq_license.html Wed Jul 20 09:09:19 2005
@@ -1,7 +1,7 @@
 <html>
 <head>
   <link rel="stylesheet" type="text/css" href="dox.css" />
-  <title>libapreq2-2.05-dev: libapreq2: LICENSE</title> 
+  <title>libapreq2-2.06-dev: libapreq2: LICENSE</title> 
 </head>
 <body>
 <div id="page-header">
@@ -10,10 +10,8 @@
 <a href="http://httpd.apache.org/apreq/">Request Library Subproject</a></p>
 <p class="apache">Apache HTTP Server Request Library</p>
 <img alt="" src="feather.gif" /></div>
-<!-- Generated by Doxygen 1.4.2 -->
+<!-- Generated by Doxygen 1.4.3-20050530 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related&nbsp;Pages</a></div>
-<div class="nav">
-<b>groups.dox</b></div>
 <h1><a class="anchor" name="apreq_license">LICENSE</a></h1><div class="fragment"><pre class="fragment">
                                  Apache License
                            Version 2.0, January 2004
@@ -222,7 +220,7 @@
 See <a href="apreq_license.html">LICENSE</a>.</p>
 <p class="menu">
 <span style="color:#aaa">page generated by <a href="http://www.doxygen.org/"><code>doxygen</code></a>
-version 1.4.2 on 4 May 2005</span>
+version 1.4.3-20050530 on 19 Jul 2005</span>
 </p>
 </div>
 </body>

Modified: httpd/site/trunk/xdocs/apreq/docs/libapreq2/apreq_notice.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/xdocs/apreq/docs/libapreq2/apreq_notice.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/xdocs/apreq/docs/libapreq2/apreq_notice.html (original)
+++ httpd/site/trunk/xdocs/apreq/docs/libapreq2/apreq_notice.html Wed Jul 20 09:09:19 2005
@@ -1,7 +1,7 @@
 <html>
 <head>
   <link rel="stylesheet" type="text/css" href="dox.css" />
-  <title>libapreq2-2.05-dev: libapreq2: NOTICE</title> 
+  <title>libapreq2-2.06-dev: libapreq2: NOTICE</title> 
 </head>
 <body>
 <div id="page-header">
@@ -10,10 +10,8 @@
 <a href="http://httpd.apache.org/apreq/">Request Library Subproject</a></p>
 <p class="apache">Apache HTTP Server Request Library</p>
 <img alt="" src="feather.gif" /></div>
-<!-- Generated by Doxygen 1.4.2 -->
+<!-- Generated by Doxygen 1.4.3-20050530 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related&nbsp;Pages</a></div>
-<div class="nav">
-<b>groups.dox</b></div>
 <h1><a class="anchor" name="apreq_notice">NOTICE</a></h1><div class="fragment"><pre class="fragment">This product includes softwarame="o2"></a><!-- doxytag: member="apreq_module_t::jar" ref="o2" args=")(apreq_handle_t *, const apr_table_t **)" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -243,7 +243,7 @@
 get a table with all cookies     </td>
   </tr>
 </table>
-<a class="anchor" name="o5" doxytag="apreq_module_t::jar_get"></a><p>
+<a class="anchor" name="o5"></a><!-- doxytag: member="apreq_module_t::jar_get" ref="o5" args=")(apreq_handle_t *, const char *)" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -266,7 +266,7 @@
 get a cookie by its name     </td>
   </tr>
 </table>
-<a class="anchor" name="o1" doxytag="apreq_module_t::magic_number"></a><p>
+<a class="anchor" name="o1"></a><!-- doxytag: member="apreq_module_t::magic_number" ref="o1" args="" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -289,7 +289,7 @@
 magic number identifying the module and version     </td>
   </tr>
 e developed by
 The Apache Software Foundation (http://www.apache.org/).
 </pre></div> <div id="footer">
@@ -22,7 +20,7 @@
 See <a href="apreq_license.html">LICENSE</a>.</p>
 <p class="menu">
 <span style="color:#aaa">page generated by <a href="http://www.doxygen.org/"><code>doxygen</code></a>
-version 1.4.2 on 4 May 2005</span>
+version 1.4.3-20050530 on 19 Jul 2005</span>
 </p>
 </div>
 </body>

Modified: httpd/site/trunk/xdocs/apreq/docs/libapreq2/apreq_status.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/xdocs/apreq/docs/libapreq2/apreq_status.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/xdocs/apreq/docs/libapreq2/apreq_status.html (original)
+++ httpd/site/trunk/xdocs/apreq/docs/libapreq2/apreq_status.html Wed Jul 20 09:09:19 2005
@@ -1,7 +1,7 @@
 <html>
 <head>
   <link rel="stylesheet" type="text/css" href="dox.css" />
-  <title>libapreq2-2.05-dev: libapreq2: STATUS</title> 
+  <title>libapreq2-2.06-dev: libapreq2: STATUS</title> 
 </head>
 <body>
 <div id="page-header">
@@ -10,24 +10,17 @@
 <a href="http://httpd.apache.org/apreq/">Request Library Subproject</a></p>
 <p class="apache">Apache HTTP Server Request Library</p>
 <img alt="" src="feather.gif" /></div>
-<!-- Generated by Doxygen 1.4.2 -->
+<!-- Generated by Doxygen 1.4.3-20050530 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related&nbsp;Pages</a></div>
-<div class="nav">
-<b>STATUS</b></div>
-<h1><a class="anchor" name="apreq_status">STATUS</a></h1>2.05-dev released on May 5, 2005.<p>
+<h1><a class="anchor" name="apreq_status"></table>
-<a class="anchor" name="o0" doxytag="apreq_module_t::name"></a><p>
+<a class="anchor" name="o0"></a><!-- doxytag: member="apreq_module_t::name" ref="o0" args="" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -312,7 +312,7 @@
 name of this apreq module     </td>
   </tr>
 </table>
-<a class="anchor" name="o8" doxytag="apreq_module_t::parser_get"></a><p>
+<a class="anchor" name="o8"></a><!-- doxytag: member="apreq_module_t::parser_get" ref="o8" args=")(apreq_handle_t *, const apreq_parser_t **)" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -335,7 +335,7 @@
 gets the parser associated with the request body     </td>
   </tr>
 </table>
-<a class="anchor" name="o9" doxytag="apreq_module_t::parser_set"></a><p>
+<a class="anchor" name="o9"></a><!-- doxytag: member="apreq_module_t::parser_set" ref="o9" args=")(apreq_handle_t *, apreq_parser_t *)" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -358,7 +358,7 @@
 manually set a parser for the request body     </td>
   </tr>
 </table>
-<a class="anchor" name="o13" doxytag="apreq_module_t::read_limit_get"></a><p>
+<a class="anchor" name="o13"></a><!-- doxytag: member="apreq_module_t::read_limit_get" ref="o13" args=")(apreq_handle_t *, apr_uint64_t *)" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -381,7 +381,7 @@
 determine the maximum amount of data that will be fed into a parser     </td>
   </tr>
 </table>
-<a class="anchor" name="o14" doxytag="apreq_module_t::read_limit_set"></a><p>
+<a class="anchor" name="o14"></a><!-- doxytag: member="apreq_module_t::read_limit_set" ref="o14" args=")(apreq_handle_t *, apr_uint64_t)" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -404,7 +404,7 @@
 set the maximum amount of data that will be fed into a parser     </td>
   </tr>
 </table>
-<a class="anchor" name="o15" doxytag="apreq_module_t::temp_dir_get"></a><p>
+<a class="anchor" name="o15"></a><!-- doxytag: member="apreq_module_t::temp_dir_get" ref="o15" args=")(apreq_handle_t *, const char **)" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -427,7 +427,7 @@
 determine the directory used by the parser for temporary files     </td>
   </tr>
 </table>
-<a class="anchor" name="o16" doxytag="apreq_module_t::temp_dir_set"></a><p>
+<a class="anchor" name="o16"></a><!-- doxytag: member="apreq_module_t::temp_dir_set" ref="o16" args=")(apreq_handle_t *, const char *)" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -458,7 +458,7 @@
 See <a href="apreq_license.html">LICENSE</a>.</p>
 <p class="menu">
 <span style="color:#aaa">page generated by <a href="http://www.doxygen.org/"><code>doxygen</code></a>
-version 1.4.2 on 4 May 2005</span>
+version 1.4.3-20050530 on 19 Jul 2005</span>
 </p>
 </div>
 </body>

Modified: httpd/site/truSTATUS</a></h1>2.06-dev released on July 20, 2005<p>
 Contributors looking for a mission:<p>
 <ul>
 <li>just do an egrep on "TODO" or "XXX" and see what's there</li></ul>
 <p>
 CURRENT RELEASE NOTES:<p>
-<ul>
-<li>This is a developer release, indicated by the "-dev" suffix on the version string. We believe the core interfaces to be stable, but some portions of the API may still need significant modification. Thus, binary/source compatibility may be broken from one developer release to the next. In particular the version numbering rules specified at</li></ul>
-<p>
-<a href="http://apr.apache.org/versioning.html">http://apr.apache.org/versioning.html</a><p>
-do not apply to developer releases.<p>
 RELEASE SHOWSTOPPERS:<p>
 <ul>
-<li>The api docs are currently incorrect.</li></ul>
+<li>The api docs are currently incorrect.</li><li>The perl docs are missing Test::Inline tests.</li></ul>
 <p>
 CURRENT VOTES:<p>
 <ul>
@@ -36,82 +29,14 @@
 +1: joes 0: -1:<p>
 TODO:<p>
 <ul>
-<li>Dump automake, preferably replacing that with more stuff from httpd/apr's build system.</li></ul>
-<p>
-<ul>
-<li>Introduce APR::Request::Parser and APR::Request::Hook. Implement Apache2::Request::new's UPLOAD_HOOK using them.</li></ul>
-<p>
-<ul>
-<li>Move module/t to module/apache2/t.</li></ul>
-<p>
-<ul>
-<li>Figure out how and where the apreq_xs_ headers, and typemap file, should be installed.</li></ul>
-<p>
-<ul>
-<li>Write tests for the apache 1.3.x module.</li></ul>
-<p>
-<ul>
-<li>Fix the broken make dependencies, especially in the module and glue subdirs. The libtool workaround (for OSX IIRC) that copies module/.libs to module/t is especially bogus.</li></ul>
-<p>
-<ul>
-<li>Drop ExtUtils::XSBuilder as the C API is fairly stable now. The header parsing + xs generation stuff may be too difficult for the community to maintain over ordinary .xs files.</li></ul>
-<p>
-<ul>
-<li>Round out the unit tests in library/t. Ideally each API function should have its own tests, and each possible error status should be both tested &amp; documented. Also upgrade these tests to use the Apache::Test framework.</li></ul>
-<p>
-<ul>
-<li>Add a "memory_limit" setting to <a class="el" href="structapreq__parser__t.html">apreq_parser_t</a> and <a class="el" href="structapreq__module__t.html">apreq_module_t</a>, which will control how much pool allocation the parser may use.</li></ul>
-<p>
-<ul>
-<li>Add a "header_limit" setting to control outgoing header size (mainly for baking cookies) instead of using a compiled-in limit.</li></ul>
-<p>
-<ul>
-<li>in glue/perl/t/apreq/cgi.t on Win32, printing to the error log hangs if the strings involved are about 10000 in size. This doesn't occur in the env/cgi tests - why?</li></ul>
-<p>
-<ul>
-<li>Why must fprintf(stderr, ...), rather than apr_file_printf(err, ...), be used on Win32 in cgi_log() of src/apreq_env.c?</li></ul>
-<p>
-<ul>
-<li>Get env/ (Apache::Test) tests to work for --with-apache2-src option. Also add a test to configure that prevents simultaneous use of --with-apache2-src and --with-apache2-apxs.</li></ul>
-<p>
-<ul>
-<li>symbol exports files:<ol type=a>
-<li>aix needs .exp files</li></ol>
-</li></ul>
-<p>
-<ul>
-<li>Install the html dox during "make install". Should we do this for the doxy manpages also?</li></ul>
-<p>
-<ul>
-<li>Rework glue/perl build system to use apreq2-config instead of relying on paths like "../../src".</li></ul>
-<p>
-OPEN ISSUES:<p>
-<ul>
-<li>Should we bundle an apr-based "application/xml" parser? If so, how should we parse the xml data into an apr_table?</li></ul>
-<p>
-<ul>
-<li>Determine whether or not it's good for the perl glue to ever set the SvUTF8 flag on a param. The current code ties this action to the apreq_param_is_tainted flag.</li></ul>
-<p>
-<ul>
-<li>Should we let hooks interrupt parsers via APREQ_ERROR_INTERRUPT? That'd need a delete_hook method to make interrupts a useful way of tuning parser behavior.</li></ul>
-<p>
-BUGS:<p>
-<ul>
-<li>Fix build automake/libtool/autoconf build system so it works properly on OSX &amp; AIX.</li></ul>
-<p>
-WISH LIST:<p>
-<ul>
-<li>I [joes] wish folks would contribute some glue code for one of these:</li></ul>
-<p>
-<ul>
-<li>php,</li><li>Rivet,</li><li>mod_dtcl,</li><li>mod_python,</li><li>mod_jk,</li><li>tomcat,</li><li>mod_ruby,</li><li>mod_parrot. </li></ul>
+<li>Sadly, the PAUSE indexer still doesn't speak META.yml. We need to find a way to get the APR::Request* packages indexed (with proper version numbers), and prevent the indexer from inspecting the supporting modules in </li></ul>
 <div id="footer">
 <p class="apache">
 Copyright &copy; 2003-2005 <a href="http://www.apache.org">The Apache Software Foundation</a>.<br/>
 See <a href="apreq_license.html">LICENSE</a>.</p>
 <p class="menu">
 <span style="color:#aaa">page generated by <a href="http://www.doxygen.org/"><code>doxygen</code></a>
-version 1.4.2 on 4 May 2005</span>
+version 1.4.3-20050530 on 19 Jul 2005</span>
 </p>
 </div>
 </body>

Modified: httpd/site/trunk/xdocs/apreq/docs/libapreq2/dir_000000.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/xdocs/apreq/docs/libank/xdocs/apreq/docs/libapreq2/structapreq__param__t.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/xdocs/apreq/docs/libapreq2/structapreq__param__t.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/xdocs/apreq/docs/libapreq2/structapreq__param__t.html (original)
+++ httpd/site/trunk/xdocs/apreq/docs/libapreq2/structapreq__param__t.html Wed Jul 20 09:09:19 2005
@@ -1,7 +1,7 @@
 <html>
 <head>
   <link rel="stylesheet" type="text/css" href="dox.css" />
-  <title>libapreq2-2.05-dev: libapreq2: apreq_param_t Struct Reference</title> 
+  <title>libapreq2-2.06-dev: libapreq2: apreq_param_t Struct Reference</title> 
 </head>
 <body>
 <div id="page-header">
@@ -10,9 +10,9 @@
 <a href="http://httpd.apache.org/apreq/">Request Library Subproject</a></p>
 <p class="apache">Apache HTTP Server Request Library</p>
 <img alt="" src="feather.gif" /></div>
-<!-- Generated by Doxygen 1.4.2 -->
+<!-- Generated by Doxygen 1.4.3-20050530 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related&nbsp;Pages</a></div>
-<h1>apreq_param_t Struct Reference</h1><code>#include &lt;<a class="el" href="apreq__param_8h-source.html">apreq_param.h</a>&gt;</code>
+<h1>apreq_param_t Struct Reference</h1><!-- doxytag: class="apreq_param_t" --><code>#include &lt;<a class="el" href="apreq__param_8h-source.html">apreq_param.h</a>&gt;</code>
 <p>
 <table border="0" cellpadding="0" cellspacing="0">
 <tr><td></td></tr>
@@ -30,7 +30,7 @@
 Common data structure for params and file uploads 
 <p>
 <hr><h2>Field Documentation</h2>
-<a class="anchor" nampreq2/dir_000000.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/xdocs/apreq/docs/libapreq2/dir_000000.html (original)
+++ httpd/site/trunk/xdocs/apreq/docs/libapreq2/dir_000000.html Wed Jul 20 09:09:19 2005
@@ -1,7 +1,7 @@
 <html>
 <head>
   <link rel="stylesheet" type="text/css" href="dox.css" />
-  <title>libapreq2-2.05-dev: libapreq2: include/ Directory Reference</title> 
+  <title>libapreq2-2.06-dev: libapreq2: include/ Directory Reference</title> 
 </head>
 <body>
 <div id="page-header">
@@ -10,7 +10,7 @@
 <a href="http://httpd.apache.org/apreq/">Request Library Subproject</a></p>
 <p class="apache">Apache HTTP Server Request Library</p>
 <img alt="" src="feather.gif" /></div>
-<!-- Generated by Doxygen 1.4.2 -->
+<!-- Generated by Doxygen 1.4.3-20050530 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related&nbsp;Pages</a></div>
 <div class="nav">
 <a class="el" href="dir_000000.html">include</a></div>
@@ -19,17 +19,20 @@
 <tr><td colspan="2"><br><h2>Files</h2></td></tr>
 <tr><td class="memItemLeft" nowrap align="right" valign="top">file &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="apreq_8h.html">apreq.h</a> <a href="apreq_8h-source.html">[code]</a></td></tr>
 
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Main header file... <br></td></tr>
+<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Main header file...<p>
+Define the generic APREQ_ macros and common data structures. <br></td></tr>
 
 <p>
 <tr><td class="memItemLeft" nowrap align="right" valign="top">file &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="apreq__cookie_8h.html">apreq_cookie.h</a> <a href="apreq__cookie_8h-source.html">[code]</a></td></tr>
 
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Cookies and Jars. <br></td></tr>
+<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Cookies and Jars.<p>
+<a class="el" href="apreq__cookie_8h.html">apreq_cookie.h</a> describes a common server-side API for request (incoming) and response (outgoing) cookies. It aims towards compliance with the standard cookie specifications listed below. <br></td></tr>
 
 <p>
 <tr><td class="memItemLeft" nowrap align="right" valign="top">file &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="apreq__error_8h.html">apreq_error.h</a> <a href="apreq__error_8h-source.html">[code]</a></td></tr>
 
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Error status codes. <br></td></tr>
+<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Error status codes.<p>
+Define the APREQ_ error codes. <br></td></tr>
 
 <p>
 <tr><td class="memItemLeft" nowrap align="right" valign="top">file &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="apreq__module_8h.html">apreq_module.h</a> <a href="apreq__module_8h-source.html">[code]</a></td></tr>
@@ -54,7 +57,8 @@
 <p>
 <tr><td class="memItemLeft" nowrap align="right" valign="top">file &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="apreq__version_8h.html">apreq_version.h</a> <a href="apreq__version_8h-source.html">[code]</a></td></tr>
 
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Versioning API for libapreq. <br></td></tr>
+<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Versioning API for libapreq<p>
+There are several different mechanisms for accessing the version. There is a string form, and a set of numbers; in addition, there are constants which can be compiled into your application, and you can query the library being used for its actuae="o2" doxytag="apreq_param_t::flags"></a><p>
+<a class="anchor" name="o2"></a><!-- doxytag: member="apreq_param_t::flags" ref="o2" args="" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -53,7 +53,7 @@
 charsets, taint marks, app-specific bits     </td>
   </tr>
 </table>
-<a class="anchor" name="o0" doxytag="apreq_param_t::info"></a><p>
+<a class="anchor" name="o0"></a><!-- doxytag: member="apreq_param_t::info" ref="o0" args="" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -76,7 +76,7 @@
 header table associated with the param     </td>
   </tr>
 </table>
-<a class="anchor" name="o1" doxytag="apreq_param_t::upload"></a><p>
+<a class="anchor" name="o1"></a><!-- doxytag: member="apreq_param_t::upload" ref="o1" args="" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -99,7 +99,7 @@
 brigade used to spool upload files     </td>
   </tr>
 </table>
-<a class="anl version. <br></td></tr>
 
 <p>
 </table>
@@ -64,7 +68,7 @@
 See <a href="apreq_license.html">LICENSE</a>.</p>
 <p class="menu">
 <span style="color:#aaa">page generated by <a href="http://www.doxygen.org/"><code>doxygen</code></a>
-version 1.4.2 on 4 May 2005</span>
+version 1.4.3-20050530 on 19 Jul 2005</span>
 </p>
 </div>
 </body>

Modified: httpd/site/trunk/xdocs/apreq/docs/libapreq2/dir_000001.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/xdocs/apreq/docs/libapreq2/dir_000001.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/xdocs/apreq/docs/libapreq2/dir_000001.html (original)
+++ httpd/site/trunk/xdocs/apreq/docs/libapreq2/dir_000001.html Wed Jul 20 09:09:19 2005
@@ -1,7 +1,7 @@
 <html>
 <head>
   <link rel="stylesheet" type="text/css" href="dox.css" />
-  <title>libapreq2-2.05-dev: libapreq2: module/ Directory Reference</title> 
+  <title>libapreq2-2.06-dev: libapreq2: module/ Directory Referenchor" name="o3" doxytag="apreq_param_t::v"></a><p>
+<a class="anchor" name="o3"></a><!-- doxytag: member="apreq_param_t::v" ref="o3" args="" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -130,7 +130,7 @@
 See <a href="apreq_license.html">LICENSE</a>.</p>
 <p class="menu">
 <span style="color:#aaa">page generated by <a href="http://www.doxygen.org/"><code>doxygen</code></a>
-version 1.4.2 on 4 May 2005</span>
+version 1.4.3-20050530 on 19 Jul 2005</span>
 </p>
 </div>
 </body>

Modified: httpd/site/trunk/xdocs/apreq/docs/libapreq2/structapreq__parser__t.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/xdocs/apreq/docs/libapreq2/structapreq__parser__t.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/xdocs/apreq/docs/libapreq2/structapreq__parser__t.html (original)
+++ httpd/site/trunk/xdocs/apreq/docs/libapreq2/structapreq__parser__t.html Wed Jul 20 09:09:19 2005
@@ -1,7 +1,7 @@
 <html>
 <head>
   <link rel="stylesheet" type="text/css" href="dox.css" />
-  <title>libapreq2-2.05-dev: libapreq2: apreq_parser_t Struct Reference</title> 
+  <title>libapreq2-2.06-dev: libapreq2: apreq_parser_t Struct Reference</title> 
 </head>
 <body>
 <div id="page-header">
@@ -10,9 +10,9 @@
 <a href="http://httpd.apache.org/apreq/">Request Library Subproject</a></p>
 <p class="apache">Apache HTTP Server Request Library</p>
 <img alt="" src="feather.gif" /></div>
-<!-- Generated by Doxygen 1.4.2 -->
+<!-- Generated by Doxygen 1.4.3-20050530 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related&nbsp;Pages</a></div>
-<h1>apreq_parser_t Struct Reference</h1><code>#include &lt;<a class="el" href="apreq__parser_8h-source.html">apreq_parser.h</a>&gt;</code>
+<h1>apreq_parser_t Struct Reference</h1><!-- doxytag: class="apreq_parser_t" --><code>#include &lt;<a class="el" href="apreq__parser_8h-source.html">apreq_parser.h</a>&gt;</code>
 <p>
 <table border="0" cellpadding="0" cellspacing="0">
 <tr><td></td></tr>
@@ -35,10 +35,10 @@
 
 </table>
 <hr><a name="_details"></a><h2>Detailed Description</h2>
-A request body parser instance. 
+A request body parser instance.
 <p>
 <hr><h2>Field Documentation</h2>
-<a class="anchor" name="o4" doxytag="apreq_parser_t::brigade_limit"></a><p>
+<a class="anchor" name="o4"></a><!-- doxytag: member="apreq_parser_t::brigade_limit" ref="o4" args="" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -61,7 +61,7 @@
 the maximum in-memory bytes a brigade may use     </td>
   </tr>
 </table>
-<a class="anchorce</title> 
 </head>
 <body>
 <div id="page-header">
@@ -10,7 +10,7 @@
 <a href="http://httpd.apache.org/apreq/">Request Library Subproject</a></p>
 <p class="apache">Apache HTTP Server Request Library</p>
 <img alt="" src="feather.gif" /></div>
-<!-- Generated by Doxygen 1.4.2 -->
+<!-- Generated by Doxygen 1.4.3-20050530 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related&nbsp;Pages</a></div>
 <div class="nav">
 <a class="el" href="dir_000001.html">module</a></div>
@@ -28,7 +28,7 @@
 See <a href="apreq_license.html">LICENSE</a>.</p>
 <p class="menu">
 <span style="color:#aaa">page generated by <a href="http://www.doxygen.org/"><code>doxygen</code></a>
-version 1.4.2 on 4 May 2005</span>
+version 1.4.3-20050530 on 19 Jul 2005</span>
 </p>
 </div>
 </body>

Modified: httpd/site/trunk/xdocs/apreq/docs/libapreq2/dir_000002.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/xdocs/apreq/docs/libapreq2/dir_000002.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/xdocs/apreq/docs/libapreq2/dir_000002.html (original)
+++ httpd/site/trunk/xdocs/apreq/docs/libapreq2/dir_000002.html Wed Jul 20 09:09:19 2005
@@ -1,7 +1,7 @@
 <html>
 <head>
   <link rel="stylesheet" type="text/css" href="dox.css" />
-  <title>libapreq2-2.05-dev: libapreq2: module/apache/ Directory Reference</title> 
+  <title>libapreq2-2.06-dev: libapreq2: module/apache/ Directory Reference</title> 
 </head>
 <body>
 <div id="page-header">
@@ -10,10 +10,10 @@
 <a href="http://httpd.apache.org/apreq/">Request Library Subproject</a></p>
 <p class="apache">Apache HTTP Server Request Library</p>
 <img alt="" src="feather.gif" /></div>
-<!-- Generated by Doxygen 1.4.2 -->
+<!-- Generated by Doxygen 1.4.3-20050530 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related&nbsp;Pages</a></div>
 <div class="nav">
-<a class="el" href="dir_000001.html">module</a>&nbsp;/&nbsp;<a class="el" href="dir_000002.html">apache</a></div>
+<a class="el" href="dir_000001.html">module</a>&nbsp;&raquo&nbsp;<a class="el" href="dir_000002.html">apache</a></div>
 <h1>apache Directory Reference</h1><table border="0" cellpadding="0" cellspacing="0">
 <tr><td></td></tr>
 <tr><td colspan="2"><br><h2>Files</h2></td></tr>
@@ -26,7 +26,7 @@
 See <a href="apreq_license.html">LICENSE</a>.</p>
 <p class="menu">
 <span style="color:#aaa">page generated by <a href="http://www.doxygen.org/"><code>doxygen</code></a>
-version 1.4.2 on 4 May 2005</span>
+version 1.4.3-20050530 on 19 Jul 2005</span>
 </p>
 </div>
 </body>

Modified: httpd/site/trunk/xdocs/apreq/docs/libapreq2/dir_000003.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/xdocs/apreq/docs/libapreq2/dir_000003.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/xdocs/apreq/docs/libapreq2/dir_000003.html (original)
+++ httpd/site/trunk/xdocs/apreq/docs/libapreq2/dir_000003.html Wed Jul 20 09:09:19 2005
@@ -1,7 +1,7 @@
 <html>
 <head>
   <link rel="stylesheet" type="text/css" href="dox.css" />
-  <title>libapreq2-2.05-dev: libapreq2: module/apache2/ Directory Reference</title> 
+  <title>libapreq2-2.06-dev: libapreq2: module/apache2/ Directory Reference</title> 
 </head>
 <body>
 <div id="page-header">
@@ -10,10 +10,10 @@
 <a href="http://httpd.apache.org/apreq/">Request Library Subproject</a></p>
 <p class="apache">Apache HTTP Server Request Library</p>
 <img alt="" src="feather.gif" /></div>
-<!-- Generated by Doxygen 1.4.2 -->
+<!-- Generated by Doxygen 1.4.3-20050530 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related&nbsp;Pages</a></div>
 <div class="nav">
-<a class="el" href="dir_000001.html">module</a>&nbsp;/&nbsp;<a class="el" href="dir_000003.html">apache2</a></div>
+<a class="el" href="dir_000001.html">module</a>&nbsp;&r" name="o3" doxytag="apreq_parser_t::bucket_alloc"></a><p>
+<a class="anchor" name="o3"></a><!-- doxytag: member="apreq_parser_t::bucket_alloc" ref="o3" args="" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -84,7 +84,7 @@
 bucket allocator used to create bucket brigades     </td>
   </tr>
 </table>
-<a class="anchor" name="o1" doxytag="apreq_parser_t::content_type"></a><p>
+<a class="anchor" name="o1"></a><!-- doxytag: member="apreq_parser_t::content_type" ref="o1" args="" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -107,7 +107,7 @@
 the Content-Type request header     </td>
   </tr>
 </table>
-<a class="anchor" name="o7" doxytag="apreq_parser_t::ctx"></a><p>
+<a class="anchor" name="o7"></a><!-- doxytag: member="apreq_parser_t::ctx" ref="o7" args="" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -130,7 +130,7 @@
 internal context pointer used by the paquo&nbsp;<a class="el" href="dir_000003.html">apache2</a></div>
 <h1>apache2 Directory Reference</h1><table border="0" cellpadding="0" cellspacing="0">
 <tr><td></td></tr>
 <tr><td colspan="2"><br><h2>Files</h2></td></tr>
@@ -26,7 +26,7 @@
 See <a href="apreq_license.html">LICENSE</a>.</p>
 <p class="menu">
 <span style="color:#aaa">page generated by <a href="http://www.doxygen.org/"><code>doxygen</code></a>
-version 1.4.2 on 4 May 2005</span>
+version 1.4.3-20050530 on 19 Jul 2005</span>
 </p>
 </div>
 </body>

Modified: httpd/site/trunk/xdocs/apreq/docs/libapreq2/dirs.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/xdocs/apreq/docs/libapreq2/dirs.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/xdocs/apreq/docs/libapreq2/dirs.html (original)
+++ httpd/site/trunk/xdocs/apreq/docs/libapreq2/dirs.html Wed Jul 20 09:09:19 2005
@@ -1,7 +1,7 @@
 <html>
 <head>
   <link rel="stylesheet" type="text/css" href="arser function     </td>
   </tr>
 </table>
-<a class="anchor" name="o6" doxytag="apreq_parser_t::hook"></a><p>
+<a class="anchor" name="o6"></a><!-- doxytag: member="apreq_parser_t::hook" ref="o6" args="" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -153,7 +153,7 @@
 linked list of hooks     </td>
   </tr>
 </table>
-<a class="anchor" name="o0" doxytag="apreq_parser_t::parser"></a><p>
+<a class="anchor" name="o0"></a><!-- doxytag: member="apreq_parser_t::parser" ref="o0" args="" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -176,7 +176,7 @@
 the function which parses chunks of body data     </td>
   </tr>
 </table>
-<a class="anchor" name="o2" doxytag="apreq_parser_t::pool"></a><p>
+<a class="anchor" name="o2"></a><!-- doxytag: member="apreq_parser_t::pool" ref="o2" args="" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -196,10 +196,10 @@
     <td>
 
 <p>
-a pool used by the parser     </td>
+a pool which outlasts the bucket_alloc.     </td>
   </tr>
 </table>
-<a class="anchor" name="o5" doxytag="apreq_parser_t::temp_dir"></a><p>
+<a class="anchor" name="o5"></a><!-- doxytag: member="apreq_parser_t::temp_dir" ref="o5" args="" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -219,7 +219,7 @@
     <td>
 
 <p>
-the directory used by the parser for temporary files     </td>
+the directory for generating temporary files     </td>
   </tr>
 </table>
 <hr>The documentation for this struct was generated from the following file:<ul>
@@ -230,7 +230,7 @@
 See <a href="apreq_license.html">LICENSE</a>.</p>
 <p class="menu">
 <span style="color:#aaa">page generated by <a href="http://www.doxygen.org/"><code>doxygen</code></a>
-version 1.4.2 on 4 May 2005</span>
+version 1.4.3-20050530 on 19 Jul 2005</span>
 </p>
 </div>
 </body>

Modified: httpd/site/trunk/xdocs/apreq/docs/libapreq2/structapreq__value__t.html
URL: http:dox.css" />
-  <title>libapreq2-2.05-dev: libapreq2: Directory Hierarchy</title> 
+  <title>libapreq2-2.06-dev: libapreq2: Directory Hierarchy</title> 
 </head>
 <body>
 <div id="page-header">
@@ -10,7 +10,7 @@
 <a href="http://httpd.apache.org/apreq/">Request Library Subproject</a></p>
 <p class="apache">Apache HTTP Server Request Library</p>
 <img alt="" src="feather.gif" /></div>
-<!-- Generated by Doxygen 1.4.2 -->
+<!-- Generated by Doxygen 1.4.3-20050530 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindexHL" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related&nbsp;Pages</a></div>
 <h1>libapreq2 Directories</h1>This directory hierarchy is sorted roughly, but not completely, alphabetically:<ul>
 <li><a class="el" href="dir_000000.html">include</a>
@@ -26,7 +26,7 @@
 See <a href="apreq_license.html">LICENSE</a>.</p>
 <p class="menu">
 <span style="color:#aaa">page generated by <a href="http://www.doxygen.org/"><code>doxygen</code></a>
-version 1.4.2 on 4 May 2005</span>
+version 1.4.3-20050530 on 19 Jul 2005</span>
 </p>
 </div>
 </body>

Modified: httpd/site/trunk/xdocs/apreq/docs/libapreq2/files.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/xdocs/apreq/docs/libapreq2/files.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/xdocs/apreq/docs/libapreq2/files.html (original)
+++ httpd/site/trunk/xdocs/apreq/docs/libapreq2/files.html Wed Jul 20 09:09:19 2005
@@ -1,7 +1,7 @@
 <html>
 <head>
   <link rel="stylesheet" type="text/css" href="dox.css" />
-  <title>libapreq2-2.05-dev: libapreq2: File Index</title> 
+  <title>libapreq2-2.06-dev: libapreq2: File Index</title> 
 </head>
 <body>
 <div id="page-header">
@@ -10,17 +10,21 @@
 <a href="http://httpd.apache.org/apreq/">Request Library Subproject</a></p>
 <p class="apache">Apache HTTP Server Request Library</p>
 <img alt="" src="feather.gif" /></div>
-<!-- Generated by Doxygen 1.4.2 -->
+<!-- Generated by Doxygen 1.4.3-20050530 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindexHL" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related&nbsp;Pages</a></div>
 <h1>libapreq2 File List</h1>Here is a list of all documented files with brief descriptions:<table>
-  <tr><td class="indexkey">include/<a class="el" href="apreq_8h.html">apreq.h</a> <a href="apreq_8h-source.html">[code]</a></td><td class="indexvalue">Main header file.. </td></tr>
-  <tr><td class="indexkey">include/<a class="el" href="apreq__cookie_8h.html">apreq_cookie.h</a> <a href="apreq__cookie_8h-source.html">[code]</a></td><td class="indexvalue">Cookies and Jars </td></tr>
-  <tr><td class="indexkey">include/<a class="el" href="apreq__error_8h.html">apreq_error.h</a> <a href="apreq__error_8h-source.html">[code]</a></td><td class="indexvalue">Error status codes </td></tr>
+  <tr><td class="indexkey">include/<a class="el" href="apreq_8h.html">apreq.h</a> <a href="apreq_8h-source.html">[code]</a></td><td class="indexvalue">Main header file...<p>
+Define the generic APREQ_ macros and common data structures </td></tr>
+  <tr><td class="indexkey">include/<a class="el" href="apreq__cookie_8h.html">apreq_cookie.h</a> <a href="apreq__cookie_8h-source.html">[code]</a></td><td class="indexvalue">Cookies and Jars.<p>
+<a class="el" href="apreq__cookie_8h.html">apreq_cookie.h</a> describes a common server-sid//svn.apache.org/viewcvs/httpd/site/trunk/xdocs/apreq/docs/libapreq2/structapreq__value__t.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/xdocs/apreq/docs/libapreq2/structapreq__value__t.html (original)
+++ httpd/site/trunk/xdocs/apreq/docs/libapreq2/structapreq__value__t.html Wed Jul 20 09:09:19 2005
@@ -1,7 +1,7 @@
 <html>
 <head>
   <link rel="stylesheet" type="text/css" href="dox.css" />
-  <title>libapreq2-2.05-dev: libapreq2: apreq_value_t Struct Reference</title> 
+  <title>libapreq2-2.06-dev: libapreq2: apreq_value_t Struct Reference</title> 
 </head>
 <body>
 <div id="page-header">
@@ -10,9 +10,9 @@
 <a href="http://httpd.apache.org/apreq/">Request Library Subproject</a></p>
 <p class="apache">Apache HTTP Server Request Library</p>
 <img alt="" src="feather.gif" /></div>
-<!-- Generated by Doxygen 1.4.2 -->
+<!-- Generated by Doxygen 1.4.3-20050530 -->
 <div class="qindex"><a class="qindex" href="index.e API for request (incoming) and response (outgoing) cookies. It aims towards compliance with the standard cookie specifications listed below </td></tr>
+  <tr><td class="indexkey">include/<a class="el" href="apreq__error_8h.html">apreq_error.h</a> <a href="apreq__error_8h-source.html">[code]</a></td><td class="indexvalue">Error status codes.<p>
+Define the APREQ_ error codes </td></tr>
   <tr><td class="indexkey">include/<a class="el" href="apreq__module_8h.html">apreq_module.h</a> <a href="apreq__module_8h-source.html">[code]</a></td><td class="indexvalue">Module API </td></tr>
   <tr><td class="indexkey">include/<a class="el" href="apreq__param_8h.html">apreq_param.h</a> <a href="apreq__param_8h-source.html">[code]</a></td><td class="indexvalue">Request parsing and parameter API </td></tr>
   <tr><td class="indexkey">include/<a class="el" href="apreq__parser_8h.html">apreq_parser.h</a> <a href="apreq__parser_8h-source.html">[code]</a></td><td class="indexvalue">Request body parser API </td></tr>
   <tr><td class="indexkey">include/<a class="el" href="apreq__util_8h.html">apreq_util.h</a> <a href="apreq__util_8h-source.html">[code]</a></td><td class="indexvalue">Utility functions for apreq </td></tr>
-  <tr><td class="indexkey">include/<a class="el" href="apreq__version_8h.html">apreq_version.h</a> <a href="apreq__version_8h-source.html">[code]</a></td><td class="indexvalue">Versioning API for libapreq </td></tr>
+  <tr><td class="indexkey">include/<a class="el" href="apreq__version_8h.html">apreq_version.h</a> <a href="apreq__version_8h-source.html">[code]</a></td><td class="indexvalue">Versioning API for libapreq<p>
+There are several different mechanisms for accessing the version. There is a string form, and a set of numbers; in addition, there are constants which can be compiled into your application, and you can query the library being used for its actual version </td></tr>
   <tr><td class="indexkey">module/apache/<b>apreq_module_apache.h</b> <a href="apreq__module__apache_8h-source.html">[code]</a></td><td class="indexvalue"></td></tr>
   <tr><td class="indexkey">module/apache2/<b>apreq_module_apache2.h</b> <a href="apreq__module__apache2_8h-source.html">[code]</a></td><td class="indexvalue"></td></tr>
 </table>
@@ -30,7 +34,7 @@
 See <a href="apreq_license.html">LICENSE</a>.</p>
 <p class="menu">
 <span style="color:#aaa">page generated by <a href="http://www.doxygen.org/"><code>doxygen</code></a>
-version 1.4.2 on 4 May 2005</span>
+version 1.4.3-20050530 on 19 Jul 2005</span>
 </p>
 </div>
 </body>

Modified: httpd/site/trunk/xdocs/apreq/docs/libapreq2/functions.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/xdocs/apreq/docs/libapreq2/functions.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/xdocs/apreq/docs/libapreq2/functions.html (original)
+++ httpd/site/trunk/xdocs/apreq/docs/libapreq2/functions.html Wed Jul 20 09:09:19 2005
@@ -1,7 +1,7 @@
 <html>
 <head>
   <link rel="stylesheet" type="text/chtml">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related&nbsp;Pages</a></div>
-<h1>apreq_value_t Struct Reference</h1>libapreq's pre-extensible string type  
+<h1>apreq_value_t Struct Reference</h1><!-- doxytag: class="apreq_value_t" -->libapreq's pre-extensible string type  
 <a href="#_details">More...</a>
 <p>
 <code>#include &lt;<a class="el" href="apreq_8h-source.html">apreq.h</a>&gt;</code>
@@ -33,7 +33,7 @@
 libapreq's pre-extensible string type 
 <p>
 <hr><h2>Field Documentation</h2>
-<a class="anchor" name="o3" doxytag="apreq_value_t::data"></a><p>
+<a class="anchor" name="o3"></a><!-- doxytag: member="apreq_value_t::data" ref="o3" args="[1]" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -56,7 +56,7 @@
 value data     </td>
   </tr>
 </table>
-<a class="anchor" name="o2" doxytag="apreq_value_t::dlen"></a><p>
+<a class="anchor" name="o2"></a><!-- doxytag: member="apreq_value_t::dlen" ref="o2" args="" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -79,7 +79,7 @@
 length of data     </td>
   </tr>
 </table>
-<a class="anchor" name="o0" doxytag="apreq_value_t::name"></a><p>
+<a class="anchor" name="o0"></a><!-- doxytag: member="apreq_value_t::name" ref="o0" args="" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <td class="mdRow">
@@ -102,7 +102,7 @@
 value name     </td>
   </tr>
 </table>
-<a class="anchor" name="o1" doxytag="apreq_value_t::nlen"></a><p>
+<a class="anchor" name="o1"></a><!-- doxytag: member="apreq_value_t::nlen" ref="o1" args="" --><p>
 <table class="mdTable" cellpadding="2" cellspacing="0">
   <tr>
     <tss" href="dox.css" />
-  <title>libapreq2-2.05-dev: libapreq2: Data Fields</title> 
+  <title>libapreq2-2.06-dev: libapreq2: Data Fields</title> 
 </head>
 <body>
 <div id="page-header">
@@ -10,7 +10,7 @@
 <a href="http://httpd.apache.org/apreq/">Request Library Subproject</a></p>
 <p class="apache">Apache HTTP Server Request Library</p>
 <img alt="" src="feather.gif" /></div>
-<!-- Generated by Doxygen 1.4.2 -->
+<!-- Generated by Doxygen 1.4.3-20050530 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindexHL" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related&nbsp;Pages</a></div>
 <div class="qindex"><a class="qindexHL" href="functions.html">All</a> | <a class="qindex" href="functions_vars.html">Variables</a></div>
 <div class="qindex"><a class="qindex" href="#index_a">a</a> | <a class="qindex" href="#index_b">b</a> | <a class="qindex" href="#index_c">c</a> | <a class="qindex" href="#index_d">d</a> | <a class="qindex" href="#index_f">f</a> | <a class="qindex" href="#index_h">h</a> | <a class="qindex" href="#index_i">i</a> | <a class="qindex" href="#index_j">j</a> | <a class="qindex" href="#index_m">m</a> | <a class="qindex" href="#index_n">n</a> | <a class="qindex" href="#index_p">p</a> | <a class="qindex" href="#index_r">r</a> | <a class="qindex" href="#index_t">t</a> | <a class="qindex" href="#index_u">u</a> | <a class="qindex" href="#index_v">v</a></div>
@@ -94,7 +94,7 @@
 See <a href="apreq_license.html">LICENSE</a>.</p>
 <p class="menu">
 <span style="color:#aaa">page generated by <a href="http://www.doxygen.org/"><code>doxygen</code></a>
-version 1.4.2 on 4 May 2005</span>
+version 1.4.3-20050530 on 19 Jul 2005</span>
 </p>
 </div>
 </body>

Modified class="mdRow">
@@ -133,7 +133,7 @@
 See <a href="apreq_license.html">LICENSE</a>.</p>
 <p class="menu">
 <span style="color:#aaa">page generated by <a href="http://www.doxygen.org/"><code>doxygen</code></a>
-version 1.4.2 on 4 May 2005</span>
+version 1.4.3-20050530 on 19 Jul 2005</span>
 </p>
 </div>
 </body>

Modified: httpd/site/trunk/xdocs/apreq/docs/libapreq2/todo.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/xdocs/apreq/docs/libapreq2/todo.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/xdocs/apreq/docs/libapreq2/todo.html (original)
+++ httpd/site/trunk/xdocs/apreq/docs/libapreq2/todo.html Wed Jul 20 09:09:19 2005
@@ -1,7 +1,7 @@
 <html>
 <head>
   <link rel="stylesheet" type="text/css" href="dox.css" />
-  <title>libapreq2-2.05-dev: libapreq2: Todo List</title> 
+  <title>libapreq2-2.06-dev: libapreq2: Todo List</title> 
 </head>
 <body>
 <div id="page-header">
@@ -10,25 +10,26 @@
 <a href="hd: httpd/site/trunk/xdocs/apreq/docs/libapreq2/functions_vars.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/xdocs/apreq/docs/libapreq2/functions_vars.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/xdocs/apreq/docs/libapreq2/functions_vars.html (original)
+++ httpd/site/trunk/xdocs/apreq/docs/libapreq2/functions_vars.html Wed Jul 20 09:09:19 2005
@@ -1,7 +1,7 @@
 <html>
 <head>
   <link rel="stylesheet" type="text/css" href="dox.css" />
-  <title>libapreq2-2.05-dev: libapreq2: Data Fields - Variables</title> 
+  <title>libapreq2-2.06-dev: libapreq2: Data Fields - Variables</title> 
 </head>
 <body>
 <div id="page-header">
@@ -10,7 +10,7 @@
 <a href="http://httpd.apache.org/apreq/">Request Library Subproject</a></p>
 <p class="apache">Apache HTTP Server Request Library</p>
 <img alt="" src="feather.gif" /></div>
-<!-- Generated by Doxygen 1.4.2 -->
+<!-- Generated by Doxygen 1.4.3-20050530 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindexHL" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related&nbsp;Pages</a></div>
 <div class="qindex"><a class="qindex" href="functions.html">All</a> | <a class="qindexHL" href="functions_vars.html">Variables</a></div>
 <div class="qindex"><a class="qindex" href="#index_a">a</a> | <a class="qindex" href="#index_b">b</a> | <a class="qindex" href="#index_c">c</a> | <a class="qindex" href="#index_d">d</a> | <a class="qindex" href="#index_f">f</a> | <a class="qindex" href="#index_h">h</a> | <a class="qindex" href="#index_i">i</a> | <a class="qindex" href="#index_j">j</a> | <a class="qindex" href="#index_m">m</a> | <a clasttp://httpd.apache.org/apreq/">Request Library Subproject</a></p>
 <p class="apache">Apache HTTP Server Request Library</p>
 <img alt="" src="feather.gif" /></div>
-<!-- Generated by Doxygen 1.4.2 -->
+<!-- Generated by Doxygen 1.4.3-20050530 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related&nbsp;Pages</a></div>
 <h1><a class="anchor" name="todo">Todo List</a></h1><a class="anchor" name="_todo000001"></a> <dl>
 <dt>Global <a class="el" href="apreq__cookie_8h.html#a0">APREQ_COOKIE_MAX_LENGTH</a>  </dt>
-<dd>convert this macro to an <a class="el" href="structapreq__module__t.html">apreq_module_t</a> method.</dd>
+<dd>convert this macro to an <a class="el" href="structapreq__module__t.html">apreq_module_t</a> method.<p>
+</dd>
 </dl>
 <p>
 <a class="anchor" name="_todo000002"></a> <dl>
-<dt>Global <a class="el" href="apreq__util_8h.html#a10">apreq_atoi64f</a> (const char *s) </dt>
+<dt>Global <a class="el" href="apreq__util_8h.html#a10">apreq_atoi64f</a>  </dt>
 <dd>What happens when s is malformed? Should this return an unsigned value instead? </dd>
 </dl>
 <p>
 <a class="anchor" name="_todo000003"></a> <dl>
-<dt>Global <a class="el" href="apreq__util_8h.html#a11">apreq_atoi64t</a> (const char *s) </dt>
+<dt>Global <a class="el" href="apreq__util_8h.html#a11">apreq_atoi64t</a>  </dt>
 <dd>What happens when s is malformed? Should this return an unsigned value instead? </dd>
 </dl>
 <p>
 <a class="anchor" name="_todo000004"></a> <dl>
-<dt>Global <a class="el" href="apreq__util_8h.html#a18">apreq_brigade_concat</a> (apr_pool_t *pool, const char *temp_dir, apr_size_t brigade_limit, <a class="elRef" doxygen="apu.tag:http://apr.apache.org/docs/apr-util/" href="http://apr.apache.org/docs/apr-util/structapr__bucket__brigade.html">apr_bucket_brigade</a> *out, <a class="elRef" doxygen="apu.tag:http://apr.apache.org/docs/apr-util/" href="http://apr.apache.org/docs/apr-util/structapr__bucket__brigade.html">apr_bucket_brigade</a> *in) </dt>
+<dt>Global <a class="el" href="apreq__util_8h.html#a18">apreq_brigade_concat</a>  </dt>
 <dd>Flesh out these error codes, making them as explicit as possible. </dd>
 </dl>
 <div id="footer">
@@ -37,7 +38,7 @@
 See <a href="apreq_license.html">LICENSE</a>.</p>
 <p class="menu">
 <span style="color:#aaa">page generated by <a href="http://www.doxygen.org/"><code>doxygen</code></a>
-version 1.4.2 on 4 May 2005</span>
+version 1.4.3-20050530 on 19 Jul 2005</span>
 </p>
 </div>
 </body>



s="qindex" href="#index_n">n</a> | <a class="qindex" href="#index_p">p</a> | <a class="qindex" href="#index_r">r</a> | <a class="qindex" href="#index_t">t</a> | <a class="qindex" href="#index_u">u</a> | <a class="qindex" href="#index_v">v</a></div>
@@ -94,7 +94,7 @@
 See <a href="apreq_license.html">LICENSE</a>.</p>
 <p class="menu">
 <span style="color:#aaa">page generated by <a href="http://www.doxygen.org/"><code>doxygen</code></a>
-version 1.4.2 on 4 May 2005</span>
+version 1.4.3-20050530 on 19 Jul 2005</span>
 </p>
 </div>
 </body>

Modified: httpd/site/trunk/xdocs/apreq/docs/libapreq2/globals.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/xdocs/apreq/docs/libapreq2/globals.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/xdocs/apreq/docs/libapreq2/globals.html (original)
+++ httpd/site/trunk/xdocs/apreq/docs/libapreq2/globals.html Wed Jul 20 09:09:19 2005
@@ -1,7 +1,7 @@
 <html>
 <head>
   <link rel="stylesheet" type="text/css" href="dox.css" />
-  <title>libapreq2-2.05-dev: libapreq2: Data Fields</title> 
+  <title>libapreq2-2.06-dev: libapreq2: Data Fields</title> 
 </head>
 <body>
 <div id="page-header">
@@ -10,9 +10,9 @@
 <a href="http://httpd.apache.org/apreq/">Request Library Subproject</a></p>
 <p class="apache">Apache HTTP Server Request Library</p>
 <img alt="" src="feather.gif" /></div>
-<!-- Generated by Doxygen 1.4.2 -->
+<!-- Generated by Doxygen 1.4.3-20050530 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindexHL" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related&nbsp;Pages</a></div>
-<div class="qindex"><a class="qindexHL" href="globals.html">All</a> | <a class="qindex" href="globals_func.html">Functions</a> | <a class="qindex" href="globals_type.html">Typedefs</a> | <a class="qindex" href="globals_enum.html">Enumerations</a> | <a class="qindex" href="globals_eval.html">Enumeration&nbsp;values</a> | <a class="qindex" href="globals_defs.html">Defines</a></div>
+<div class="qindex"><a class="qindexHL" href="globals.html">All</a> | <a class="qindex" href="globals_func.html">Functions</a> | <a class="qindex" href="globals_type.html">Typedefs</a> | <a class="qindex" href="globals_enum.html">Enumerations</a> | <a class="qindex" href="globals_eval.html">Enumerator</a> | <a class="qindex" href="globals_defs.html">Defines</a></div>
 <div class="qindex"><a class="qindex" href="#index_a">a</a></div>
 
 <p>
@@ -36,9 +36,7 @@
 : <a class="el" href="apreq__util_8h.html#a19">apreq_util.h</a><li>apreq_charset_t
 : <a class="el" href="apreq_8h.html#a37">apreq.h</a><li>apreq_cookie
 : <a class="el" href="apreq__module_8h.html#a1">apreq_module.h</a><li>apreq_cookie_as_string()
-: <a class="el" href="apreq__cookie_8h.html#a13">apreq_cookie.h</a><li>apreq_cookie_bake()
-: <a class="el" href="apreq__module_8h.html#a22">apreq_module.h</a><li>apreq_cookie_bake2()
-: <a class="el" href="apreq__module_8h.html#a23">apreq_module.h</a><li>apreq_cookie_expires()
+: <a class="el" href="apreq__cookie_8h.html#a13">apreq_cookie.h</a><li>apreq_cookie_expires()
 : <a class="el" href="apreq__cookie_8h.html#a15">apreq_cookie.h</a><li>apreq_cookie_is_secure()
 : <a class="el" href="apreq__cookie_8h.html#a5">apreq_cookie.h</a><li>apreq_cookie_is_tainted()
 : <a class="el" href="apreq__cookie_8h.html#a8">apreq_cookie.h</a><li>apreq_cookie_make()
@@ -52,7 +50,7 @@
 : <a class="el" href="apreq__cookie_8h.html#a9">apreq_cookie.h</a><li>apreq_cookie_version()
 : <a class="el" href="apreq__cookie_8h.html#a3">apreq_cookie.h</a><li>apreq_cookie_version_set()
 : <a class="el" href="apreq__cookie_8h.html#a4">apreq_cookie.h</a><li>apreq_cookies()
-: <a class="el" href="apreq__module_8h.html#a27">apreq_module.h</a><li>apreq_cp1252_to_utf8()
+: <a class="el" href="apreq__module_8h.html#a24">apreq_module.h</a><li>apreq_cp1252_to_utf8()
 : <a class="el" href="apreq__util_8h.html#a5">apreq_util.h</a><li>APREQ_DECLARE_HOOK
 : <a class="el" href="apreq__parser_8h.html#a22">apreq_parser.h</a><li>APREQ_DECLARE_PARSER
 : <a class="el" href="apreq__parser_8h.html#a13">apreq_parser.h</a><li>apreq_decode()
@@ -112,7 +110,7 @@
 : <a class="el" href="apreq__module_8h.html#a0">apreq_module.h</a><li>apreq_module_status_is_error()
 : <a class="el" href="apreq__module_8h.html#a4">apreq_module.h</a><li>apreq_module_t
 : <a class="el" href="apreq__module_8h.html#a3">apreq_module.h</a><li>apreq_param()
-: <a class="el" href="apreq__module_8h.html#a25">apreq_module.h</a><li>apreq_param_charset_get()
+: <a class="el" href="apreq__module_8h.html#a22">apreq_module.h</a><li>apreq_param_charset_get()
 : <a class="el" href="apreq__param_8h.html#a5">apreq_param.h</a><li>apreq_param_charset_set()
 : <a class="el" href="apreq__param_8h.html#a4">apreq_param.h</a><li>apreq_param_decode()
 : <a class="el" href="apreq__param_8h.html#a8">apreq_param.h</a><li>apreq_param_encode()
@@ -122,10 +120,9 @@
 : <a class="el" href="apreq__param_8h.html#a0">apreq_param.h</a><li>apreq_param_tainted_off()
 : <a class="el" href="apreq__param_8h.html#a3">apreq_param.h</a><li>apreq_param_tainted_on()
 : <a class="el" href="apreq__param_8h.html#a2">apreq_param.h</a><li>apreq_params()
-: <a class="el" href="apreq__module_8h.html#a26">apreq_module.h</a><li>apreq_params_as_array()
+: <a class="el" href="apreq__module_8h.html#a23">apreq_module.h</a><li>apreq_params_as_array()
 : <a class="el" href="apreq__param_8h.html#a11">apreq_param.h</a><li>apreq_params_as_string()
-: <a class="el" href="apreq__param_8h.html#a12">apreq_param.h</a><li>apreq_parse()
-: <a class="el" href="apreq__module_8h.html#a28">apreq_module.h</a><li>apreq_parse_cookie_header()
+: <a class="el" href="apreq__param_8h.html#a12">apreq_param.h</a><li>apreq_parse_cookie_header()
 : <a class="el" href="apreq__cookie_8h.html#a11">apreq_cookie.h</a><li>apreq_parse_query_string()
 : <a class="el" href="apreq__param_8h.html#a10">apreq_param.h</a><li>apreq_parser()
 : <a class="el" href="apreq__parser_8h.html#a18">apreq_parser.h</a><li>apreq_parser_add_hook()
@@ -147,24 +144,23 @@
 : <a class="el" href="apreq__parser_8h.html#a19">apreq_parser.h</a><li>apreq_strerror()
 : <a class="el" href="apreq__error_8h.html#a19">apreq_error.h</a><li>apreq_temp_dir_get()
 : <a class="el" href="apreq__module_8h.html#a19">apreq_module.h</a><li>apreq_temp_dir_set()
-: <a class="el" href="apreq__module_8h.html#a18">apreq_module.h</a><li>apreq_ua_cookie_version()
-: <a class="el" href="apreq__module_8h.html#a24">apreq_module.h</a><li>apreq_unescape()
+: <a class="el" href="apreq__module_8h.html#a18">apreq_module.h</a><li>apreq_unescape()
 : <a class="el" href="apreq__util_8h.html#a9">apreq_util.h</a><li>apreq_upload()
 : <a class="el" href="apreq__param_8h.html#a14">apreq_param.h</a><li>apreq_uploads()
 : <a class="el" href="apreq__param_8h.html#a13">apreq_param.h</a><li>apreq_value_t
 : <a class="el" href="apreq_8h.html#a20">apreq.h</a><li>apreq_value_to_cookie()
 : <a class="el" href="apreq__cookie_8h.html#a2">apreq_cookie.h</a><li>apreq_value_to_param()
 : <a class="el" href="apreq__param_8h.html#a6">apreq_param.h</a><li>apreq_version()
-: <a class="el" href="apreq__version_8h.html#a6">apreq_version.h</a><li>APREQ_VERSION_STRING
-: <a class="el" href="apreq__version_8h.html#a4">apreq_version.h</a><li>apreq_version_string()
-: <a class="el" href="apreq__version_8h.html#a7">apreq_version.h</a></ul>
+: <a class="el" href="apreq__version_8h.html#a6">apreq_version.h</a><li>apreq_version_string()
+: <a class="el" href="apreq__version_8h.html#a7">apreq_version.h</a><li>APREQ_VERSION_STRING
+: <a class="el" href="apreq__version_8h.html#a4">apreq_version.h</a></ul>
 <div id="footer">
 <p class="apache">
 Copyright &copy; 2003-2005 <a href="http://www.apache.org">The Apache Software Foundation</a>.<br/>
 See <a href="apreq_license.html">LICENSE</a>.</p>
 <p class="menu">
 <span style="color:#aaa">page generated by <a href="http://www.doxygen.org/"><code>doxygen</code></a>
-version 1.4.2 on 4 May 2005</span>
+version 1.4.3-20050530 on 19 Jul 2005</span>
 </p>
 </div>
 </body>

Modified: httpd/site/trunk/xdocs/apreq/docs/libapreq2/globals_defs.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/xdocs/apreq/docs/libapreq2/globals_defs.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/xdocs/apreq/docs/libapreq2/globals_defs.html (original)
+++ httpd/site/trunk/xdocs/apreq/docs/libapreq2/globals_defs.html Wed Jul 20 09:09:19 2005
@@ -1,7 +1,7 @@
 <html>
 <head>
   <link rel="stylesheet" type="text/css" href="dox.css" />
-  <title>libapreq2-2.05-dev: libapreq2: Data Fields</title> 
+  <title>libapreq2-2.06-dev: libapreq2: Data Fields</title> 
 </head>
 <body>
 <div id="page-header">
@@ -10,9 +10,9 @@
 <a href="http://httpd.apache.org/apreq/">Request Library Subproject</a></p>
 <p class="apache">Apache HTTP Server Request Library</p>
 <img alt="" src="feather.gif" /></div>
-<!-- Generated by Doxygen 1.4.2 -->
+<!-- Generated by Doxygen 1.4.3-20050530 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindexHL" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related&nbsp;Pages</a></div>
-<div class="qindex"><a class="qindex" href="globals.html">All</a> | <a class="qindex" href="globals_func.html">Functions</a> | <a class="qindex" href="globals_type.html">Typedefs</a> | <a class="qindex" href="globals_enum.html">Enumerations</a> | <a class="qindex" href="globals_eval.html">Enumeration&nbsp;values</a> | <a class="qindexHL" href="globals_defs.html">Defines</a></div>
+<div class="qindex"><a class="qindex" href="globals.html">All</a> | <a class="qindex" href="globals_func.html">Functions</a> | <a class="qindex" href="globals_type.html">Typedefs</a> | <a class="qindex" href="globals_enum.html">Enumerations</a> | <a class="qindex" href="globals_eval.html">Enumerator</a> | <a class="qindexHL" href="globals_defs.html">Defines</a></div>
 <div class="qindex"><a class="qindex" href="#index_a">a</a></div>
 
 <p>
@@ -57,7 +57,7 @@
 See <a href="apreq_license.html">LICENSE</a>.</p>
 <p class="menu">
 <span style="color:#aaa">page generated by <a href="http://www.doxygen.org/"><code>doxygen</code></a>
-version 1.4.2 on 4 May 2005</span>
+version 1.4.3-20050530 on 19 Jul 2005</span>
 </p>
 </div>
 </body>

Modified: httpd/site/trunk/xdocs/apreq/docs/libapreq2/globals_enum.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/xdocs/apreq/docs/libapreq2/globals_enum.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/xdocs/apreq/docs/libapreq2/globals_enum.html (original)
+++ httpd/site/trunk/xdocs/apreq/docs/libapreq2/globals_enum.html Wed Jul 20 09:09:19 2005
@@ -1,7 +1,7 @@
 <html>
 <head>
   <link rel="stylesheet" type="text/css" href="dox.css" />
-  <title>libapreq2-2.05-dev: libapreq2: Data Fields</title> 
+  <title>libapreq2-2.06-dev: libapreq2: Data Fields</title> 
 </head>
 <body>
 <div id="page-header">
@@ -10,9 +10,9 @@
 <a href="http://httpd.apache.org/apreq/">Request Library Subproject</a></p>
 <p class="apache">Apache HTTP Server Request Library</p>
 <img alt="" src="feather.gif" /></div>
-<!-- Generated by Doxygen 1.4.2 -->
+<!-- Generated by Doxygen 1.4.3-20050530 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindexHL" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related&nbsp;Pages</a></div>
-<div class="qindex"><a class="qindex" href="globals.html">All</a> | <a class="qindex" href="globals_func.html">Functions</a> | <a class="qindex" href="globals_type.html">Typedefs</a> | <a class="qindexHL" href="globals_enum.html">Enumerations</a> | <a class="qindex" href="globals_eval.html">Enumeration&nbsp;values</a> | <a class="qindex" href="globals_defs.html">Defines</a></div>
+<div class="qindex"><a class="qindex" href="globals.html">All</a> | <a class="qindex" href="globals_func.html">Functions</a> | <a class="qindex" href="globals_type.html">Typedefs</a> | <a class="qindexHL" href="globals_enum.html">Enumerations</a> | <a class="qindex" href="globals_eval.html">Enumerator</a> | <a class="qindex" href="globals_defs.html">Defines</a></div>
 
 <p>
 <ul>
@@ -27,7 +27,7 @@
 See <a href="apreq_license.html">LICENSE</a>.</p>
 <p class="menu">
 <span style="color:#aaa">page generated by <a href="http://www.doxygen.org/"><code>doxygen</code></a>
-version 1.4.2 on 4 May 2005</span>
+version 1.4.3-20050530 on 19 Jul 2005</span>
 </p>
 </div>
 </body>

Modified: httpd/site/trunk/xdocs/apreq/docs/libapreq2/globals_eval.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/xdocs/apreq/docs/libapreq2/globals_eval.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/xdocs/apreq/docs/libapreq2/globals_eval.html (original)
+++ httpd/site/trunk/xdocs/apreq/docs/libapreq2/globals_eval.html Wed Jul 20 09:09:19 2005
@@ -1,7 +1,7 @@
 <html>
 <head>
   <link rel="stylesheet" type="text/css" href="dox.css" />
-  <title>libapreq2-2.05-dev: libapreq2: Data Fields</title> 
+  <title>libapreq2-2.06-dev: libapreq2: Data Fields</title> 
 </head>
 <body>
 <div id="page-header">
@@ -10,9 +10,9 @@
 <a href="http://httpd.apache.org/apreq/">Request Library Subproject</a></p>
 <p class="apache">Apache HTTP Server Request Library</p>
 <img alt="" src="feather.gif" /></div>
-<!-- Generated by Doxygen 1.4.2 -->
+<!-- Generated by Doxygen 1.4.3-20050530 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindexHL" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related&nbsp;Pages</a></div>
-<div class="qindex"><a class="qindex" href="globals.html">All</a> | <a class="qindex" href="globals_func.html">Functions</a> | <a class="qindex" href="globals_type.html">Typedefs</a> | <a class="qindex" href="globals_enum.html">Enumerations</a> | <a class="qindexHL" href="globals_eval.html">Enumeration&nbsp;values</a> | <a class="qindex" href="globals_defs.html">Defines</a></div>
+<div class="qindex"><a class="qindex" href="globals.html">All</a> | <a class="qindex" href="globals_func.html">Functions</a> | <a class="qindex" href="globals_type.html">Typedefs</a> | <a class="qindex" href="globals_enum.html">Enumerations</a> | <a class="qindexHL" href="globals_eval.html">Enumerator</a> | <a class="qindex" href="globals_defs.html">Defines</a></div>
 
 <p>
 <ul>
@@ -31,7 +31,7 @@
 See <a href="apreq_license.html">LICENSE</a>.</p>
 <p class="menu">
 <span style="color:#aaa">page generated by <a href="http://www.doxygen.org/"><code>doxygen</code></a>
-version 1.4.2 on 4 May 2005</span>
+version 1.4.3-20050530 on 19 Jul 2005</span>
 </p>
 </div>
 </body>

Modified: httpd/site/trunk/xdocs/apreq/docs/libapreq2/globals_func.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/xdocs/apreq/docs/libapreq2/globals_func.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/xdocs/apreq/docs/libapreq2/globals_func.html (original)
+++ httpd/site/trunk/xdocs/apreq/docs/libapreq2/globals_func.html Wed Jul 20 09:09:19 2005
@@ -1,7 +1,7 @@
 <html>
 <head>
   <link rel="stylesheet" type="text/css" href="dox.css" />
-  <title>libapreq2-2.05-dev: libapreq2: Data Fields</title> 
+  <title>libapreq2-2.06-dev: libapreq2: Data Fields</title> 
 </head>
 <body>
 <div id="page-header">
@@ -10,9 +10,9 @@
 <a href="http://httpd.apache.org/apreq/">Request Library Subproject</a></p>
 <p class="apache">Apache HTTP Server Request Library</p>
 <img alt="" src="feather.gif" /></div>
-<!-- Generated by Doxygen 1.4.2 -->
+<!-- Generated by Doxygen 1.4.3-20050530 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindexHL" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related&nbsp;Pages</a></div>
-<div class="qindex"><a class="qindex" href="globals.html">All</a> | <a class="qindexHL" href="globals_func.html">Functions</a> | <a class="qindex" href="globals_type.html">Typedefs</a> | <a class="qindex" href="globals_enum.html">Enumerations</a> | <a class="qindex" href="globals_eval.html">Enumeration&nbsp;values</a> | <a class="qindex" href="globals_defs.html">Defines</a></div>
+<div class="qindex"><a class="qindex" href="globals.html">All</a> | <a class="qindexHL" href="globals_func.html">Functions</a> | <a class="qindex" href="globals_type.html">Typedefs</a> | <a class="qindex" href="globals_enum.html">Enumerations</a> | <a class="qindex" href="globals_eval.html">Enumerator</a> | <a class="qindex" href="globals_defs.html">Defines</a></div>
 <div class="qindex"><a class="qindex" href="#index_a">a</a></div>
 
 <p>
@@ -34,9 +34,7 @@
 : <a class="el" href="apreq__util_8h.html#a16">apreq_util.h</a><li>apreq_brigade_setaside()
 : <a class="el" href="apreq__util_8h.html#a14">apreq_util.h</a><li>apreq_brigade_spoolfile()
 : <a class="el" href="apreq__util_8h.html#a19">apreq_util.h</a><li>apreq_cookie_as_string()
-: <a class="el" href="apreq__cookie_8h.html#a13">apreq_cookie.h</a><li>apreq_cookie_bake()
-: <a class="el" href="apreq__module_8h.html#a22">apreq_module.h</a><li>apreq_cookie_bake2()
-: <a class="el" href="apreq__module_8h.html#a23">apreq_module.h</a><li>apreq_cookie_expires()
+: <a class="el" href="apreq__cookie_8h.html#a13">apreq_cookie.h</a><li>apreq_cookie_expires()
 : <a class="el" href="apreq__cookie_8h.html#a15">apreq_cookie.h</a><li>apreq_cookie_is_secure()
 : <a class="el" href="apreq__cookie_8h.html#a5">apreq_cookie.h</a><li>apreq_cookie_is_tainted()
 : <a class="el" href="apreq__cookie_8h.html#a8">apreq_cookie.h</a><li>apreq_cookie_make()
@@ -48,7 +46,7 @@
 : <a class="el" href="apreq__cookie_8h.html#a9">apreq_cookie.h</a><li>apreq_cookie_version()
 : <a class="el" href="apreq__cookie_8h.html#a3">apreq_cookie.h</a><li>apreq_cookie_version_set()
 : <a class="el" href="apreq__cookie_8h.html#a4">apreq_cookie.h</a><li>apreq_cookies()
-: <a class="el" href="apreq__module_8h.html#a27">apreq_module.h</a><li>apreq_cp1252_to_utf8()
+: <a class="el" href="apreq__module_8h.html#a24">apreq_module.h</a><li>apreq_cp1252_to_utf8()
 : <a class="el" href="apreq__util_8h.html#a5">apreq_util.h</a><li>APREQ_DECLARE_HOOK()
 : <a class="el" href="apreq__parser_8h.html#a22">apreq_parser.h</a><li>APREQ_DECLARE_PARSER()
 : <a class="el" href="apreq__parser_8h.html#a13">apreq_parser.h</a><li>apreq_decode()
@@ -69,7 +67,7 @@
 : <a class="el" href="apreq__module_8h.html#a8">apreq_module.h</a><li>apreq_join()
 : <a class="el" href="apreq__util_8h.html#a0">apreq_util.h</a><li>apreq_module_status_is_error()
 : <a class="el" href="apreq__module_8h.html#a4">apreq_module.h</a><li>apreq_param()
-: <a class="el" href="apreq__module_8h.html#a25">apreq_module.h</a><li>apreq_param_charset_get()
+: <a class="el" href="apreq__module_8h.html#a22">apreq_module.h</a><li>apreq_param_charset_get()
 : <a class="el" href="apreq__param_8h.html#a5">apreq_param.h</a><li>apreq_param_charset_set()
 : <a class="el" href="apreq__param_8h.html#a4">apreq_param.h</a><li>apreq_param_decode()
 : <a class="el" href="apreq__param_8h.html#a8">apreq_param.h</a><li>apreq_param_encode()
@@ -78,10 +76,9 @@
 : <a class="el" href="apreq__param_8h.html#a7">apreq_param.h</a><li>apreq_param_tainted_off()
 : <a class="el" href="apreq__param_8h.html#a3">apreq_param.h</a><li>apreq_param_tainted_on()
 : <a class="el" href="apreq__param_8h.html#a2">apreq_param.h</a><li>apreq_params()
-: <a class="el" href="apreq__module_8h.html#a26">apreq_module.h</a><li>apreq_params_as_array()
+: <a class="el" href="apreq__module_8h.html#a23">apreq_module.h</a><li>apreq_params_as_array()
 : <a class="el" href="apreq__param_8h.html#a11">apreq_param.h</a><li>apreq_params_as_string()
-: <a class="el" href="apreq__param_8h.html#a12">apreq_param.h</a><li>apreq_parse()
-: <a class="el" href="apreq__module_8h.html#a28">apreq_module.h</a><li>apreq_parse_cookie_header()
+: <a class="el" href="apreq__param_8h.html#a12">apreq_param.h</a><li>apreq_parse_cookie_header()
 : <a class="el" href="apreq__cookie_8h.html#a11">apreq_cookie.h</a><li>apreq_parse_query_string()
 : <a class="el" href="apreq__param_8h.html#a10">apreq_param.h</a><li>apreq_parser()
 : <a class="el" href="apreq__parser_8h.html#a18">apreq_parser.h</a><li>apreq_parser_add_hook()
@@ -99,8 +96,7 @@
 : <a class="el" href="apreq__parser_8h.html#a19">apreq_parser.h</a><li>apreq_strerror()
 : <a class="el" href="apreq__error_8h.html#a19">apreq_error.h</a><li>apreq_temp_dir_get()
 : <a class="el" href="apreq__module_8h.html#a19">apreq_module.h</a><li>apreq_temp_dir_set()
-: <a class="el" href="apreq__module_8h.html#a18">apreq_module.h</a><li>apreq_ua_cookie_version()
-: <a class="el" href="apreq__module_8h.html#a24">apreq_module.h</a><li>apreq_unescape()
+: <a class="el" href="apreq__module_8h.html#a18">apreq_module.h</a><li>apreq_unescape()
 : <a class="el" href="apreq__util_8h.html#a9">apreq_util.h</a><li>apreq_upload()
 : <a class="el" href="apreq__param_8h.html#a14">apreq_param.h</a><li>apreq_uploads()
 : <a class="el" href="apreq__param_8h.html#a13">apreq_param.h</a><li>apreq_value_to_cookie()
@@ -114,7 +110,7 @@
 See <a href="apreq_license.html">LICENSE</a>.</p>
 <p class="menu">
 <span style="color:#aaa">page generated by <a href="http://www.doxygen.org/"><code>doxygen</code></a>
-version 1.4.2 on 4 May 2005</span>
+version 1.4.3-20050530 on 19 Jul 2005</span>
 </p>
 </div>
 </body>

Modified: httpd/site/trunk/xdocs/apreq/docs/libapreq2/globals_type.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/xdocs/apreq/docs/libapreq2/globals_type.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/xdocs/apreq/docs/libapreq2/globals_type.html (original)
+++ httpd/site/trunk/xdocs/apreq/docs/libapreq2/globals_type.html Wed Jul 20 09:09:19 2005
@@ -1,7 +1,7 @@
 <html>
 <head>
   <link rel="stylesheet" type="text/css" href="dox.css" />
-  <title>libapreq2-2.05-dev: libapreq2: Data Fields</title> 
+  <title>libapreq2-2.06-dev: libapreq2: Data Fields</title> 
 </head>
 <body>
 <div id="page-header">
@@ -10,9 +10,9 @@
 <a href="http://httpd.apache.org/apreq/">Request Library Subproject</a></p>
 <p class="apache">Apache HTTP Server Request Library</p>
 <img alt="" src="feather.gif" /></div>
-<!-- Generated by Doxygen 1.4.2 -->
+<!-- Generated by Doxygen 1.4.3-20050530 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindexHL" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related&nbsp;Pages</a></div>
-<div class="qindex"><a class="qindex" href="globals.html">All</a> | <a class="qindex" href="globals_func.html">Functions</a> | <a class="qindexHL" href="globals_type.html">Typedefs</a> | <a class="qindex" href="globals_enum.html">Enumerations</a> | <a class="qindex" href="globals_eval.html">Enumeration&nbsp;values</a> | <a class="qindex" href="globals_defs.html">Defines</a></div>
+<div class="qindex"><a class="qindex" href="globals.html">All</a> | <a class="qindex" href="globals_func.html">Functions</a> | <a class="qindexHL" href="globals_type.html">Typedefs</a> | <a class="qindex" href="globals_enum.html">Enumerations</a> | <a class="qindex" href="globals_eval.html">Enumerator</a> | <a class="qindex" href="globals_defs.html">Defines</a></div>
 
 <p>
 <ul>
@@ -32,7 +32,7 @@
 See <a href="apreq_license.html">LICENSE</a>.</p>
 <p class="menu">
 <span style="color:#aaa">page generated by <a href="http://www.doxygen.org/"><code>doxygen</code></a>
-version 1.4.2 on 4 May 2005</span>
+version 1.4.3-20050530 on 19 Jul 2005</span>
 </p>
 </div>
 </body>