]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Add missing 'filemod' in functions list + minor formatting issue + long line split
authorChristophe Jaillet <jailletc36@apache.org>
Mon, 5 Jan 2015 20:03:50 +0000 (20:03 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Mon, 5 Jan 2015 20:03:50 +0000 (20:03 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1649636 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/expr.html.en
docs/manual/expr.xml

index 78e210f8302eb78ae8166790dd84c075c4d1379a..f25a10108be897d7838aeccdca2fa2d0e002ba42 100644 (file)
@@ -440,11 +440,12 @@ listfunction ::= listfuncname "<strong>(</strong>" word "<strong>)</strong>"</pr
         <td>Same as <code>req</code>, but header names will not be added to the
             Vary header</td><td /></tr>
 <tr><td><code>resp</code></td>
-        <td>Get HTTP response header (most response headers will not yet be set during <code class="directive">&lt;If&gt;</code>)</td><td /></tr>
+        <td>Get HTTP response header (most response headers will not yet be set
+            during <code class="directive">&lt;If&gt;</code>)</td><td /></tr>
 <tr class="odd"><td><code>reqenv</code></td>
         <td>Lookup request environment variable (as a shortcut,
         <code>v</code> can be used too to access
-        variables).</td><td /></tr>
+        variables)</td><td /></tr>
 <tr><td><code>osenv</code></td>
         <td>Lookup operating system environment variable</td><td /></tr>
 <tr class="odd"><td><code>note</code></td>
@@ -475,13 +476,16 @@ listfunction ::= listfuncname "<strong>(</strong>" word "<strong>)</strong>"</pr
 <tr class="odd"><td><code>file</code></td>
         <td>Read contents from a file (including line endings, when present)
         </td><td>yes</td></tr>
-<tr><td><code>filesize</code></td>
+<tr><td><code>filemod</code></td>
+        <td>Return last modification time of a file (or 0 if file does not exist
+            or is not regular file)</td><td>yes</td></tr>
+<tr class="odd"><td><code>filesize</code></td>
         <td>Return size of a file (or 0 if file does not exist or is not
             regular file)</td><td>yes</td></tr>
-<tr class="odd"><td><code>ldap</code></td>
+<tr><td><code>ldap</code></td>
         <td>Escape characters as required by LDAP distinguished name escaping
             (RFC4514) and LDAP filter escaping (RFC4515).</td><td /></tr>
-<tr><td><code>replace</code></td>
+<tr class="odd"><td><code>replace</code></td>
         <td>replace(string, "from", "to") replaces all occurences of "from"
             in the string with "to".</td><td /></tr>
 </table>
index e2c995356212c751a2665ab4c9e4056c97ba4007..308624da9bfbd7e0fa3d64b1bc6caa1c85073247 100644 (file)
@@ -485,11 +485,12 @@ listfunction ::= listfuncname "<strong>(</strong>" word "<strong>)</strong>"
         <td>Same as <code>req</code>, but header names will not be added to the
             Vary header</td><td></td></tr>
     <tr><td><code>resp</code></td>
-        <td>Get HTTP response header (most response headers will not yet be set during <directive>&lt;If&gt;</directive>)</td><td></td></tr>
+        <td>Get HTTP response header (most response headers will not yet be set
+            during <directive>&lt;If&gt;</directive>)</td><td></td></tr>
     <tr><td><code>reqenv</code></td>
         <td>Lookup request environment variable (as a shortcut,
         <code>v</code> can be used too to access
-        variables).</td><td></td></tr>
+        variables)</td><td></td></tr>
     <tr><td><code>osenv</code></td>
         <td>Lookup operating system environment variable</td><td></td></tr>
     <tr><td><code>note</code></td>
@@ -520,6 +521,9 @@ listfunction ::= listfuncname "<strong>(</strong>" word "<strong>)</strong>"
     <tr><td><code>file</code></td>
         <td>Read contents from a file (including line endings, when present)
         </td><td>yes</td></tr>
+    <tr><td><code>filemod</code></td>
+        <td>Return last modification time of a file (or 0 if file does not exist
+            or is not regular file)</td><td>yes</td></tr>
     <tr><td><code>filesize</code></td>
         <td>Return size of a file (or 0 if file does not exist or is not
             regular file)</td><td>yes</td></tr>