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

access the root element

Subject: access the root element
From: "Kai Hackemesser" <kaha@xxxxxx>
Date: Thu, 3 Nov 2005 16:34:13 +0100 (MET)
html access element
I'm desparating.

I have an XML document (very large, 78k lines, generated by the Eclipse
Plugin "Eclipse Metrics") where I want to write an XSL for. The XML is
formed like that:
<?xml version="1.0" encoding="UTF-8"?>
<Metrics scope="eVistaDev" type="PackageRoot" date="2005-11-02"
xmlns="http://metrics.sourceforge.net/2003/Metrics-First-Flat">
<Cycle>
<Package>A.Package.Name</package>
</Cycle>
<Metric>(further elements)</Metric>
<Metric>(further elements)</Metric>
...
<Metrics>

It is a completely wellformed XML file. I try to access the attributes of
the Metrics element (the root element). I have no luck with that. Can
anybody tell me where is the error for that I'm blind for?

this is the xsl file I have written so far:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="2.0">
    <xsl:output method="html"/>
    <xsl:template match="/">
        <html>
            <head>
                <title>Metrics Report from <xsl:value-of select="@date"
/></title>
            </head>
            <body >
                <H1><xsl:value-of select="@date" />, <xsl:value-of
select="@type" /></H1>
                <h2>Overview for calculated Metrics</h2>
                <!-- 1. Overview over Project -->
                <h3>Overall Metrics</h3>
                <ul>
                <xsl:for-each select="Metric[count(Value)=1]">
                    <li><xsl:value-of select="@id"/> - <xsl:value-of
select="@description"/> : <xsl:value-of select="./Value/@value"/></li>
                </xsl:for-each>
                </ul>
                <!-- 2. Overview over Packages -->
            </body>
        </html>
    </xsl:template>    
</xsl:stylesheet>

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.