cvs: phpdoc-sk /reference/crack ini.xml reference.xml

[email protected] ("Joseph Drake") Wed, 21 May 2003 21:23:04 -0000
Newsgroups php.doc.sk
Message-ID <cvsjoseph1053552184@cvsserver>
joseph		Wed May 21 17:23:04 2003 EDT

  Added files:                 
    /phpdoc-sk/reference/crack	ini.xml reference.xml 
  Log:
  updated
  

Index: phpdoc-sk/reference/crack/ini.xml
+++ phpdoc-sk/reference/crack/ini.xml
<?xml version="1.0" encoding="iso-8859-2"?>
<!-- EN-Revision: 1.2 Maintainer: joseph Status: ready -->
<section id="crack.configuration">
 &reftitle.runtime;
 &extension.runtime;
 <para>
 <table>
  <title>Crack konfiguraèné voµby</title>
  <tgroup cols="3">
   <thead>
    <row>
     <entry>Názov</entry>
     <entry>Default</entry>
     <entry>Zameniteµný</entry>
    </row>
   </thead>
   <tbody>
    <row>
     <entry>crack.default_dictionary</entry>
     <entry>NULL</entry>
     <entry>PHP_INI_SYSTEM</entry>
    </row>
   </tbody>
  </tgroup>
 </table>
 Pre ïal¹ie detaily a definície PHP_INI_* kon¹tánt pozri
 <function>ini_set</function>.
 </para>
</section>

<!-- 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/crack/reference.xml
+++ phpdoc-sk/reference/crack/reference.xml
<?xml version="1.0" encoding="iso-8859-2"?>
<!-- EN-Revision: 1.5 Maintainer: joseph Status: ready -->
 <reference id="ref.crack">
  <title>Crack functions</title>
  <titleabbrev>Crack funkcie</titleabbrev>

  <partintro>
   <section id="crack.intro">
    &reftitle.intro;
    <para>
     Tieto funkcie vám umo¾òujú pou¾íva» CrackLib kni¾nicu na testovanie
     'sily' hesla. Test 'sily' hesla zahàòa testovanie då¾ky, pou¾itie
     veµkých a malých písmen a kontrola urèenou CrackLib kni¾nicou.
     CrackLib tie¾ podáva pomocné diagnostické správy, ktoré pomô¾u
     heslo 'zosilni»'.
    </para>
   </section>

   <section id="crack.requirements">
    &reftitle.required;
    <para>
     Viac informácii ohµadne CrackLib spolu s kni¾nicou mô¾ete nájs» na
     <ulink url="&url.crack;">&url.crack;</ulink>.
    </para>
   </section>
    
   &reference.crack.configure;

   &reference.crack.ini;

   <section id="crack.resources">
    &reftitle.resources;
    &no.resource;
   </section>

   <section id="crack.constants">
    &reftitle.constants;
    &no.constants;
   </section>

   <section id="crack.examples">
    &reftitle.examples;
    <para>
     Tento príklad ukazuje ako otvori» CrackLib slovník, otestuje dané
     heslo, získa nejaké diagnostické správy a zatvorí slovník.
     <example>
      <title>CrackLib príklad</title>
       <programlisting role="php">
<![CDATA[
<?php
// Otvor CrackLib Slovnik
$slovnik = crack_opendict('/usr/local/lib/pw_dict')
     or die('CrackLib slovnik sa neda otvorit');

// Vykonaj kontrolu hesla
$kontrola = crack_check($slovnik, 'gx9A2s0x');

// Ziskaj spravy
$diag = crack_getlastmessage();
echo $diag; // 'silne heslo'

// Zatvor slovnik
crack_closedict($slovnik);
?>
]]>
       </programlisting>
     </example>
    </para>
    <note>
     <para>
      Ak <function>crack_check</function> vracia &true;,
      <function>crack_getlastmessage</function> vráti 'strong password'.
     </para>
    </note>
   </section>
  </partintro>

&reference.crack.functions;

 </reference>
 <!-- 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
 -->