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 [9/18] - in /httpd/site/trunk: docs/apreq/docs/libapreq2/ xdocs/apreq/docs/libapreq2/

Modified: httpd/site/trunk/docs/apreq/docs/libapreq2/group__apreq__xs__request.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/docs/apreq/docs/libapreq2/group__apreq__xs__request.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/docs/apreq/docs/libapreq2/group__apreq__xs__request.html (original)
+++ httpd/site/trunk/docs/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/docs/apreq/docs/libapreq2/group__apreq__xs__upload.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/docs/apreq/docs/libapreq2/group__apreq__xs__upload.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/docs/apreq/docs/libapreq2/group__apreq__xs__upload.html (original)
+++ httpd/site/trunk/docs/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/docs/apreq/docs/libapreq2/group__libapreq2.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/docs/apreq/docs/libapreq2/group__libapreq2.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/docs/apreq/docs/libapreq2/group__libapreq2.html (original)
+++ httpd/site/trunk/docs/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/docs/apreq/docs/libapreq2/group__mod__apreq2.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/docs/apreq/docs/libapreq2/group__mod__apreq2.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/docs/apreq/docs/libapreq2/group__mod__apreq2.html (original)
+++ httpd/site/trunk/docs/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/docs/apreq/docs/libapreq2/index.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/docs/apreq/docs/libapreq2/index.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/docs/apreq/docs/libapreq2/index.html (original)
+++ httpd/site/trunk/docs/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 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/docs/apreq/docs/libapreq2/modules.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/docs/apreq/docs/libapreq2/modules.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/docs/apreq/docs/libapreq2/modules.html (original)
+++ httpd/site/trunk/docs/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="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">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/docs/apreq/docs/libapreq2/pages.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/docs/apreq/docs/libapreq2/pages.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/docs/apreq/docs/libapreq2/pages.html (original)
+++ httpd/site/trunk/docs/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/docs/apreq/docs/libapreq2/structapreq__cookie__t.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/docs/apreq/docs/libapreq2/structapreq__cookie__t.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/docs/apreq/docs/libapreq2/structapreq__cookie__t.html (original)
+++ httpd/site/trunk/docs/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/docs/apreq/docs/libapreq2/structapreq__handle__t.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/docs/apreq/docs/libapreq2/structapreq__handle__t.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/docs/apreq/docs/libapreq2/structapreq__handle__t.html (original)
+++ httpd/site/trunk/docs/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.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/docs/apreq/docs/libapreq2/structapreq__hook__t.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/docs/apreq/docs/libapreq2/structapreq__hook__t.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/docs/apreq/docs/libapreq2/structapreq__hook__t.html (original)
+++ httpd/site/trunk/docs/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/docs/apreq/docs/libapreq2/structapreq__module__t.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/docs/apreq/docs/libapreq2/structapreq__module__t.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/docs/apreq/docs/libapreq2/structapreq__module__t.html (original)
+++ httpd/site/trunk/docs/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 +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>
 <p>
 <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" cellspacing="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" name="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>
 </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/trunk/docs/apreq/docs/libapreq2/structapreq__param__t.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/docs/apreq/docs/libapreq2/structapreq__param__t.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/docs/apreq/docs/libapreq2/structapreq__param__t.html (original)
+++ httpd/site/trunk/docs/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" name="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="anchor" 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/docs/apreq/docs/libapreq2/structapreq__parser__t.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/docs/apreq/docs/libapreq2/structapreq__parser__t.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/docs/apreq/docs/libapreq2/structapreq__parser__t.html (original)
+++ httpd/site/trunk/docs/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="anchor" 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 parser 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/docs/apreq/docs/libapreq2/structapreq__value__t.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/docs/apreq/docs/libapreq2/structapreq__value__t.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/docs/apreq/docs/libapreq2/structapreq__value__t.html (original)
+++ httpd/site/trunk/docs/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.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_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>
     <td 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/docs/apreq/docs/libapreq2/todo.html
URL: http://svn.apache.org/viewcvs/httpd/site/trunk/docs/apreq/docs/libapreq2/todo.html?rev=219933&r1=219932&r2=219933&view=diff
==============================================================================
--- httpd/site/trunk/docs/apreq/docs/libapreq2/todo.html (original)
+++ httpd/site/trunk/docs/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="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><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>