xsl-list
[Top] [All Lists]

Re: xsl:apply-templates behaving differently depending on the node copied?

2005-05-14 02:45:30


I have noticed that there is a case where the "__NOTHING__" replacement 
is being made and it shouldn't be: when there is no text in the tag but 
there are child nodes, for example:

<td><img src="x" /></td>

there is always some text in a tag (the element name)  the content of an
element is never _in_ the element's tag it is between the end tag and
the start tag. That's the whole essence of tagged markup: content is
between tags, markup (including attributions) goes inside tags.

XSLT of course has no direct access to the content at all.

You want to say NOTHING if teh td has no child nodes so:

<xsl:template match="td[not(node())]">
  <td>__NOTHING__</td>
</xsl:template>


David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

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