xsl-list
[Top] [All Lists]

AW: [xsl] XSLT Output contains the unwanted content of all elemen ts as text

2007-03-08 08:05:12
ok, thanks for the quick answer!!!!!  :)

Ramona Krickan

zooplus AG
Eichenweg 4a
85774 Unterfoehring
Germany
Tel +49.89.95 00 6-194
Fax +49.89.95 00 6-500
mailto:ramona(_dot_)krickan(_at_)zooplus(_dot_)de
http://www.zooplus.de

-----Ursprüngliche Nachricht-----
Von: cknell(_at_)onebox(_dot_)com [mailto:cknell(_at_)onebox(_dot_)com]
Gesendet: Donnerstag, 8. März 2007 16:00
An: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Betreff: RE: [xsl] XSLT Output contains the unwanted content of all
elements as text


XSLT will output the text content of nodes not matched by a template, that's
what you've got. If you want to "throw away" the content of one or more
elements, you need a null-ouput template. In your case, add this template to
your stylesheet.

<xsl:template match="zoo:street" />

-- 
Charles Knell
cknell(_at_)onebox(_dot_)com - email



-----Original Message-----
From:     Ramona Krickan <ramona(_dot_)krickan(_at_)zooplus(_dot_)de>
Sent:     Thu, 8 Mar 2007 15:52:29 +0100
To:       "'xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com'"
<xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com>
Subject:  [xsl] XSLT Output contains the unwanted content of all elements as
text

Hi,

I got a Problem with my transformation output. My xslt doc does the correct
transformation but in my output document I not only get the expected
transformation but also the text-content of all the other elements from my
source document. I don't undestand why. Could somebody please help me?

Here my xslt:
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
xmlns:zoo="http://example.com/ns";>
<xsl:template match="element(zoo:country)">
<xsl:variable name="countryCode" select="."/>
<xsl:value-of select="if ($countryCode='CH') then ('AT') else
($countryCode)" />
</xsl:template>
</xsl:stylesheet> 

My input xml:
<zoo:address xmlns:zoo="http://example.com/ns";>
<zoo:street>Strasse</zoo:street>
<zoo:country>CH</zoo:country>
</zoo:address> 

output document:
Strasse /*this is unexpected*/
AT

Thanks in advance for any help!

Ramona Krickan

zooplus AG
Eichenweg 4a
85774 Unterfoehring
Germany
Tel +49.89.95 00 6-194
Fax +49.89.95 00 6-500
mailto:ramona(_dot_)krickan(_at_)zooplus(_dot_)de
http://www.zooplus.de



--~------------------------------------------------------------------
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>
--~--




--~------------------------------------------------------------------
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>
--~--

--~------------------------------------------------------------------
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>
--~--

<Prev in Thread] Current Thread [Next in Thread>
  • AW: [xsl] XSLT Output contains the unwanted content of all elemen ts as text, Ramona Krickan <=