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

Re: Transform all tags into attributes with some tags

Subject: Re: Transform all tags into attributes with some tags omitted
From: "Philipp Kursawe" <phil.kursawe@xxxxxxxxx>
Date: Fri, 16 May 2008 09:50:17 +0200
Re:  Transform all tags into attributes with some tags
Thanks for your quick response Michael. I will try the XSLT right away!

On Fri, May 16, 2008 at 9:24 AM, Michael Ludwig <mlu@xxxxxxxxxxxxx> wrote:
> Philipp Kursawe schrieb:
>
>> <xsl:for-each
>> select="TAPOS|LGPLA|MATERIAL|MATKTXT|CHECKDIGIT|CHECKDIGIT2|CHECKDIGIT3|VSOLM|MEINS|PACKGROESSE"><xsl:call-template
>> name="item-element" /></xsl:for-each>
>
>> [...] I do not like the select statement for the tags. I would rather
>> like to describe the exceptions so that tag added in the future are
>> automatically added as attributes without changing the xslt.
>
> Hi Philipp,
>
> I'd use a special mode to the transform, which by default converts
> elements to attributes and has exceptions in extra templates. Please
> try and modify the following to suit your needs:
>
> <xsl:stylesheet version="1.0"
>  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
>  <xsl:template match="@*|node()"><!-- identity template -->
>    <xsl:copy>
>      <xsl:apply-templates select="@*|node()"/>
>    </xsl:copy>
>  </xsl:template>
>  <xsl:template match="item">
>    <xsl:copy><!-- transform elements to attributes -->
>      <xsl:apply-templates select="*" mode="attr"/>
>    </xsl:copy>
>  </xsl:template>
>  <xsl:template match="*" mode="attr"><!-- element to attribute -->
>    <xsl:attribute name="{name()}">
>      <xsl:value-of select="."/>
>    </xsl:attribute>
>  </xsl:template>
>  <!-- exceptions to this rule go here -->
>  <xsl:template match="MEINS | PACKGROESSE" mode="attr">
>    <!-- dispatch to identity template -->
>    <xsl:apply-templates select="."/>
>  </xsl:template>
> </xsl:stylesheet>
>
> Michael Ludwig
>
>



-- 
The Dude Abides!

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.