At 2005-12-14 01:09 +0100, Philippe LAPLANCHE wrote:
Consider this very very simple stylesheet :
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:sql="http://apache.org/cocoon/SQL/2.0">
<xsl:template match="/root">
<root/>
</xsl:template>
</xsl:stylesheet>
The transformer automatically copies the sql: namespace definition
into the root node produced after the transformation.
Because you left the sql: namespace node attached to the <root/>
literal result element in your stylesheet. All attached namespace
nodes on literal result elements are copied to the result tree by
definition of XSLT.
I want to disable that, how can I do ?
By pruning the namespace nodes off the literal result elements in the
stylesheet tree using the exclude-result-prefixes= attribute.
I hope this helps.
. . . . . . . Ken
T:\ftemp>type philippe.xml
<root/>
T:\ftemp>type philippe.xsl
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:sql="http://apache.org/cocoon/SQL/2.0"
exclude-result-prefixes="sql">
<xsl:template match="/root">
<root/>
</xsl:template>
</xsl:stylesheet>
T:\ftemp>xslt philippe.xml philippe.xsl con
<?xml version="1.0" encoding="utf-8"?><root/>
T:\ftemp>
--
Upcoming XSLT/XSL-FO hands-on courses: Denver,CO March 13-17,2006
World-wide on-site corporate, govt. & user group XML/XSL training.
G. Ken Holman mailto:gkholman(_at_)CraneSoftwrights(_dot_)com
Crane Softwrights Ltd. http://www.CraneSoftwrights.com/s/
Box 266, Kars, Ontario CANADA K0A-2E0 +1(613)489-0999 (F:-0995)
Male Cancer Awareness Aug'05 http://www.CraneSoftwrights.com/s/bc
Legal business disclaimers: http://www.CraneSoftwrights.com/legal
--~------------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--