From: Guenter Knauf Date: Sat, 22 Jun 2013 05:24:02 +0000 (+0000) Subject: Added new mod_lua functions. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cfcf6ad5d7f5f4b1467a2d79dca8bc8f7302fa15;p=thirdparty%2Fapache%2Fhttpd.git 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 9f45d2611c7..d0ba62b59ce 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 a1f4584d8bb..5bbe7a76bae 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.