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/04/10 10:39:20 UTC

svn commit: r1311637 - in /httpd/httpd/trunk/docs/manual/developer: modguide.html.en modguide.xml

Author: humbedooh
Date: Tue Apr 10 08:39:19 2012
New Revision: 1311637

URL: http://svn.apache.org/viewvc?rev=1311637&view=rev
Log:
Fix a "typo" and add a link to the request_rec structure defs.

Modified:
    httpd/httpd/trunk/docs/manual/developer/modguide.html.en
    httpd/httpd/trunk/docs/manual/developer/modguide.xml

Modified: httpd/httpd/trunk/docs/manual/developer/modguide.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/developer/modguide.html.en?rev=1311637&r1=1311636&r2=1311637&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/developer/modguide.html.en (original)
+++ httpd/httpd/trunk/docs/manual/developer/modguide.html.en Tue Apr 10 08:39:19 2012
@@ -262,7 +262,7 @@ struct, typically just refered to as <co
 your module to fully process any HTTP request and respond accordingly.</p>
 <p>Some key elements of the <code>request_req</code> structure are:
 <ul>
-<li><code><code style="color:#008833">r-&gt;handler</code> (char*)</code>: Contains the name of the handler, Apache is currently asking to do the handling of this request</li>
+<li><code><code style="color:#008833">r-&gt;handler</code> (char*)</code>: Contains the name of the handler Apache is currently asking to do the handling of this request</li>
 <li><code><code style="color:#008833">r-&gt;method</code> (char*)</code>: Contains the HTTP method being used, f.x. GET or POST</li>
 <li><code><code style="color:#008833">r-&gt;filename</code> (char*)</code>: Contains the translated filename the client is requesting</li>
 <li><code><code style="color:#008833">r-&gt;args</code> (char*)</code>: Contains the query string of the request, if any</li>
@@ -274,7 +274,7 @@ your module to fully process any HTTP re
 </ul>
 A complete list of all the values contained with in the <code>request_req</code> structure can be found in 
 the <a href="http://svn.apache.org/repos/asf/httpd/httpd/trunk/include/httpd.h"><code>httpd.h</code></a> header 
-file or at [insert link here].
+file or at <a href="http://ci.apache.org/projects/httpd/trunk/doxygen/structrequest__rec.html">http://ci.apache.org/projects/httpd/trunk/doxygen/structrequest__rec.html</a>.
 </p>
 <p>
 Let's try out some of these variables in another example handler:<br />

Modified: httpd/httpd/trunk/docs/manual/developer/modguide.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/developer/modguide.xml?rev=1311637&r1=1311636&r2=1311637&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/developer/modguide.xml (original)
+++ httpd/httpd/trunk/docs/manual/developer/modguide.xml Tue Apr 10 08:39:19 2012
@@ -260,7 +260,7 @@ struct, typically just refered to as <co
 your module to fully process any HTTP request and respond accordingly.</p>
 <p>Some key elements of the <code>request_req</code> structure are:
 <ul>
-<li><code><code style='color:#008833'>r-&gt;handler</code> (char*)</code>: Contains the name of the handler, Apache is currently asking to do the handling of this request</li>
+<li><code><code style='color:#008833'>r-&gt;handler</code> (char*)</code>: Contains the name of the handler Apache is currently asking to do the handling of this request</li>
 <li><code><code style='color:#008833'>r-&gt;method</code> (char*)</code>: Contains the HTTP method being used, f.x. GET or POST</li>
 <li><code><code style='color:#008833'>r-&gt;filename</code> (char*)</code>: Contains the translated filename the client is requesting</li>
 <li><code><code style='color:#008833'>r-&gt;args</code> (char*)</code>: Contains the query string of the request, if any</li>
@@ -272,7 +272,7 @@ your module to fully process any HTTP re
 </ul>
 A complete list of all the values contained with in the <code>request_req</code> structure can be found in 
 the <a href="http://svn.apache.org/repos/asf/httpd/httpd/trunk/include/httpd.h"><code>httpd.h</code></a> header 
-file or at [insert link here].
+file or at <a href="http://ci.apache.org/projects/httpd/trunk/doxygen/structrequest__rec.html">http://ci.apache.org/projects/httpd/trunk/doxygen/structrequest__rec.html</a>.
 </p>
 <p>
 Let's try out some of these variables in another example handler:<br/>