Rebuild
authorRich Bowen <rbowen@apache.org>
Wed, 12 Mar 2014 20:41:31 +0000 (20:41 +0000)
committerRich Bowen <rbowen@apache.org>
Wed, 12 Mar 2014 20:41:31 +0000 (20:41 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1576895 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_lua.html.en
docs/manual/mod/mod_lua.xml.fr

index 83d13c9ef3a675b25877dd8536d4a3df626f8154..374f70747eab141c9737d41fc75c7b4dc10a7bcc 100644 (file)
@@ -107,9 +107,9 @@ trust, as it can be abused to change the internal workings of httpd.</p>
 <code>mod_lua</code> provides a handler named <code>lua-script</code>,
 which can be used with an <code>AddHandler</code> directive:</p>
 
-<pre class="prettyprint lang-config">&lt;FilesMatch "\.lua$"&gt;
-    AddHandler lua-script .lua
-&lt;/FilesMatch&gt;</pre>
+<pre class="prettyprint lang-config">&lt;Files *.lua&gt;
+    SetHandler lua-script .lua
+&lt;/Files&gt;</pre>
 
 
 <p>
@@ -1624,9 +1624,9 @@ onto the Lua script:
 </p>
 
 <pre class="prettyprint lang-config">LuaInputFilter myInputFilter /www/filter.lua input_filter
-&lt;FilesMatch "\.lua&gt;
+&lt;Files *.lua&gt;
   SetInputFilter myInputFilter
-&lt;/FilesMatch&gt;</pre>
+&lt;/Files&gt;</pre>
 
 <pre class="prettyprint lang-lua">--[[
     Example input filter that converts all POST data to uppercase.
@@ -1709,9 +1709,9 @@ onto the Lua script:
 </p>
 
 <pre class="prettyprint lang-config">LuaOutputFilter myOutputFilter /www/filter.lua output_filter
-&lt;FilesMatch "\.lua&gt;
+&lt;Files *.lua&gt;
   SetOutputFilter myOutputFilter
-&lt;/FilesMatch&gt;</pre>
+&lt;/Files&gt;</pre>
 
 <pre class="prettyprint lang-lua">--[[
     Example output filter that escapes all HTML entities in the output
index 773687a7069a4abbf997556b0a09c795e178fe42..256387f3df9de19764887585d64401c65a4b0cbc 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
-<!-- English Revision: 1570528:1576415 (outdated) -->
+<!-- English Revision: 1570528:1576894 (outdated) -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->