This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Newbie: Excel XML XSL


Hi list

I'm a total newbie and have problems with an Excel XP (2002) XML file. 
Below you see a first XSL test of mine. 

I only want to display the author. The HTML displays fine (IE6)
but not the Author form the XML file.

I get real confused with all the XML namespace stuff.
Any  help is appreciated.

-XSL-----------------------------------

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
<xsl:output indent="yes"/>
<xsl:template match="/">
<html><head><title>Excel worksheet</title>
</head><body>
<h1>Excel worksheet</h1>
Author: <xsl:value-of select="Workbook/DocumentProperties/Author"/>
</body></html>
</xsl:template>
</xsl:stylesheet>

-/XSL-----------------------------------


-XML-----------------------------------

<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet type="text/xsl" href="book2.xsl"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
        xmlns:o="urn:schemas-microsoft-com:office:office"
        xmlns:x="urn:schemas-microsoft-com:office:excel"
        xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
        xmlns:html="http://www.w3.org/TR/REC-html40";>
    <DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
        <Author>Paul Cornell</Author>
        <LastAuthor>Paul Cornell</LastAuthor>
        <Created>2001-08-02T16:08:21Z</Created>
        <Company>Microsoft Corporation</Company>
        <Version>10.2625</Version>
    </DocumentProperties>
    <OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
        <DownloadComponents/>
        <LocationOfComponents HRef="file:///\\OfficeXP\CD1\"/>
    </OfficeDocumentSettings>
    <ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
        <WindowHeight>6135</WindowHeight>
        <WindowWidth>8445</WindowWidth>
        <WindowTopX>240</WindowTopX>
        <WindowTopY>120</WindowTopY>
        <ProtectStructure>False</ProtectStructure>
        <ProtectWindows>False</ProtectWindows>
    </ExcelWorkbook>
    <Styles>
        <Style ss:ID="Default" ss:Name="Normal">
            <Alignment ss:Vertical="Bottom"/>
            <Borders/>
            <Font/>
            <Interior/>
            <NumberFormat/>
            <Protection/>
        </Style>
    </Styles>
<!-- ** snip ** -->
</Workbook>

-/XML-----------------------------------


bye, matts

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]