cucinato Wed Nov 21 16:35:08 2001 EDT Modified files: /phpdoc/it Translators /phpdoc/it/functions aspell.xml Log: Added CDATA sections Index: phpdoc/it/Translators diff -u phpdoc/it/Translators:1.88 phpdoc/it/Translators:1.89 --- phpdoc/it/Translators:1.88 Tue Nov 20 07:15:05 2001 +++ phpdoc/it/Translators Wed Nov 21 16:35:07 2001 @@ -77,8 +77,8 @@ safe-mode.xml perugini T1.15 ------- functions ----------------------------------------------------------- apache.xml baldo A -array.xml cucinato T1.122 -aspell.xml cucinato T1.17 +array.xml cucinato T1.127 +aspell.xml cucinato T1.18 bc.xml cucinato T1.17 bzip2.xml cucinato T1.11 calendar.xml cucinato A1.16 Index: phpdoc/it/functions/aspell.xml diff -u phpdoc/it/functions/aspell.xml:1.13 phpdoc/it/functions/aspell.xml:1.14 --- phpdoc/it/functions/aspell.xml:1.13 Mon Nov 12 16:17:01 2001 +++ phpdoc/it/functions/aspell.xml Wed Nov 21 16:35:07 2001 @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="iso-8859-1"?> - <!-- EN-Revision: 1.17 Maintainer: cucinato Status: ready --> + <!-- EN-Revision: 1.18 Maintainer: cucinato Status: ready --> <reference id="ref.aspell"> <title>Funzioni Aspell [deprecated]</title> <titleabbrev>Aspell</titleabbrev> @@ -50,7 +50,9 @@ <example> <title><function>aspell_new</function></title> <programlisting role="php"> +<![CDATA[ $aspell_link = aspell_new("italiano"); +]]> </programlisting> </example> </para> @@ -79,6 +81,7 @@ <example> <title><function>aspell_check</function></title> <programlisting> +<![CDATA[ $aspell_link = aspell_new("italiano"); if (aspell_check($aspell_link, "provva")) { @@ -86,6 +89,7 @@ } else { echo "Spiacente, parola non corretta"; } +]]> </programlisting> </example> </para> @@ -117,6 +121,7 @@ <example> <title><function>aspell_check_raw</function></title> <programlisting role="php"> +<![CDATA[ $aspell_link = aspell_new("italiano"); if (aspell_check_raw($aspell_link, "prova")) { @@ -124,6 +129,7 @@ } else { echo "Spiacente, parola non corretta"; } +]]> </programlisting> </example> </para> @@ -152,6 +158,7 @@ <example> <title><function>aspell_suggest</function></title> <programlisting role="php"> +<![CDATA[ $aspell_link = aspell_new("italiano"); if (!aspell_check($aspell_link, "prova")) { @@ -161,6 +168,7 @@ echo "Possibile parola corretta: $suggerimento<br>\n"; } } +]]> </programlisting> </example> </para>