didou Tue Apr 27 20:07:34 2004 EDT
Modified files:
/phpdoc/en language-snippets.ent
/phpdoc/en/reference/domxml/functions
DomDocument-create-attribute.xml
DomDocument-create-cdata-section.xml
DomDocument-create-comment.xml
DomDocument-create-element-ns.xml
DomDocument-create-element.xml
DomDocument-create-entity-reference.xml
DomDocument-create-processing-instruction.xml
DomDocument-create-text-node.xml
DomDocument-dump-file.xml
DomDocument-dump-mem.xml
DomDocument-html-dump-mem.xml
DomElement-get-elements-by-tagname.xml
DomElement-set-attribute.xml
DomNode-add-namespace.xml
DomNode-append-child.xml
DomNode-child-nodes.xml
DomNode-first-child.xml
DomNode-get-content.xml
DomNode-insert-before.xml
DomNode-last-child.xml
DomNode-set-namespace.xml
DomXsltStylesheet-process.xml
DomXsltStylesheet-result-dump-file.xml
DomXsltStylesheet-result-dump-mem.xml
domxml-open-file.xml
domxml-open-mem.xml
domxml-xslt-stylesheet-doc.xml
domxml-xslt-stylesheet-file.xml
domxml-xslt-stylesheet.xml
xpath-eval-expression.xml
xpath-eval.xml
xpath-new-context.xml
Log:
Added a new entity : &node.inserted; for DomDocument-creatXXX
s/\t/ /
Cleaned See Also sections
http://cvs.php.net/diff.php/phpdoc/en/language-snippets.ent?r1=1.83&r2=1.84&ty=u
Index: phpdoc/en/language-snippets.ent
diff -u phpdoc/en/language-snippets.ent:1.83 phpdoc/en/language-snippets.ent:1.84
--- phpdoc/en/language-snippets.ent:1.83 Wed Apr 14 01:28:53 2004
+++ phpdoc/en/language-snippets.ent Tue Apr 27 20:07:33 2004
@@ -1,4 +1,4 @@
-<!-- $Revision: 1.83 $ -->
+<!-- $Revision: 1.84 $ -->
<!ENTITY warn.experimental '<warning><simpara>This extension is
<emphasis>EXPERIMENTAL</emphasis>. The behaviour of this extension --
@@ -111,6 +111,10 @@
<!ENTITY note.bundled.gd '<note><simpara>This function is only available if
PHP is compiled with the bundled version of the GD library.</simpara></note>'>
+<!-- DomXml Notes -->
+<!ENTITY node.inserted 'This node will not show up in the document unless it
+is inserted with e.g. <function>domnode_append_child</function>.'>
+
<!-- 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/domxml/functions/DomDocument-create-attribute.xml?r1=1.5&r2=1.6&ty=u
Index: phpdoc/en/reference/domxml/functions/DomDocument-create-attribute.xml
diff -u phpdoc/en/reference/domxml/functions/DomDocument-create-attribute.xml:1.5
phpdoc/en/reference/domxml/functions/DomDocument-create-attribute.xml:1.6
--- phpdoc/en/reference/domxml/functions/DomDocument-create-attribute.xml:1.5 Fri
Apr 23 08:14:15 2004
+++ phpdoc/en/reference/domxml/functions/DomDocument-create-attribute.xml Tue
Apr 27 20:07:33 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.5 $ -->
+<!-- $Revision: 1.6 $ -->
<!-- splitted from ./en/functions/domxml.xml, last change in rev 1.38 -->
<refentry id="function.domdocument-create-attribute">
<refnamediv>
@@ -17,21 +17,19 @@
This function returns a new instance of class
<classname>DomAttribute</classname>. The name of the attribute is the
value of the first parameter. The value of the attribute is the value of
- the second parameter. This node will not show up in the
- document unless it is inserted with e.g.
- <function>domnode_append_child</function>.
+ the second parameter. &node.inserted;
</para>
<para>
The return value is &false; if an error occurred.
</para>
<para>
See also <function>domnode_append_child</function>,
- <function>domdocument_create_element</function>,
- <function>domdocument_create_text</function>,
- <function>domdocument_create_cdata_section</function>,
- <function>domdocument_create_processing_instruction</function>,
- <function>domdocument_create_entity_reference</function>, and
- <function>domnode_insert_before</function>.
+ <function>domdocument_create_element</function>,
+ <function>domdocument_create_text</function>,
+ <function>domdocument_create_cdata_section</function>,
+ <function>domdocument_create_processing_instruction</function>,
+ <function>domdocument_create_entity_reference</function>, and
+ <function>domnode_insert_before</function>.
</para>
</refsect1>
</refentry>
http://cvs.php.net/diff.php/phpdoc/en/reference/domxml/functions/DomDocument-create-cdata-section.xml?r1=1.5&r2=1.6&ty=u
Index: phpdoc/en/reference/domxml/functions/DomDocument-create-cdata-section.xml
diff -u phpdoc/en/reference/domxml/functions/DomDocument-create-cdata-section.xml:1.5
phpdoc/en/reference/domxml/functions/DomDocument-create-cdata-section.xml:1.6
--- phpdoc/en/reference/domxml/functions/DomDocument-create-cdata-section.xml:1.5
Fri Apr 23 08:14:15 2004
+++ phpdoc/en/reference/domxml/functions/DomDocument-create-cdata-section.xml Tue
Apr 27 20:07:33 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.5 $ -->
+<!-- $Revision: 1.6 $ -->
<!-- splitted from ./en/functions/domxml.xml, last change in rev 1.38 -->
<refentry id="function.domdocument-create-cdata-section">
<refnamediv>
@@ -15,21 +15,19 @@
<para>
This function returns a new instance of class
<classname>DomCData</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.
- <function>domnode_append_child</function>.
+ value of the passed parameter. &node.inserted;
</para>
<para>
The return value is &false; if an error occurred.
</para>
<para>
See also <function>domnode_append_child</function>,
- <function>domdocument_create_element</function>,
- <function>domdocument_create_text</function>,
- <function>domdocument_create_attribute</function>,
- <function>domdocument_create_processing_instruction</function>,
- <function>domdocument_create_entity_reference</function>, and
- <function>domnode_insert_before</function>.
+ <function>domdocument_create_element</function>,
+ <function>domdocument_create_text</function>,
+ <function>domdocument_create_attribute</function>,
+ <function>domdocument_create_processing_instruction</function>,
+ <function>domdocument_create_entity_reference</function>, and
+ <function>domnode_insert_before</function>.
</para>
</refsect1>
</refentry>
http://cvs.php.net/diff.php/phpdoc/en/reference/domxml/functions/DomDocument-create-comment.xml?r1=1.5&r2=1.6&ty=u
Index: phpdoc/en/reference/domxml/functions/DomDocument-create-comment.xml
diff -u phpdoc/en/reference/domxml/functions/DomDocument-create-comment.xml:1.5
phpdoc/en/reference/domxml/functions/DomDocument-create-comment.xml:1.6
--- phpdoc/en/reference/domxml/functions/DomDocument-create-comment.xml:1.5 Fri
Apr 23 08:14:15 2004
+++ phpdoc/en/reference/domxml/functions/DomDocument-create-comment.xml Tue Apr 27
20:07:33 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.5 $ -->
+<!-- $Revision: 1.6 $ -->
<!-- splitted from ./en/functions/domxml.xml, last change in rev 1.38 -->
<refentry id="function.domdocument-create-comment">
<refnamediv>
@@ -15,21 +15,19 @@
<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.
- <function>domnode_append_child</function>.
+ value of the passed parameter. &node.inserted;
</para>
<para>
The return value is &false; if an error occurred.
</para>
<para>
See also <function>domnode_append_child</function>,
- <function>domdocument_create_element</function>,
- <function>domdocument_create_text</function>,
- <function>domdocument_create_attribute</function>,
- <function>domdocument_create_processing_instruction</function>,
- <function>domdocument_create_entity_reference</function> and
- <function>domnode_insert_before</function>.
+ <function>domdocument_create_element</function>,
+ <function>domdocument_create_text</function>,
+ <function>domdocument_create_attribute</function>,
+ <function>domdocument_create_processing_instruction</function>,
+ <function>domdocument_create_entity_reference</function>, and
+ <function>domnode_insert_before</function>.
</para>
</refsect1>
</refentry>
http://cvs.php.net/diff.php/phpdoc/en/reference/domxml/functions/DomDocument-create-element-ns.xml?r1=1.5&r2=1.6&ty=u
Index: phpdoc/en/reference/domxml/functions/DomDocument-create-element-ns.xml
diff -u phpdoc/en/reference/domxml/functions/DomDocument-create-element-ns.xml:1.5
phpdoc/en/reference/domxml/functions/DomDocument-create-element-ns.xml:1.6
--- phpdoc/en/reference/domxml/functions/DomDocument-create-element-ns.xml:1.5 Fri
Apr 23 08:14:15 2004
+++ phpdoc/en/reference/domxml/functions/DomDocument-create-element-ns.xml Tue
Apr 27 20:07:33 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.5 $ -->
+<!-- $Revision: 1.6 $ -->
<!-- splitted from ./en/functions/domxml.xml, last change in rev 1.38 -->
<refentry id="function.domdocument-create-element-ns">
<refnamediv>
@@ -24,23 +24,22 @@
If there is already a namespace declaration with the same uri in the root-node
of the document, the prefix of this is taken, otherwise it will take the one
provided
in the optional parameter <parameter>prefix</parameter> or generate a random one.
- This node will not show up in the document unless it is inserted with e.g.
- <function>domnode_append_child</function>.
+ &node.inserted;
</para>
<para>
The return value is &false; if an error occurred.
</para>
<para>
See also <function>domdocument_create_element_ns</function>,
- <function>domnode_add_namespace</function>,
- <function>domnode_set_namespace</function>,
- <function>domnode_append_child</function>,
- <function>domdocument_create_text</function>,
- <function>domdocument_create_comment</function>,
- <function>domdocument_create_attribute</function>,
- <function>domdocument_create_processing_instruction</function>,
- <function>domdocument_create_entity_reference</function>, and
- <function>domnode_insert_before</function>.
+ <function>domnode_add_namespace</function>,
+ <function>domnode_set_namespace</function>,
+ <function>domnode_append_child</function>,
+ <function>domdocument_create_text</function>,
+ <function>domdocument_create_comment</function>,
+ <function>domdocument_create_attribute</function>,
+ <function>domdocument_create_processing_instruction</function>,
+ <function>domdocument_create_entity_reference</function>, and
+ <function>domnode_insert_before</function>.
</para>
</refsect1>
</refentry>
http://cvs.php.net/diff.php/phpdoc/en/reference/domxml/functions/DomDocument-create-element.xml?r1=1.6&r2=1.7&ty=u
Index: phpdoc/en/reference/domxml/functions/DomDocument-create-element.xml
diff -u phpdoc/en/reference/domxml/functions/DomDocument-create-element.xml:1.6
phpdoc/en/reference/domxml/functions/DomDocument-create-element.xml:1.7
--- phpdoc/en/reference/domxml/functions/DomDocument-create-element.xml:1.6 Fri
Apr 23 08:14:15 2004
+++ phpdoc/en/reference/domxml/functions/DomDocument-create-element.xml Tue Apr 27
20:07:33 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.6 $ -->
+<!-- $Revision: 1.7 $ -->
<!-- splitted from ./en/functions/domxml.xml, last change in rev 1.38 -->
<refentry id="function.domdocument-create-element">
<refnamediv>
@@ -15,22 +15,20 @@
<para>
This function returns a new instance of class
<classname>DomElement</classname>. The tag name of the element is the
- value of the passed parameter. This node will not show up in the
- document unless it is inserted with e.g.
- <function>domnode_append_child</function>.
+ value of the passed parameter. &node.inserted;
</para>
<para>
The return value is &false; if an error occurred.
</para>
<para>
See also <function>domdocument_create_element_ns</function>,
- <function>domnode_append_child</function>,
- <function>domdocument_create_text</function>,
- <function>domdocument_create_comment</function>,
- <function>domdocument_create_attribute</function>,
- <function>domdocument_create_processing_instruction</function>,
- <function>domdocument_create_entity_reference</function>, and
- <function>domnode_insert_before</function>.
+ <function>domnode_append_child</function>,
+ <function>domdocument_create_text</function>,
+ <function>domdocument_create_comment</function>,
+ <function>domdocument_create_attribute</function>,
+ <function>domdocument_create_processing_instruction</function>,
+ <function>domdocument_create_entity_reference</function>, and
+ <function>domnode_insert_before</function>.
</para>
</refsect1>
</refentry>
http://cvs.php.net/diff.php/phpdoc/en/reference/domxml/functions/DomDocument-create-entity-reference.xml?r1=1.5&r2=1.6&ty=u
Index: phpdoc/en/reference/domxml/functions/DomDocument-create-entity-reference.xml
diff -u
phpdoc/en/reference/domxml/functions/DomDocument-create-entity-reference.xml:1.5
phpdoc/en/reference/domxml/functions/DomDocument-create-entity-reference.xml:1.6
--- phpdoc/en/reference/domxml/functions/DomDocument-create-entity-reference.xml:1.5
Fri Apr 23 08:14:15 2004
+++ phpdoc/en/reference/domxml/functions/DomDocument-create-entity-reference.xml
Tue Apr 27 20:07:33 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.5 $ -->
+<!-- $Revision: 1.6 $ -->
<!-- splitted from ./en/functions/domxml.xml, last change in rev 1.38 -->
<refentry id="function.domdocument-create-entity-reference">
<refnamediv>
@@ -16,22 +16,19 @@
<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.
- <function>domnode_append_child</function>.
+ reference is the value of the passed parameter. &node.inserted;
</para>
<para>
The return value is &false; if an error occurred.
</para>
<para>
See also <function>domnode_append_child</function>,
- <function>domdocument_create_element</function>,
- <function>domdocument_create_text</function>,
- <function>domdocument_create_cdata_section</function>,
- <function>domdocument_create_processing_instruction</function>,
- <function>domdocument_create_attribute</function>, and
- <function>domnode_insert_before</function>.
+ <function>domdocument_create_element</function>,
+ <function>domdocument_create_text</function>,
+ <function>domdocument_create_cdata_section</function>,
+ <function>domdocument_create_processing_instruction</function>,
+ <function>domdocument_create_attribute</function>, and
+ <function>domnode_insert_before</function>.
</para>
</refsect1>
</refentry>
http://cvs.php.net/diff.php/phpdoc/en/reference/domxml/functions/DomDocument-create-processing-instruction.xml?r1=1.5&r2=1.6&ty=u
Index:
phpdoc/en/reference/domxml/functions/DomDocument-create-processing-instruction.xml
diff -u
phpdoc/en/reference/domxml/functions/DomDocument-create-processing-instruction.xml:1.5
phpdoc/en/reference/domxml/functions/DomDocument-create-processing-instruction.xml:1.6
---
phpdoc/en/reference/domxml/functions/DomDocument-create-processing-instruction.xml:1.5
Fri Apr 23 08:14:15 2004
+++ phpdoc/en/reference/domxml/functions/DomDocument-create-processing-instruction.xml
Tue Apr 27 20:07:33 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.5 $ -->
+<!-- $Revision: 1.6 $ -->
<!-- splitted from ./en/functions/domxml.xml, last change in rev 1.38 -->
<refentry id="function.domdocument-create-processing-instruction">
<refnamediv>
@@ -15,21 +15,20 @@
<para>
This function returns a new instance of class
<classname>DomCData</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.
- <function>domnode_append_child</function>.
+ value of the passed parameter.
+ &node.inserted;
</para>
<para>
The return value is &false; if an error occurred.
</para>
<para>
See also <function>domnode_append_child</function>,
- <function>domdocument_create_element</function>,
- <function>domdocument_create_text</function>,
- <function>domdocument_create_cdata_section</function>,
- <function>domdocument_create_attribute</function>,
- <function>domdocument_create_entity_reference</function>, and
- <function>domnode_insert_before</function>.
+ <function>domdocument_create_element</function>,
+ <function>domdocument_create_text</function>,
+ <function>domdocument_create_cdata_section</function>,
+ <function>domdocument_create_attribute</function>,
+ <function>domdocument_create_entity_reference</function>, and
+ <function>domnode_insert_before</function>.
</para>
</refsect1>
</refentry>
http://cvs.php.net/diff.php/phpdoc/en/reference/domxml/functions/DomDocument-create-text-node.xml?r1=1.5&r2=1.6&ty=u
Index: phpdoc/en/reference/domxml/functions/DomDocument-create-text-node.xml
diff -u phpdoc/en/reference/domxml/functions/DomDocument-create-text-node.xml:1.5
phpdoc/en/reference/domxml/functions/DomDocument-create-text-node.xml:1.6
--- phpdoc/en/reference/domxml/functions/DomDocument-create-text-node.xml:1.5 Fri
Apr 23 08:14:15 2004
+++ phpdoc/en/reference/domxml/functions/DomDocument-create-text-node.xml Tue
Apr 27 20:07:33 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.5 $ -->
+<!-- $Revision: 1.6 $ -->
<!-- splitted from ./en/functions/domxml.xml, last change in rev 1.38 -->
<refentry id="function.domdocument-create-text-node">
<refnamediv>
@@ -15,23 +15,21 @@
<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.
- <function>domnode_append_child</function>.
+ the passed parameter.
+ &node.inserted;
</para>
<para>
The return value is &false; if an error occurred.
</para>
<para>
See also <function>domnode_append_child</function>,
- <function>domdocument_create_element</function>,
- <function>domdocument_create_comment</function>,
- <function>domdocument_create_text</function>,
- <function>domdocument_create_attribute</function>,
- <function>domdocument_create_processing_instruction</function>,
- <function>domdocument_create_entity_reference</function>, and
- <function>domnode_insert_before</function>.
+ <function>domdocument_create_element</function>,
+ <function>domdocument_create_comment</function>,
+ <function>domdocument_create_text</function>,
+ <function>domdocument_create_attribute</function>,
+ <function>domdocument_create_processing_instruction</function>,
+ <function>domdocument_create_entity_reference</function>, and
+ <function>domnode_insert_before</function>.
</para>
</refsect1>
</refentry>
http://cvs.php.net/diff.php/phpdoc/en/reference/domxml/functions/DomDocument-dump-file.xml?r1=1.4&r2=1.5&ty=u
Index: phpdoc/en/reference/domxml/functions/DomDocument-dump-file.xml
diff -u phpdoc/en/reference/domxml/functions/DomDocument-dump-file.xml:1.4
phpdoc/en/reference/domxml/functions/DomDocument-dump-file.xml:1.5
--- phpdoc/en/reference/domxml/functions/DomDocument-dump-file.xml:1.4 Fri Apr 23
08:14:15 2004
+++ phpdoc/en/reference/domxml/functions/DomDocument-dump-file.xml Tue Apr 27
20:07:33 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.4 $ -->
+<!-- $Revision: 1.5 $ -->
<!-- splitted from ./en/functions/domxml.xml, last change in rev 1.6 -->
<refentry id="function.domdocument-dump-file">
<refnamediv>
@@ -46,8 +46,8 @@
</example>
</para>
<para>
- See also <function>domdocument_dump_mem</function>
- <function>domdocument_html_dump_mem</function>.
+ See also <function>domdocument_dump_mem</function>, and
+ <function>domdocument_html_dump_mem</function>.
</para>
</refsect1>
</refentry>
http://cvs.php.net/diff.php/phpdoc/en/reference/domxml/functions/DomDocument-dump-mem.xml?r1=1.5&r2=1.6&ty=u
Index: phpdoc/en/reference/domxml/functions/DomDocument-dump-mem.xml
diff -u phpdoc/en/reference/domxml/functions/DomDocument-dump-mem.xml:1.5
phpdoc/en/reference/domxml/functions/DomDocument-dump-mem.xml:1.6
--- phpdoc/en/reference/domxml/functions/DomDocument-dump-mem.xml:1.5 Fri Apr 23
08:14:15 2004
+++ phpdoc/en/reference/domxml/functions/DomDocument-dump-mem.xml Tue Apr 27
20:07:33 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.5 $ -->
+<!-- $Revision: 1.6 $ -->
<!-- splitted from ./en/functions/domxml.xml, last change in rev 1.6 -->
<refentry id="function.domdocument-dump-mem">
<refnamediv>
@@ -52,8 +52,8 @@
</para>
</note>
<para>
- See also <function>domdocument_dump_file</function>,
- <function>domdocument_html_dump_mem</function>.
+ See also <function>domdocument_dump_file</function>, and
+ <function>domdocument_html_dump_mem</function>.
</para>
</refsect1>
</refentry>
http://cvs.php.net/diff.php/phpdoc/en/reference/domxml/functions/DomDocument-html-dump-mem.xml?r1=1.4&r2=1.5&ty=u
Index: phpdoc/en/reference/domxml/functions/DomDocument-html-dump-mem.xml
diff -u phpdoc/en/reference/domxml/functions/DomDocument-html-dump-mem.xml:1.4
phpdoc/en/reference/domxml/functions/DomDocument-html-dump-mem.xml:1.5
--- phpdoc/en/reference/domxml/functions/DomDocument-html-dump-mem.xml:1.4 Fri
Apr 23 08:14:15 2004
+++ phpdoc/en/reference/domxml/functions/DomDocument-html-dump-mem.xml Tue Apr 27
20:07:33 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.4 $ -->
+<!-- $Revision: 1.5 $ -->
<!-- splitted from ./en/functions/domxml.xml, last change in rev 1.6 -->
<refentry id="function.domdocument-html-dump-mem">
<refnamediv>
@@ -43,8 +43,8 @@
</example>
</para>
<para>
- See also <function>domdocument_dump_file</function>,
- <function>domdocument_html_dump_mem</function>.
+ See also <function>domdocument_dump_file</function>, and
+ <function>domdocument_html_dump_mem</function>.
</para>
</refsect1>
</refentry>
http://cvs.php.net/diff.php/phpdoc/en/reference/domxml/functions/DomElement-get-elements-by-tagname.xml?r1=1.6&r2=1.7&ty=u
Index: phpdoc/en/reference/domxml/functions/DomElement-get-elements-by-tagname.xml
diff -u
phpdoc/en/reference/domxml/functions/DomElement-get-elements-by-tagname.xml:1.6
phpdoc/en/reference/domxml/functions/DomElement-get-elements-by-tagname.xml:1.7
--- phpdoc/en/reference/domxml/functions/DomElement-get-elements-by-tagname.xml:1.6
Fri Apr 23 08:14:15 2004
+++ phpdoc/en/reference/domxml/functions/DomElement-get-elements-by-tagname.xml Tue
Apr 27 20:07:33 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.6 $ -->
+<!-- $Revision: 1.7 $ -->
<!-- splitted from ./en/functions/domxml.xml, last change in rev 1.38 -->
<refentry id='function.domelement-get-elements-by-tagname'>
<refnamediv>
@@ -15,13 +15,14 @@
<methodparam><type>string</type><parameter>name</parameter></methodparam>
</methodsynopsis>
<para>
- This function returns an array with all the elements which has
<parameter>name</parameter>
- as his tagname. Every element of the array is an DomElement.
+ This function returns an array with all the elements which has
+ <parameter>name</parameter> as his tagname. Every element of the
+ array is a DomElement.
</para>
- <para>
- <example>
- <title>Getting a content</title>
- <programlisting role="php">
+ <para>
+ <example>
+ <title>Getting a content</title>
+ <programlisting role="php">
<![CDATA[
<?php
if (!$dom = domxml_open_mem($xmlstr)) {
@@ -40,10 +41,9 @@
?>
]]>
- </programlisting>
- </example>
- </para>
-
+ </programlisting>
+ </example>
+ </para>
</refsect1>
</refentry>
http://cvs.php.net/diff.php/phpdoc/en/reference/domxml/functions/DomElement-set-attribute.xml?r1=1.5&r2=1.6&ty=u
Index: phpdoc/en/reference/domxml/functions/DomElement-set-attribute.xml
diff -u phpdoc/en/reference/domxml/functions/DomElement-set-attribute.xml:1.5
phpdoc/en/reference/domxml/functions/DomElement-set-attribute.xml:1.6
--- phpdoc/en/reference/domxml/functions/DomElement-set-attribute.xml:1.5 Fri
Apr 23 08:14:15 2004
+++ phpdoc/en/reference/domxml/functions/DomElement-set-attribute.xml Tue Apr 27
20:07:33 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.5 $ -->
+<!-- $Revision: 1.6 $ -->
<!-- splitted from ./en/functions/domxml.xml, last change in rev 1.27 -->
<refentry id='function.domelement-set-attribute'>
<refnamediv>
@@ -35,7 +35,7 @@
</example>
</para>
<para>
- See also <function>domelement_get_attribute</function>
+ See also <function>domelement_get_attribute</function>.
</para>
</refsect1>
</refentry>
http://cvs.php.net/diff.php/phpdoc/en/reference/domxml/functions/DomNode-add-namespace.xml?r1=1.3&r2=1.4&ty=u
Index: phpdoc/en/reference/domxml/functions/DomNode-add-namespace.xml
diff -u phpdoc/en/reference/domxml/functions/DomNode-add-namespace.xml:1.3
phpdoc/en/reference/domxml/functions/DomNode-add-namespace.xml:1.4
--- phpdoc/en/reference/domxml/functions/DomNode-add-namespace.xml:1.3 Fri Apr 23
08:14:15 2004
+++ phpdoc/en/reference/domxml/functions/DomNode-add-namespace.xml Tue Apr 27
20:07:33 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/domxml.xml, last change in rev 1.38 -->
<refentry id='function.domnode-add-namespace'>
<refnamediv>
@@ -18,8 +18,8 @@
<para>
</para>
<para>
- See also <function>domdocument_create_element_ns</function>,
- <function>domnode_set_namespace</function>
+ See also <function>domdocument_create_element_ns</function>, and
+ <function>domnode_set_namespace</function>
</para>
</refsect1>
</refentry>
http://cvs.php.net/diff.php/phpdoc/en/reference/domxml/functions/DomNode-append-child.xml?r1=1.9&r2=1.10&ty=u
Index: phpdoc/en/reference/domxml/functions/DomNode-append-child.xml
diff -u phpdoc/en/reference/domxml/functions/DomNode-append-child.xml:1.9
phpdoc/en/reference/domxml/functions/DomNode-append-child.xml:1.10
--- phpdoc/en/reference/domxml/functions/DomNode-append-child.xml:1.9 Fri Apr 23
08:14:15 2004
+++ phpdoc/en/reference/domxml/functions/DomNode-append-child.xml Tue Apr 27
20:07:33 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.9 $ -->
+<!-- $Revision: 1.10 $ -->
<!-- splitted from ./en/functions/domxml.xml, last change in rev 1.40 -->
<refentry id='function.domnode-append-child'>
<refnamediv>
@@ -110,8 +110,8 @@
<function>domnode_append_child</function>.
</para>
<para>
- See also <function>domnode_insert_before</function>,
- <function>domnode_clone_node</function>.
+ See also <function>domnode_insert_before</function>, and
+ <function>domnode_clone_node</function>.
</para>
</refsect1>
</refentry>
http://cvs.php.net/diff.php/phpdoc/en/reference/domxml/functions/DomNode-child-nodes.xml?r1=1.5&r2=1.6&ty=u
Index: phpdoc/en/reference/domxml/functions/DomNode-child-nodes.xml
diff -u phpdoc/en/reference/domxml/functions/DomNode-child-nodes.xml:1.5
phpdoc/en/reference/domxml/functions/DomNode-child-nodes.xml:1.6
--- phpdoc/en/reference/domxml/functions/DomNode-child-nodes.xml:1.5 Fri Apr 23
08:14:15 2004
+++ phpdoc/en/reference/domxml/functions/DomNode-child-nodes.xml Tue Apr 27
20:07:33 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.5 $ -->
+<!-- $Revision: 1.6 $ -->
<!-- splitted from ./en/functions/domxml.xml, last change in rev 1.38 -->
<refentry id='function.domnode-child-nodes'>
<refnamediv>
@@ -18,8 +18,8 @@
Returns all children of the node.
</para>
<para>
- See also <function>domnode_next_sibling</function>,
- <function>domnode_previous_sibling</function>.
+ See also <function>domnode_next_sibling</function>, and
+ <function>domnode_previous_sibling</function>.
</para>
</refsect1>
</refentry>
http://cvs.php.net/diff.php/phpdoc/en/reference/domxml/functions/DomNode-first-child.xml?r1=1.6&r2=1.7&ty=u
Index: phpdoc/en/reference/domxml/functions/DomNode-first-child.xml
diff -u phpdoc/en/reference/domxml/functions/DomNode-first-child.xml:1.6
phpdoc/en/reference/domxml/functions/DomNode-first-child.xml:1.7
--- phpdoc/en/reference/domxml/functions/DomNode-first-child.xml:1.6 Fri Apr 23
08:14:15 2004
+++ phpdoc/en/reference/domxml/functions/DomNode-first-child.xml Tue Apr 27
20:07:33 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.6 $ -->
+<!-- $Revision: 1.7 $ -->
<!-- splitted from ./en/functions/domxml.xml, last change in rev 1.38 -->
<refentry id='function.domnode-first-child'>
<refnamediv>
@@ -21,9 +21,9 @@
(PHP >= 4.3 only) If no first child is found, NULL is returned.
</para>
<para>
- See also <function>domnode_last_child</function>,
- <function>domnode_next_sibling</function>,
- <function>domnode_previous_sibling</function>.
+ See also <function>domnode_last_child</function>, and
+ <function>domnode_next_sibling</function>,
+ <function>domnode_previous_sibling</function>.
</para>
</refsect1>
</refentry>
http://cvs.php.net/diff.php/phpdoc/en/reference/domxml/functions/DomNode-get-content.xml?r1=1.5&r2=1.6&ty=u
Index: phpdoc/en/reference/domxml/functions/DomNode-get-content.xml
diff -u phpdoc/en/reference/domxml/functions/DomNode-get-content.xml:1.5
phpdoc/en/reference/domxml/functions/DomNode-get-content.xml:1.6
--- phpdoc/en/reference/domxml/functions/DomNode-get-content.xml:1.5 Fri Apr 23
08:14:15 2004
+++ phpdoc/en/reference/domxml/functions/DomNode-get-content.xml Tue Apr 27
20:07:33 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.5 $ -->
+<!-- $Revision: 1.6 $ -->
<!-- splitted from ./en/functions/domxml.xml, last change in rev 1.39 -->
<refentry id='function.domnode-get-content'>
<refnamediv>
@@ -15,12 +15,12 @@
<void/>
</methodsynopsis>
<para>
- This function returns the content of the actual node.
+ This function returns the content of the actual node.
</para>
- <para>
- <example>
- <title>Getting a content</title>
- <programlisting role="php">
+ <para>
+ <example>
+ <title>Getting a content</title>
+ <programlisting role="php">
<![CDATA[
<?php
if (!$dom = domxml_open_mem($xmlstr)) {
@@ -39,9 +39,9 @@
?>
]]>
- </programlisting>
- </example>
- </para>
+ </programlisting>
+ </example>
+ </para>
</refsect1>
</refentry>
http://cvs.php.net/diff.php/phpdoc/en/reference/domxml/functions/DomNode-insert-before.xml?r1=1.7&r2=1.8&ty=u
Index: phpdoc/en/reference/domxml/functions/DomNode-insert-before.xml
diff -u phpdoc/en/reference/domxml/functions/DomNode-insert-before.xml:1.7
phpdoc/en/reference/domxml/functions/DomNode-insert-before.xml:1.8
--- phpdoc/en/reference/domxml/functions/DomNode-insert-before.xml:1.7 Fri Apr 23
08:14:15 2004
+++ phpdoc/en/reference/domxml/functions/DomNode-insert-before.xml Tue Apr 27
20:07:33 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.7 $ -->
+<!-- $Revision: 1.8 $ -->
<!-- splitted from ./en/functions/domxml.xml, last change in rev 1.38 -->
<refentry id='function.domnode-insert-before'>
<refnamediv>
@@ -54,10 +54,10 @@
$children = $newnode->children();
$attr = $children[1]->set_attribute("align", "left");
-echo "<PRE>";
+echo "<pre>";
$xmlfile = $dom->dump_mem();
echo htmlentities($xmlfile);
-echo "</PRE>";
+echo "</pre>";
?>
]]>
</programlisting>
http://cvs.php.net/diff.php/phpdoc/en/reference/domxml/functions/DomNode-last-child.xml?r1=1.6&r2=1.7&ty=u
Index: phpdoc/en/reference/domxml/functions/DomNode-last-child.xml
diff -u phpdoc/en/reference/domxml/functions/DomNode-last-child.xml:1.6
phpdoc/en/reference/domxml/functions/DomNode-last-child.xml:1.7
--- phpdoc/en/reference/domxml/functions/DomNode-last-child.xml:1.6 Fri Apr 23
08:14:15 2004
+++ phpdoc/en/reference/domxml/functions/DomNode-last-child.xml Tue Apr 27 20:07:33
2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.6 $ -->
+<!-- $Revision: 1.7 $ -->
<!-- splitted from ./en/functions/domxml.xml, last change in rev 1.38 -->
<refentry id='function.domnode-last-child'>
<refnamediv>
@@ -21,9 +21,9 @@
(PHP >= 4.3 only) If no last child is found, NULL is returned.
</para>
<para>
- See also <function>domnode_first_child</function>,
- <function>domnode_next_sibling</function>,
- <function>domnode_previous_sibling</function>.
+ See also <function>domnode_first_child</function>, and
+ <function>domnode_next_sibling</function>,
+ <function>domnode_previous_sibling</function>.
</para>
</refsect1>
</refentry>
http://cvs.php.net/diff.php/phpdoc/en/reference/domxml/functions/DomNode-set-namespace.xml?r1=1.3&r2=1.4&ty=u
Index: phpdoc/en/reference/domxml/functions/DomNode-set-namespace.xml
diff -u phpdoc/en/reference/domxml/functions/DomNode-set-namespace.xml:1.3
phpdoc/en/reference/domxml/functions/DomNode-set-namespace.xml:1.4
--- phpdoc/en/reference/domxml/functions/DomNode-set-namespace.xml:1.3 Fri Apr 23
08:14:15 2004
+++ phpdoc/en/reference/domxml/functions/DomNode-set-namespace.xml Tue Apr 27
20:07:33 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/domxml.xml, last change in rev 1.38 -->
<refentry id='function.domnode-set-namespace'>
<refnamediv>
@@ -22,8 +22,8 @@
in the optional parameter <parameter>prefix</parameter> or generate a random one.
</para>
<para>
- See also <function>domdocument_create_element_ns</function>,
- <function>domnode_add_namespace</function>
+ See also <function>domdocument_create_element_ns</function>, and
+ <function>domnode_add_namespace</function>
</para>
</refsect1>
</refentry>
http://cvs.php.net/diff.php/phpdoc/en/reference/domxml/functions/DomXsltStylesheet-process.xml?r1=1.3&r2=1.4&ty=u
Index: phpdoc/en/reference/domxml/functions/DomXsltStylesheet-process.xml
diff -u phpdoc/en/reference/domxml/functions/DomXsltStylesheet-process.xml:1.3
phpdoc/en/reference/domxml/functions/DomXsltStylesheet-process.xml:1.4
--- phpdoc/en/reference/domxml/functions/DomXsltStylesheet-process.xml:1.3 Fri
Apr 23 08:14:15 2004
+++ phpdoc/en/reference/domxml/functions/DomXsltStylesheet-process.xml Tue Apr 27
20:07:33 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<refentry id="function.domxsltstylesheet-process">
<refnamediv>
<refname>DomXsltStylesheet->process</refname>
@@ -22,7 +22,9 @@
<para>
</para>
<para>
- See also <function>domxml_xslt_stylesheet</function>,
<function>domxml_xslt_stylesheet_file</function>,
<function>domxml_xslt_stylesheet_doc</function>
+ See also <function>domxml_xslt_stylesheet</function>,
+ <function>domxml_xslt_stylesheet_file</function>, and
+ <function>domxml_xslt_stylesheet_doc</function>
</para>
</refsect1>
</refentry>
http://cvs.php.net/diff.php/phpdoc/en/reference/domxml/functions/DomXsltStylesheet-result-dump-file.xml?r1=1.3&r2=1.4&ty=u
Index: phpdoc/en/reference/domxml/functions/DomXsltStylesheet-result-dump-file.xml
diff -u
phpdoc/en/reference/domxml/functions/DomXsltStylesheet-result-dump-file.xml:1.3
phpdoc/en/reference/domxml/functions/DomXsltStylesheet-result-dump-file.xml:1.4
--- phpdoc/en/reference/domxml/functions/DomXsltStylesheet-result-dump-file.xml:1.3
Fri Apr 23 08:14:15 2004
+++ phpdoc/en/reference/domxml/functions/DomXsltStylesheet-result-dump-file.xml Tue
Apr 27 20:07:33 2004
@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<refentry id="function.domxsltstylesheet-result-dump-file">
<refnamediv>
<refname>DomXsltStylesheet->result_dump_file</refname>
<refpurpose>
- Dumps the result from a XSLT-Transformation into a file
+ Dumps the result from a XSLT-Transformation into a file
</refpurpose>
</refnamediv>
<refsect1>
@@ -18,14 +18,14 @@
&warn.experimental.func;
<para>
- This function is only available since PHP 4.3
- </para>
+ This function is only available since PHP 4.3
+ </para>
<para>
- Since DomXsltStylesheet->process() always returns a well-formed XML
DomDocument,
- no matter what output method was declared in <![CDATA[<xsl:output>]]> and
similar
- attributes/elements, it's of not much use, if you want to output HTML 4 or
text data.
- This function on the contrary honors <![CDATA[<xsl:output
method="html|text">]]>
- and other output control directives. See the example for instruction of how
to use it.
+ Since DomXsltStylesheet->process() always returns a well-formed XML DomDocument,
+ no matter what output method was declared in <![CDATA[<xsl:output>]]> and similar
+ attributes/elements, it's of not much use, if you want to output HTML 4 or text
data.
+ This function on the contrary honors <![CDATA[<xsl:output method="html|text">]]>
+ and other output control directives. See the example for instruction of how to
use it.
</para>
<para>
<example>
@@ -44,11 +44,9 @@
</example>
</para>
<para>
- See also <function>domxml_xslt_result_dump_mem</function>,
+ See also <function>domxml_xslt_result_dump_mem</function>, and
<function>domxml_xslt_process</function>
</para>
-
-
</refsect1>
</refentry>
http://cvs.php.net/diff.php/phpdoc/en/reference/domxml/functions/DomXsltStylesheet-result-dump-mem.xml?r1=1.5&r2=1.6&ty=u
Index: phpdoc/en/reference/domxml/functions/DomXsltStylesheet-result-dump-mem.xml
diff -u phpdoc/en/reference/domxml/functions/DomXsltStylesheet-result-dump-mem.xml:1.5
phpdoc/en/reference/domxml/functions/DomXsltStylesheet-result-dump-mem.xml:1.6
--- phpdoc/en/reference/domxml/functions/DomXsltStylesheet-result-dump-mem.xml:1.5
Fri Apr 23 08:14:15 2004
+++ phpdoc/en/reference/domxml/functions/DomXsltStylesheet-result-dump-mem.xml Tue
Apr 27 20:07:33 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.5 $ -->
+<!-- $Revision: 1.6 $ -->
<refentry id="function.domxsltstylesheet-result-dump-mem">
<refnamediv>
<refname>DomXsltStylesheet->result_dump_mem</refname>
@@ -17,14 +17,14 @@
&warn.experimental.func;
<para>
- This function is only available since PHP 4.3
- </para>
+ This function is only available since PHP 4.3
+ </para>
<para>
- Since DomXsltStylesheet->process() always returns a well-formed XML
DomDocument,
- no matter what output method was declared in <![CDATA[<xsl:output>]]> and
similar
- attributes/elements, it's of not much use, if you want to output HTML 4 or
text data.
- This function on the contrary honors <![CDATA[<xsl:output
method="html|text">]]>
- and other output control directives. See the example for instruction of how
to use it.
+ Since DomXsltStylesheet->process() always returns a well-formed XML DomDocument,
+ no matter what output method was declared in <![CDATA[<xsl:output>]]> and similar
+ attributes/elements, it's of not much use, if you want to output HTML 4 or text
data.
+ This function on the contrary honors <![CDATA[<xsl:output method="html|text">]]>
+ and other output control directives. See the example for instruction of how to
use it.
</para>
<para>
<example>
@@ -43,11 +43,9 @@
</example>
</para>
<para>
- See also <function>domxml_xslt_result_dump_file</function>,
+ See also <function>domxml_xslt_result_dump_file</function>, and
<function>domxml_xslt_process</function>
</para>
-
-
</refsect1>
</refentry>
http://cvs.php.net/diff.php/phpdoc/en/reference/domxml/functions/domxml-open-file.xml?r1=1.4&r2=1.5&ty=u
Index: phpdoc/en/reference/domxml/functions/domxml-open-file.xml
diff -u phpdoc/en/reference/domxml/functions/domxml-open-file.xml:1.4
phpdoc/en/reference/domxml/functions/domxml-open-file.xml:1.5
--- phpdoc/en/reference/domxml/functions/domxml-open-file.xml:1.4 Sat Dec 20
22:17:52 2003
+++ phpdoc/en/reference/domxml/functions/domxml-open-file.xml Tue Apr 27 20:07:33
2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.4 $ -->
+<!-- $Revision: 1.5 $ -->
<!-- splitted from ./en/functions/domxml.xml, last change in rev 1.1 -->
<refentry id="function.domxml-open-file">
<refnamediv>
@@ -37,8 +37,8 @@
</example>
</para>
<para>
- See also <function>domxml_open_mem</function>,
- <function>domxml_new_doc</function>.
+ See also <function>domxml_open_mem</function>, and
+ <function>domxml_new_doc</function>.
</para>
</refsect1>
</refentry>
http://cvs.php.net/diff.php/phpdoc/en/reference/domxml/functions/domxml-open-mem.xml?r1=1.4&r2=1.5&ty=u
Index: phpdoc/en/reference/domxml/functions/domxml-open-mem.xml
diff -u phpdoc/en/reference/domxml/functions/domxml-open-mem.xml:1.4
phpdoc/en/reference/domxml/functions/domxml-open-mem.xml:1.5
--- phpdoc/en/reference/domxml/functions/domxml-open-mem.xml:1.4 Sat Dec 20
22:17:52 2003
+++ phpdoc/en/reference/domxml/functions/domxml-open-mem.xml Tue Apr 27 20:07:33
2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.4 $ -->
+<!-- $Revision: 1.5 $ -->
<!-- splitted from ./en/functions/domxml.xml, last change in rev 1.1 -->
<refentry id="function.domxml-open-mem">
<refnamediv>
@@ -39,8 +39,8 @@
</example>
</para>
<para>
- See also <function>domxml_open_file</function>,
- <function>domxml_new_doc</function>.
+ See also <function>domxml_open_file</function>, and
+ <function>domxml_new_doc</function>.
</para>
</refsect1>
</refentry>
http://cvs.php.net/diff.php/phpdoc/en/reference/domxml/functions/domxml-xslt-stylesheet-doc.xml?r1=1.3&r2=1.4&ty=u
Index: phpdoc/en/reference/domxml/functions/domxml-xslt-stylesheet-doc.xml
diff -u phpdoc/en/reference/domxml/functions/domxml-xslt-stylesheet-doc.xml:1.3
phpdoc/en/reference/domxml/functions/domxml-xslt-stylesheet-doc.xml:1.4
--- phpdoc/en/reference/domxml/functions/domxml-xslt-stylesheet-doc.xml:1.3 Sat
Jan 18 18:03:19 2003
+++ phpdoc/en/reference/domxml/functions/domxml-xslt-stylesheet-doc.xml Tue Apr 27
20:07:33 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<refentry id="function.domxml-xslt-stylesheet-doc">
<refnamediv>
<refname>domxml_xslt_stylesheet_doc</refname>
@@ -19,7 +19,9 @@
<para>
</para>
<para>
- See also <function>domxsltstylesheet->process</function>,
<function>domxml_xslt_stylesheet</function>,
<function>domxml_xslt_stylesheet_file</function>
+ See also <function>domxsltstylesheet->process</function>,
+ <function>domxml_xslt_stylesheet</function>, and
+ <function>domxml_xslt_stylesheet_file</function>.
</para>
</refsect1>
</refentry>
http://cvs.php.net/diff.php/phpdoc/en/reference/domxml/functions/domxml-xslt-stylesheet-file.xml?r1=1.4&r2=1.5&ty=u
Index: phpdoc/en/reference/domxml/functions/domxml-xslt-stylesheet-file.xml
diff -u phpdoc/en/reference/domxml/functions/domxml-xslt-stylesheet-file.xml:1.4
phpdoc/en/reference/domxml/functions/domxml-xslt-stylesheet-file.xml:1.5
--- phpdoc/en/reference/domxml/functions/domxml-xslt-stylesheet-file.xml:1.4 Sat
Dec 20 22:17:52 2003
+++ phpdoc/en/reference/domxml/functions/domxml-xslt-stylesheet-file.xml Tue
Apr 27 20:07:33 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.4 $ -->
+<!-- $Revision: 1.5 $ -->
<refentry id="function.domxml-xslt-stylesheet-file">
<refnamediv>
<refname>domxml_xslt_stylesheet_file</refname>
@@ -19,7 +19,9 @@
<para>
</para>
<para>
- See also <function>domxsltstylesheet->process</function>,
<function>domxml_xslt_stylesheet</function>,
<function>domxml_xslt_stylesheet_doc</function>
+ See also <function>domxsltstylesheet->process</function>,
+ <function>domxml_xslt_stylesheet</function>, and
+ <function>domxml_xslt_stylesheet_doc</function>
</para>
</refsect1>
</refentry>
http://cvs.php.net/diff.php/phpdoc/en/reference/domxml/functions/domxml-xslt-stylesheet.xml?r1=1.4&r2=1.5&ty=u
Index: phpdoc/en/reference/domxml/functions/domxml-xslt-stylesheet.xml
diff -u phpdoc/en/reference/domxml/functions/domxml-xslt-stylesheet.xml:1.4
phpdoc/en/reference/domxml/functions/domxml-xslt-stylesheet.xml:1.5
--- phpdoc/en/reference/domxml/functions/domxml-xslt-stylesheet.xml:1.4 Sat Dec 20
22:17:52 2003
+++ phpdoc/en/reference/domxml/functions/domxml-xslt-stylesheet.xml Tue Apr 27
20:07:33 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.4 $ -->
+<!-- $Revision: 1.5 $ -->
<refentry id="function.domxml-xslt-stylesheet">
<refnamediv>
<refname>domxml_xslt_stylesheet</refname>
@@ -19,7 +19,9 @@
<para>
</para>
<para>
- See also <function>domxsltstylesheet->process</function>,
<function>domxml_xslt_stylesheet_file</function>,
<function>domxml_xslt_stylesheet_doc</function>
+ See also <function>domxsltstylesheet->process</function>,
+ <function>domxml_xslt_stylesheet_file</function>, and
+ <function>domxml_xslt_stylesheet_doc</function>
</para>
</refsect1>
</refentry>
http://cvs.php.net/diff.php/phpdoc/en/reference/domxml/functions/xpath-eval-expression.xml?r1=1.2&r2=1.3&ty=u
Index: phpdoc/en/reference/domxml/functions/xpath-eval-expression.xml
diff -u phpdoc/en/reference/domxml/functions/xpath-eval-expression.xml:1.2
phpdoc/en/reference/domxml/functions/xpath-eval-expression.xml:1.3
--- phpdoc/en/reference/domxml/functions/xpath-eval-expression.xml:1.2 Wed Apr 17
02:37:41 2002
+++ phpdoc/en/reference/domxml/functions/xpath-eval-expression.xml Tue Apr 27
20:07:33 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.2 $ -->
+<!-- $Revision: 1.3 $ -->
<!-- splitted from ./en/functions/domxml.xml, last change in rev 1.29 -->
<refentry id="function.xpath-eval-expression">
<refnamediv>
@@ -18,7 +18,7 @@
<para>
</para>
<para>
- See also <function>xpath_eval</function>
+ See also <function>xpath_eval</function>.
</para>
</refsect1>
</refentry>
http://cvs.php.net/diff.php/phpdoc/en/reference/domxml/functions/xpath-eval.xml?r1=1.4&r2=1.5&ty=u
Index: phpdoc/en/reference/domxml/functions/xpath-eval.xml
diff -u phpdoc/en/reference/domxml/functions/xpath-eval.xml:1.4
phpdoc/en/reference/domxml/functions/xpath-eval.xml:1.5
--- phpdoc/en/reference/domxml/functions/xpath-eval.xml:1.4 Fri Nov 29 03:59:02
2002
+++ phpdoc/en/reference/domxml/functions/xpath-eval.xml Tue Apr 27 20:07:33 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.4 $ -->
+<!-- $Revision: 1.5 $ -->
<!-- splitted from ./en/functions/domxml.xml, last change in rev 1.38 -->
<refentry id="function.xpath-eval">
<refnamediv>
@@ -21,7 +21,7 @@
The optional <parameter>contextnode</parameter> can be specified for doing
relative XPath queries.
</para>
<para>
- See also <function>xpath_new_context</function>
+ See also <function>xpath_new_context</function>.
</para>
</refsect1>
</refentry>
http://cvs.php.net/diff.php/phpdoc/en/reference/domxml/functions/xpath-new-context.xml?r1=1.2&r2=1.3&ty=u
Index: phpdoc/en/reference/domxml/functions/xpath-new-context.xml
diff -u phpdoc/en/reference/domxml/functions/xpath-new-context.xml:1.2
phpdoc/en/reference/domxml/functions/xpath-new-context.xml:1.3
--- phpdoc/en/reference/domxml/functions/xpath-new-context.xml:1.2 Wed Apr 17
02:37:42 2002
+++ phpdoc/en/reference/domxml/functions/xpath-new-context.xml Tue Apr 27 20:07:33
2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.2 $ -->
+<!-- $Revision: 1.3 $ -->
<!-- splitted from ./en/functions/domxml.xml, last change in rev 1.38 -->
<refentry id="function.xpath-new-context">
<refnamediv>
@@ -18,7 +18,7 @@
<para>
</para>
<para>
- See also <function>xpath_eval</function>
+ See also <function>xpath_eval</function>.
</para>
</refsect1>
</refentry>