didou Mon May 10 08:12:00 2004 EDT
Modified files: /phpdoc/en language-snippets.ent /phpdoc/en/reference/dom/functions dom-domdocument-createattribute.xml dom-domdocument-createattributens.xml dom-domdocument-createcdatasection.xml dom-domdocument-createcomment.xml dom-domdocument-createdocumentfragment.xml dom-domdocument-createelement.xml dom-domdocument-createelementns.xml dom-domdocument-createentityreference.xml dom-domdocument-createprocessinginstruction.xml dom-domdocument-createtextnode.xml Log: new entity
http://cvs.php.net/diff.php/phpdoc/en/language-snippets.ent?r1=1.84&r2=1.85&ty=u Index: phpdoc/en/language-snippets.ent diff -u phpdoc/en/language-snippets.ent:1.84 phpdoc/en/language-snippets.ent:1.85 --- phpdoc/en/language-snippets.ent:1.84 Tue Apr 27 20:07:33 2004 +++ phpdoc/en/language-snippets.ent Mon May 10 08:11:59 2004 @@ -1,4 +1,4 @@ -<!-- $Revision: 1.84 $ --> +<!-- $Revision: 1.85 $ --> <!ENTITY warn.experimental '<warning><simpara>This extension is <emphasis>EXPERIMENTAL</emphasis>. The behaviour of this extension -- @@ -115,6 +115,11 @@ <!ENTITY node.inserted 'This node will not show up in the document unless it is inserted with e.g. <function>domnode_append_child</function>.'> +<!-- Dom Notes --> +<!ENTITY dom.node.inserted 'This node will not show up in the document unless +it is inserted with e.g. <link +linkend="function.dom-domnode-appendchild">DOMNode->appendChild()</link>.'> + <!-- Various notes --> <!ENTITY note.randomseed '<note><simpara>As of PHP 4.2.0, there is no need to seed the random number generator with <function>srand</function> or http://cvs.php.net/diff.php/phpdoc/en/reference/dom/functions/dom-domdocument-createattribute.xml?r1=1.1&r2=1.2&ty=u Index: phpdoc/en/reference/dom/functions/dom-domdocument-createattribute.xml diff -u phpdoc/en/reference/dom/functions/dom-domdocument-createattribute.xml:1.1 phpdoc/en/reference/dom/functions/dom-domdocument-createattribute.xml:1.2 --- phpdoc/en/reference/dom/functions/dom-domdocument-createattribute.xml:1.1 Sun May 9 11:07:48 2004 +++ phpdoc/en/reference/dom/functions/dom-domdocument-createattribute.xml Mon May 10 08:11:59 2004 @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="iso-8859-1"?> -<!-- $Revision: 1.1 $ --> +<!-- $Revision: 1.2 $ --> <refentry id="function.dom-domdocument-createattribute"> <refnamediv> <refname>DOMDocument->createAttribute</refname> @@ -13,9 +13,8 @@ </methodsynopsis> <para> This function returns a new instance of class <classname>DOMAttr</classname>. - The name of the attribute is the value of the first parameter. This node - will not show up in the document unless it is inserted with e.g. - <link linkend="function.dom-domnode-appendchild">DOMNode->appendChild()</link>. + The name of the attribute is the value of the first parameter. + &dom.node.inserted; </para> <para> The return value is &false; if an error occurred. http://cvs.php.net/diff.php/phpdoc/en/reference/dom/functions/dom-domdocument-createattributens.xml?r1=1.1&r2=1.2&ty=u Index: phpdoc/en/reference/dom/functions/dom-domdocument-createattributens.xml diff -u phpdoc/en/reference/dom/functions/dom-domdocument-createattributens.xml:1.1 phpdoc/en/reference/dom/functions/dom-domdocument-createattributens.xml:1.2 --- phpdoc/en/reference/dom/functions/dom-domdocument-createattributens.xml:1.1 Sun May 9 11:07:48 2004 +++ phpdoc/en/reference/dom/functions/dom-domdocument-createattributens.xml Mon May 10 08:11:59 2004 @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="iso-8859-1"?> -<!-- $Revision: 1.1 $ --> +<!-- $Revision: 1.2 $ --> <refentry id="function.dom-domdocument-createattributens"> <refnamediv> <refname>DOMDocument->createAttributeNS</refname> @@ -18,9 +18,8 @@ This function returns a new instance of class <classname>DOMAttr</classname>. The tag name and prefix of the attribute is determined by the value of the passed parameter <parameter>qualifiedName</parameter>. The URI of the - namespace is the value of <parameter>namespaceURI</parameter>. This node - will not show up in the document unless it is inserted with e.g. - <link linkend="function.dom-domnode-appendchild">DOMNode->appendChild()</link>. + namespace is the value of <parameter>namespaceURI</parameter>. + &dom.node.inserted; </para> <para> The return value is &false; if an error occurred. http://cvs.php.net/diff.php/phpdoc/en/reference/dom/functions/dom-domdocument-createcdatasection.xml?r1=1.1&r2=1.2&ty=u Index: phpdoc/en/reference/dom/functions/dom-domdocument-createcdatasection.xml diff -u phpdoc/en/reference/dom/functions/dom-domdocument-createcdatasection.xml:1.1 phpdoc/en/reference/dom/functions/dom-domdocument-createcdatasection.xml:1.2 --- phpdoc/en/reference/dom/functions/dom-domdocument-createcdatasection.xml:1.1 Sun May 9 11:07:48 2004 +++ phpdoc/en/reference/dom/functions/dom-domdocument-createcdatasection.xml Mon May 10 08:11:59 2004 @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="iso-8859-1"?> -<!-- $Revision: 1.1 $ --> +<!-- $Revision: 1.2 $ --> <refentry id="function.dom-domdocument-createcdatasection"> <refnamediv> <refname>DOMDocument->createCDATASection</refname> @@ -14,9 +14,7 @@ <para> This function returns a new instance of class <classname>DOMCDATASection</classname>. The content of the cdata is the - value of the passed parameter. This node will not show up in the - document unless it is inserted with e.g. - <link linkend="function.dom-domnode-appendchild">DOMNode->appendChild()</link>. + value of the passed parameter. &dom.node.inserted; </para> <para> The return value is &false; if an error occurred. http://cvs.php.net/diff.php/phpdoc/en/reference/dom/functions/dom-domdocument-createcomment.xml?r1=1.1&r2=1.2&ty=u Index: phpdoc/en/reference/dom/functions/dom-domdocument-createcomment.xml diff -u phpdoc/en/reference/dom/functions/dom-domdocument-createcomment.xml:1.1 phpdoc/en/reference/dom/functions/dom-domdocument-createcomment.xml:1.2 --- phpdoc/en/reference/dom/functions/dom-domdocument-createcomment.xml:1.1 Sun May 9 11:07:48 2004 +++ phpdoc/en/reference/dom/functions/dom-domdocument-createcomment.xml Mon May 10 08:11:59 2004 @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="iso-8859-1"?> -<!-- $Revision: 1.1 $ --> +<!-- $Revision: 1.2 $ --> <refentry id="function.dom-domdocument-createcomment"> <refnamediv> <refname>DOMDocument->createComment</refname> @@ -14,9 +14,7 @@ <para> This function returns a new instance of class <classname>DOMComment</classname>. The content of the comment is the - value of the passed parameter. This node will not show up in the - document unless it is inserted with e.g. - <link linkend="function.dom-domnode-appendchild">DOMNode->appendChild()</link>. + value of the passed parameter. &dom.node.inserted; </para> <para> The return value is &false; if an error occurred. http://cvs.php.net/diff.php/phpdoc/en/reference/dom/functions/dom-domdocument-createdocumentfragment.xml?r1=1.1&r2=1.2&ty=u Index: phpdoc/en/reference/dom/functions/dom-domdocument-createdocumentfragment.xml diff -u phpdoc/en/reference/dom/functions/dom-domdocument-createdocumentfragment.xml:1.1 phpdoc/en/reference/dom/functions/dom-domdocument-createdocumentfragment.xml:1.2 --- phpdoc/en/reference/dom/functions/dom-domdocument-createdocumentfragment.xml:1.1 Sun May 9 11:07:48 2004 +++ phpdoc/en/reference/dom/functions/dom-domdocument-createdocumentfragment.xml Mon May 10 08:11:59 2004 @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="iso-8859-1"?> -<!-- $Revision: 1.1 $ --> +<!-- $Revision: 1.2 $ --> <refentry id="function.dom-domdocument-createdocumentfragment"> <refnamediv> <refname>DOMDocument->createDocumentFragment</refname> @@ -13,9 +13,8 @@ </methodsynopsis> <para> This function returns a new instance of class <classname>DOMAttr</classname>. - The name of the attribute is the value of the first parameter. This node - will not show up in the document unless it is inserted with e.g. - <link linkend="function.dom-domnode-appendchild">DOMNode->appendChild</link>. + The name of the attribute is the value of the first parameter. + &dom.node.inserted; </para> <para> The return value is &false; if an error occurred. http://cvs.php.net/diff.php/phpdoc/en/reference/dom/functions/dom-domdocument-createelement.xml?r1=1.1&r2=1.2&ty=u Index: phpdoc/en/reference/dom/functions/dom-domdocument-createelement.xml diff -u phpdoc/en/reference/dom/functions/dom-domdocument-createelement.xml:1.1 phpdoc/en/reference/dom/functions/dom-domdocument-createelement.xml:1.2 --- phpdoc/en/reference/dom/functions/dom-domdocument-createelement.xml:1.1 Sun May 9 11:07:48 2004 +++ phpdoc/en/reference/dom/functions/dom-domdocument-createelement.xml Mon May 10 08:11:59 2004 @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="iso-8859-1"?> -<!-- $Revision: 1.1 $ --> +<!-- $Revision: 1.2 $ --> <refentry id="function.dom-domdocument-createelement"> <refnamediv> <refname>DOMDocument->createElement</refname> @@ -16,9 +16,7 @@ This function returns a new instance of class <classname>DOMElement</classname>. The tag name of the element is the value of the name parameter. Optionally, a value for the new element may - also be passed in. This node will not show up in the document unless it - is inserted with e.g. - <link linkend="function.dom-domnode-appendchild">DOMNode->appendChild()</link>. + also be passed in. &dom.node.inserted; </para> <para> The return value is &false; if an error occurred. http://cvs.php.net/diff.php/phpdoc/en/reference/dom/functions/dom-domdocument-createelementns.xml?r1=1.1&r2=1.2&ty=u Index: phpdoc/en/reference/dom/functions/dom-domdocument-createelementns.xml diff -u phpdoc/en/reference/dom/functions/dom-domdocument-createelementns.xml:1.1 phpdoc/en/reference/dom/functions/dom-domdocument-createelementns.xml:1.2 --- phpdoc/en/reference/dom/functions/dom-domdocument-createelementns.xml:1.1 Sun May 9 11:07:48 2004 +++ phpdoc/en/reference/dom/functions/dom-domdocument-createelementns.xml Mon May 10 08:11:59 2004 @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="iso-8859-1"?> -<!-- $Revision: 1.1 $ --> +<!-- $Revision: 1.2 $ --> <refentry id="function.dom-domdocument-createelementns"> <refnamediv> <refname>DOMDocument->createElementNS</refname> @@ -19,9 +19,7 @@ <classname>DOMElement</classname>. The tag name and prefix of the element 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>. This node will not show up in the - document unless it is inserted with e.g. - <link linkend="function.dom-domnode-appendchild">DOMNode->appendChild()</link>. + <parameter>namespaceURI</parameter>. &dom.node.inserted; </para> <para> The return value is &false; if an error occurred. http://cvs.php.net/diff.php/phpdoc/en/reference/dom/functions/dom-domdocument-createentityreference.xml?r1=1.1&r2=1.2&ty=u Index: phpdoc/en/reference/dom/functions/dom-domdocument-createentityreference.xml diff -u phpdoc/en/reference/dom/functions/dom-domdocument-createentityreference.xml:1.1 phpdoc/en/reference/dom/functions/dom-domdocument-createentityreference.xml:1.2 --- phpdoc/en/reference/dom/functions/dom-domdocument-createentityreference.xml:1.1 Sun May 9 11:07:48 2004 +++ phpdoc/en/reference/dom/functions/dom-domdocument-createentityreference.xml Mon May 10 08:11:59 2004 @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="iso-8859-1"?> -<!-- $Revision: 1.1 $ --> +<!-- $Revision: 1.2 $ --> <refentry id="function.dom-domdocument-createentityreference"> <refnamediv> <refname>DOMDocument->createEntityReference</refname> @@ -14,10 +14,7 @@ <para> This function returns a new instance of class <classname>DOMEntityReference</classname>. The content of the entity - reference is the - value of the passed parameter. This node will not show up in the - document unless it is inserted with e.g. - <link linkend="function.dom-domnode-appendchild">DOMNode->appendChild()</link>. + reference is the value of the passed parameter. &dom.node.inserted; </para> <para> The return value is &false; if an error occurred. http://cvs.php.net/diff.php/phpdoc/en/reference/dom/functions/dom-domdocument-createprocessinginstruction.xml?r1=1.1&r2=1.2&ty=u Index: phpdoc/en/reference/dom/functions/dom-domdocument-createprocessinginstruction.xml diff -u phpdoc/en/reference/dom/functions/dom-domdocument-createprocessinginstruction.xml:1.1 phpdoc/en/reference/dom/functions/dom-domdocument-createprocessinginstruction.xml:1.2 --- phpdoc/en/reference/dom/functions/dom-domdocument-createprocessinginstruction.xml:1.1 Sun May 9 11:07:48 2004 +++ phpdoc/en/reference/dom/functions/dom-domdocument-createprocessinginstruction.xml Mon May 10 08:12:00 2004 @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="iso-8859-1"?> -<!-- $Revision: 1.1 $ --> +<!-- $Revision: 1.2 $ --> <refentry id="function.dom-domdocument-createprocessinginstruction"> <refnamediv> <refname>DOMDocument->createProcessingInstruction</refname> @@ -15,9 +15,7 @@ <para> This function returns a new instance of class <classname>DOMProcessingInstruction</classname>. The content of the pi is the - value of the passed parameter. This node will not show up in the - document unless it is inserted with e.g. - <link linkend="function.dom-domnode-appendchild">DOMNode->appendChild()</link>. + value of the passed parameter. &dom.node.inserted; </para> <para> The return value is &false; if an error occurred. http://cvs.php.net/diff.php/phpdoc/en/reference/dom/functions/dom-domdocument-createtextnode.xml?r1=1.1&r2=1.2&ty=u Index: phpdoc/en/reference/dom/functions/dom-domdocument-createtextnode.xml diff -u phpdoc/en/reference/dom/functions/dom-domdocument-createtextnode.xml:1.1 phpdoc/en/reference/dom/functions/dom-domdocument-createtextnode.xml:1.2 --- phpdoc/en/reference/dom/functions/dom-domdocument-createtextnode.xml:1.1 Sun May 9 11:07:48 2004 +++ phpdoc/en/reference/dom/functions/dom-domdocument-createtextnode.xml Mon May 10 08:12:00 2004 @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="iso-8859-1"?> -<!-- $Revision: 1.1 $ --> +<!-- $Revision: 1.2 $ --> <refentry id="function.dom-domdocument-createtextnode"> <refnamediv> <refname>DOMDocument->createTextNode</refname> @@ -14,10 +14,7 @@ <para> This function returns a new instance of class <classname>DOMText</classname>. The content of the text is the value of - the passed - parameter. This node will not show up in the - document unless it is inserted with e.g. - <link linkend="function.dom-domnode-appendchild">DOMNode->appendChild()</link>. + the passed parameter. &dom.node.inserted; </para> <para> The return value is &false; if an error occurred.