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

Re: Simplify HAIRY xslt

Subject: Re: Simplify HAIRY xslt
From: Marcus Andersson <marcus@xxxxxxxxxx>
Date: Fri, 14 May 2004 20:21:13 +0200
xsl select prefix attribute
Wendell Piez wrote:


You can isolate this logic further:


  <xsl:template name="rule">
    <xsl:param name="uri"/>
    <xsl:variable name="prefix" select="../@prefix"/>
    <xsl:variable name="uid-assign">

    <res:choose>
      <res:when test="*[name() = '{$prefix}:rule']">
        <xsl:text>{*[name() = '</xsl:text>
        <xsl:value-of select="$prefix"/>
        <xsl:text>:rule']/@uid}</xsl:text>
      </res:when>
      <res:otherwise>
        <xsl:text>{generate-id()}_</xsl:text>
        <xsl:value-of select="$prefix"/>
      </res:otherwise>
    </res:choose>

</xsl:variable>

<xsl:element name="{$prefix}:rule" namespace="{$uri}">
<xsl:if test="string(@display)">
<xsl:attribute name="displayValue">{<xsl:value-of select="@display"/>}</xsl:attribute>
</xsl:if>
<xsl:attribute name="uid">
<xsl:value-of select="$uid-assign"/>
</xsl:attribute>
<xsl:attribute name="xpath">{$newXpath}</xsl:attribute>
<xsl:attribute name="type">{$type}</xsl:attribute>
<xsl:copy-of select="@*|node()"/>
</xsl:element>
</xsl:template>


which can be handy for parameterization, shortening the syntax, etc.
(You will want to straighten up the indents in that code.)

I hope that helps.
Wendell

Yup, it does. It's a bit more readable now.

/Marcus

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.