xml editor

Supported platforms

Compatible with Windows7 & Mac OS X Snow Leopard

Ready for data server software
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

Re: [xsl] Element selection based on different overlapping descendant subsets


Subject: Re: [xsl] Element selection based on different overlapping descendant subsets
From: andrew welch <andrew.j.welch@xxxxxxxxx>
Date: Wed, 1 Feb 2006 12:02:36 +0000

> Define each known table type as a key:
>
> <xsl:key name="m-table" match="table[.//ROW][.//CELL][.//A]"
> use="generate-id()"/>
>
> <xsl:key name="n-table" match="table[.//TYPING][.//CODE]"
use="generate-id()"/>
>
> The m-table key then contains all the tables that fit the description
> of an "M table", as so on.
>
> Then when you process each <TABLE> element, you can easily check what
> type of table it is:
>
> <xsl:template match="TABLE">
>   <xsl:choose>
>     <xsl:when test="key(m-table, generate-id())">
>       I'm an m-table
>     </xsk:when>
>     <xsl:when test="key(n-table, generate-id())">
>       I'm an n-table
>     </xsk:when>

I've used a mixture of cases there, make sure you the correct one in
the real thing :)


Current Thread
XML Editor | XML Author | WYSIWYG Editors | Schema Editor | XSD Documentation | XSL/XSLT Editor | XQuery | XML Databases | SVN Client
© 2002-2011 SyncRO Soft Ltd. All rights reserved. | Sitemap | Privacy Policy | This website was created & generated with <oXygen/>®XML Editor