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

Re: Table type output in text fromat in a xml file

Subject: Re: Table type output in text fromat in a xml file
From: "G. Ken Holman" <gkholman@xxxxxxxxxxxxxxxxxxxx>
Date: Wed, 26 Dec 2007 20:06:14 -0500
Re:  Table type output in text fromat in a  xml file
At 2007-12-26 13:21 -0800, rasha dwidar wrote:
I have xml file as mentioned below. I want to use xsl to display it in text format. I want to present xml data in table in text format. Is that possible?

Yes ... use method="text" and all of the text nodes of the result tree are serialized into the result, with the element markup suppressed.


XML file
...
I want to display it in text format like that.
...
I appreciate your help

I hope the example below helps ... it is using XSLT 2.0 ... if you need to use XSLT 1.0, change:


<xsl:value-of select="' ',@name,' ',@result,' ',@comment"/>

to:

<xsl:value-of select="concat(' ',@name,' ',@result,' ',@comment)"/>

. . . . . . . . . . Ken

T:\ftemp>type rasha.xml
<test>
<testcase name="test001" result="failed" comment="test failed"/>
<testcase name="test001" result="failed" comment="test failed"/>
<testcase name="test001" result="passed" comment="test passed"/>
</test>

T:\ftemp>type rasha.xsl
<?xml version="1.0" encoding="US-ASCII"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                version="2.0">

<xsl:output method="text"/>

<xsl:template match="test">
  <xsl:text>
   Name       Result    Comment
</xsl:text>
  <xsl:apply-templates select="testcase"/>
</xsl:template>

<xsl:template match="testcase">
  <xsl:value-of select="'  ',@name,'  ',@result,'  ',@comment"/>
  <xsl:text>
</xsl:text>
</xsl:template>

</xsl:stylesheet>
T:\ftemp>xslt2 rasha.xml rasha.xsl rasha.txt

T:\ftemp>type rasha.txt

   Name       Result    Comment
   test001    failed    test failed
   test001    failed    test failed
   test001    passed    test passed

T:\ftemp>

--
Comprehensive in-depth XSLT2/XSL-FO1.1 classes: Austin TX,Jan-2008
World-wide corporate, govt. & user group XML, XSL and UBL training
RSS feeds:     publicly-available developer resources and training
G. Ken Holman                 mailto:gkholman@xxxxxxxxxxxxxxxxxxxx
Crane Softwrights Ltd.          http://www.CraneSoftwrights.com/s/
Box 266, Kars, Ontario CANADA K0A-2E0    +1(613)489-0999 (F:-0995)
Male Cancer Awareness Nov'07  http://www.CraneSoftwrights.com/s/bc
Legal business disclaimers:  http://www.CraneSoftwrights.com/legal

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.