cvs: smarty /docs/fr/designers/language-builtin-functions language-function-include-php.xml /docs/fr/designers/language-custom-functions language-function-html-checkboxes.xml /docs/fr/programmers/api-functions api-is-cached.xml
"gerald croes" <[email protected]>
| Newsgroups | gmane.comp.php.cvs.smarty |
|---|---|
| Message-ID | <cvsgerald1088807434@cvsserver> |
gerald Fri Jul 2 18:30:34 2004 EDT
Modified files:
/smarty/docs/fr/designers/language-builtin-functions
language-function-include-php.xml
/smarty/docs/fr/designers/language-custom-functions
language-function-html-checkboxes.xml
/smarty/docs/fr/programmers/api-functions api-is-cached.xml
Log:
Fixed missing tags to make doc again
http://cvs.php.net/diff.php/smarty/docs/fr/designers/language-builtin-functions/language-function-include-php.xml?r1=1.3&r2=1.4&ty=u
Index: smarty/docs/fr/designers/language-builtin-functions/language-function-include-php.xml
diff -u smarty/docs/fr/designers/language-builtin-functions/language-function-include-php.xml:1.3 smarty/docs/fr/designers/language-builtin-functions/language-function-include-php.xml:1.4
--- smarty/docs/fr/designers/language-builtin-functions/language-function-include-php.xml:1.3 Fri Jul 2 16:35:23 2004
+++ smarty/docs/fr/designers/language-builtin-functions/language-function-include-php.xml Fri Jul 2 18:30:34 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<!-- EN-Revision: 1.1 Maintainer: gerald Status: ready -->
<sect1 id="language.function.include.php">
<title>include_php</title>
@@ -55,7 +55,7 @@
vous avez besoin de mettre une de vos fonction en quarantaine vis à vis du
répertoire des plugins ou de votre application. Reportez vous à
l'exemple des <link
- linkend="tips.componentized.templates"> templates composants</links>
+ linkend="tips.componentized.templates"> templates composants</link>
pour plus de détails.
</para>
</note>
http://cvs.php.net/diff.php/smarty/docs/fr/designers/language-custom-functions/language-function-html-checkboxes.xml?r1=1.3&r2=1.4&ty=u
Index: smarty/docs/fr/designers/language-custom-functions/language-function-html-checkboxes.xml
diff -u smarty/docs/fr/designers/language-custom-functions/language-function-html-checkboxes.xml:1.3 smarty/docs/fr/designers/language-custom-functions/language-function-html-checkboxes.xml:1.4
--- smarty/docs/fr/designers/language-custom-functions/language-function-html-checkboxes.xml:1.3 Fri Jul 2 17:39:32 2004
+++ smarty/docs/fr/designers/language-custom-functions/language-function-html-checkboxes.xml Fri Jul 2 18:30:34 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<!-- EN-Revision: 1.2 Maintainer: gerald Status: ready -->
<sect1 id="language.function.html.checkboxes">
<title>html_checkboxes</title>
@@ -73,7 +73,7 @@
<entry>booléen</entry>
<entry>Non</entry>
<entry><emphasis>true</emphasis></entry>
- <entry>ajoute la balise <label>- à la sortie/entry>
+ <entry>ajoute la balise <label>- à la sortie</entry>
</row>
</tbody>
</tgroup>
http://cvs.php.net/diff.php/smarty/docs/fr/programmers/api-functions/api-is-cached.xml?r1=1.3&r2=1.4&ty=u
Index: smarty/docs/fr/programmers/api-functions/api-is-cached.xml
diff -u smarty/docs/fr/programmers/api-functions/api-is-cached.xml:1.3 smarty/docs/fr/programmers/api-functions/api-is-cached.xml:1.4
--- smarty/docs/fr/programmers/api-functions/api-is-cached.xml:1.3 Fri Jul 2 14:02:01 2004
+++ smarty/docs/fr/programmers/api-functions/api-is-cached.xml Fri Jul 2 18:30:34 2004
@@ -1,26 +1,22 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<!-- EN-Revision: 1.3 Maintainer: gerald Status: partial -->
-<refentry id="api.is.cached">
- <refnamediv>
- <refname>is_cached</refname>
- <refpurpose></refpurpose>
- </refnamediv>
- <refsect1>
- <title />
- <methodsynopsis>
- <type>bool</type><methodname>is_cached</methodname>
- <methodparam><type>string</type><parameter>template</parameter></methodparam>
- <methodparam choice="opt"><type>string</type><parameter>cache_id</parameter></methodparam>
- <methodparam choice="opt"><type>string</type><parameter>compile_id</parameter></methodparam>
- </methodsynopsis>
- <para>
+<sect1 id="api.is.cached">
+ <title>is_cached</title>
+ <funcsynopsis>
+ <funcprototype>
+ <funcdef>void <function>is_cached</function></funcdef>
+ <paramdef>string <parameter>template</parameter></paramdef>
+ <paramdef>[string <parameter>cache_id</parameter>]</paramdef>
+ </funcprototype>
+ </funcsynopsis>
+ <para>
Retourne vrai s'il y a un fichier de cache valide pour ce template.
Cela fonctionne seulement si <link
linkend="variable.caching">caching</link> est a vrai.
- </para>
- <example>
- <title>is_cached</title>
+ </para>
+ <example>
+ <title>is_cached</title>
<programlisting role="php">
<![CDATA[
<?php
@@ -34,7 +30,7 @@
?>
]]>
</programlisting>
- </example>
+ </example>
<para>
Vous pouvez aussi passer en second paramètre un identifiant
de cache au cas oú vous voudriez plusieurs fichiers de cache
@@ -49,7 +45,7 @@
Si vous voulez utiliser un identifiant de compilation sans utilisez d'identifiant de cache,
mettez <literal>null</literal> pour l'identifiant de cache.
</para>
- <example>
+ <example>
<title>is_cached avec plusieurs templates</title>
<programlisting role="php">
<![CDATA[
@@ -64,9 +60,7 @@
?>
]]>
</programlisting>
- </example>
-
-
+ </example>
<note>
<title>Note technique</title>
<para>
@@ -80,8 +74,7 @@
à retourné vrai.
</para>
</note>
- </refsect1>
-</refentry>
+</sect1>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
--
Smarty CVS Mailing List (http://cvs.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php