From: Daniel Gruno Date: Tue, 19 Feb 2013 21:32:09 +0000 (+0000) Subject: xforms X-Git-Tag: 2.5.0-alpha~5760 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0006419eb2700525b731b9cbaeb9a239086e6342;p=apache xforms git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1447930 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/man/httxt2dbm.1 b/docs/man/httxt2dbm.1 index 8298cdfc7c..ed09c04c6e 100644 --- a/docs/man/httxt2dbm.1 +++ b/docs/man/httxt2dbm.1 @@ -19,7 +19,7 @@ .el .ne 3 .IP "\\$1" \\$2 .. -.TH "HTTXT2DBM" 1 "2011-12-22" "Apache HTTP Server" "httxt2dbm" +.TH "HTTXT2DBM" 1 "2013-02-19" "Apache HTTP Server" "httxt2dbm" .SH NAME httxt2dbm \- Generate dbm files for use with RewriteMap @@ -35,6 +35,9 @@ httxt2dbm \- Generate dbm files for use with RewriteMap .PP httxt2dbm is used to generate dbm files from text input, for use in RewriteMap with the dbm map type\&. +.PP +If the output file already exists, it will not be truncated\&. New keys will be added and existing keys will be updated\&. + .SH "OPTIONS" diff --git a/docs/manual/developer/modguide.html.en b/docs/manual/developer/modguide.html.en index c010adf02c..808a276c1a 100644 --- a/docs/manual/developer/modguide.html.en +++ b/docs/manual/developer/modguide.html.en @@ -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. +request_rec* structure passed along with every call that is made. This struct, typically just refered 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 with in 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.