1
0
mirror of https://github.com/apache/httpd.git synced 2025-07-30 20:03:10 +03:00
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1342158 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Daniel Gruno
2012-05-24 07:04:48 +00:00
parent 43ccb0bcf3
commit 8c151fb1a2
3 changed files with 4 additions and 4 deletions

View File

@ -138,11 +138,11 @@ function handle(r)
if r.method == 'GET' then if r.method == 'GET' then
for k, v in pairs( r:parseargs() ) do for k, v in pairs( r:parseargs() ) do
r:puts( string.format("%s: %s", k, v) ) r:puts( string.format("%s: %s\n", k, v) )
end end
elseif r.method == 'POST' then elseif r.method == 'POST' then
for k, v in pairs( r:parsebody() ) do for k, v in pairs( r:parsebody() ) do
r:puts( string.format("%s: %s", k, v) ) r:puts( string.format("%s: %s\n", k, v) )
end end
else else
r:puts("unknown HTTP method " .. r.method) r:puts("unknown HTTP method " .. r.method)

View File

@ -1,7 +1,7 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd"> <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
<?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?> <?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
<!-- English Revision : 1331691 --> <!-- English Revision: 1331691:1342157 (outdated) -->
<!-- French translation : Lucien GENTIS --> <!-- French translation : Lucien GENTIS -->
<!-- Reviewed by : Vincent Deffontaines --> <!-- Reviewed by : Vincent Deffontaines -->

View File

@ -8,6 +8,6 @@
<variants> <variants>
<variant>en</variant> <variant>en</variant>
<variant>fr</variant> <variant outdated="yes">fr</variant>
</variants> </variants>
</metafile> </metafile>