diff options
author | Lucien Gentis <lgentis@apache.org> | 2011-05-14 14:34:29 +0000 |
---|---|---|
committer | Lucien Gentis <lgentis@apache.org> | 2011-05-14 14:34:29 +0000 |
commit | 58dbbce194bf3706c5dc024e2e0a93a59516de47 (patch) | |
tree | bb3189860b5bb41cd44b233ac98c10b73983cd6d | |
parent | 17651e0c9af48c34f857ae7126d2cf348779d1f3 (diff) | |
download | httpd-58dbbce194bf3706c5dc024e2e0a93a59516de47.tar.gz |
Update.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1103117 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | docs/manual/expr.xml.fr | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/docs/manual/expr.xml.fr b/docs/manual/expr.xml.fr index a9f1fef5ba..33586713d6 100644 --- a/docs/manual/expr.xml.fr +++ b/docs/manual/expr.xml.fr @@ -142,7 +142,7 @@ listfunction ::= listfuncname "<strong>(</strong>" word "<strong>)</strong>" <table border="1" style="zebra"> <columnspec><column width="1"/></columnspec> - <tr><th>Name</th></tr> + <tr><th>Nom</th></tr> <tr><td><code>HTTP_ACCEPT</code></td></tr> <tr><td><code>HTTP_FORWARDED</code></td></tr> <tr><td><code>HTTP_HOST</code></td></tr> @@ -361,6 +361,18 @@ listfunction ::= listfuncname "<strong>(</strong>" word "<strong>)</strong>" <columnspec><column width=".2"/><column width=".2"/><column width=".6"/></columnspec> <tr><th>Nom</th><th>Description</th></tr> + <tr><td><code>-d</code></td> + <td>Vrai si le fichier existe et correspond à un répertoire</td></tr> + <tr><td><code>-e</code></td> + <td>Vrai si le fichier (ou dir ou special) existe</td></tr> + <tr><td><code>-f</code></td> + <td>Vrai si le fichier existe et correspond à un fichier + régulier</td></tr> + <tr><td><code>-L</code></td> + <td>Vrai si le fichier existe et correspond à un lien symbolique</td></tr> + <tr><td><code>-h</code></td> + <td>Vrai si le fichier existe et correspond à un lien symbolique + (identique à <code>-L</code>)</td></tr> <tr><td><code>-n</code></td> <td>Vrai si la chaîne n'est pas vide</td></tr> <tr><td><code>-z</code></td> @@ -414,6 +426,10 @@ listfunction ::= listfuncname "<strong>(</strong>" word "<strong>)</strong>" le codage des caractères spéciaux aux URLs (XXX: describe better)</td></tr> <tr><td><code>file</code></td> <td>Lit le contenu d'un fichier</td></tr> + <tr><td><code>filesize</code></td> + <td>Renvoie la taille d'un fichier (ou 0 si le fichier n'existe + pas ou ne correspond pas à un fichier régulier)</td></tr> + </table> <p>En plus des fonctions dont la valeur est une chaîne, il existe |