svn: /phpdoc/de/trunk/reference/hash/ book.xml functions/hash-copy.xml functions/hash-final.xml functions/hash-init.xml functions/hash-update-file.xml functions/hash-update-stream.xml functions/hash-update.xml

[email protected] (Christoph Michael Becker)
Newsgroups php.doc.de
Message-ID <[email protected]>
cmb                                      Tue, 30 Jan 2018 13:19:53 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=344108

Log:
Sync with EN

Changed paths:
    U   phpdoc/de/trunk/reference/hash/book.xml
    U   phpdoc/de/trunk/reference/hash/functions/hash-copy.xml
    U   phpdoc/de/trunk/reference/hash/functions/hash-final.xml
    U   phpdoc/de/trunk/reference/hash/functions/hash-init.xml
    U   phpdoc/de/trunk/reference/hash/functions/hash-update-file.xml
    U   phpdoc/de/trunk/reference/hash/functions/hash-update-stream.xml
    U   phpdoc/de/trunk/reference/hash/functions/hash-update.xml
svn-diffs-344108.txt (text/x-diff, 11.4 KB)
Modified: phpdoc/de/trunk/reference/hash/book.xml
===================================================================
--- phpdoc/de/trunk/reference/hash/book.xml	2018-01-30 13:16:34 UTC (rev 344107)
+++ phpdoc/de/trunk/reference/hash/book.xml	2018-01-30 13:19:53 UTC (rev 344108)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 330340 Maintainer: nikic Status: ready -->
+<!-- EN-Revision: 344012 Maintainer: nikic Status: ready -->
 <!-- State: experimental -->

 <book xml:id="book.hash" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
@@ -22,6 +22,7 @@

  &reference.hash.setup;
  &reference.hash.constants;
+ &reference.hash.hashcontext;
  &reference.hash.reference;

 </book>

Modified: phpdoc/de/trunk/reference/hash/functions/hash-copy.xml
===================================================================
--- phpdoc/de/trunk/reference/hash/functions/hash-copy.xml	2018-01-30 13:16:34 UTC (rev 344107)
+++ phpdoc/de/trunk/reference/hash/functions/hash-copy.xml	2018-01-30 13:19:53 UTC (rev 344108)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 297028 Maintainer: raphaelm Status: ready -->
+<!-- EN-Revision: 344006 Maintainer: raphaelm Status: ready -->
 <refentry xml:id="function.hash-copy" xmlns="http://docbook.org/ns/docbook">
  <refnamediv>
   <refname>hash_copy</refname>
@@ -9,8 +9,8 @@
  <refsect1 role="description">
   &reftitle.description;
   <methodsynopsis>
-   <type>resource</type><methodname>hash_copy</methodname>
-   <methodparam><type>resource</type><parameter>context</parameter></methodparam>
+   <type>HashContext</type><methodname>hash_copy</methodname>
+   <methodparam><type>HashContext</type><parameter>context</parameter></methodparam>
   </methodsynopsis>
  </refsect1>

@@ -37,6 +37,31 @@
   </para>
  </refsect1>

+ <refsect1 role="changelog">
+  &reftitle.changelog;
+  <para>
+   <informaltable>
+    <tgroup cols="2">
+     <thead>
+      <row>
+       <entry>&Version;</entry>
+       <entry>&Description;</entry>
+      </row>
+     </thead>
+     <tbody>
+      <row>
+       <entry>7.2.0</entry>
+       <entry>
+        Erwartet und liefert nun einen <classname>HashContext</classname>
+        anstatt einer Ressource zurück.
+       </entry>
+      </row>
+     </tbody>
+    </tgroup>
+   </informaltable>
+  </para>
+ </refsect1>
+
  <refsect1 role="examples">
   &reftitle.examples;
   <para>

Modified: phpdoc/de/trunk/reference/hash/functions/hash-final.xml
===================================================================
--- phpdoc/de/trunk/reference/hash/functions/hash-final.xml	2018-01-30 13:16:34 UTC (rev 344107)
+++ phpdoc/de/trunk/reference/hash/functions/hash-final.xml	2018-01-30 13:19:53 UTC (rev 344108)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 343899 Maintainer: raphaelm Status: ready -->
+<!-- EN-Revision: 344006 Maintainer: raphaelm Status: ready -->
 <refentry xml:id="function.hash-final" xmlns="http://docbook.org/ns/docbook">
  <refnamediv>
   <refname>hash_final</refname>
@@ -10,7 +10,7 @@
   &reftitle.description;
   <methodsynopsis>
    <type>string</type><methodname>hash_final</methodname>
