From: Daniel Gruno Date: Tue, 26 Feb 2013 05:03:02 +0000 (+0000) Subject: xforms X-Git-Tag: 2.5.0-alpha~5737 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=595055d1f3843eb23e103ae21785481c6a3f27f8;p=apache xforms git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1450026 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/developer/modguide.html.en b/docs/manual/developer/modguide.html.en index c697d5677a..a58cb0a14c 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.

@@ -333,7 +333,7 @@ request_rec structure are: "Memory management" chapter.

-A complete list of all the values contained with in the request_rec 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.

@@ -1279,7 +1279,7 @@ void* example_create_dir_conf(apr_pool_t* pool, char* context) {

Merging configurations

Our next step in creating a context aware configuration is merging -configurations. This part of the process particularly apply to scenarios +configurations. This part of the process particularly applies to scenarios where you have a parent configuration and a child, such as the following:

@@ -1295,8 +1295,8 @@ where you have a parent configuration and a child, such as the following:
 
 

In this example, it is natural to assume that the directory -/var/www/subdir should inherit the value set for the /var/www - directory, as we did not specify a ExampleEnable nor +/var/www/subdir should inherit the values set for the /var/www + directory, as we did not specify an ExampleEnable nor an ExamplePath for this directory. The server does not presume to know if this is true, but cleverly does the following: