didou Fri Dec 17 12:51:21 2004 EDT
Modified files:
/phpdoc/en/reference/dom reference.xml
/phpdoc/en/reference/dom/functions
dom-domdocument-createelementns.xml
dom-domdocument-importnode.xml
dom-domdocument-schemaValidate.xml
Log:
user notes
http://cvs.php.net/diff.php/phpdoc/en/reference/dom/reference.xml?r1=1.4&r2=1.5&ty=u
Index: phpdoc/en/reference/dom/reference.xml
diff -u phpdoc/en/reference/dom/reference.xml:1.4
phpdoc/en/reference/dom/reference.xml:1.5
--- phpdoc/en/reference/dom/reference.xml:1.4 Fri Dec 17 11:15:37 2004
+++ phpdoc/en/reference/dom/reference.xml Fri Dec 17 12:51:20 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.4 $ -->
+<!-- $Revision: 1.5 $ -->
<reference id="ref.dom">
<title>DOM Functions</title>
<titleabbrev>DOM</titleabbrev>
@@ -325,7 +325,7 @@
<entry>preserveWhiteSpace</entry>
<entry>bool</entry>
<entry>no</entry>
- <entry></entry>
+ <entry>Do not remove redundant white space. Default to
&true;.</entry>
</row>
<row>
<entry>recover</entry>
@@ -353,7 +353,7 @@
<entry>strictErrorChecking</entry>
<entry>bool</entry>
<entry>no</entry>
- <entry></entry>
+ <entry>Throws DOMException on errors. Default to &true;.</entry>
</row>
<row>
<entry>substituteEntities</entry>
@@ -365,7 +365,7 @@
<entry>validateOnParse</entry>
<entry>bool</entry>
<entry>no</entry>
- <entry></entry>
+ <entry>Loads and validates against the DTD. Default to
&false;.</entry>
</row>
<row>
<entry>version</entry>
http://cvs.php.net/diff.php/phpdoc/en/reference/dom/functions/dom-domdocument-createelementns.xml?r1=1.5&r2=1.6&ty=u
Index: phpdoc/en/reference/dom/functions/dom-domdocument-createelementns.xml
diff -u
phpdoc/en/reference/dom/functions/dom-domdocument-createelementns.xml:1.5
phpdoc/en/reference/dom/functions/dom-domdocument-createelementns.xml:1.6
--- phpdoc/en/reference/dom/functions/dom-domdocument-createelementns.xml:1.5
Fri Dec 17 10:11:30 2004
+++ phpdoc/en/reference/dom/functions/dom-domdocument-createelementns.xml
Fri Dec 17 12:51:21 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.5 $ -->
+<!-- $Revision: 1.6 $ -->
<refentry id="function.dom-domdocument-createelementns">
<refnamediv>
<refname>DOMDocument->createElementNS</refname>
@@ -16,12 +16,13 @@
<methodname>createElementNS</methodname>
<methodparam><type>string</type><parameter>namespaceURI</parameter></methodparam>
<methodparam><type>string</type><parameter>qualifiedName</parameter></methodparam>
+ <methodparam
choice="opt"><type>string</type><parameter>value</parameter></methodparam>
</methodsynopsis>
</classsynopsis>
<para>
This function returns a new instance of class
<classname>DOMElement</classname>. The tag name and prefix of the element
- is determined by the value of the passed parameter
<parameter>qualifiedName</parameter>.
+ is determined by the value of the passed parameter
<parameter>qualifiedName</parameter>.
The URI of the namespace is the value of the passed parameter
<parameter>namespaceURI</parameter>. &dom.node.inserted;
</para>
http://cvs.php.net/diff.php/phpdoc/en/reference/dom/functions/dom-domdocument-importnode.xml?r1=1.6&r2=1.7&ty=u
Index: phpdoc/en/reference/dom/functions/dom-domdocument-importnode.xml
diff -u phpdoc/en/reference/dom/functions/dom-domdocument-importnode.xml:1.6
phpdoc/en/reference/dom/functions/dom-domdocument-importnode.xml:1.7
--- phpdoc/en/reference/dom/functions/dom-domdocument-importnode.xml:1.6
Fri Dec 17 10:11:30 2004
+++ phpdoc/en/reference/dom/functions/dom-domdocument-importnode.xml Fri Dec
17 12:51:21 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.6 $ -->
+<!-- $Revision: 1.7 $ -->
<refentry id="function.dom-domdocument-importnode">
<refnamediv>
<refname>DOMDocument->importNode</refname>
@@ -21,6 +21,10 @@
the current document. <classname>DOMException</classname> is thrown if
node cannot be imported.
</para>
+ <para>
+ If <parameter>deep</parameter> is set to &true;, this method will
recursively
+ import the subtree under the <parameter>importedNode</parameter>.
+ </para>
</refsect1>
</refentry>
http://cvs.php.net/diff.php/phpdoc/en/reference/dom/functions/dom-domdocument-schemaValidate.xml?r1=1.4&r2=1.5&ty=u
Index: phpdoc/en/reference/dom/functions/dom-domdocument-schemaValidate.xml
diff -u
phpdoc/en/reference/dom/functions/dom-domdocument-schemaValidate.xml:1.4
phpdoc/en/reference/dom/functions/dom-domdocument-schemaValidate.xml:1.5
--- phpdoc/en/reference/dom/functions/dom-domdocument-schemaValidate.xml:1.4
Fri Dec 17 10:11:30 2004
+++ phpdoc/en/reference/dom/functions/dom-domdocument-schemaValidate.xml
Fri Dec 17 12:51:21 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.4 $ -->
+<!-- $Revision: 1.5 $ -->
<refentry id="function.dom-domdocument-schemavalidate">
<refnamediv>
<refname>DOMDocument->schemaValidate</refname>
@@ -19,7 +19,7 @@
</classsynopsis>
<para>
Validates a document based on a schema defined by
- <parameter>filename</parameter>.
+ <parameter>filename</parameter>. &return.success;
</para>
<para>
See also <link
linkend="function.dom-domdocument-schemavalidatesource">DOMDocument->schemaValidateSource()</link>,