-   <methodparam><type>resource</type><parameter>context</parameter></methodparam>
+   <methodparam><type>HashContext</type><parameter>context</parameter></methodparam>
    <methodparam choice="opt"><type>bool</type><parameter>raw_output</parameter><initializer>&false;</initializer></methodparam>
   </methodsynopsis>

@@ -50,6 +50,31 @@
   </para>
  </refsect1>

+ <refsect1 role="changelog">
+  &reftitle.changelog;
+  <para>
+   <informaltable>
+    <tgroup cols="2">
+     <thead>
+      <row>
+       <entry>&Version;</entry>
+       <entry>&Description;</entry>
+      </row>
+     </thead>
+     <tbody>
+      <row>
+       <entry>7.2.0</entry>
+       <entry>
+        Erwartet nun einen <classname>HashContext</classname> anstatt einer
+        Ressource.
+       </entry>
+      </row>
+     </tbody>
+    </tgroup>
+   </informaltable>
+  </para>
+ </refsect1>
+
  <refsect1 role="examples">
   &reftitle.examples;
   <para>

Modified: phpdoc/de/trunk/reference/hash/functions/hash-init.xml
===================================================================
--- phpdoc/de/trunk/reference/hash/functions/hash-init.xml	2018-01-30 13:16:34 UTC (rev 344107)
+++ phpdoc/de/trunk/reference/hash/functions/hash-init.xml	2018-01-30 13:19:53 UTC (rev 344108)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 342106 Maintainer: raphaelm Status: ready -->
+<!-- EN-Revision: 344006 Maintainer: raphaelm Status: ready -->
 <!-- Generated by xml_proto.php v2.3. Found in /scripts directory of phpdoc. -->
 <refentry xml:id="function.hash-init" xmlns="http://docbook.org/ns/docbook">
  <refnamediv>
@@ -10,7 +10,7 @@
  <refsect1 role="description">
   &reftitle.description;
   <methodsynopsis>
-   <type>resource</type><methodname>hash_init</methodname>
+   <type>HashContext</type><methodname>hash_init</methodname>
    <methodparam><type>string</type><parameter>algo</parameter></methodparam>
    <methodparam choice="opt"><type>int</type><parameter>options</parameter><initializer>0</initializer></methodparam>
    <methodparam choice="opt"><type>string</type><parameter>key</parameter><initializer>&null;</initializer></methodparam>
@@ -59,7 +59,7 @@
  <refsect1 role="returnvalues">
   &reftitle.returnvalues;
   <para>
-   Gibt eine Hashing-Kontextressource zur Nutzung mit <function>hash_update</function>,
+   Gibt einen Hashing-Kontext zur Nutzung mit <function>hash_update</function>,
    <function>hash_update_stream</function>, <function>hash_update_file</function>,
    und <function>hash_final</function> zurück.
   </para>
@@ -81,6 +81,13 @@
        <entry>7.2.0</entry>
        <entry>Die Verwendung nicht-kryptografischer Hashfunktionen (adler32, crc32, crc32b, fnv132, fnv1a32, fnv164, fnv1a64, joaat) mit <constant>HASH_HMAC</constant> ist nicht mehr möglich.</entry>
       </row>
+      <row>
+       <entry>7.2.0</entry>
+       <entry>
+        Liefert nun einen <classname>HashContext</classname> anstatt einer
+        Ressource zurück.
+       </entry>
+      </row>
      </tbody>
     </tgroup>
    </informaltable>

Modified: phpdoc/de/trunk/reference/hash/functions/hash-update-file.xml
===================================================================
--- phpdoc/de/trunk/reference/hash/functions/hash-update-file.xml	2018-01-30 13:16:34 UTC (rev 344107)
+++ phpdoc/de/trunk/reference/hash/functions/hash-update-file.xml	2018-01-30 13:19:53 UTC (rev 344108)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 331807 Maintainer: raphaelm Status: ready -->
+<!-- EN-Revision: 344006 Maintainer: raphaelm Status: ready -->
 <refentry xml:id="function.hash-update-file" xmlns="http://docbook.org/ns/docbook">
  <refnamediv>
   <refname>hash_update_file</refname>
@@ -10,7 +10,7 @@
   &reftitle.description;
   <methodsynopsis>
    <type>bool</type><methodname>hash_update_file</methodname>
-   <methodparam><type>resource</type><parameter>hcontext</parameter></methodparam>
+   <methodparam><type>HashContext</type><parameter>hcontext</parameter></methodparam>
    <methodparam><type>string</type><parameter>filename</parameter></methodparam>
    <methodparam choice="opt"><type>resource</type><parameter>scontext</parameter><initializer>&null;</initializer></methodparam>
   </methodsynopsis>
