You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by hu...@apache.org on 2012/04/28 08:40:14 UTC

svn commit: r1331691 - in /httpd/httpd/trunk/docs/manual/mod: mod_lua.html.en mod_lua.xml

Author: humbedooh
Date: Sat Apr 28 06:40:14 2012
New Revision: 1331691

URL: http://svn.apache.org/viewvc?rev=1331691&view=rev
Log:
typo fix (/w+ should be \w+)

Modified:
    httpd/httpd/trunk/docs/manual/mod/mod_lua.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_lua.xml

Modified: httpd/httpd/trunk/docs/manual/mod/mod_lua.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_lua.html.en?rev=1331691&r1=1331690&r2=1331691&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_lua.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_lua.html.en Sat Apr 28 06:40:14 2012
@@ -691,7 +691,7 @@ end
     be careful writing your regular expressions to avoid security
     issues.</p>
    <div class="example"><h3>Examples:</h3><pre class="prettyprint lang-config">
-    LuaMapHandler /(\w+)/(/w+) /scripts/$1.lua handle_$2
+    LuaMapHandler /(\w+)/(\w+) /scripts/$1.lua handle_$2
     </pre>
 </div>
         <p>This would match uri's such as /photos/show?id=9

Modified: httpd/httpd/trunk/docs/manual/mod/mod_lua.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_lua.xml?rev=1331691&r1=1331690&r2=1331691&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_lua.xml (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_lua.xml Sat Apr 28 06:40:14 2012
@@ -461,7 +461,7 @@ end
     issues.</p>
    <example><title>Examples:</title>
    <highlight language="config">
-    LuaMapHandler /(\w+)/(/w+) /scripts/$1.lua handle_$2
+    LuaMapHandler /(\w+)/(\w+) /scripts/$1.lua handle_$2
     </highlight>
    </example>
         <p>This would match uri's such as /photos/show?id=9