[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Complicated Variable testing.

Subject: Re: Complicated Variable testing.
From: David Carlisle <davidc@xxxxxxxxx>
Date: Fri, 5 May 2000 15:47:01 +0100 (BST)
xsl test null variable
	xmlns:c="file:/dev/null"
	xmlns:d="file:/dev/null"
	xmlns:q="file:/dev/null"
	xmlns:t="file:/dev/null">

what's the point of having four prefixes for the same namespace?
c:priority and d:priority  are the same element to a namespace aware
processor, so both would match an xpath expression "q:priority"
It would be clearer if you used the same prefix for all, or different
namespaces. 


<c:priority VH="VERYHIGH/"/>
<c:priority H="HIGH/"/>
<c:priority M="MEDIUM/"/>
<c:priority L="LOW/"/>
<c:priority VL="VERYLOW/"/>



to get the highest priority of any paragraph in the source document
assuming use is something like <para priority="M">...</para>
you could go as follows

document

<a>

<para priority="M"/>
<para priority="H"/>

</a>


stylesheet


<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                version="1.0"
          	xmlns:c="file:/dev/null"
      >

<xsl:output method="xml" indent="yes"/>


<c:priority VH="VERYHIGH/"/>
<c:priority H="HIGH/"/>
<c:priority M="MEDIUM/"/>
<c:priority L="LOW/"/>
<c:priority VL="VERYLOW/"/>


<xsl:variable name="root" select="/"/>

<xsl:template match="/">
<xsl:for-each select="document('')/xsl:stylesheet/c:priority/@*
                     [name(.)=$root//*/@priority]         ">
  <xsl:if test="position()=last()">
    <xsl:value-of select="."/>
  </xsl:if>
</xsl:for-each>
</xsl:template>


</xsl:stylesheet>



output


MEDIUM



David


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


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.