]> granicus.if.org Git - apache/commitdiff
Fix titles of examples
authorDaniel Gruno <humbedooh@apache.org>
Sun, 1 Jul 2012 15:34:18 +0000 (15:34 +0000)
committerDaniel Gruno <humbedooh@apache.org>
Sun, 1 Jul 2012 15:34:18 +0000 (15:34 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1355934 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_lua.xml

index 8534bafba8fe6a81c9ddf591dea0b4659e111bc4..c165924fc6a4d4afc38423af327bd264fd8d2eb0 100644 (file)
@@ -88,7 +88,7 @@ something like this:</p>
 
 
 <highlight language="lua">
-<strong>example.lua</strong>
+<strong>example.lua</strong><br/>
 -- example handler
 
 require "string"
@@ -154,7 +154,7 @@ without authentication, or if the authenticated user matches the second
 argument:</p>
 
 <highlight language="lua">
-<strong>authz_provider.lua</strong>
+<strong>authz_provider.lua</strong><br/>
 
 require 'apache2'
 
@@ -196,8 +196,9 @@ they'll return OK, DONE, or DECLINED, which you can write in lua as
 <code>apache2.OK</code>, <code>apache2.DONE</code>, or
 <code>apache2.DECLINED</code>, or else an HTTP status code.</p>
 
+
 <highlight language="lua">
-<strong>translate_name.lua</strong>
+<strong>translate_name.lua</strong><br/>
 -- example hook that rewrites the URI to a filesystem path.
 
 require 'apache2'
@@ -212,8 +213,9 @@ function translate_name(r)
 end
 </highlight>
 
+
 <highlight language="lua">
-<strong>translate_name2.lua</strong>
+<strong>translate_name2.lua</strong><br/>
 --[[ example hook that rewrites one URI to another URI. It returns a
      apache2.DECLINED to give other URL mappers a chance to work on the
      substitution, including the core translate_name hook which maps based