xsl-list
[Top] [All Lists]

RE: [xsl] Using attributes with XPath

2006-08-22 13:28:00

<xsl:template match="list">
<fo:list-block>
  <xsl:apply-templates select="@* 

That will apply-templates to the attributes of the list element, but if
you've written any template rules that match attributes, you haven't shown
them to us.


| *[contains(@type, 
$my_version) or string-length(@type)=0] | text()"/>  

That will match children of the list element that have a type attribute
satisfying certain conditions, but in the XML you showed us, no children of
the list element have a type attribute.

| text()"/>  

That will match text node children of the list element, but in the data you
showed us, the only text node children of the list element were whitespace.

Michael Kay
http://www.saxonica.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>
--~--