From 4a336a5b117419c33c29eadd6409c69df78cd586 Mon Sep 17 00:00:00 2001 From: Stefan Fritsch Date: Sat, 20 Jul 2013 22:21:25 +0200 Subject: Imported Upstream version 2.4.6 --- docs/manual/developer/modguide.html.en | 55 ++++++++++++++++++------------- docs/manual/developer/modules.html.en | 2 +- docs/manual/developer/new_api_2_4.html.en | 4 +++ 3 files changed, 38 insertions(+), 23 deletions(-) (limited to 'docs/manual/developer') diff --git a/docs/manual/developer/modguide.html.en b/docs/manual/developer/modguide.html.en index 5e44f7e6..5f3ed86a 100644 --- a/docs/manual/developer/modguide.html.en +++ b/docs/manual/developer/modguide.html.en @@ -55,7 +55,7 @@ http://www.example.com/index.html.sum.

In the second part of this document, which deals with configuration directive and context awareness, we will be looking at a module that simply -write out its own configuration to the client. +writes out its own configuration to the client.

@@ -314,11 +314,11 @@ looks like

The request_rec structure

The most essential part of any request is the request record . In a call to a handler function, this is represented by the -request_req* structure passed along with every call that is made. -This struct, typically just refered to as r in modules, +request_rec* structure passed along with every call that is made. +This struct, typically just referred to as r in modules, contains all the information you need for your module to fully process any HTTP request and respond accordingly.

Some key elements of the -request_req structure are: +request_rec structure are:

-A complete list of all the values contained with in the request_req structure can be found in +A complete list of all the values contained within the request_rec structure can be found in the httpd.h header file or at http://ci.apache.org/projects/httpd/trunk/doxygen/structrequest__rec.html.

@@ -428,7 +428,7 @@ the next, without informing other handlers.