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

Re: Extracting elements by parent

Subject: Re: Extracting elements by parent
From: Michael Ludwig <mlu@xxxxxxxxxxxxx>
Date: Wed, 26 Mar 2008 15:43:32 +0100
Re:  Extracting elements by parent
Joe Tseng schrieb:
[...]
What I want to achieve is 1) while looping through the batches print out
all the associated elements and attributes of a batch 2) within a batch
loop through the tests and print out all the associated parameters and
associated elements and attributes of a test. [...]

If you want plain text output, you may take the following as a starting point and then tailor it to suit your needs.

<xsl:transform version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:output method="text"/>

  <xsl:template match="/">
    <xsl:apply-templates select="batches/batch"/>
  </xsl:template>

  <xsl:template match="batch">
    <xsl:value-of select="concat('### This is batch: ', @id)"/>
    <xsl:text>&#10;</xsl:text>
    <!-- newline; for Windows, use &#13;&#10; -->
    <xsl:apply-templates select="@* | description" mode="txt"/>
    <xsl:text>&#10;</xsl:text>
    <xsl:for-each select="tests/test">
      <xsl:apply-templates select="."/>
      <xsl:text>&#10;</xsl:text>
    </xsl:for-each>
    <xsl:text>&#10;</xsl:text>
  </xsl:template>

  <xsl:template match="test">
    <xsl:value-of select="concat('--- This is test ', @id)"/>
    <xsl:text>&#10;</xsl:text>
    <xsl:apply-templates select="@* | description" mode="txt"/>
    <xsl:for-each select="params/p">
      <xsl:apply-templates select="@* | ." mode="txt"/>
    </xsl:for-each>
  </xsl:template>

  <xsl:template match="@*|*" mode="txt">
    <xsl:value-of select="concat( name(), ' : ', . , '&#10;' )"/>
  </xsl:template>

</xsl:transform>

Michael

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.