cvs: phpdoc-sk /reference/aspell/functions aspell-check-raw.xml aspell-check.xml aspell-new.xml aspell-suggest.xml

[email protected] ("Joseph Drake")
Newsgroups php.doc.sk
Message-ID <cvsjoseph1045872142@cvsserver>
joseph		Fri Feb 21 19:02:22 2003 EDT

  Added files:                 
    /phpdoc-sk/reference/aspell/functions	aspell-check-raw.xml 
                                         	aspell-check.xml 
                                         	aspell-new.xml 
                                         	aspell-suggest.xml 
  Log:
  new files
  

Index: phpdoc-sk/reference/aspell/functions/aspell-check-raw.xml
+++ phpdoc-sk/reference/aspell/functions/aspell-check-raw.xml
<?xml version="1.0" encoding="iso-8859-2"?>
<!-- EN-Revision: 1.2 Maintainer: joseph Status: ready -->
<!-- splitted from ./en/functions/aspell.xml, last change in rev 1.2 -->
  <refentry id="function.aspell-check-raw">
   <refnamediv>
    <refname>aspell_check_raw</refname> 
    <refpurpose>
     Skontrolova» slovo bez zmeny veµkosti písma alebo pokusu
     o skrátenia [odmietané]
    </refpurpose>
   </refnamediv>
   <refsect1>
    <title>Popis</title>
     <methodsynopsis>
      <type>bool</type><methodname>aspell_check_raw</methodname>
      <methodparam><type>int</type><parameter>dictionary_link</parameter></methodparam>
      <methodparam><type>string</type><parameter>word</parameter></methodparam>
     </methodsynopsis>
    <simpara>
     <function>aspell_check_raw</function> kontroluje pravopis slova
     bez zmeny veµkosti písma alebo bez akéhokoµvek poskusu o jeho
     skrátenie a vracia &true; ak je pravopis správny, inak &false;.
    </simpara>
    <para>
     <example>
      <title><function>aspell_check_raw</function></title>
      <programlisting role="php">
<![CDATA[
$aspell_link = aspell_new("english");

if (aspell_check_raw($aspell_link, "test")) {
    echo "Toto je spravny pravopis";
} else {
    echo "Lutujem, nespravny pravopis";
}
]]>
      </programlisting>
     </example>
    </para>
   </refsect1>
  </refentry>

<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->

Index: phpdoc-sk/reference/aspell/functions/aspell-check.xml
+++ phpdoc-sk/reference/aspell/functions/aspell-check.xml
<?xml version="1.0" encoding="iso-8859-2"?>
<!-- EN-Revision: 1.2 Maintainer: joseph Status: ready -->
<!-- splitted from ./en/functions/aspell.xml, last change in rev 1.2 -->
  <refentry id="function.aspell-check">
   <refnamediv>
    <refname>aspell_check</refname>
    <refpurpose>Skontrolova» slovo [odmietané]</refpurpose>
   </refnamediv>
   <refsect1>
    <title>Popis</title>
     <methodsynopsis>
      <type>bool</type><methodname>aspell_check</methodname>
      <methodparam><type>int</type><parameter>dictionary_link</parameter></methodparam>
      <methodparam><type>string</type><parameter>slovo</parameter></methodparam>
     </methodsynopsis>
    <simpara>
     <function>aspell_check</function> kontroluje pravopis slova
     a vracia &true; ak je pravopis správny, inak &false;.
    </simpara>
    <para>
     <example>
      <title><function>aspell_check</function></title>
      <programlisting>
<![CDATA[
$aspell_link = aspell_new("english");

if (aspell_check($aspell_link, "testt")) {
    echo "Toto je platny pravopis";
} else {
    echo "Lutujem, zly pravopis";
}
]]>
      </programlisting>
     </example>
    </para>
   </refsect1>
  </refentry>

<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->

Index: phpdoc-sk/reference/aspell/functions/aspell-new.xml
+++ phpdoc-sk/reference/aspell/functions/aspell-new.xml
<?xml version="1.0" encoding="iso-8859-2"?>
<!-- EN-Revision: 1.2 Maintainer: joseph Status: ready -->
<!-- splitted from ./en/functions/aspell.xml, last change in rev 1.2 -->
  <refentry id="function.aspell-new">
   <refnamediv>
    <refname>aspell_new</refname>
    <refpurpose>Naèíta» nový slovník [odmietané]</refpurpose>
   </refnamediv>
   <refsect1>
    <title>Popis</title>
     <methodsynopsis>
      <type>int</type><methodname>aspell_new</methodname>
      <methodparam><type>string</type><parameter>hlavny</parameter></methodparam>
      <methodparam choice="opt"><type>string</type><parameter>osobny</parameter></methodparam>
     </methodsynopsis>
    <!-- TODO: personal??? -->
    <simpara>
     <function>aspell_new</function> otvára nový slovník a vracia
     identifikátor odkazu na slovník pre pou¾itie v iných aspelll
     funkciách. Pri chybe vracia &false;.
    </simpara>
    <para>
     <example>
      <title><function>aspell_new</function></title>
      <programlisting role="php">
<![CDATA[
$aspell_link = aspell_new("english");
]]>
      </programlisting>
     </example>
    </para>
   </refsect1>
  </refentry>

<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->

Index: phpdoc-sk/reference/aspell/functions/aspell-suggest.xml
+++ phpdoc-sk/reference/aspell/functions/aspell-suggest.xml
<?xml version="1.0" encoding="iso-8859-2"?>
<!-- EN-Revision: 1.2 Maintainer: joseph Status: ready -->
<!-- splitted from ./en/functions/aspell.xml, last change in rev 1.2 -->
  <refentry id="function.aspell-suggest">
   <refnamediv>
    <refname>aspell_suggest</refname>
    <refpurpose>Navrhnú» pravopis slova [odmietané]</refpurpose>
   </refnamediv>
   <refsect1>
    <title>Popis</title>
     <methodsynopsis>
      <type>array</type><methodname>aspell_suggest</methodname>
      <methodparam><type>int</type><parameter>dictionary_link</parameter></methodparam>
      <methodparam><type>string</type><parameter>slovo</parameter></methodparam>
     </methodsynopsis>
    <simpara>
     <function>aspell_suggest</function> vracia pole mo¾ného syntaxu
     pre dané slovo.
    </simpara>
    <para>
     <example>
      <title><function>aspell_suggest</function></title>
      <programlisting role="php">
<![CDATA[
$aspell_link = aspell_new("english");

if (!aspell_check($aspell_link, "test")) {
    $suggestions = aspell_suggest($aspell_link, "test");

    foreach ($suggestions as $suggestion) {
        echo "Mozny pravopis: $suggestion<br>\n"; 
    }
}
]]>
      </programlisting>
     </example>
    </para>
   </refsect1>
  </refentry>

<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.