diff options
author | William M. Brack <wbrack@src.gnome.org> | 2007-01-11 19:12:45 +0000 |
---|---|---|
committer | William M. Brack <wbrack@src.gnome.org> | 2007-01-11 19:12:45 +0000 |
commit | e1b7da0c1f2fdf2591d75aeaed01d8b32331573e (patch) | |
tree | c4f01b2f404b46149d82103051958bea336172b8 /doc | |
parent | 40e7c29b35c975e4b7ff6275a9f8aaca24a4a86c (diff) | |
download | libxslt-e1b7da0c1f2fdf2591d75aeaed01d8b32331573e.tar.gz libxslt-e1b7da0c1f2fdf2591d75aeaed01d8b32331573e.tar.bz2 libxslt-e1b7da0c1f2fdf2591d75aeaed01d8b32331573e.zip |
enhanced to ignore empty text node in xsltDefaultProcessOneNode (avoid
* libxslt/transform.c: enhanced to ignore empty text node
in xsltDefaultProcessOneNode (avoid calling xsltCopyText)
(bug #354900)
* xsltproc/xsltproc.c: added check for output file problem,
yielding new error code 11 (Mike Hommey).
* doc/xsltproc.html, doc/xsltproc.xml: added documentation
for above, regenerated docs (doc/xlstproc.1)
svn path=/trunk/; revision=1414
Diffstat (limited to 'doc')
-rw-r--r-- | doc/xsltproc.1 | 3 | ||||
-rw-r--r-- | doc/xsltproc.html | 2 | ||||
-rw-r--r-- | doc/xsltproc.xml | 7 |
3 files changed, 11 insertions, 1 deletions
diff --git a/doc/xsltproc.1 b/doc/xsltproc.1 index 2fc14ae0..5b5f1a49 100644 --- a/doc/xsltproc.1 +++ b/doc/xsltproc.1 @@ -247,6 +247,9 @@ Internal processing error .TP 3n \fB10\fR Processing was stopped by a terminating message +.TP 3n +\fB11\fR +Could not write the result to the output file .SH "SEE ALSO" .PP \fBlibxml\fR(3), diff --git a/doc/xsltproc.html b/doc/xsltproc.html index 2aafaec9..8d192236 100644 --- a/doc/xsltproc.html +++ b/doc/xsltproc.html @@ -98,4 +98,4 @@ </span></dt><dd>Do not apply default attributes from the document's <span class="acronym">DTD</span>. </dd></dl></div></div><div class="refsect1" lang="en"><a name="return"></a><h2>Return values</h2><p><span class="application">xsltproc</span>'s return codes provide information - that can be used when calling it from scripts.</p><p>0: normal</p><p>1: no argument</p><p>2: too many parameters</p><p>3: unknown option</p><p>4: failed to parse the stylesheet</p><p>5: error in the stylesheet</p><p>6: error in one of the documents</p><p>7: unsupported xsl:output method</p><p>8: string parameter contains both quote and double-quotes</p><p>9: internal processing error</p><p>10: processing was stopped by a terminating message</p></div><div class="refsect1" lang="en"><a name="moreinfo"></a><h2>More Information</h2><p><span class="application">libxml web page: </span><a href="http://www.xmlsoft.org/" target="_top">http://www.xmlsoft.org/</a></p><p>W3C <span class="acronym">XSLT page: </span><a href="http://www.w3.org/TR/xslt" target="_top">http://www.w3.org/TR/xslt</a></p></div></div></body></html> + that can be used when calling it from scripts.</p><p>0: normal</p><p>1: no argument</p><p>2: too many parameters</p><p>3: unknown option</p><p>4: failed to parse the stylesheet</p><p>5: error in the stylesheet</p><p>6: error in one of the documents</p><p>7: unsupported xsl:output method</p><p>8: string parameter contains both quote and double-quotes</p><p>9: internal processing error</p><p>10: processing was stopped by a terminating message</p><p>11: could not write the result to the output file</p></div><div class="refsect1" lang="en"><a name="moreinfo"></a><h2>More Information</h2><p><span class="application">libxml web page: </span><a href="http://www.xmlsoft.org/" target="_top">http://www.xmlsoft.org/</a></p><p>W3C <span class="acronym">XSLT page: </span><a href="http://www.w3.org/TR/xslt" target="_top">http://www.w3.org/TR/xslt</a></p></div></div></body></html> diff --git a/doc/xsltproc.xml b/doc/xsltproc.xml index 7e3922cb..69e198a9 100644 --- a/doc/xsltproc.xml +++ b/doc/xsltproc.xml @@ -518,6 +518,13 @@ </listitem> </varlistentry> + <varlistentry> + <term><errorcode>11</errorcode></term> + <listitem> + <para>Could not write the result to the output file</para> + </listitem> + </varlistentry> + </variablelist> </refsect1> |