You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by hu...@apache.org on 2012/05/06 15:14:50 UTC

svn commit: r1334622 [10/29] - in /httpd/site/trunk: cgi-bin/ content/ content/apreq/ content/apreq/docs/ content/apreq/docs/libapreq2/ content/contributors/ content/css/ content/dev/ content/dev/images/ content/dev/whiteboard/ content/docs-project/ co...

Added: httpd/site/trunk/content/apreq/docs/libapreq2/dox.css
URL: http://svn.apache.org/viewvc/httpd/site/trunk/content/apreq/docs/libapreq2/dox.css?rev=1334622&view=auto
==============================================================================
--- httpd/site/trunk/content/apreq/docs/libapreq2/dox.css (added)
+++ httpd/site/trunk/content/apreq/docs/libapreq2/dox.css Sun May  6 13:14:42 2012
@@ -0,0 +1,625 @@
+/* Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ * mainframe ;-)
+ * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
+html {
+    font-size: 14px;
+}
+
+body {
+    background-color: #fff;
+    color: #036;
+    padding: 0 1em 0 0;
+    margin: 0;
+    font-family: Arial, Helvetica, sans-serif;
+    font-weight: normal;
+}
+
+pre, code {
+    font-family: "Courier New", Courier, monospace;
+}
+
+strong {
+    font-weight: bold;
+}
+
+q, em, var {
+    font-style: italic;
+}
+
+span.transnote {
+    background-color: inherit;
+    color: #888;
+}
+
+/* fixup IE & Opera
+ * otherwise they forget to inherit
+ * the computed font-size value
+ */
+table, code {
+    font-size: 1em;
+}
+
+/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ * Links
+ * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
+
+/* normal links           */
+/* ====================== */
+a:link {
+    color: #0073c7;
+    background-color: inherit;
+}
+
+a:visited {
+    color: #5A88B5;
+    background-color: inherit;
+}
+
+a:link:hover,
+a:link:active,
+a:visited:hover,
+a:visited:active {
+    color: #0073c7;
+    background-color: #f0f0f0;
+}
+
+/* hover on non-white backgrounds */
+tr.odd a:hover,
+tr.odd a:active,
+tr.header a:hover,
+tr.header a:active,
+
+/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ * Headings
+ * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
+
+/* h1                     */
+/* ====================== */
+
+h1 {
+    padding: 0.2em;
+    margin: 0;
+    background-color: inherit;
+    color: #036;
+    text-decoration: none;
+    font-size: 22px;
+    font-weight: bold;
+    text-align:center;
+}
+
+/* h2                     */
+/* ====================== */
+h2 {
+    padding: 0.2em 0 0.2em 0.7em;
+    margin: 0 0 0.5em 0;
+    text-decoration: none;
+    font-size: 18px;
+    font-weight: bold;
+    text-align:left;
+}
+
+/* take care of <a name>s inside */
+h2 a,
+h2 a:hover,
+h2 a:active {
+    color: inherit;
+    background-color: inherit;
+    text-decoration: none;
+}
+
+/* h3, h4                 */
+/* ====================== */
+h3 {
+    background-color: inherit;
+    color: #036;
+    text-decoration: none;
+    font-weight: bold;
+    font-size: 16px;
+    margin: 1.3em 0 0.4em 0;
+    padding: 0;
+}
+
+h4 {
+    background-color: inherit;
+    color: #036;
+    text-decoration: none;
+    font-weight: bold;
+    font-size: 14px;
+    margin: 1.3em 0 0.2em 0;
+    padding: 0;
+}
+
+/* margin adjustment */
+h3 + *, h4 + * {
+    margin-top: 0;
+}
+
+/* IE confuses the + * :-(
+ * so reset some things
+ */
+ul, .section table, .directive-section table {
+    margin-bottom: 1em;
+}
+
+/* take care of <a name>s inside */
+h3 a,
+h3 a:hover,
+h3 a:active,
+h4 a,
+h4 a:hover,
+h4 a:active {
+    color: inherit;
+    background-color: inherit;
+    text-decoration: none;
+}
+
+/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ * Tables
+ * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
+
+/* general                */
+/* ====================== */
+/*
+table {
+    border: 1px solid #aaa;
+    border-collapse: collapse;
+    padding: 2px;
+    margin-top: 0.5em;
+    margin-bottom: 0;
+}
+
+td, th {
+    empty-cells: show; /* show border around empty cells */
+    padding: 0.1em 0.2em;
+    vertical-align: top;
+    text-align: left;
+    line-height: 1.3em;
+}
+*/
+th {
+    font-weight: bold;
+}
+
+td.centered {
+    text-align: center;
+}
+
+tr.odd { /* for large tables alternating colors */
+    background-color: #f2f2f2;
+}
+
+tr.header, tr.header th {
+    background-color: #e2e2e2;
+    border-top: 1px solid #aaa;
+    border-bottom: 1px solid #aaa;
+}
+
+/* bordered table cells   */
+/* ====================== */
+
+/* turn off borders in tables nested in
+ * bordered tables per default
+ */
+table.bordered table td,
+table.bordered table th {
+    border-style: none;
+}
+
+table.bordered td,
+table.bordered th,
+table table.bordered td,
+table table.bordered th {
+    border: 1px solid #aaa;
+}
+
+/* index page layout table */
+/* ======================= */
+body#index-page div#page-content {
+    width: 100%; /* IE fun */
+}
+
+body[id]#index-page div#page-content {
+    width: auto; /* reasonable browsers. */
+}
+
+table#indextable {
+    width: 100%;
+    border-collapse: collapse;
+    border: 0 none;
+}
+
+table#indextable td {
+    width: 33.3%;
+    border-left: 1px solid #aaa;
+    padding-top: 0;
+    padding-bottom: 0;
+}
+
+table#indextable td.col1 {
+    border-left: 0 none;
+    padding-left: 0;
+}
+
+table#indextable td.col3 {
+    padding-right: 0;
+}
+
+/* mod/dir. overview table and quick reference  */
+/* ============================================ */
+table.module th,
+table.directive th {
+    white-space: nowrap;
+}
+
+table.qref {
+    border-collapse: collapse;
+    width: 100%;
+}
+
+table.qref td {
+    border-style: none solid;
+    border-color: #aaa;
+    border-width: 1px;
+}
+
+table.qref td.descr {
+    padding-left: 1em;
+    font-size: 13px;
+}
+
+table#legend {
+    width: 100%;
+    border-style: none;
+    border-width: 0;
+    vertical-align: bottom;
+    padding: 0;
+    margin: 0;
+}
+
+table#legend td {
+    vertical-align: bottom;
+    margin: 0;
+    padding: 0;
+}
+
+table#legend td.letters {
+    width: 100%;
+    padding-bottom: 0.5em;
+}
+
+table#legend table {
+    vertical-align: bottom;
+    margin: 0 0 0 0.4em;
+    padding: 0;
+    height: 7.5em;
+}
+
+table#legend table td,
+table#legend table th {
+    vertical-align: middle;
+    padding: 0.1ex 0.2em;
+    line-height: 1em;
+    white-space: nowrap;
+}
+
+/* related modules & dir. */
+/* ====================== */
+
+/* assuming, all links are enclosed by
+ * <code class="directive"> or
+ * <code class="module">
+ */
+
+table.related {
+    border-collapse: separate;
+}
+
+table.related th {
+    padding: 0.2ex 0.3em;
+    background-color: #e5ecf3;
+    color: #405871;
+    vertical-align: middle;
+}
+
+table.related td {
+    padding: 0.2ex 0.3em;
+}
+
+/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ * Lists
+ * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
+
+/* list default values    */
+/* ====================== */
+ul {
+    list-style-type: disc;
+}
+
+ul ul {
+    list-style-type: square;
+}
+
+ul ul ul {
+    list-style-type: circle;
+}
+
+li, dt, dd {
+    line-height: 1.3em;
+}
+
+dt {
+    margin-top: 0.5em;
+    font-weight: bold;
+}
+
+ol li {
+    margin-top: 0.5em;
+}
+
+
+/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ * main page sections
+ * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
+
+div#page-header img {
+    padding: 0;
+    display: block;
+    margin: -70px 0 1px 2em;
+    width: 248px;
+    height: 70px;
+}
+
+div#page-header p.apache {
+    background-color: #405871;
+    color: #fff;
+    padding: 0 0 0 248px;
+    margin: 0;
+    text-align: center;
+    vertical-align: middle;
+    font-size: 16px;
+    font-weight: bold;
+    line-height: 29px;
+}
+
+div#page-header p.menu {
+    text-align: right;
+    font-size: 13px;
+    margin: 30px 0 0.5em 0;
+    padding: 0;
+}
+
+/* breadcrumb navigation */
+div.qindex,
+div#path {
+    text-align:center;
+    margin: 0.2em 0 1.2em 30px;
+    padding: 0;
+    font-size: 13px;
+}
+
+p {
+    line-height: 1.3em;
+}
+
+/* page footer            */
+/* ====================== */
+div#footer {
+/*    margin-left: 30px; */
+    font-size: 13px;
+    border-top: 1px solid #405871;
+    padding-top: 0.2em;
+}
+
+div#footer p.apache {
+    float: left;
+    text-align: left;
+    padding: 0 0 1em 0;
+    margin-top: 0;
+}
+
+div#footer p.menu {
+    float: right;
+    text-align: right;
+    margin-top: 0;
+    padding: 0 0 1em 0;
+}
+
+
+/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ * -> The End (modified doxygen-generated stylesheet below) <-
+ * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
+
+CAPTION { font-weight: bold }
+
+A.qindex {
+       font-weight: bold;
+}
+
+A.qindexHL {
+	font-weight: bold;
+        background-color: #405871;
+	color: #ffffff;
+        padding: 2px 6px;
+}
+A.qindexHL:hover {
+        background-color: #405871;
+	color: #ffffff;
+}
+A.qindexHL:visited { 
+        background-color: #405871; 
+        color: #ffffff 
+}
+
+A.el { font-weight: bold }
+A.elRef { font-weight: bold }
+DL.el { margin-left: -1cm }
+PRE.fragment {
+	border: 1px solid #CCCCCC;
+	background-color: #f5f5f5;
+	margin-top: 4px;
+	margin-bottom: 4px;
+	margin-left: 2px;
+	margin-right: 8px;
+	padding-left: 6px;
+	padding-right: 6px;
+	padding-top: 4px;
+	padding-bottom: 4px;
+}
+DIV.fragment {
+	border: 1px solid #CCCCCC;
+	background-color: #f5f5f5;
+	padding: 6px;
+}
+DIV.ah { background-color: black; font-weight: bold; color: #ffffff; margin-bottom: 3px; margin-top: 3px }
+TD.md { background-color: #F4F4FB; font-weight: bold; }
+TD.mdname1 { background-color: #F4F4FB; font-weight: bold; color: #602020; }
+TD.mdname { background-color: #F4F4FB; font-weight: bold; color: #602020; width: 600px; }
+DIV.groupHeader {
+       margin-left: 16px;
+       margin-top: 12px;
+       margin-bottom: 6px;
+       font-weight: bold;
+}
+DIV.groupText { margin-left: 16px; font-style: italic; font-size: smaller }
+
+BODY {
+	background: white;
+	color: black;
+	margin-right: 20px;
+	margin-left: 30px;
+}
+
+TD.indexkey {
+	background-color: #eeeeff;
+	font-weight: bold;
+	padding-right  : 10px;
+	padding-top    : 2px;
+	padding-left   : 10px;
+	padding-bottom : 2px;
+	margin-left    : 0px;
+	margin-right   : 0px;
+	margin-top     : 2px;
+	margin-bottom  : 2px;
+	border: 1px solid #CCCCCC;
+}
+TD.indexvalue {
+	background-color: #eeeeff;
+	font-style: italic;
+	padding-right  : 10px;
+	padding-top    : 2px;
+	padding-left   : 10px;
+	padding-bottom : 2px;
+	margin-left    : 0px;
+	margin-right   : 0px;
+	margin-top     : 2px;
+	margin-bottom  : 2px;
+	border: 1px solid #CCCCCC;
+}
+TR.memlist {
+   background-color: #f0f0f0; 
+}
+P.formulaDsp { text-align: center; }
+IMG.formulaDsp { }
+IMG.formulaInl { vertical-align: middle; }
+SPAN.keyword       { color: #008000 }
+SPAN.keywordtype   { color: #604020 }
+SPAN.keywordflow   { color: #e08000 }
+SPAN.comment       { color: #800000 }
+SPAN.preprocessor  { color: #806020 }
+SPAN.stringliteral { color: #002080 }
+SPAN.charliteral   { color: #008080 }
+.mdTable {
+	border: 1px solid #868686;
+	background-color: #F4F4FB;
+}
+.mdRow {
+	padding: 8px 10px;
+}
+.mdescLeft {
+	font-size: smaller;
+	font-style: italic;
+	background-color: #FAFAFA;
+	padding-left: 8px;
+	border-top: 1px none #E0E0E0;
+	border-right: 1px none #E0E0E0;
+	border-bottom: 1px none #E0E0E0;
+	border-left: 1px none #E0E0E0;
+	margin: 0px;
+}
+.mdescRight {
+	font-size: smaller;
+	font-style: italic;
+	background-color: #FAFAFA;
+	padding-left: 4px;
+	border-top: 1px none #E0E0E0;
+	border-right: 1px none #E0E0E0;
+	border-bottom: 1px none #E0E0E0;
+	border-left: 1px none #E0E0E0;
+	margin: 0px;
+	padding-bottom: 0px;
+	padding-right: 8px;
+}
+.memItemLeft {
+	padding: 1px 0px 0px 8px;
+	margin: 4px;
+	border-top-width: 1px;
+	border-right-width: 1px;
+	border-bottom-width: 1px;
+	border-left-width: 1px;
+	border-top-style: solid;
+	border-top-color: #E0E0E0;
+	border-right-color: #E0E0E0;
+	border-bottom-color: #E0E0E0;
+	border-left-color: #E0E0E0;
+	border-right-style: none;
+	border-bottom-style: none;
+	border-left-style: none;
+	background-color: #FAFAFA;
+	font-size: 12px;
+}
+.memItemRight {
+	padding: 1px 0px 0px 8px;
+	margin: 4px;
+	border-top-width: 1px;
+	border-right-width: 1px;
+	border-bottom-width: 1px;
+	border-left-width: 1px;
+	border-top-style: solid;
+	border-top-color: #E0E0E0;
+	border-right-color: #E0E0E0;
+	border-bottom-color: #E0E0E0;
+	border-left-color: #E0E0E0;
+	border-right-style: none;
+	border-bottom-style: none;
+	border-left-style: none;
+	background-color: #FAFAFA;
+	font-size: 13px;
+}
+
+td.tiny { 
+        font-size: 75%;
+}
+/*
+a {
+	color: #252E78;
+}
+a:visited {
+	color: #3D2185;
+}
+*/

Propchange: httpd/site/trunk/content/apreq/docs/libapreq2/dox.css
------------------------------------------------------------------------------
    svn:eol-style = native

Added: httpd/site/trunk/content/apreq/docs/libapreq2/doxygen.png
URL: http://svn.apache.org/viewvc/httpd/site/trunk/content/apreq/docs/libapreq2/doxygen.png?rev=1334622&view=auto
==============================================================================
Binary file - no diff available.

Propchange: httpd/site/trunk/content/apreq/docs/libapreq2/doxygen.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: httpd/site/trunk/content/apreq/docs/libapreq2/examples.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/content/apreq/docs/libapreq2/examples.html?rev=1334622&view=auto
==============================================================================
--- httpd/site/trunk/content/apreq/docs/libapreq2/examples.html (added)
+++ httpd/site/trunk/content/apreq/docs/libapreq2/examples.html Sun May  6 13:14:42 2012
@@ -0,0 +1,41 @@
+<html>
+<head>
+  <link rel="stylesheet" type="text/css" href="dox.css" />
+  <title>libapreq2-2.13: libapreq2: Examples</title> 
+</head>
+<body>
+<div id="page-header">
+<p class="menu">
+   <a href="http://www.apache.org/">Apache Software Foundation</a> &gt; <a href="http://httpd.apache.org">HTTP Server Project</a> &gt;
+<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.5.6 -->
+<div class="navigation" id="top">
+  <div class="tabs">
+    <ul>
+      <li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
+      <li><a href="pages.html"><span>Related&nbsp;Pages</span></a></li>
+      <li><a href="modules.html"><span>Modules</span></a></li>
+      <li><a href="annotated.html"><span>Data&nbsp;Structures</span></a></li>
+      <li><a href="files.html"><span>Files</span></a></li>
+      <li class="current"><a href="examples.html"><span>Examples</span></a></li>
+    </ul>
+  </div>
+</div>
+<div class="contents">
+<h1>Examples</h1>Here is a list of all examples:<ul>
+<li><a class="el" href="_2home_2issac_2asf_2svn_2libapreq2-2_813_2include_2apreq_8h-example.html">/home/issac/asf/svn/libapreq2-2.13/include/apreq.h</a>
+</ul>
+</div>
+<div id="footer">
+<p class="apache">
+Copyright &copy; 2003-2006 <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.5.6 on 3 Dec 2010</span>
+</p>
+</div>
+</body>
+</html>

Propchange: httpd/site/trunk/content/apreq/docs/libapreq2/examples.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: httpd/site/trunk/content/apreq/docs/libapreq2/feather.gif
URL: http://svn.apache.org/viewvc/httpd/site/trunk/content/apreq/docs/libapreq2/feather.gif?rev=1334622&view=auto
==============================================================================
Binary file - no diff available.

Propchange: httpd/site/trunk/content/apreq/docs/libapreq2/feather.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: httpd/site/trunk/content/apreq/docs/libapreq2/files.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/content/apreq/docs/libapreq2/files.html?rev=1334622&view=auto
==============================================================================
--- httpd/site/trunk/content/apreq/docs/libapreq2/files.html (added)
+++ httpd/site/trunk/content/apreq/docs/libapreq2/files.html Sun May  6 13:14:42 2012
@@ -0,0 +1,59 @@
+<html>
+<head>
+  <link rel="stylesheet" type="text/css" href="dox.css" />
+  <title>libapreq2-2.13: libapreq2: File Index</title> 
+</head>
+<body>
+<div id="page-header">
+<p class="menu">
+   <a href="http://www.apache.org/">Apache Software Foundation</a> &gt; <a href="http://httpd.apache.org">HTTP Server Project</a> &gt;
+<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.5.6 -->
+<div class="navigation" id="top">
+  <div class="tabs">
+    <ul>
+      <li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
+      <li><a href="pages.html"><span>Related&nbsp;Pages</span></a></li>
+      <li><a href="modules.html"><span>Modules</span></a></li>
+      <li><a href="annotated.html"><span>Data&nbsp;Structures</span></a></li>
+      <li class="current"><a href="files.html"><span>Files</span></a></li>
+      <li><a href="examples.html"><span>Examples</span></a></li>
+    </ul>
+  </div>
+  <div class="tabs">
+    <ul>
+      <li class="current"><a href="files.html"><span>File&nbsp;List</span></a></li>
+      <li><a href="globals.html"><span>Globals</span></a></li>
+    </ul>
+  </div>
+</div>
+<div class="contents">
+<h1>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...<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" title="Cookies and Jars.apreq_cookie.h describes a common server-side API for request (incoming)...">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 </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<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/apache2/<b>apreq_module_apache2.h</b> <a href="apreq__module__apache2_8h-source.html">[code]</a></td><td class="indexvalue"></td></tr>
+</table>
+</div>
+<div id="footer">
+<p class="apache">
+Copyright &copy; 2003-2006 <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.5.6 on 3 Dec 2010</span>
+</p>
+</div>
+</body>
+</html>

Propchange: httpd/site/trunk/content/apreq/docs/libapreq2/files.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: httpd/site/trunk/content/apreq/docs/libapreq2/functions.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/content/apreq/docs/libapreq2/functions.html?rev=1334622&view=auto
==============================================================================
--- httpd/site/trunk/content/apreq/docs/libapreq2/functions.html (added)
+++ httpd/site/trunk/content/apreq/docs/libapreq2/functions.html Sun May  6 13:14:42 2012
@@ -0,0 +1,189 @@
+<html>
+<head>
+  <link rel="stylesheet" type="text/css" href="dox.css" />
+  <title>libapreq2-2.13: libapreq2: Data Fields</title> 
+</head>
+<body>
+<div id="page-header">
+<p class="menu">
+   <a href="http://www.apache.org/">Apache Software Foundation</a> &gt; <a href="http://httpd.apache.org">HTTP Server Project</a> &gt;
+<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.5.6 -->
+<div class="navigation" id="top">
+  <div class="tabs">
+    <ul>
+      <li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
+      <li><a href="pages.html"><span>Related&nbsp;Pages</span></a></li>
+      <li><a href="modules.html"><span>Modules</span></a></li>
+      <li class="current"><a href="annotated.html"><span>Data&nbsp;Structures</span></a></li>
+      <li><a href="files.html"><span>Files</span></a></li>
+      <li><a href="examples.html"><span>Examples</span></a></li>
+    </ul>
+  </div>
+  <div class="tabs">
+    <ul>
+      <li><a href="annotated.html"><span>Data&nbsp;Structures</span></a></li>
+      <li class="current"><a href="functions.html"><span>Data&nbsp;Fields</span></a></li>
+    </ul>
+  </div>
+  <div class="tabs">
+    <ul>
+      <li class="current"><a href="functions.html"><span>All</span></a></li>
+      <li><a href="functions_vars.html"><span>Variables</span></a></li>
+    </ul>
+  </div>
+  <div class="tabs">
+    <ul>
+      <li><a href="#index_a"><span>a</span></a></li>
+      <li><a href="#index_b"><span>b</span></a></li>
+      <li><a href="#index_c"><span>c</span></a></li>
+      <li><a href="#index_d"><span>d</span></a></li>
+      <li><a href="#index_f"><span>f</span></a></li>
+      <li><a href="#index_h"><span>h</span></a></li>
+      <li><a href="#index_i"><span>i</span></a></li>
+      <li><a href="#index_j"><span>j</span></a></li>
+      <li><a href="#index_m"><span>m</span></a></li>
+      <li><a href="#index_n"><span>n</span></a></li>
+      <li><a href="#index_p"><span>p</span></a></li>
+      <li><a href="#index_r"><span>r</span></a></li>
+      <li><a href="#index_t"><span>t</span></a></li>
+      <li><a href="#index_u"><span>u</span></a></li>
+      <li><a href="#index_v"><span>v</span></a></li>
+    </ul>
+  </div>
+</div>
+<div class="contents">
+Here is a list of all documented struct and union fields with links to the struct/union documentation for each field:
+<p>
+<h3><a class="anchor" name="index_a">- a -</a></h3><ul>
+<li>args
+: <a class="el" href="structapreq__module__t.html#7fd46ce27e0e4067f8d738d065a3a840">apreq_module_t</a>
+<li>args_get
+: <a class="el" href="structapreq__module__t.html#966dd27491fb442ed2814f8948156d37">apreq_module_t</a>
+</ul>
+<h3><a class="anchor" name="index_b">- b -</a></h3><ul>
+<li>body
+: <a class="el" href="structapreq__module__t.html#cf3160960a3a9a8e75187c70f8b75e06">apreq_module_t</a>
+<li>body_get
+: <a class="el" href="structapreq__module__t.html#4e3ca2756113ec202d76e50d5bb46622">apreq_module_t</a>
+<li>brigade_limit
+: <a class="el" href="structapreq__parser__t.html#203d6cfc8d36892a995a535bfe644e32">apreq_parser_t</a>
+<li>brigade_limit_get
+: <a class="el" href="structapreq__module__t.html#98a4281cc06207a86b7cea9df184c2c8">apreq_module_t</a>
+<li>brigade_limit_set
+: <a class="el" href="structapreq__module__t.html#1088b1d83aac0ec4fb4c172eb528efdb">apreq_module_t</a>
+<li>bucket_alloc
+: <a class="el" href="structapreq__handle__t.html#89a335e21236423de239a6a6d2526559">apreq_handle_t</a>
+, <a class="el" href="structapreq__parser__t.html#e2d1910ffc51047ff2759843d1babbc8">apreq_parser_t</a>
+</ul>
+<h3><a class="anchor" name="index_c">- c -</a></h3><ul>
+<li>comment
+: <a class="el" href="structapreq__cookie__t.html#f911681788862a8b0910074ef886bed2">apreq_cookie_t</a>
+<li>commentURL
+: <a class="el" href="structapreq__cookie__t.html#1fa5dfca7e94ebeb6f31d87d926f7626">apreq_cookie_t</a>
+<li>content_type
+: <a class="el" href="structapreq__parser__t.html#3acc7764c18c52c33bb64e3ee3375670">apreq_parser_t</a>
+<li>ctx
+: <a class="el" href="structapreq__hook__t.html#52aeaf774a4d37758b6a3de625913ac5">apreq_hook_t</a>
+, <a class="el" href="structapreq__parser__t.html#b73f196059129e0ca7926526ebba0a78">apreq_parser_t</a>
+</ul>
+<h3><a class="anchor" name="index_d">- d -</a></h3><ul>
+<li>data
+: <a class="el" href="structapreq__value__t.html#4aab05328f30a972ae6cd56235a4350e">apreq_value_t</a>
+<li>dlen
+: <a class="el" href="structapreq__value__t.html#7881ecfbe424c4708792fe4b2b1bd4a7">apreq_value_t</a>
+<li>domain
+: <a class="el" href="structapreq__cookie__t.html#8097326f4b8711db7d3f085f283ac5a6">apreq_cookie_t</a>
+</ul>
+<h3><a class="anchor" name="index_f">- f -</a></h3><ul>
+<li>flags
+: <a class="el" href="structapreq__cookie__t.html#7d83540c84756a3d4ad3c8503d24de6a">apreq_cookie_t</a>
+, <a class="el" href="structapreq__param__t.html#802bd45ab5afd0784d730e0dbb01aa71">apreq_param_t</a>
+</ul>
+<h3><a class="anchor" name="index_h">- h -</a></h3><ul>
+<li>hook
+: <a class="el" href="structapreq__hook__t.html#9e61fe14dbacf28528f69de468fb1fc0">apreq_hook_t</a>
+, <a class="el" href="structapreq__parser__t.html#dd1d982c326705e8da838041a645de33">apreq_parser_t</a>
+<li>hook_add
+: <a class="el" href="structapreq__module__t.html#3e0130a4fe0dff7f6f2c103185da0544">apreq_module_t</a>
+</ul>
+<h3><a class="anchor" name="index_i">- i -</a></h3><ul>
+<li>info
+: <a class="el" href="structapreq__param__t.html#bb8ddaeb79c4d96691289520a2a4777f">apreq_param_t</a>
+</ul>
+<h3><a class="anchor" name="index_j">- j -</a></h3><ul>
+<li>jar
+: <a class="el" href="structapreq__module__t.html#b35544e5939df2189e88996a0cd25633">apreq_module_t</a>
+<li>jar_get
+: <a class="el" href="structapreq__module__t.html#825d5dc4ca0f99c17ab65b8907548331">apreq_module_t</a>
+</ul>
+<h3><a class="anchor" name="index_m">- m -</a></h3><ul>
+<li>magic_number
+: <a class="el" href="structapreq__module__t.html#dae50d06225fdd6eefeb18ff83045cf7">apreq_module_t</a>
+<li>max_age
+: <a class="el" href="structapreq__cookie__t.html#e4f9a1bec2731a70e14b43342abe1077">apreq_cookie_t</a>
+<li>module
+: <a class="el" href="structapreq__handle__t.html#54a98c529077ac4cf01a5520aa38ab1b">apreq_handle_t</a>
+</ul>
+<h3><a class="anchor" name="index_n">- n -</a></h3><ul>
+<li>name
+: <a class="el" href="structapreq__value__t.html#3015440cd334584cafa3e19078cbf778">apreq_value_t</a>
+, <a class="el" href="structapreq__module__t.html#e326f2fad3c575876a0da35c5a81123a">apreq_module_t</a>
+<li>next
+: <a class="el" href="structapreq__hook__t.html#09efec3f75c52dbeaeedde059c953f7f">apreq_hook_t</a>
+<li>nlen
+: <a class="el" href="structapreq__value__t.html#e0d07fb5f672d1bd32c9bb53b4da941a">apreq_value_t</a>
+</ul>
+<h3><a class="anchor" name="index_p">- p -</a></h3><ul>
+<li>parser
+: <a class="el" href="structapreq__parser__t.html#dc117877c27713515c7617b560efb9a9">apreq_parser_t</a>
+<li>parser_get
+: <a class="el" href="structapreq__module__t.html#ad82c9225daaed3253ba34e4c55434d7">apreq_module_t</a>
+<li>parser_set
+: <a class="el" href="structapreq__module__t.html#bfcd9449fc06c038ae2fe4f482919e32">apreq_module_t</a>
+<li>path
+: <a class="el" href="structapreq__cookie__t.html#75e2ad6da3068f50aca9b989e7e1729c">apreq_cookie_t</a>
+<li>pool
+: <a class="el" href="structapreq__handle__t.html#698eaa56cf54f2cbbc39704fb9d8ab42">apreq_handle_t</a>
+, <a class="el" href="structapreq__hook__t.html#2316f4a8fb1cf0a9d5a46866b3229db1">apreq_hook_t</a>
+, <a class="el" href="structapreq__parser__t.html#8148c125f670a73aedb9b228612b5901">apreq_parser_t</a>
+<li>port
+: <a class="el" href="structapreq__cookie__t.html#45dafe4c4b5a751a40bb4123ed691837">apreq_cookie_t</a>
+</ul>
+<h3><a class="anchor" name="index_r">- r -</a></h3><ul>
+<li>read_limit_get
+: <a class="el" href="structapreq__module__t.html#7e5678baa9a383a5e93ebbf09fc4f023">apreq_module_t</a>
+<li>read_limit_set
+: <a class="el" href="structapreq__module__t.html#85032dfaf2719f6d7024d7f89ec6996d">apreq_module_t</a>
+</ul>
+<h3><a class="anchor" name="index_t">- t -</a></h3><ul>
+<li>temp_dir
+: <a class="el" href="structapreq__parser__t.html#928f16aae17f84fadf06a52a51a6385c">apreq_parser_t</a>
+<li>temp_dir_get
+: <a class="el" href="structapreq__module__t.html#9c15b94e2c94eb56af7df06d008eb420">apreq_module_t</a>
+<li>temp_dir_set
+: <a class="el" href="structapreq__module__t.html#8744bfd5c82533092e5e029a8cd29e65">apreq_module_t</a>
+</ul>
+<h3><a class="anchor" name="index_u">- u -</a></h3><ul>
+<li>upload
+: <a class="el" href="structapreq__param__t.html#03674c98f355545deeb3fcbe109d8c9a">apreq_param_t</a>
+</ul>
+<h3><a class="anchor" name="index_v">- v -</a></h3><ul>
+<li>v
+: <a class="el" href="structapreq__cookie__t.html#4a4741916f814017f20b64061755cf76">apreq_cookie_t</a>
+, <a class="el" href="structapreq__param__t.html#f710878750c677daa9cd61868434d67f">apreq_param_t</a>
+</ul>
+</div>
+<div id="footer">
+<p class="apache">
+Copyright &copy; 2003-2006 <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.5.6 on 3 Dec 2010</span>
+</p>
+</div>
+</body>
+</html>

Propchange: httpd/site/trunk/content/apreq/docs/libapreq2/functions.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: httpd/site/trunk/content/apreq/docs/libapreq2/functions_rela.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/content/apreq/docs/libapreq2/functions_rela.html?rev=1334622&view=auto
==============================================================================
--- httpd/site/trunk/content/apreq/docs/libapreq2/functions_rela.html (added)
+++ httpd/site/trunk/content/apreq/docs/libapreq2/functions_rela.html Sun May  6 13:14:42 2012
@@ -0,0 +1,32 @@
+<html>
+<head>
+  <link rel="stylesheet" type="text/css" href="dox.css" />
+  <title>libapreq2-2.05-dev: libapreq2: Data Fields - Related Functions</title> 
+</head>
+<body>
+<div id="page-header">
+<p class="menu">
+   <a href="http://www.apache.org/">Apache Software Foundation</a> &gt; <a href="http://httpd.apache.org">HTTP Server Project</a> &gt;
+<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 -->
+<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="qindex" href="functions_vars.html">Variables</a></div>
+<div class="qindex"><a class="qindex" href="#index_a">a</a></div>
+
+<p>
+
+<p>
+</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>
+</p>
+</div>
+</body>
+</html>

Propchange: httpd/site/trunk/content/apreq/docs/libapreq2/functions_rela.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: httpd/site/trunk/content/apreq/docs/libapreq2/functions_vars.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/content/apreq/docs/libapreq2/functions_vars.html?rev=1334622&view=auto
==============================================================================
--- httpd/site/trunk/content/apreq/docs/libapreq2/functions_vars.html (added)
+++ httpd/site/trunk/content/apreq/docs/libapreq2/functions_vars.html Sun May  6 13:14:42 2012
@@ -0,0 +1,189 @@
+<html>
+<head>
+  <link rel="stylesheet" type="text/css" href="dox.css" />
+  <title>libapreq2-2.13: libapreq2: Data Fields - Variables</title> 
+</head>
+<body>
+<div id="page-header">
+<p class="menu">
+   <a href="http://www.apache.org/">Apache Software Foundation</a> &gt; <a href="http://httpd.apache.org">HTTP Server Project</a> &gt;
+<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.5.6 -->
+<div class="navigation" id="top">
+  <div class="tabs">
+    <ul>
+      <li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
+      <li><a href="pages.html"><span>Related&nbsp;Pages</span></a></li>
+      <li><a href="modules.html"><span>Modules</span></a></li>
+      <li class="current"><a href="annotated.html"><span>Data&nbsp;Structures</span></a></li>
+      <li><a href="files.html"><span>Files</span></a></li>
+      <li><a href="examples.html"><span>Examples</span></a></li>
+    </ul>
+  </div>
+  <div class="tabs">
+    <ul>
+      <li><a href="annotated.html"><span>Data&nbsp;Structures</span></a></li>
+      <li class="current"><a href="functions.html"><span>Data&nbsp;Fields</span></a></li>
+    </ul>
+  </div>
+  <div class="tabs">
+    <ul>
+      <li><a href="functions.html"><span>All</span></a></li>
+      <li class="current"><a href="functions_vars.html"><span>Variables</span></a></li>
+    </ul>
+  </div>
+  <div class="tabs">
+    <ul>
+      <li><a href="#index_a"><span>a</span></a></li>
+      <li><a href="#index_b"><span>b</span></a></li>
+      <li><a href="#index_c"><span>c</span></a></li>
+      <li><a href="#index_d"><span>d</span></a></li>
+      <li><a href="#index_f"><span>f</span></a></li>
+      <li><a href="#index_h"><span>h</span></a></li>
+      <li><a href="#index_i"><span>i</span></a></li>
+      <li><a href="#index_j"><span>j</span></a></li>
+      <li><a href="#index_m"><span>m</span></a></li>
+      <li><a href="#index_n"><span>n</span></a></li>
+      <li><a href="#index_p"><span>p</span></a></li>
+      <li><a href="#index_r"><span>r</span></a></li>
+      <li><a href="#index_t"><span>t</span></a></li>
+      <li><a href="#index_u"><span>u</span></a></li>
+      <li><a href="#index_v"><span>v</span></a></li>
+    </ul>
+  </div>
+</div>
+<div class="contents">
+&nbsp;
+<p>
+<h3><a class="anchor" name="index_a">- a -</a></h3><ul>
+<li>args
+: <a class="el" href="structapreq__module__t.html#7fd46ce27e0e4067f8d738d065a3a840">apreq_module_t</a>
+<li>args_get
+: <a class="el" href="structapreq__module__t.html#966dd27491fb442ed2814f8948156d37">apreq_module_t</a>
+</ul>
+<h3><a class="anchor" name="index_b">- b -</a></h3><ul>
+<li>body
+: <a class="el" href="structapreq__module__t.html#cf3160960a3a9a8e75187c70f8b75e06">apreq_module_t</a>
+<li>body_get
+: <a class="el" href="structapreq__module__t.html#4e3ca2756113ec202d76e50d5bb46622">apreq_module_t</a>
+<li>brigade_limit
+: <a class="el" href="structapreq__parser__t.html#203d6cfc8d36892a995a535bfe644e32">apreq_parser_t</a>
+<li>brigade_limit_get
+: <a class="el" href="structapreq__module__t.html#98a4281cc06207a86b7cea9df184c2c8">apreq_module_t</a>
+<li>brigade_limit_set
+: <a class="el" href="structapreq__module__t.html#1088b1d83aac0ec4fb4c172eb528efdb">apreq_module_t</a>
+<li>bucket_alloc
+: <a class="el" href="structapreq__handle__t.html#89a335e21236423de239a6a6d2526559">apreq_handle_t</a>
+, <a class="el" href="structapreq__parser__t.html#e2d1910ffc51047ff2759843d1babbc8">apreq_parser_t</a>
+</ul>
+<h3><a class="anchor" name="index_c">- c -</a></h3><ul>
+<li>comment
+: <a class="el" href="structapreq__cookie__t.html#f911681788862a8b0910074ef886bed2">apreq_cookie_t</a>
+<li>commentURL
+: <a class="el" href="structapreq__cookie__t.html#1fa5dfca7e94ebeb6f31d87d926f7626">apreq_cookie_t</a>
+<li>content_type
+: <a class="el" href="structapreq__parser__t.html#3acc7764c18c52c33bb64e3ee3375670">apreq_parser_t</a>
+<li>ctx
+: <a class="el" href="structapreq__hook__t.html#52aeaf774a4d37758b6a3de625913ac5">apreq_hook_t</a>
+, <a class="el" href="structapreq__parser__t.html#b73f196059129e0ca7926526ebba0a78">apreq_parser_t</a>
+</ul>
+<h3><a class="anchor" name="index_d">- d -</a></h3><ul>
+<li>data
+: <a class="el" href="structapreq__value__t.html#4aab05328f30a972ae6cd56235a4350e">apreq_value_t</a>
+<li>dlen
+: <a class="el" href="structapreq__value__t.html#7881ecfbe424c4708792fe4b2b1bd4a7">apreq_value_t</a>
+<li>domain
+: <a class="el" href="structapreq__cookie__t.html#8097326f4b8711db7d3f085f283ac5a6">apreq_cookie_t</a>
+</ul>
+<h3><a class="anchor" name="index_f">- f -</a></h3><ul>
+<li>flags
+: <a class="el" href="structapreq__cookie__t.html#7d83540c84756a3d4ad3c8503d24de6a">apreq_cookie_t</a>
+, <a class="el" href="structapreq__param__t.html#802bd45ab5afd0784d730e0dbb01aa71">apreq_param_t</a>
+</ul>
+<h3><a class="anchor" name="index_h">- h -</a></h3><ul>
+<li>hook
+: <a class="el" href="structapreq__hook__t.html#9e61fe14dbacf28528f69de468fb1fc0">apreq_hook_t</a>
+, <a class="el" href="structapreq__parser__t.html#dd1d982c326705e8da838041a645de33">apreq_parser_t</a>
+<li>hook_add
+: <a class="el" href="structapreq__module__t.html#3e0130a4fe0dff7f6f2c103185da0544">apreq_module_t</a>
+</ul>
+<h3><a class="anchor" name="index_i">- i -</a></h3><ul>
+<li>info
+: <a class="el" href="structapreq__param__t.html#bb8ddaeb79c4d96691289520a2a4777f">apreq_param_t</a>
+</ul>
+<h3><a class="anchor" name="index_j">- j -</a></h3><ul>
+<li>jar
+: <a class="el" href="structapreq__module__t.html#b35544e5939df2189e88996a0cd25633">apreq_module_t</a>
+<li>jar_get
+: <a class="el" href="structapreq__module__t.html#825d5dc4ca0f99c17ab65b8907548331">apreq_module_t</a>
+</ul>
+<h3><a class="anchor" name="index_m">- m -</a></h3><ul>
+<li>magic_number
+: <a class="el" href="structapreq__module__t.html#dae50d06225fdd6eefeb18ff83045cf7">apreq_module_t</a>
+<li>max_age
+: <a class="el" href="structapreq__cookie__t.html#e4f9a1bec2731a70e14b43342abe1077">apreq_cookie_t</a>
+<li>module
+: <a class="el" href="structapreq__handle__t.html#54a98c529077ac4cf01a5520aa38ab1b">apreq_handle_t</a>
+</ul>
+<h3><a class="anchor" name="index_n">- n -</a></h3><ul>
+<li>name
+: <a class="el" href="structapreq__value__t.html#3015440cd334584cafa3e19078cbf778">apreq_value_t</a>
+, <a class="el" href="structapreq__module__t.html#e326f2fad3c575876a0da35c5a81123a">apreq_module_t</a>
+<li>next
+: <a class="el" href="structapreq__hook__t.html#09efec3f75c52dbeaeedde059c953f7f">apreq_hook_t</a>
+<li>nlen
+: <a class="el" href="structapreq__value__t.html#e0d07fb5f672d1bd32c9bb53b4da941a">apreq_value_t</a>
+</ul>
+<h3><a class="anchor" name="index_p">- p -</a></h3><ul>
+<li>parser
+: <a class="el" href="structapreq__parser__t.html#dc117877c27713515c7617b560efb9a9">apreq_parser_t</a>
+<li>parser_get
+: <a class="el" href="structapreq__module__t.html#ad82c9225daaed3253ba34e4c55434d7">apreq_module_t</a>
+<li>parser_set
+: <a class="el" href="structapreq__module__t.html#bfcd9449fc06c038ae2fe4f482919e32">apreq_module_t</a>
+<li>path
+: <a class="el" href="structapreq__cookie__t.html#75e2ad6da3068f50aca9b989e7e1729c">apreq_cookie_t</a>
+<li>pool
+: <a class="el" href="structapreq__handle__t.html#698eaa56cf54f2cbbc39704fb9d8ab42">apreq_handle_t</a>
+, <a class="el" href="structapreq__hook__t.html#2316f4a8fb1cf0a9d5a46866b3229db1">apreq_hook_t</a>
+, <a class="el" href="structapreq__parser__t.html#8148c125f670a73aedb9b228612b5901">apreq_parser_t</a>
+<li>port
+: <a class="el" href="structapreq__cookie__t.html#45dafe4c4b5a751a40bb4123ed691837">apreq_cookie_t</a>
+</ul>
+<h3><a class="anchor" name="index_r">- r -</a></h3><ul>
+<li>read_limit_get
+: <a class="el" href="structapreq__module__t.html#7e5678baa9a383a5e93ebbf09fc4f023">apreq_module_t</a>
+<li>read_limit_set
+: <a class="el" href="structapreq__module__t.html#85032dfaf2719f6d7024d7f89ec6996d">apreq_module_t</a>
+</ul>
+<h3><a class="anchor" name="index_t">- t -</a></h3><ul>
+<li>temp_dir
+: <a class="el" href="structapreq__parser__t.html#928f16aae17f84fadf06a52a51a6385c">apreq_parser_t</a>
+<li>temp_dir_get
+: <a class="el" href="structapreq__module__t.html#9c15b94e2c94eb56af7df06d008eb420">apreq_module_t</a>
+<li>temp_dir_set
+: <a class="el" href="structapreq__module__t.html#8744bfd5c82533092e5e029a8cd29e65">apreq_module_t</a>
+</ul>
+<h3><a class="anchor" name="index_u">- u -</a></h3><ul>
+<li>upload
+: <a class="el" href="structapreq__param__t.html#03674c98f355545deeb3fcbe109d8c9a">apreq_param_t</a>
+</ul>
+<h3><a class="anchor" name="index_v">- v -</a></h3><ul>
+<li>v
+: <a class="el" href="structapreq__cookie__t.html#4a4741916f814017f20b64061755cf76">apreq_cookie_t</a>
+, <a class="el" href="structapreq__param__t.html#f710878750c677daa9cd61868434d67f">apreq_param_t</a>
+</ul>
+</div>
+<div id="footer">
+<p class="apache">
+Copyright &copy; 2003-2006 <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.5.6 on 3 Dec 2010</span>
+</p>
+</div>
+</body>
+</html>

Propchange: httpd/site/trunk/content/apreq/docs/libapreq2/functions_vars.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: httpd/site/trunk/content/apreq/docs/libapreq2/globals.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/content/apreq/docs/libapreq2/globals.html?rev=1334622&view=auto
==============================================================================
--- httpd/site/trunk/content/apreq/docs/libapreq2/globals.html (added)
+++ httpd/site/trunk/content/apreq/docs/libapreq2/globals.html Sun May  6 13:14:42 2012
@@ -0,0 +1,375 @@
+<html>
+<head>
+  <link rel="stylesheet" type="text/css" href="dox.css" />
+  <title>libapreq2-2.13: libapreq2: Data Fields</title> 
+</head>
+<body>
+<div id="page-header">
+<p class="menu">
+   <a href="http://www.apache.org/">Apache Software Foundation</a> &gt; <a href="http://httpd.apache.org">HTTP Server Project</a> &gt;
+<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.5.6 -->
+<div class="navigation" id="top">
+  <div class="tabs">
+    <ul>
+      <li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
+      <li><a href="pages.html"><span>Related&nbsp;Pages</span></a></li>
+      <li><a href="modules.html"><span>Modules</span></a></li>
+      <li><a href="annotated.html"><span>Data&nbsp;Structures</span></a></li>
+      <li class="current"><a href="files.html"><span>Files</span></a></li>
+      <li><a href="examples.html"><span>Examples</span></a></li>
+    </ul>
+  </div>
+  <div class="tabs">
+    <ul>
+      <li><a href="files.html"><span>File&nbsp;List</span></a></li>
+      <li class="current"><a href="globals.html"><span>Globals</span></a></li>
+    </ul>
+  </div>
+  <div class="tabs">
+    <ul>
+      <li class="current"><a href="globals.html"><span>All</span></a></li>
+      <li><a href="globals_func.html"><span>Functions</span></a></li>
+      <li><a href="globals_type.html"><span>Typedefs</span></a></li>
+      <li><a href="globals_enum.html"><span>Enumerations</span></a></li>
+      <li><a href="globals_eval.html"><span>Enumerator</span></a></li>
+      <li><a href="globals_defs.html"><span>Defines</span></a></li>
+    </ul>
+  </div>
+  <div class="tabs">
+    <ul>
+      <li><a href="#index_a"><span>a</span></a></li>
+    </ul>
+  </div>
+</div>
+<div class="contents">
+Here is a list of all documented functions, variables, defines, enums, and typedefs with links to the documentation:
+<p>
+<h3><a class="anchor" name="index_a">- a -</a></h3><ul>
+<li>APR_EBADARG
+: <a class="el" href="apreq__error_8h.html#7f8849f2cb2d0bfd64f644a6ca0cec2b">apreq_error.h</a>
+<li>apreq_args()
+: <a class="el" href="apreq__module_8h.html#de74830e449fa5bb24694ffc3b8374ca">apreq_module.h</a>
+<li>apreq_args_get()
+: <a class="el" href="apreq__module_8h.html#eadd074ee9dd8095d857820ce15f1701">apreq_module.h</a>
+<li>apreq_atoi64f()
+: <a class="el" href="apreq__util_8h.html#69acb9425572cb8f694d49277160b1f7">apreq_util.h</a>
+<li>apreq_atoi64t()
+: <a class="el" href="apreq__util_8h.html#4e838a92724aa7d9be0b978dc5c4e50c">apreq_util.h</a>
+<li>apreq_attr_to_type
+: <a class="el" href="apreq_8h.html#6355f965e8eabf742537bfd8da534376">apreq.h</a>
+<li>apreq_body()
+: <a class="el" href="apreq__module_8h.html#e928689622d094025a8efb8c6c17d680">apreq_module.h</a>
+<li>apreq_body_get()
+: <a class="el" href="apreq__module_8h.html#7c4cb1c2b91f5539b2231d09ebea2239">apreq_module.h</a>
+<li>apreq_brigade_concat()
+: <a class="el" href="apreq__util_8h.html#4ddf563c9902474bdedbf014e24aafc8">apreq_util.h</a>
+<li>apreq_brigade_copy()
+: <a class="el" href="apreq__util_8h.html#b4def9e77622cf22cfa427e7fbf2ac45">apreq_util.h</a>
+<li>apreq_brigade_fwrite()
+: <a class="el" href="apreq__util_8h.html#3bbe5ee2d1537c6a9f30d0fed9f5f1e1">apreq_util.h</a>
+<li>apreq_brigade_limit_get()
+: <a class="el" href="apreq__module_8h.html#d98e3dac181ac837159581812229d8e3">apreq_module.h</a>
+<li>apreq_brigade_limit_set()
+: <a class="el" href="apreq__module_8h.html#b368191aa61cd0386e824c1a6dbd6e49">apreq_module.h</a>
+<li>apreq_brigade_move()
+: <a class="el" href="apreq__util_8h.html#a23561a0d169b50454a815926ccc0ba5">apreq_util.h</a>
+<li>apreq_brigade_setaside()
+: <a class="el" href="apreq__util_8h.html#91f3144692934b2daf54fb3c9ca7b180">apreq_util.h</a>
+<li>apreq_brigade_spoolfile()
+: <a class="el" href="apreq__util_8h.html#ec0de2141b6b742a1468667eb8f8158e">apreq_util.h</a>
+<li>APREQ_CHARSET_BIT
+: <a class="el" href="apreq_8h.html#a9a11ce4168273452b3fde6e42221d74">apreq.h</a>
+<li>apreq_charset_divine()
+: <a class="el" href="apreq__util_8h.html#e11e0b3e2304a2e8c30aaa464ea78037">apreq_util.h</a>
+<li>APREQ_CHARSET_MASK
+: <a class="el" href="apreq_8h.html#901fbcbe68a29cfce368b6640bd5bcde">apreq.h</a>
+<li>apreq_charset_t
+: <a class="el" href="apreq_8h.html#6607dfa756796989c15014870b48c8cd">apreq.h</a>
+<li>apreq_cookie
+: <a class="el" href="apreq__module_8h.html#5b5398d109fb933fb0367ef947e7c7b6">apreq_module.h</a>
+<li>apreq_cookie_as_string()
+: <a class="el" href="apreq__cookie_8h.html#10c1d6639303c3f85fb5818d88e654d3">apreq_cookie.h</a>
+<li>apreq_cookie_expires()
+: <a class="el" href="apreq__cookie_8h.html#8c6eb3c7c0f003bdc150d2ce99dacc7f">apreq_cookie.h</a>
+<li>APREQ_COOKIE_HTTPONLY_BIT
+: <a class="el" href="apreq_8h.html#9fc978fd97cc558ff5f51a14503daab7">apreq.h</a>
+<li>APREQ_COOKIE_HTTPONLY_MASK
+: <a class="el" href="apreq_8h.html#71f0dc8a9004339edfa279266fab50e8">apreq.h</a>
+<li>apreq_cookie_httponly_off()
+: <a class="el" href="apreq__cookie_8h.html#619cc2d56e20134e91bf1d31ab26bfec">apreq_cookie.h</a>
+<li>apreq_cookie_httponly_on()
+: <a class="el" href="apreq__cookie_8h.html#a9a94a9b03dea7b286a9c4041d3c7e4e">apreq_cookie.h</a>
+<li>apreq_cookie_is_httponly()
+: <a class="el" href="apreq__cookie_8h.html#61c3709414b9fe614e32587da8ee8e8a">apreq_cookie.h</a>
+<li>apreq_cookie_is_secure()
+: <a class="el" href="apreq__cookie_8h.html#7553c7f54497ce30e1828082c98c813e">apreq_cookie.h</a>
+<li>apreq_cookie_is_tainted()
+: <a class="el" href="apreq__cookie_8h.html#08618139ba29e98cd2327de3f0e961fe">apreq_cookie.h</a>
+<li>apreq_cookie_make()
+: <a class="el" href="apreq__cookie_8h.html#53b5bb02baf7fb318cd643fb55820422">apreq_cookie.h</a>
+<li>APREQ_COOKIE_MAX_LENGTH
+: <a class="el" href="apreq__cookie_8h.html#681b8ef60cad05e684876d4dd2be043b">apreq_cookie.h</a>
+<li>APREQ_COOKIE_SECURE_BIT
+: <a class="el" href="apreq_8h.html#79ac15b3b3d9905367b9758514513dc0">apreq.h</a>
+<li>APREQ_COOKIE_SECURE_MASK
+: <a class="el" href="apreq_8h.html#cbe05bd23b067595cae2318473f42d9a">apreq.h</a>
+<li>apreq_cookie_secure_off()
+: <a class="el" href="apreq__cookie_8h.html#d9f4813b99b80801ba1dc11d0099ac10">apreq_cookie.h</a>
+<li>apreq_cookie_secure_on()
+: <a class="el" href="apreq__cookie_8h.html#1df7a1ba35cf4c47fc907f40b95fe5e4">apreq_cookie.h</a>
+<li>apreq_cookie_serialize()
+: <a class="el" href="apreq__cookie_8h.html#fc06d8f5e4ee8530013c4f3c3b12e01f">apreq_cookie.h</a>
+<li>apreq_cookie_tainted_off()
+: <a class="el" href="apreq__cookie_8h.html#c3b777e9709fa062ff978afef3867964">apreq_cookie.h</a>
+<li>apreq_cookie_tainted_on()
+: <a class="el" href="apreq__cookie_8h.html#feec2e0802ae883d4f2fda750b74ca55">apreq_cookie.h</a>
+<li>apreq_cookie_version()
+: <a class="el" href="apreq__cookie_8h.html#04eaee766e51f143ff2ca4d8a0107004">apreq_cookie.h</a>
+<li>APREQ_COOKIE_VERSION_BIT
+: <a class="el" href="apreq_8h.html#16af9730d0124fef7849c36121d63141">apreq.h</a>
+<li>APREQ_COOKIE_VERSION_MASK
+: <a class="el" href="apreq_8h.html#e70e687e9866ea4a61ed3594c97bf5ce">apreq.h</a>
+<li>apreq_cookie_version_set()
+: <a class="el" href="apreq__cookie_8h.html#eff5b05ca6b935dd61dcc9da1a047546">apreq_cookie.h</a>
+<li>apreq_cookies()
+: <a class="el" href="apreq__module_8h.html#7435376b1f543c604d8326de3157e075">apreq_module.h</a>
+<li>apreq_cp1252_to_utf8()
+: <a class="el" href="apreq__util_8h.html#801aa204656988ff4aa32cec6dd80e5a">apreq_util.h</a>
+<li>APREQ_DECLARE
+: <a class="el" href="apreq_8h.html#02bf89714a74397155a11b9ccb942b0d">apreq.h</a>
+<li>APREQ_DECLARE_DATA
+: <a class="el" href="apreq_8h.html#142563500999527d486a2eac8c3a0973">apreq.h</a>
+<li>APREQ_DECLARE_HOOK
+: <a class="el" href="apreq__parser_8h.html#baa196498d8cf959e07b4c84d5264f7f">apreq_parser.h</a>
+<li>APREQ_DECLARE_NONSTD
+: <a class="el" href="apreq_8h.html#8a1e7333187fdbc476473ac72d2ff38b">apreq.h</a>
+<li>APREQ_DECLARE_PARSER
+: <a class="el" href="apreq__parser_8h.html#855c07ea7fc9e240c8620d29eea4a019">apreq_parser.h</a>
+<li>apreq_decode()
+: <a class="el" href="apreq__util_8h.html#3c1d46b8c0e7991ae1ced0178c2f4738">apreq_util.h</a>
+<li>apreq_decodev()
+: <a class="el" href="apreq__util_8h.html#13a090a30a4d05353caabab92a67179d">apreq_util.h</a>
+<li>APREQ_DEFAULT_BRIGADE_LIMIT
+: <a class="el" href="apreq_8h.html#f54c8645b8266fa7c9b2e261c608744f">apreq.h</a>
+<li>APREQ_DEFAULT_NELTS
+: <a class="el" href="apreq_8h.html#253093cc2fffe7094828714ade120466">apreq.h</a>
+<li>APREQ_DEFAULT_READ_BLOCK_SIZE
+: <a class="el" href="apreq_8h.html#73bfd1896ab59181f8e052fb8cc147cd">apreq.h</a>
+<li>APREQ_DEFAULT_READ_LIMIT
+: <a class="el" href="apreq_8h.html#744fa55285c4a3868a9154f473d58ac4">apreq.h</a>
+<li>apreq_encode()
+: <a class="el" href="apreq__util_8h.html#034ccdfdcf751be6c0f8c2a1d30c2ae6">apreq_util.h</a>
+<li>APREQ_ERROR_BADATTR
+: <a class="el" href="apreq__error_8h.html#3d696f49030bb7fc65f2804037d3ccb7">apreq_error.h</a>
+<li>APREQ_ERROR_BADCHAR
+: <a class="el" href="apreq__error_8h.html#04b6a01738a1ee7fd1ecc79d256e721f">apreq_error.h</a>
+<li>APREQ_ERROR_BADDATA
+: <a class="el" href="apreq__error_8h.html#de2a5d60e2db8fc32d8c43580d74c0c8">apreq_error.h</a>
+<li>APREQ_ERROR_BADHEADER
+: <a class="el" href="apreq__error_8h.html#11e549980ef0fce49ac7179bb9164d57">apreq_error.h</a>
+<li>APREQ_ERROR_BADSEQ
+: <a class="el" href="apreq__error_8h.html#73a69e21acc2cf849310a421ab43d2ba">apreq_error.h</a>
+<li>APREQ_ERROR_BADUTF8
+: <a class="el" href="apreq__error_8h.html#88ab15be9af4235cb6b1d9c6c512f0e1">apreq_error.h</a>
+<li>APREQ_ERROR_GENERAL
+: <a class="el" href="apreq__error_8h.html#14b149a0f859ce1078d36db8e8f45a2a">apreq_error.h</a>
+<li>APREQ_ERROR_INTERRUPT
+: <a class="el" href="apreq__error_8h.html#91b1099a9cbf13d45a45a14b7d279b75">apreq_error.h</a>
+<li>APREQ_ERROR_MISMATCH
+: <a class="el" href="apreq__error_8h.html#33080081185585997ef9c5232ec4dd8f">apreq_error.h</a>
+<li>APREQ_ERROR_NOATTR
+: <a class="el" href="apreq__error_8h.html#ffdf9393e5c9277aeae3ea8d2ecf55fa">apreq_error.h</a>
+<li>APREQ_ERROR_NODATA
+: <a class="el" href="apreq__error_8h.html#6e29823668899ad81365ae68f96f3ae4">apreq_error.h</a>
+<li>APREQ_ERROR_NOHEADER
+: <a class="el" href="apreq__error_8h.html#3ce3cf5b410b1ccc2e42ae46d4577f20">apreq_error.h</a>
+<li>APREQ_ERROR_NOPARSER
+: <a class="el" href="apreq__error_8h.html#02ebfa80f1a413b46212df5682db5890">apreq_error.h</a>
+<li>APREQ_ERROR_NOTEMPTY
+: <a class="el" href="apreq__error_8h.html#17d6bb14537a52ef53b56e4b385c76b2">apreq_error.h</a>
+<li>APREQ_ERROR_NOTOKEN
+: <a class="el" href="apreq__error_8h.html#59be3610ba54a58fbb3cd6bb655ff972">apreq_error.h</a>
+<li>APREQ_ERROR_OVERLIMIT
+: <a class="el" href="apreq__error_8h.html#bcc1b4c98b1d8c5d128cffd50afb978e">apreq_error.h</a>
+<li>APREQ_ERROR_TAINTED
+: <a class="el" href="apreq__error_8h.html#035ee2cee3527332669bdaf17142f520">apreq_error.h</a>
+<li>APREQ_ERROR_UNDERLIMIT
+: <a class="el" href="apreq__error_8h.html#0370b1ba3534f6ae9f422c6b351c79cd">apreq_error.h</a>
+<li>apreq_escape()
+: <a class="el" href="apreq__util_8h.html#785be2ceae273b0a7b2ffda223b2ebae">apreq_util.h</a>
+<li>APREQ_EXPIRES_HTTP
+: <a class="el" href="apreq_8h.html#eb51f7cb925e3218c622ff82b8ee2f70d0fecca3f99d74b155630437504119f5">apreq.h</a>
+<li>APREQ_EXPIRES_NSCOOKIE
+: <a class="el" href="apreq_8h.html#eb51f7cb925e3218c622ff82b8ee2f70a7e0989ec9839a8494ea328ff30eb5a1">apreq.h</a>
+<li>apreq_expires_t
+: <a class="el" href="apreq_8h.html#eb51f7cb925e3218c622ff82b8ee2f70">apreq.h</a>
+<li>apreq_file_mktemp()
+: <a class="el" href="apreq__util_8h.html#b266a81c528de92654eb37f9890c4a7d">apreq_util.h</a>
+<li>APREQ_FLAGS_GET
+: <a class="el" href="apreq_8h.html#07141b4d0c7daa6d5aba5ff33d52a31f">apreq.h</a>
+<li>APREQ_FLAGS_OFF
+: <a class="el" href="apreq_8h.html#5bcc4e81747b13b7bfbb946648453f9e">apreq.h</a>
+<li>APREQ_FLAGS_ON
+: <a class="el" href="apreq_8h.html#df8584e758a62fe0a79023821c359222">apreq.h</a>
+<li>APREQ_FLAGS_SET
+: <a class="el" href="apreq_8h.html#817a3e293b1ae4210ee68871d6b67e1f">apreq.h</a>
+<li>apreq_handle_cgi()
+: <a class="el" href="apreq__module_8h.html#3f9b9c725672298c86b081aaa258fbdc">apreq_module.h</a>
+<li>apreq_handle_custom()
+: <a class="el" href="apreq__module_8h.html#beaaad6c03b54ca963f9f14a3031e912">apreq_module.h</a>
+<li>apreq_header_attribute()
+: <a class="el" href="apreq__util_8h.html#8195b6a32954928a6088e7cea077dd75">apreq_util.h</a>
+<li>apreq_hook_add()
+: <a class="el" href="apreq__module_8h.html#0c24fc39ad03c54839a9cb03dc00dc28">apreq_module.h</a>
+<li>APREQ_HOOK_ARGS
+: <a class="el" href="apreq__parser_8h.html#61c8b1c319752bde3cc35e98247707bf">apreq_parser.h</a>
+<li>apreq_hook_function_t
+: <a class="el" href="apreq__parser_8h.html#6841a882a8a33203233506bd6754585a">apreq_parser.h</a>
+<li>apreq_hook_make()
+: <a class="el" href="apreq__parser_8h.html#3cf15457eea6991b36f47f6139ab163c">apreq_parser.h</a>
+<li>apreq_hook_run()
+: <a class="el" href="apreq__parser_8h.html#14d03a414fc4a0663af55fbb1f532bab">apreq_parser.h</a>
+<li>apreq_hook_t
+: <a class="el" href="apreq__parser_8h.html#2c35885676cec315fc7dea19a6d1d870">apreq_parser.h</a>
+<li>apreq_index()
+: <a class="el" href="apreq__util_8h.html#c72c51ffe478faa804eaea5f68276dd8">apreq_util.h</a>
+<li>apreq_initialize()
+: <a class="el" href="apreq_8h.html#163e7aaee57baa89b4d7e00a4279b035">apreq.h</a>
+<li>APREQ_IS_DEV_STRING
+: <a class="el" href="apreq__version_8h.html#c9445f3e18e852cae2a91bd2a63394be">apreq_version.h</a>
+<li>apreq_jar()
+: <a class="el" href="apreq__module_8h.html#2652c9a9b0e0f4162051fc3904ac480a">apreq_module.h</a>
+<li>apreq_jar_get()
+: <a class="el" href="apreq__module_8h.html#63dfa7b7b303d061fe56c7109528d430">apreq_module.h</a>
+<li>apreq_join()
+: <a class="el" href="apreq__util_8h.html#1aa668dc806fce4bd0fef348d1601930">apreq_util.h</a>
+<li>APREQ_JOIN_AS_IS
+: <a class="el" href="apreq_8h.html#c3784c04255e92629350505d35b0473e9b74c73cbfdf7aad3effc0627018ff08">apreq.h</a>
+<li>APREQ_JOIN_DECODE
+: <a class="el" href="apreq_8h.html#c3784c04255e92629350505d35b0473e9dd8468f9547f1dee0709f906e98cdc6">apreq.h</a>
+<li>APREQ_JOIN_ENCODE
+: <a class="el" href="apreq_8h.html#c3784c04255e92629350505d35b0473e6cc82b38c229380cc7fbb274b7e3cf36">apreq.h</a>
+<li>APREQ_JOIN_QUOTE
+: <a class="el" href="apreq_8h.html#c3784c04255e92629350505d35b0473eb22a5a8f345963488381335b2f909fb9">apreq.h</a>
+<li>apreq_join_t
+: <a class="el" href="apreq_8h.html#c3784c04255e92629350505d35b0473e">apreq.h</a>
+<li>APREQ_MAJOR_VERSION
+: <a class="el" href="apreq__version_8h.html#7fb04b0c2a9da6237e235b845ee89f9a">apreq_version.h</a>
+<li>APREQ_MATCH_FULL
+: <a class="el" href="apreq_8h.html#590d7bfd9cd294f652d388c4f37fc8d56ff614170217cfafb5c32c1cefd6caba">apreq.h</a>
+<li>APREQ_MATCH_PARTIAL
+: <a class="el" href="apreq_8h.html#590d7bfd9cd294f652d388c4f37fc8d52fbd9432fdb0e8bec90bd9ec76dcb3f9">apreq.h</a>
+<li>apreq_match_t
+: <a class="el" href="apreq_8h.html#590d7bfd9cd294f652d388c4f37fc8d5">apreq.h</a>
+<li>APREQ_MINOR_VERSION
+: <a class="el" href="apreq__version_8h.html#44bf530fbecff4ee7bcc0158784da0ff">apreq_version.h</a>
+<li>APREQ_MODULE
+: <a class="el" href="apreq__module_8h.html#7d6d0550f527e18c8cfab702e65daf3b">apreq_module.h</a>
+<li>apreq_module_status_is_error()
+: <a class="el" href="apreq__module_8h.html#08dedd0ec5b291dad6b58644896eb2ed">apreq_module.h</a>
+<li>apreq_param()
+: <a class="el" href="apreq__module_8h.html#08c59b5f07fb36080bb4d62e68bfeddf">apreq_module.h</a>
+<li>apreq_param_charset_get()
+: <a class="el" href="apreq__param_8h.html#be2a7a47df83a5667fe2834bfc03f15a">apreq_param.h</a>
+<li>apreq_param_charset_set()
+: <a class="el" href="apreq__param_8h.html#be765ec55aebc8409ddd6d3db44ff917">apreq_param.h</a>
+<li>apreq_param_decode()
+: <a class="el" href="apreq__param_8h.html#eea075c59169992492f6f5c40b9b8a70">apreq_param.h</a>
+<li>apreq_param_encode()
+: <a class="el" href="apreq__param_8h.html#4b8b032f9d2ae8e0a6e95b6dd95b5aa9">apreq_param.h</a>
+<li>apreq_param_is_tainted()
+: <a class="el" href="apreq__param_8h.html#f407c2ab726bc8bc34a1b1924a4f327a">apreq_param.h</a>
+<li>apreq_param_make()
+: <a class="el" href="apreq__param_8h.html#25c915d3d0fd1694d2c538f108646560">apreq_param.h</a>
+<li>apreq_param_tainted_off()
+: <a class="el" href="apreq__param_8h.html#e76641d443483db5274624f948e1c347">apreq_param.h</a>
+<li>apreq_param_tainted_on()
+: <a class="el" href="apreq__param_8h.html#967919466da31283c6d668c58fe5223c">apreq_param.h</a>
+<li>apreq_params()
+: <a class="el" href="apreq__module_8h.html#0dff48fd4e83399a07853abe9d67c251">apreq_module.h</a>
+<li>apreq_params_as_array()
+: <a class="el" href="apreq__param_8h.html#76c7e698fd45f3f3e07db60fcba15e52">apreq_param.h</a>
+<li>apreq_params_as_string()
+: <a class="el" href="apreq__param_8h.html#0f1db12120bb2307f5e33186f094b0d6">apreq_param.h</a>
+<li>apreq_parse_cookie_header()
+: <a class="el" href="apreq__cookie_8h.html#113be08c01bc82605ec52d80c054cbf6">apreq_cookie.h</a>
+<li>apreq_parse_query_string()
+: <a class="el" href="apreq__param_8h.html#0aa638519951d85d1faf7bf6ba986226">apreq_param.h</a>
+<li>apreq_parser()
+: <a class="el" href="apreq__parser_8h.html#73013ecad087f14075d319a4a983dd82">apreq_parser.h</a>
+<li>apreq_parser_add_hook()
+: <a class="el" href="apreq__parser_8h.html#97972c08b20917465b745c8b8eec95ed">apreq_parser.h</a>
+<li>APREQ_PARSER_ARGS
+: <a class="el" href="apreq__parser_8h.html#f39d2adfdd09c2fe0c8c6a3c1ea1437e">apreq_parser.h</a>
+<li>apreq_parser_function_t
+: <a class="el" href="apreq__parser_8h.html#98c4415da3f11cf5ced76bd3c6540e65">apreq_parser.h</a>
+<li>apreq_parser_get()
+: <a class="el" href="apreq__module_8h.html#136584883dac2b5c76052bed1c4e61dc">apreq_module.h</a>
+<li>apreq_parser_make()
+: <a class="el" href="apreq__parser_8h.html#562191171c5df0a83360435d0fe1a667">apreq_parser.h</a>
+<li>apreq_parser_run()
+: <a class="el" href="apreq__parser_8h.html#3c00aa3a31daba2c06110d5fc8edf1fe">apreq_parser.h</a>
+<li>apreq_parser_set()
+: <a class="el" href="apreq__module_8h.html#6842f8b5a1d1f9115ba8ff7b1da1e78b">apreq_module.h</a>
+<li>apreq_parser_t
+: <a class="el" href="apreq__parser_8h.html#de5e15a40b9e1ec626ee56c494c7cdbb">apreq_parser.h</a>
+<li>APREQ_PATCH_VERSION
+: <a class="el" href="apreq__version_8h.html#365b89d742846921cb3619341e5eb266">apreq_version.h</a>
+<li>apreq_post_initialize()
+: <a class="el" href="apreq_8h.html#cecad02f3b9982190143d1097bbfa555">apreq.h</a>
+<li>apreq_pre_initialize()
+: <a class="el" href="apreq_8h.html#ff013107e72c94b917617fd42dce79e8">apreq.h</a>
+<li>apreq_quote()
+: <a class="el" href="apreq__util_8h.html#b4aa9bed839bb576444f464666e0bd85">apreq_util.h</a>
+<li>apreq_quote_once()
+: <a class="el" href="apreq__util_8h.html#fef8b7af9d36b0f7ec24e9d0f64a29a7">apreq_util.h</a>
+<li>apreq_read_limit_get()
+: <a class="el" href="apreq__module_8h.html#b5cc462231ee5e4389ceb46eab1e456f">apreq_module.h</a>
+<li>apreq_read_limit_set()
+: <a class="el" href="apreq__module_8h.html#97d4d8090e7847ace598c7a65b309564">apreq_module.h</a>
+<li>apreq_register_parser()
+: <a class="el" href="apreq__parser_8h.html#595f05be3d241a5b339fd6ef948bfbc8">apreq_parser.h</a>
+<li>apreq_strerror()
+: <a class="el" href="apreq__error_8h.html#48c0198d940b53fbd4d843d7deb65e47">apreq_error.h</a>
+<li>APREQ_TAINTED_BIT
+: <a class="el" href="apreq_8h.html#cecc7cc6c676725990e0be5f14179ca7">apreq.h</a>
+<li>APREQ_TAINTED_MASK
+: <a class="el" href="apreq_8h.html#3b151396d29841edc92a2889a38fda79">apreq.h</a>
+<li>apreq_temp_dir_get()
+: <a class="el" href="apreq__module_8h.html#51c4bd2bc98e9355f8595341ba6aff0b">apreq_module.h</a>
+<li>apreq_temp_dir_set()
+: <a class="el" href="apreq__module_8h.html#fc1b7d33062581140fd16b859b06d24a">apreq_module.h</a>
+<li>apreq_unescape()
+: <a class="el" href="apreq__util_8h.html#979c0af9322189581bde4644eec5fd41">apreq_util.h</a>
+<li>apreq_upload()
+: <a class="el" href="apreq__param_8h.html#1be07e7c4c8a687203ccc0d38ec3aedd">apreq_param.h</a>
+<li>apreq_uploads()
+: <a class="el" href="apreq__param_8h.html#e449c4a1890767d1e9a50c78ea42769c">apreq_param.h</a>
+<li>apreq_value_table_add()
+: <a class="el" href="apreq_8h.html#0d27c51db1532fa3f829838ed90f6226">apreq.h</a>
+<li>apreq_value_to_cookie()
+: <a class="el" href="apreq__cookie_8h.html#b69d56f31d7c8f6f6f598a133817b46e">apreq_cookie.h</a>
+<li>apreq_value_to_param()
+: <a class="el" href="apreq__param_8h.html#121453693ef7c6af821ae723b6dbe34b">apreq_param.h</a>
+<li>apreq_version()
+: <a class="el" href="apreq__version_8h.html#8d20db97717fa1bad4f31c7f9a29594f">apreq_version.h</a>
+<li>apreq_version_string()
+: <a class="el" href="apreq__version_8h.html#663ea74082d9bbe18a0c15b66b8fddaa">apreq_version.h</a>
+<li>APREQ_VERSION_STRING
+: <a class="el" href="apreq__version_8h.html#dd82c8ea79b8cc142eeec45772d24fdb">apreq_version.h</a>
+</ul>
+</div>
+<div id="footer">
+<p class="apache">
+Copyright &copy; 2003-2006 <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.5.6 on 3 Dec 2010</span>
+</p>
+</div>
+</body>
+</html>

Propchange: httpd/site/trunk/content/apreq/docs/libapreq2/globals.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: httpd/site/trunk/content/apreq/docs/libapreq2/globals_defs.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/content/apreq/docs/libapreq2/globals_defs.html?rev=1334622&view=auto
==============================================================================
--- httpd/site/trunk/content/apreq/docs/libapreq2/globals_defs.html (added)
+++ httpd/site/trunk/content/apreq/docs/libapreq2/globals_defs.html Sun May  6 13:14:42 2012
@@ -0,0 +1,169 @@
+<html>
+<head>
+  <link rel="stylesheet" type="text/css" href="dox.css" />
+  <title>libapreq2-2.13: libapreq2: Data Fields</title> 
+</head>
+<body>
+<div id="page-header">
+<p class="menu">
+   <a href="http://www.apache.org/">Apache Software Foundation</a> &gt; <a href="http://httpd.apache.org">HTTP Server Project</a> &gt;
+<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.5.6 -->
+<div class="navigation" id="top">
+  <div class="tabs">
+    <ul>
+      <li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
+      <li><a href="pages.html"><span>Related&nbsp;Pages</span></a></li>
+      <li><a href="modules.html"><span>Modules</span></a></li>
+      <li><a href="annotated.html"><span>Data&nbsp;Structures</span></a></li>
+      <li class="current"><a href="files.html"><span>Files</span></a></li>
+      <li><a href="examples.html"><span>Examples</span></a></li>
+    </ul>
+  </div>
+  <div class="tabs">
+    <ul>
+      <li><a href="files.html"><span>File&nbsp;List</span></a></li>
+      <li class="current"><a href="globals.html"><span>Globals</span></a></li>
+    </ul>
+  </div>
+  <div class="tabs">
+    <ul>
+      <li><a href="globals.html"><span>All</span></a></li>
+      <li><a href="globals_func.html"><span>Functions</span></a></li>
+      <li><a href="globals_type.html"><span>Typedefs</span></a></li>
+      <li><a href="globals_enum.html"><span>Enumerations</span></a></li>
+      <li><a href="globals_eval.html"><span>Enumerator</span></a></li>
+      <li class="current"><a href="globals_defs.html"><span>Defines</span></a></li>
+    </ul>
+  </div>
+  <div class="tabs">
+    <ul>
+      <li><a href="#index_a"><span>a</span></a></li>
+    </ul>
+  </div>
+</div>
+<div class="contents">
+&nbsp;
+<p>
+<h3><a class="anchor" name="index_a">- a -</a></h3><ul>
+<li>APR_EBADARG
+: <a class="el" href="apreq__error_8h.html#7f8849f2cb2d0bfd64f644a6ca0cec2b">apreq_error.h</a>
+<li>apreq_attr_to_type
+: <a class="el" href="apreq_8h.html#6355f965e8eabf742537bfd8da534376">apreq.h</a>
+<li>APREQ_CHARSET_BIT
+: <a class="el" href="apreq_8h.html#a9a11ce4168273452b3fde6e42221d74">apreq.h</a>
+<li>APREQ_CHARSET_MASK
+: <a class="el" href="apreq_8h.html#901fbcbe68a29cfce368b6640bd5bcde">apreq.h</a>
+<li>apreq_cookie
+: <a class="el" href="apreq__module_8h.html#5b5398d109fb933fb0367ef947e7c7b6">apreq_module.h</a>
+<li>APREQ_COOKIE_HTTPONLY_BIT
+: <a class="el" href="apreq_8h.html#9fc978fd97cc558ff5f51a14503daab7">apreq.h</a>
+<li>APREQ_COOKIE_HTTPONLY_MASK
+: <a class="el" href="apreq_8h.html#71f0dc8a9004339edfa279266fab50e8">apreq.h</a>
+<li>APREQ_COOKIE_MAX_LENGTH
+: <a class="el" href="apreq__cookie_8h.html#681b8ef60cad05e684876d4dd2be043b">apreq_cookie.h</a>
+<li>APREQ_COOKIE_SECURE_BIT
+: <a class="el" href="apreq_8h.html#79ac15b3b3d9905367b9758514513dc0">apreq.h</a>
+<li>APREQ_COOKIE_SECURE_MASK
+: <a class="el" href="apreq_8h.html#cbe05bd23b067595cae2318473f42d9a">apreq.h</a>
+<li>APREQ_COOKIE_VERSION_BIT
+: <a class="el" href="apreq_8h.html#16af9730d0124fef7849c36121d63141">apreq.h</a>
+<li>APREQ_COOKIE_VERSION_MASK
+: <a class="el" href="apreq_8h.html#e70e687e9866ea4a61ed3594c97bf5ce">apreq.h</a>
+<li>APREQ_DECLARE
+: <a class="el" href="apreq_8h.html#02bf89714a74397155a11b9ccb942b0d">apreq.h</a>
+<li>APREQ_DECLARE_DATA
+: <a class="el" href="apreq_8h.html#142563500999527d486a2eac8c3a0973">apreq.h</a>
+<li>APREQ_DECLARE_HOOK
+: <a class="el" href="apreq__parser_8h.html#baa196498d8cf959e07b4c84d5264f7f">apreq_parser.h</a>
+<li>APREQ_DECLARE_NONSTD
+: <a class="el" href="apreq_8h.html#8a1e7333187fdbc476473ac72d2ff38b">apreq.h</a>
+<li>APREQ_DECLARE_PARSER
+: <a class="el" href="apreq__parser_8h.html#855c07ea7fc9e240c8620d29eea4a019">apreq_parser.h</a>
+<li>APREQ_DEFAULT_BRIGADE_LIMIT
+: <a class="el" href="apreq_8h.html#f54c8645b8266fa7c9b2e261c608744f">apreq.h</a>
+<li>APREQ_DEFAULT_NELTS
+: <a class="el" href="apreq_8h.html#253093cc2fffe7094828714ade120466">apreq.h</a>
+<li>APREQ_DEFAULT_READ_BLOCK_SIZE
+: <a class="el" href="apreq_8h.html#73bfd1896ab59181f8e052fb8cc147cd">apreq.h</a>
+<li>APREQ_DEFAULT_READ_LIMIT
+: <a class="el" href="apreq_8h.html#744fa55285c4a3868a9154f473d58ac4">apreq.h</a>
+<li>APREQ_ERROR_BADATTR
+: <a class="el" href="apreq__error_8h.html#3d696f49030bb7fc65f2804037d3ccb7">apreq_error.h</a>
+<li>APREQ_ERROR_BADCHAR
+: <a class="el" href="apreq__error_8h.html#04b6a01738a1ee7fd1ecc79d256e721f">apreq_error.h</a>
+<li>APREQ_ERROR_BADDATA
+: <a class="el" href="apreq__error_8h.html#de2a5d60e2db8fc32d8c43580d74c0c8">apreq_error.h</a>
+<li>APREQ_ERROR_BADHEADER
+: <a class="el" href="apreq__error_8h.html#11e549980ef0fce49ac7179bb9164d57">apreq_error.h</a>
+<li>APREQ_ERROR_BADSEQ
+: <a class="el" href="apreq__error_8h.html#73a69e21acc2cf849310a421ab43d2ba">apreq_error.h</a>
+<li>APREQ_ERROR_BADUTF8
+: <a class="el" href="apreq__error_8h.html#88ab15be9af4235cb6b1d9c6c512f0e1">apreq_error.h</a>
+<li>APREQ_ERROR_GENERAL
+: <a class="el" href="apreq__error_8h.html#14b149a0f859ce1078d36db8e8f45a2a">apreq_error.h</a>
+<li>APREQ_ERROR_INTERRUPT
+: <a class="el" href="apreq__error_8h.html#91b1099a9cbf13d45a45a14b7d279b75">apreq_error.h</a>
+<li>APREQ_ERROR_MISMATCH
+: <a class="el" href="apreq__error_8h.html#33080081185585997ef9c5232ec4dd8f">apreq_error.h</a>
+<li>APREQ_ERROR_NOATTR
+: <a class="el" href="apreq__error_8h.html#ffdf9393e5c9277aeae3ea8d2ecf55fa">apreq_error.h</a>
+<li>APREQ_ERROR_NODATA
+: <a class="el" href="apreq__error_8h.html#6e29823668899ad81365ae68f96f3ae4">apreq_error.h</a>
+<li>APREQ_ERROR_NOHEADER
+: <a class="el" href="apreq__error_8h.html#3ce3cf5b410b1ccc2e42ae46d4577f20">apreq_error.h</a>
+<li>APREQ_ERROR_NOPARSER
+: <a class="el" href="apreq__error_8h.html#02ebfa80f1a413b46212df5682db5890">apreq_error.h</a>
+<li>APREQ_ERROR_NOTEMPTY
+: <a class="el" href="apreq__error_8h.html#17d6bb14537a52ef53b56e4b385c76b2">apreq_error.h</a>
+<li>APREQ_ERROR_NOTOKEN
+: <a class="el" href="apreq__error_8h.html#59be3610ba54a58fbb3cd6bb655ff972">apreq_error.h</a>
+<li>APREQ_ERROR_OVERLIMIT
+: <a class="el" href="apreq__error_8h.html#bcc1b4c98b1d8c5d128cffd50afb978e">apreq_error.h</a>
+<li>APREQ_ERROR_TAINTED
+: <a class="el" href="apreq__error_8h.html#035ee2cee3527332669bdaf17142f520">apreq_error.h</a>
+<li>APREQ_ERROR_UNDERLIMIT
+: <a class="el" href="apreq__error_8h.html#0370b1ba3534f6ae9f422c6b351c79cd">apreq_error.h</a>
+<li>APREQ_FLAGS_GET
+: <a class="el" href="apreq_8h.html#07141b4d0c7daa6d5aba5ff33d52a31f">apreq.h</a>
+<li>APREQ_FLAGS_OFF
+: <a class="el" href="apreq_8h.html#5bcc4e81747b13b7bfbb946648453f9e">apreq.h</a>
+<li>APREQ_FLAGS_ON
+: <a class="el" href="apreq_8h.html#df8584e758a62fe0a79023821c359222">apreq.h</a>
+<li>APREQ_FLAGS_SET
+: <a class="el" href="apreq_8h.html#817a3e293b1ae4210ee68871d6b67e1f">apreq.h</a>
+<li>APREQ_HOOK_ARGS
+: <a class="el" href="apreq__parser_8h.html#61c8b1c319752bde3cc35e98247707bf">apreq_parser.h</a>
+<li>APREQ_IS_DEV_STRING
+: <a class="el" href="apreq__version_8h.html#c9445f3e18e852cae2a91bd2a63394be">apreq_version.h</a>
+<li>APREQ_MAJOR_VERSION
+: <a class="el" href="apreq__version_8h.html#7fb04b0c2a9da6237e235b845ee89f9a">apreq_version.h</a>
+<li>APREQ_MINOR_VERSION
+: <a class="el" href="apreq__version_8h.html#44bf530fbecff4ee7bcc0158784da0ff">apreq_version.h</a>
+<li>APREQ_MODULE
+: <a class="el" href="apreq__module_8h.html#7d6d0550f527e18c8cfab702e65daf3b">apreq_module.h</a>
+<li>APREQ_PARSER_ARGS
+: <a class="el" href="apreq__parser_8h.html#f39d2adfdd09c2fe0c8c6a3c1ea1437e">apreq_parser.h</a>
+<li>APREQ_PATCH_VERSION
+: <a class="el" href="apreq__version_8h.html#365b89d742846921cb3619341e5eb266">apreq_version.h</a>
+<li>APREQ_TAINTED_BIT
+: <a class="el" href="apreq_8h.html#cecc7cc6c676725990e0be5f14179ca7">apreq.h</a>
+<li>APREQ_TAINTED_MASK
+: <a class="el" href="apreq_8h.html#3b151396d29841edc92a2889a38fda79">apreq.h</a>
+<li>APREQ_VERSION_STRING
+: <a class="el" href="apreq__version_8h.html#dd82c8ea79b8cc142eeec45772d24fdb">apreq_version.h</a>
+</ul>
+</div>
+<div id="footer">
+<p class="apache">
+Copyright &copy; 2003-2006 <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.5.6 on 3 Dec 2010</span>
+</p>
+</div>
+</body>
+</html>

Propchange: httpd/site/trunk/content/apreq/docs/libapreq2/globals_defs.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: httpd/site/trunk/content/apreq/docs/libapreq2/globals_enum.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/content/apreq/docs/libapreq2/globals_enum.html?rev=1334622&view=auto
==============================================================================
--- httpd/site/trunk/content/apreq/docs/libapreq2/globals_enum.html (added)
+++ httpd/site/trunk/content/apreq/docs/libapreq2/globals_enum.html Sun May  6 13:14:42 2012
@@ -0,0 +1,66 @@
+<html>
+<head>
+  <link rel="stylesheet" type="text/css" href="dox.css" />
+  <title>libapreq2-2.13: libapreq2: Data Fields</title> 
+</head>
+<body>
+<div id="page-header">
+<p class="menu">
+   <a href="http://www.apache.org/">Apache Software Foundation</a> &gt; <a href="http://httpd.apache.org">HTTP Server Project</a> &gt;
+<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.5.6 -->
+<div class="navigation" id="top">
+  <div class="tabs">
+    <ul>
+      <li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
+      <li><a href="pages.html"><span>Related&nbsp;Pages</span></a></li>
+      <li><a href="modules.html"><span>Modules</span></a></li>
+      <li><a href="annotated.html"><span>Data&nbsp;Structures</span></a></li>
+      <li class="current"><a href="files.html"><span>Files</span></a></li>
+      <li><a href="examples.html"><span>Examples</span></a></li>
+    </ul>
+  </div>
+  <div class="tabs">
+    <ul>
+      <li><a href="files.html"><span>File&nbsp;List</span></a></li>
+      <li class="current"><a href="globals.html"><span>Globals</span></a></li>
+    </ul>
+  </div>
+  <div class="tabs">
+    <ul>
+      <li><a href="globals.html"><span>All</span></a></li>
+      <li><a href="globals_func.html"><span>Functions</span></a></li>
+      <li><a href="globals_type.html"><span>Typedefs</span></a></li>
+      <li class="current"><a href="globals_enum.html"><span>Enumerations</span></a></li>
+      <li><a href="globals_eval.html"><span>Enumerator</span></a></li>
+      <li><a href="globals_defs.html"><span>Defines</span></a></li>
+    </ul>
+  </div>
+</div>
+<div class="contents">
+&nbsp;
+<p>
+<ul>
+<li>apreq_charset_t
+: <a class="el" href="apreq_8h.html#6607dfa756796989c15014870b48c8cd">apreq.h</a>
+<li>apreq_expires_t
+: <a class="el" href="apreq_8h.html#eb51f7cb925e3218c622ff82b8ee2f70">apreq.h</a>
+<li>apreq_join_t
+: <a class="el" href="apreq_8h.html#c3784c04255e92629350505d35b0473e">apreq.h</a>
+<li>apreq_match_t
+: <a class="el" href="apreq_8h.html#590d7bfd9cd294f652d388c4f37fc8d5">apreq.h</a>
+</ul>
+</div>
+<div id="footer">
+<p class="apache">
+Copyright &copy; 2003-2006 <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.5.6 on 3 Dec 2010</span>
+</p>
+</div>
+</body>
+</html>

Propchange: httpd/site/trunk/content/apreq/docs/libapreq2/globals_enum.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: httpd/site/trunk/content/apreq/docs/libapreq2/globals_eval.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/content/apreq/docs/libapreq2/globals_eval.html?rev=1334622&view=auto
==============================================================================
--- httpd/site/trunk/content/apreq/docs/libapreq2/globals_eval.html (added)
+++ httpd/site/trunk/content/apreq/docs/libapreq2/globals_eval.html Sun May  6 13:14:42 2012
@@ -0,0 +1,74 @@
+<html>
+<head>
+  <link rel="stylesheet" type="text/css" href="dox.css" />
+  <title>libapreq2-2.13: libapreq2: Data Fields</title> 
+</head>
+<body>
+<div id="page-header">
+<p class="menu">
+   <a href="http://www.apache.org/">Apache Software Foundation</a> &gt; <a href="http://httpd.apache.org">HTTP Server Project</a> &gt;
+<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.5.6 -->
+<div class="navigation" id="top">
+  <div class="tabs">
+    <ul>
+      <li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
+      <li><a href="pages.html"><span>Related&nbsp;Pages</span></a></li>
+      <li><a href="modules.html"><span>Modules</span></a></li>
+      <li><a href="annotated.html"><span>Data&nbsp;Structures</span></a></li>
+      <li class="current"><a href="files.html"><span>Files</span></a></li>
+      <li><a href="examples.html"><span>Examples</span></a></li>
+    </ul>
+  </div>
+  <div class="tabs">
+    <ul>
+      <li><a href="files.html"><span>File&nbsp;List</span></a></li>
+      <li class="current"><a href="globals.html"><span>Globals</span></a></li>
+    </ul>
+  </div>
+  <div class="tabs">
+    <ul>
+      <li><a href="globals.html"><span>All</span></a></li>
+      <li><a href="globals_func.html"><span>Functions</span></a></li>
+      <li><a href="globals_type.html"><span>Typedefs</span></a></li>
+      <li><a href="globals_enum.html"><span>Enumerations</span></a></li>
+      <li class="current"><a href="globals_eval.html"><span>Enumerator</span></a></li>
+      <li><a href="globals_defs.html"><span>Defines</span></a></li>
+    </ul>
+  </div>
+</div>
+<div class="contents">
+&nbsp;
+<p>
+<ul>
+<li>APREQ_EXPIRES_HTTP
+: <a class="el" href="apreq_8h.html#eb51f7cb925e3218c622ff82b8ee2f70d0fecca3f99d74b155630437504119f5">apreq.h</a>
+<li>APREQ_EXPIRES_NSCOOKIE
+: <a class="el" href="apreq_8h.html#eb51f7cb925e3218c622ff82b8ee2f70a7e0989ec9839a8494ea328ff30eb5a1">apreq.h</a>
+<li>APREQ_JOIN_AS_IS
+: <a class="el" href="apreq_8h.html#c3784c04255e92629350505d35b0473e9b74c73cbfdf7aad3effc0627018ff08">apreq.h</a>
+<li>APREQ_JOIN_DECODE
+: <a class="el" href="apreq_8h.html#c3784c04255e92629350505d35b0473e9dd8468f9547f1dee0709f906e98cdc6">apreq.h</a>
+<li>APREQ_JOIN_ENCODE
+: <a class="el" href="apreq_8h.html#c3784c04255e92629350505d35b0473e6cc82b38c229380cc7fbb274b7e3cf36">apreq.h</a>
+<li>APREQ_JOIN_QUOTE
+: <a class="el" href="apreq_8h.html#c3784c04255e92629350505d35b0473eb22a5a8f345963488381335b2f909fb9">apreq.h</a>
+<li>APREQ_MATCH_FULL
+: <a class="el" href="apreq_8h.html#590d7bfd9cd294f652d388c4f37fc8d56ff614170217cfafb5c32c1cefd6caba">apreq.h</a>
+<li>APREQ_MATCH_PARTIAL
+: <a class="el" href="apreq_8h.html#590d7bfd9cd294f652d388c4f37fc8d52fbd9432fdb0e8bec90bd9ec76dcb3f9">apreq.h</a>
+</ul>
+</div>
+<div id="footer">
+<p class="apache">
+Copyright &copy; 2003-2006 <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.5.6 on 3 Dec 2010</span>
+</p>
+</div>
+</body>
+</html>

Propchange: httpd/site/trunk/content/apreq/docs/libapreq2/globals_eval.html
------------------------------------------------------------------------------
    svn:eol-style = native