|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: More <xsl:when> questions!
NO!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! I think someone else should answer, 'cause I've explained this everyway I can think of and still your examples have the same feature. <xsl:template match="packet" > <xsl:if test="../packet/para/title"> This does _not_ test if the current packet has a title, it says go up and then look down to see if _any_ packet has a title, so this will give the same result for all packets (if they are siblings of each other) you want <xsl:if test="para/title"> <xsl:when test="contains(/para/text/@text.role,'normal')">(Where I This query looks for a para element immediately below the document root so will always return an empty node set, and thus an empty string. you want <xsl:when test="contains(para/text/@text.role,'normal')">(Where I (<xsl:value-of select="//para/@secur.classif"/>) This query always, for every packet, returns the value of the first secur.classif attribute in the whole document. you want (<xsl:value-of select="para/@secur.classif"/>) or perhaps (<xsl:value-of select=".//para/@secur.classif"/>) if there are para elements not immediately children of packet. <xsl:value-of select="para/text"/> ah finally a query that is looking inside the current packet element. This one looks right. David XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








