nlopess Thu Sep 8 08:02:24 2005 EDT
Modified files:
/phpdoc/en/reference/libxml constants.xml
/phpdoc/en/reference/dom/functions dom-domdocument-save.xml
dom-domdocument-savexml.xml
Log:
document LIBXML_NOEMPTYTAG
http://cvs.php.net/diff.php/phpdoc/en/reference/libxml/constants.xml?r1=1.5&r2=1.6&ty=u
Index: phpdoc/en/reference/libxml/constants.xml
diff -u phpdoc/en/reference/libxml/constants.xml:1.5
phpdoc/en/reference/libxml/constants.xml:1.6
--- phpdoc/en/reference/libxml/constants.xml:1.5 Thu Sep 8 07:45:22 2005
+++ phpdoc/en/reference/libxml/constants.xml Thu Sep 8 08:02:23 2005
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='iso-8859-1'?>
-<!-- $Revision: 1.5 $ -->
+<!-- $Revision: 1.6 $ -->
<section id="libxml.constants">
&reftitle.constants;
&extension.constants;
@@ -89,8 +89,8 @@
<note>
<para>
This option is currently just available in the
- <function>dom_document_save</function> and
- <function>dom_document_savexml</function> functions.
+ <xref linkend="function.dom-domdocument-save" /> and
+ <xref linkend="function.dom-domdocument-savexml" /> functions.
</para>
</note>
</listitem>
http://cvs.php.net/diff.php/phpdoc/en/reference/dom/functions/dom-domdocument-save.xml?r1=1.7&r2=1.8&ty=u
Index: phpdoc/en/reference/dom/functions/dom-domdocument-save.xml
diff -u phpdoc/en/reference/dom/functions/dom-domdocument-save.xml:1.7
phpdoc/en/reference/dom/functions/dom-domdocument-save.xml:1.8
--- phpdoc/en/reference/dom/functions/dom-domdocument-save.xml:1.7 Sun Feb
13 23:13:15 2005
+++ phpdoc/en/reference/dom/functions/dom-domdocument-save.xml Thu Sep 8
08:02:24 2005
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.7 $ -->
+<!-- $Revision: 1.8 $ -->
<refentry id="function.dom-domdocument-save">
<refnamediv>
<refname>DOMDocument->save()</refname>
@@ -14,6 +14,7 @@
<methodsynopsis>
<type>mixed</type><methodname>save</methodname>
<methodparam><type>string</type><parameter>filename</parameter></methodparam>
+ <methodparam
choice="opt"><type>integer</type><parameter>options</parameter></methodparam>
</methodsynopsis>
</classsynopsis>
<para>
@@ -21,6 +22,7 @@
called after building a new dom document from scratch as in the example
below.
</para>
</refsect1>
+
<refsect1 role="parameters">
&reftitle.parameters;
<para>
@@ -33,15 +35,50 @@
</para>
</listitem>
</varlistentry>
+ <varlistentry>
+ <term><parameter>options</parameter></term>
+ <listitem>
+ <para>
+ Additional Options. Currently only <link
+ linkend="libxml.constants">LIBXML_NOEMPTYTAG</link> is supported.
+ </para>
+ </listitem>
+ </varlistentry>
</variablelist>
</para>
</refsect1>
+
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
Returns the number of bytes written or &false; if an error occurred.
</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>5.1.0</entry>
+ <entry>
+ Added the <parameter>options</parameter> parameter
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </informaltable>
+ </para>
+ </refsect1>
+
<refsect1 role="examples">
&reftitle.examples;
<para>
http://cvs.php.net/diff.php/phpdoc/en/reference/dom/functions/dom-domdocument-savexml.xml?r1=1.5&r2=1.6&ty=u
Index: phpdoc/en/reference/dom/functions/dom-domdocument-savexml.xml
diff -u phpdoc/en/reference/dom/functions/dom-domdocument-savexml.xml:1.5
phpdoc/en/reference/dom/functions/dom-domdocument-savexml.xml:1.6
--- phpdoc/en/reference/dom/functions/dom-domdocument-savexml.xml:1.5 Sun Feb
13 23:13:15 2005
+++ phpdoc/en/reference/dom/functions/dom-domdocument-savexml.xml Thu Sep
8 08:02:24 2005
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.5 $ -->
+<!-- $Revision: 1.6 $ -->
<refentry id="function.dom-domdocument-savexml">
<refnamediv>
<refname>DOMDocument->saveXML()</refname>
@@ -14,6 +14,7 @@
<methodsynopsis>
<type>string</type><methodname>saveXML</methodname>
<methodparam
choice="opt"><type>DOMNode</type><parameter>node</parameter></methodparam>
+ <methodparam
choice="opt"><type>integer</type><parameter>options</parameter></methodparam>
</methodsynopsis>
</classsynopsis>
<para>
@@ -21,6 +22,7 @@
called after building a new dom document from scratch as in the example
below.
</para>
</refsect1>
+
<refsect1 role="parameters">
&reftitle.parameters;
<para>
@@ -34,9 +36,19 @@
</para>
</listitem>
</varlistentry>
+ <varlistentry>
+ <term><parameter>options</parameter></term>
+ <listitem>
+ <para>
+ Additional Options. Currently only <link
+ linkend="libxml.constants">LIBXML_NOEMPTYTAG</link> is supported.
+ </para>
+ </listitem>
+ </varlistentry>
</variablelist>
</para>
</refsect1>
+
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
@@ -58,6 +70,31 @@
</variablelist>
</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>5.1.0</entry>
+ <entry>
+ Added the <parameter>options</parameter> parameter
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </informaltable>
+ </para>
+ </refsect1>
+
<refsect1 role="examples">
&reftitle.examples;
<para>