jeroen Mon Jun 25 01:13:23 2001 EDT
Modified files:
/phpdoc TODO
/phpdoc/en/functions domxml.xml satellite.xml shmop.xml
Log:
Fixed some identifiers. Updated TODO
Index: phpdoc/TODO
diff -u phpdoc/TODO:1.2 phpdoc/TODO:1.3
--- phpdoc/TODO:1.2 Sun Jun 24 17:27:21 2001
+++ phpdoc/TODO Mon Jun 25 01:13:22 2001
@@ -8,38 +8,9 @@
URGENT:
- Note in sockets that the documentation is outdated, that
- it has always been experimental (until 4.0.6, that is),
- and that scripts that worked with PHP <= 4.0.5 will
- definitely NOT work with 4.0.6 or above. Not only
- has there been renaming, the way the funcs work also
- changed dramatically.
- - Check out wether there are more experimental modules,
- and CLEARLY state so in the documentation.
-
- ( find php4 | grep EXPERIMENTAL :
- ./ext/crack/EXPERIMENTAL
- ./ext/ctype/EXPERIMENTAL
- ./ext/dbx/EXPERIMENTAL
- ./ext/domxml/EXPERIMENTAL
- ./ext/dotnet/EXPERIMENTAL
- ./ext/fbsql/EXPERIMENTAL
- ./ext/iconv/EXPERIMENTAL
- ./ext/ingres_ii/EXPERIMENTAL
- ./ext/mailparse/EXPERIMENTAL
- ./ext/mbstring/EXPERIMENTAL
- ./ext/ming/EXPERIMENTAL
- ./ext/muscat/EXPERIMENTAL
- ./ext/ncurses/EXPERIMENTAL
- ./ext/openssl/EXPERIMENTAL
- ./ext/pcntl/EXPERIMENTAL
- ./ext/qtdom/EXPERIMENTAL
- ./ext/sablot/EXPERIMENTAL
- ./ext/satellite/EXPERIMENTAL
- ./ext/skeleton/EXPERIMENTAL
- ./ext/sockets/EXPERIMENTAL
- ./ext/vpopmail/EXPERIMENTAL
- ./ext/xslt/EXPERIMENTAL
- )
+ it has always been experimental.
+ The API may be changing soon. Currently it is discussed
+ in PHP-DEV.
GENERAL:
@@ -61,6 +32,8 @@
- print_r will NOT continue forever anymore on recursive arr's.
- var_dump also not, but vardump simply quits at a too-high
nesting level.
+ - Remark in shmop.xml whether or not the old shm_* funcnames still
+ work in the current version of PHP. (search for the TODO mark)
(from php4/TODO):
- improve documentation for the sablotron extension
Index: phpdoc/en/functions/domxml.xml
diff -u phpdoc/en/functions/domxml.xml:1.13 phpdoc/en/functions/domxml.xml:1.14
--- phpdoc/en/functions/domxml.xml:1.13 Sun Jun 24 17:27:21 2001
+++ phpdoc/en/functions/domxml.xml Mon Jun 25 01:13:22 2001
@@ -491,7 +491,7 @@
</refsect1>
</refentry>
- <refentry id="function.domxml_root">
+ <refentry id="function.domxml-root">
<refnamediv>
<refname>domxml_root</refname>
<refpurpose>
@@ -554,7 +554,7 @@
</refsect1>
</refentry>
- <refentry id="function.domxml_add_root">
+ <refentry id="function.domxml-add-root">
<refnamediv>
<refname>domxml_add_root</refname>
<refpurpose>
@@ -580,18 +580,18 @@
<programlisting>
<?php
$doc = new_xmldoc("1.0");
-$root = $doc->add_root("HTML");
-$head = $root->new_child("HEAD", "");
-$head->new_child("TITLE", "Hier der Titel");
-echo $doc->dumpmem();
-?>
+$root = $doc->add_root("HTML");
+$head = $root->new_child("HEAD", "");
+$head->new_child("TITLE", "Hier der Titel");
+echo $doc->dumpmem();
+?>
</programlisting>
</example>
</para>
</refsect1>
</refentry>
- <refentry id="function.domxml_dumpmem">
+ <refentry id="function.domxml-dumpmem">
<refnamediv>
<refname>domxml_dumpmem</refname>
<refpurpose>
@@ -617,7 +617,7 @@
</refsect1>
</refentry>
- <refentry id="function.domxml_attributes">
+ <refentry id="function.domxml-attributes">
<refnamediv>
<refname>domxml_attributes</refname>
<refpurpose>
@@ -639,7 +639,7 @@
</refsect1>
</refentry>
- <refentry id="function.domxml_get_attribute">
+ <refentry id="function.domxml-get-attribute">
<refnamediv>
<refname>domxml_get_attribute</refname>
<refpurpose>
@@ -665,7 +665,7 @@
</refsect1>
</refentry>
- <refentry id="function.domxml_set_attribute">
+ <refentry id="function.domxml-set-attribute">
<refnamediv>
<refname>domxml_set_attribute</refname>
<refpurpose>
@@ -706,7 +706,7 @@
</refsect1>
</refentry>
- <refentry id="function.domxml_children">
+ <refentry id="function.domxml-children">
<refnamediv>
<refname>domxml_children</refname>
<refpurpose>
@@ -745,7 +745,7 @@
</refsect1>
</refentry>
- <refentry id="function.domxml_new_child">
+ <refentry id="function.domxml-new-child">
<refnamediv>
<refname>domxml_new_child</refname>
<refpurpose>
@@ -767,7 +767,7 @@
</refsect1>
</refentry>
- <refentry id="function.domxml_new_xmldoc">
+ <refentry id="function.domxml-new-xmldoc">
<refnamediv>
<refname>domxml_new_xmldoc</refname>
<refpurpose>
@@ -791,7 +791,7 @@
</refsect1>
</refentry>
- <refentry id="function.xpath_new_context">
+ <refentry id="function.xpath-new-context">
<refnamediv>
<refname>xpath_new_context</refname>
<refpurpose>
@@ -814,7 +814,7 @@
</refsect1>
</refentry>
- <refentry id="function.xpath_eval">
+ <refentry id="function.xpath-eval">
<refnamediv>
<refname>xpath_eval</refname>
<refpurpose>
Index: phpdoc/en/functions/satellite.xml
diff -u phpdoc/en/functions/satellite.xml:1.5 phpdoc/en/functions/satellite.xml:1.6
--- phpdoc/en/functions/satellite.xml:1.5 Sun Jun 24 17:27:21 2001
+++ phpdoc/en/functions/satellite.xml Mon Jun 25 01:13:22 2001
@@ -1,6 +1,6 @@
<!--
- $Id: satellite.xml,v 1.5 2001/06/24 15:27:21 jeroen Exp $
+ $Id: satellite.xml,v 1.6 2001/06/24 23:13:22 jeroen Exp $
Author: David Eriksson <[EMAIL PROTECTED]>
@@ -179,7 +179,7 @@
</refsect1>
</refentry>
- <refentry id="function.satellite_caught_exception">
+ <refentry id="function.satellite-caught-exception">
<refnamediv>
<refname>satellite_caught_exception</refname>
<refpurpose>
@@ -236,7 +236,7 @@
</refsect1>
</refentry>
- <refentry id="function.satellite_exception_id">
+ <refentry id="function.satellite-exception-id">
<refnamediv>
<refname>satellite_exception_id</refname>
<refpurpose>Get the repository id for the latest excetpion.</refpurpose>
@@ -257,7 +257,7 @@
</refsect1>
</refentry>
- <refentry id="function.satellite_exception_value">
+ <refentry id="function.satellite-exception-value">
<refnamediv>
<refname>satellite_exception_value</refname>
<refpurpose>
Index: phpdoc/en/functions/shmop.xml
diff -u phpdoc/en/functions/shmop.xml:1.4 phpdoc/en/functions/shmop.xml:1.5
--- phpdoc/en/functions/shmop.xml:1.4 Sat Oct 21 03:35:44 2000
+++ phpdoc/en/functions/shmop.xml Mon Jun 25 01:13:22 2001
@@ -12,10 +12,10 @@
</para>
<note>
<simpara>
- The functions explained in the chapter begin all with
- <function>shm_</function> in PHP 4.0.3, but in PHP 4.0.4 and later
- versions these names are changed to begin with
- <function>shmop_</function>.
+ In PHP 4.0.3, there functions were prefixed by <literal>shm</literal>
+ rather than <literal>shmop</literal>.
+ <!-- TODO: do the old shm_* funcs still work, i.e. are they still
+ aliased? -->
</simpara>
</note>
<para>
@@ -59,7 +59,7 @@
</para>
</partintro>
- <refentry id="function.shmop_open">
+ <refentry id="function.shmop-open">
<refnamediv>
<refname>shmop_open</refname>
<refpurpose>Create or open shared memory block</refpurpose>
@@ -124,7 +124,7 @@
</refsect1>
</refentry>
- <refentry id="function.shmop_read">
+ <refentry id="function.shmop-read">
<refnamediv>
<refname>shmop_read</refname>
<refpurpose>Read data from shared memory block</refpurpose>
@@ -164,7 +164,7 @@
</refsect1>
</refentry>
- <refentry id="function.shmop_write">
+ <refentry id="function.shmop-write">
<refnamediv>
<refname>shmop_write</refname>
<refpurpose>Write data into shared memory block</refpurpose>
@@ -206,7 +206,7 @@
</refsect1>
</refentry>
- <refentry id="function.size">
+ <refentry id="function.shmop-size">
<refnamediv>
<refname>shmop_size</refname>
<refpurpose>Get size of shared memory block</refpurpose>
@@ -246,7 +246,7 @@
</refsect1>
</refentry>
- <refentry id="function.shmop_delete">
+ <refentry id="function.shmop-delete">
<refnamediv>
<refname>shmop_delete</refname>
<refpurpose>Delete shared memory block</refpurpose>
@@ -284,7 +284,7 @@
</refsect1>
</refentry>
- <refentry id="function.shmop_close">
+ <refentry id="function.shmop-close">
<refnamediv>
<refname>shmop_close</refname>
<refpurpose>Close shared memory block</refpurpose>