I have an XML file and need to create XSL for it im new to this i managed to get the author but the rest is beyond me can some please explain how to get this
XML file
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="TEST.xsl"?>
<Workbook xmlns="urn:schemas-microsoft-com
ffice:spreadsheet"
xmlns
="urn:schemas-microsoft-com
ffice
ffice"
xmlns:x="urn:schemas-microsoft-com
ffice:excel"
xmlns:ss="urn:schemas-microsoft-com
ffice:spreadsheet"
xmlns:html=" <DocumentProperties xmlns="urn:schemas-microsoft-com
ffice
ffice">
<Author>Quick</Author>
</DocumentProperties>
<Worksheet ss:Name="QReport">
<Table ss:ExpandedColumnCount="56" ss:ExpandedRowCount="233">
<Row>
<Cell ss:Index="4"><Data ss:Type="String"> September report With Figures</Data></Cell>
<Cell ss:Index="28"><Data ss:Type="String">Required Weekday wsa:</Data></Cell>
<Cell ss:Index="34"><Data ss:Type="String">0</Data></Cell>
</Row>
<Row>
<Cell ss:Index="7"><Data ss:Type="String">Monday</Data></Cell>
<Cell ss:Index="13"><Data ss:Type="String">Tuesday</Data></Cell>
<Cell ss:Index="19"><Data ss:Type="String">Wednesday</Data></Cell>
<Cell ss:Index="26"><Data ss:Type="String">Thursday</Data></Cell>
<Cell ss:Index="33"><Data ss:Type="String">Friday</Data></Cell>
<Cell ss:Index="42"><Data ss:Type="String">Saturday</Data></Cell>
<Cell ss:Index="48"><Data ss:Type="String">Sunday</Data></Cell>
</Row>
<Row>
<Cell ss:Index="5"><Data ss:Type="String">01-Sep</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">80% wsa</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">0</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">02-Sep</Data></Cell>
</Row>
<Row>
<Cell ss:Index="8"><Data ss:Type="String">0</Data></Cell>
<Cell ss:Index="14"><Data ss:Type="String">0</Data></Cell>
</Row>
</Table>
</Worksheet>
</Workbook>
**********************************************************
TEST.XSL
<xsl:stylesheet version="1.0"
xmlns:xsl="xmlns:ss="urn:schemas-microsoft-com
ffice:spreadsheet"
xmlns
o="urn:schemas-microsoft-com
ffice
ffice">
<xsl
utput indent="yes"/>
<xsl:template match="/">
<html><body>
Author: <xsl:value-of
select="/ss:Workbook/oo
ocumentProperties/oo:Author"/>
</body></html>
</xsl:template>
</xsl:stylesheet>
XML file
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="TEST.xsl"?>
<Workbook xmlns="urn:schemas-microsoft-com
xmlns
xmlns:x="urn:schemas-microsoft-com
xmlns:ss="urn:schemas-microsoft-com
xmlns:html=" <DocumentProperties xmlns="urn:schemas-microsoft-com
<Author>Quick</Author>
</DocumentProperties>
<Worksheet ss:Name="QReport">
<Table ss:ExpandedColumnCount="56" ss:ExpandedRowCount="233">
<Row>
<Cell ss:Index="4"><Data ss:Type="String"> September report With Figures</Data></Cell>
<Cell ss:Index="28"><Data ss:Type="String">Required Weekday wsa:</Data></Cell>
<Cell ss:Index="34"><Data ss:Type="String">0</Data></Cell>
</Row>
<Row>
<Cell ss:Index="7"><Data ss:Type="String">Monday</Data></Cell>
<Cell ss:Index="13"><Data ss:Type="String">Tuesday</Data></Cell>
<Cell ss:Index="19"><Data ss:Type="String">Wednesday</Data></Cell>
<Cell ss:Index="26"><Data ss:Type="String">Thursday</Data></Cell>
<Cell ss:Index="33"><Data ss:Type="String">Friday</Data></Cell>
<Cell ss:Index="42"><Data ss:Type="String">Saturday</Data></Cell>
<Cell ss:Index="48"><Data ss:Type="String">Sunday</Data></Cell>
</Row>
<Row>
<Cell ss:Index="5"><Data ss:Type="String">01-Sep</Data></Cell>
<Cell ss:Index="6"><Data ss:Type="String">80% wsa</Data></Cell>
<Cell ss:Index="8"><Data ss:Type="String">0</Data></Cell>
<Cell ss:Index="11"><Data ss:Type="String">02-Sep</Data></Cell>
</Row>
<Row>
<Cell ss:Index="8"><Data ss:Type="String">0</Data></Cell>
<Cell ss:Index="14"><Data ss:Type="String">0</Data></Cell>
</Row>
</Table>
</Worksheet>
</Workbook>
**********************************************************
TEST.XSL
<xsl:stylesheet version="1.0"
xmlns:xsl="xmlns:ss="urn:schemas-microsoft-com
xmlns
<xsl
<xsl:template match="/">
<html><body>
Author: <xsl:value-of
select="/ss:Workbook/oo
</body></html>
</xsl:template>
</xsl:stylesheet>