This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: Detecting presence of attributes


> >Your xsl:for-each below always selects just one node ( an element has
> >not more than one attribute with a given name)
>
> No, the attribute is declared as ENTITIES, not ENTITY. There are
> multiple entity names in the attribute value, separated by spaces.

The attribute type is not visible in the XPath tree model and has no effect
on the way a stylesheet is processed (unless the type is ID, which affects
the id() function).

Splitting up an ENTITIES value is therefore the same as processing any other
space-separated string, it can be done using a recursive named template
using the substring-before() and substring-after() functions, or using the
tokenize() extension function present in Saxon and Xalan.

Mike Kay


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]