Altova Mailing List Archives
>xsl-list Archive Home
>Recent entries
>Thread Prev - Complicated Variable testing.
[Thread Next]
Re: Complicated Variable testing.
To:
Date: 5/5/2000 4:47:00 PM
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
Disclaimer
These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

