|
Subject: Re: [xsl] flat xml tree to indent one From: Wendell Piez <wapiez@xxxxxxxxxxxxxxxx> Date: Tue, 21 Dec 2010 12:17:35 -0500 |
<xsl:template match="p[@*]">
<xsl:variable name="temp">
<p>
<xsl:copy-of select="remove(@*, 1)"/>
<xsl:apply-templates select="@*[1]" mode="map-attribute"/>
</p>
</xsl:variable>
<xsl:apply-templates select="$temp"/>
</xsl:template><xsl:template match="p[not(@*)]"> <xsl:sequence select="."/> </xsl:template>
<xsl:template match="@*" mode="map-attribute">
<xsl:element name="{name(.)}">
<xsl:copy-of select="../node()"/>
</xsl:element>
</xsl:template><xsl:template match="@style[.='bold']" mode="map-attribute">
<b>
<xsl:copy-of select="../node()"/>
</b>
</xsl:template>
Cheers, Wendell
On 21/12/2010 12:30, Matthieu Ricaud-Dussarget wrote:Hi all,It's not actually a grouping problem as commonly understood.
This is a grouping question one more time.You need to process the attributes one at a time, recursively:
For such an input :
<p foo="foo_att" bar="bar_att" foobar="foobar_att">my text</p>
I'd like such an output :
<p> <foo><bar><foobar>my text</foobar></bar></foo> </p>
the order foo/bar/foobar isn't important here. <foobar><bar><foo>my text</foo></bar></foobar> would also be ok.
This should work for any number of attributes (including none)
<xsl:template match="p[@*]"> <xsl:variable name="temp"> <p> <xsl:copy-of select="remove(@*, 1)"/> <xsl:element name="{name(@*[1])}"> <xsl:copy-of select="child::node()"/> </xsl:element> </p> </xsl:variable> <xsl:apply-templates select="$temp"/> </xsl:template>
<xsl:template match="p[not(@*)]"> <xsl:sequence select="."/> </xsl:template>
-- ====================================================================== Wendell Piez mailto:wapiez@xxxxxxxxxxxxxxxx Mulberry Technologies, Inc. http://www.mulberrytech.com 17 West Jefferson Street Direct Phone: 301/315-9635 Suite 207 Phone: 301/315-9631 Rockville, MD 20850 Fax: 301/315-8285 ---------------------------------------------------------------------- Mulberry Technologies: A Consultancy Specializing in SGML and XML ======================================================================
| Current Thread |
|---|
|
| <- Previous | Index | Next -> |
|---|---|---|
| Re: [xsl] flat xml tree to indent o, Matthieu Ricaud-Duss | Thread | Re: [xsl] flat xml tree to indent o, Matthieu Ricaud-Duss |
| Re: [xsl] why not match text()? (fo, Wendell Piez | Date | Re: [xsl] Novice Question - matchin, Wendell Piez |
| Month |