From: Guenter Knauf Date: Sat, 22 Jun 2013 05:24:02 +0000 (+0000) Subject: Added new mod_lua functions. X-Git-Tag: 2.5.0-alpha~5312 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b006aecd3ecebf695cca83722d9663ac00485bbc;p=apache Added new mod_lua functions. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1495665 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_lua.html.en b/docs/manual/mod/mod_lua.html.en index 9f45d2611c..d0ba62b59c 100644 --- a/docs/manual/mod/mod_lua.html.en +++ b/docs/manual/mod/mod_lua.html.en @@ -1016,11 +1016,21 @@ r:mkdir(dir [,mode]) -- Creates a directory and sets mode to optional mode param +
+r:mkrdir(dir [,mode]) -- Creates directories recursive and sets mode to optional mode paramter.
+
+ +
 r:rmdir(dir) -- Removes a directory.
 
+
+r:touch([mtime]) -- Sets the file modification time to current time or to optional mtime msec value.
+
+ +
 r:get_direntries(dir) -- Returns a table with all directory entries.
 
diff --git a/docs/manual/mod/mod_lua.xml b/docs/manual/mod/mod_lua.xml
index a1f4584d8b..5bbe7a76ba 100644
--- a/docs/manual/mod/mod_lua.xml
+++ b/docs/manual/mod/mod_lua.xml
@@ -935,10 +935,18 @@ r:htpassword(string [,algorithm [,cost]]) -- Creates a password hash from a stri
 r:mkdir(dir [,mode]) -- Creates a directory and sets mode to optional mode paramter.
 
 
+
+r:mkrdir(dir [,mode]) -- Creates directories recursive and sets mode to optional mode paramter.
+
+
 
 r:rmdir(dir) -- Removes a directory.
 
 
+
+r:touch([mtime]) -- Sets the file modification time to current time or to optional mtime msec value.
+
+
 
 r:get_direntries(dir) -- Returns a table with all directory entries.