@@ -55,6 +55,31 @@
   </para>
  </refsect1>

+ <refsect1 role="changelog">
+  &reftitle.changelog;
+  <para>
+   <informaltable>
+    <tgroup cols="2">
+     <thead>
+      <row>
+       <entry>&Version;</entry>
+       <entry>&Description;</entry>
+      </row>
+     </thead>
+     <tbody>
+      <row>
+       <entry>7.2.0</entry>
+       <entry>
+        Erwartet nun einen <classname>HashContext</classname> anstatt einer
+        Ressource.
+       </entry>
+      </row>
+     </tbody>
+    </tgroup>
+   </informaltable>
+  </para>
+ </refsect1>
+
  <refsect1 role="seealso">
   &reftitle.seealso;
   <para>

Modified: phpdoc/de/trunk/reference/hash/functions/hash-update-stream.xml
===================================================================
--- phpdoc/de/trunk/reference/hash/functions/hash-update-stream.xml	2018-01-30 13:16:34 UTC (rev 344107)
+++ phpdoc/de/trunk/reference/hash/functions/hash-update-stream.xml	2018-01-30 13:19:53 UTC (rev 344108)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 297028 Maintainer: raphaelm Status: ready -->
+<!-- EN-Revision: 344006 Maintainer: raphaelm Status: ready -->
 <refentry xml:id="function.hash-update-stream" xmlns="http://docbook.org/ns/docbook">
  <refnamediv>
   <refname>hash_update_stream</refname>
@@ -10,7 +10,7 @@
   &reftitle.description;
   <methodsynopsis>
    <type>int</type><methodname>hash_update_stream</methodname>
-   <methodparam><type>resource</type><parameter>context</parameter></methodparam>
+   <methodparam><type>HashContext</type><parameter>context</parameter></methodparam>
    <methodparam><type>resource</type><parameter>handle</parameter></methodparam>
    <methodparam choice="opt"><type>int</type><parameter>length</parameter><initializer>-1</initializer></methodparam>
   </methodsynopsis>
@@ -56,6 +56,31 @@
   </para>
  </refsect1>

+ <refsect1 role="changelog">
+  &reftitle.changelog;
+  <para>
+   <informaltable>
+    <tgroup cols="2">
+     <thead>
+      <row>
+       <entry>&Version;</entry>
+       <entry>&Description;</entry>
+      </row>
+     </thead>
+     <tbody>
+      <row>
+       <entry>7.2.0</entry>
+       <entry>
+        Erwartet nun einen <classname>HashContext</classname> anstatt einer
+        Ressource.
+       </entry>
+      </row>
+     </tbody>
+    </tgroup>
+   </informaltable>
+  </para>
+ </refsect1>
+
  <refsect1 role="examples">
   &reftitle.examples;
   <para>

Modified: phpdoc/de/trunk/reference/hash/functions/hash-update.xml
===================================================================
--- phpdoc/de/trunk/reference/hash/functions/hash-update.xml	2018-01-30 13:16:34 UTC (rev 344107)
+++ phpdoc/de/trunk/reference/hash/functions/hash-update.xml	2018-01-30 13:19:53 UTC (rev 344108)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 297028 Maintainer: raphaelm Status: ready -->
+<!-- EN-Revision: 344006 Maintainer: raphaelm Status: ready -->
 <refentry xml:id="function.hash-update" xmlns="http://docbook.org/ns/docbook">
  <refnamediv>
   <refname>hash_update</refname>
@@ -10,7 +10,7 @@
   &reftitle.description;
   <methodsynopsis>
    <type>bool</type><methodname>hash_update</methodname>
-   <methodparam><type>resource</type><parameter>context</parameter></methodparam>
+   <methodparam><type>HashContext</type><parameter>context</parameter></methodparam>
    <methodparam><type>string</type><parameter>data</parameter></methodparam>
   </methodsynopsis>

@@ -46,6 +46,31 @@
   </para>
  </refsect1>

+ <refsect1 role="changelog">
+  &reftitle.changelog;
+  <para>
+   <informaltable>
+    <tgroup cols="2">
+     <thead>
+      <row>
+       <entry>&Version;</entry>
+       <entry>&Description;</entry>
+      </row>
+     </thead>
+     <tbody>
+      <row>
+       <entry>7.2.0</entry>
+       <entry>
+        Erwartet nun einen <classname>HashContext</classname> anstatt einer
+        Ressource.
+       </entry>
+      </row>
+     </tbody>
+    </tgroup>
+   </informaltable>
+  </para>
+ </refsect1>
+
  <refsect1 role="seealso">
   &reftitle.seealso;
   <para>
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.