1 rizwank 1.1 <?xml version="1.0" encoding="UTF-8"?>
2 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema">
3 <xsl:template match="/">
4 <html>
5 <head />
6 <body>
7 <br />
8 <xsl:for-each select="xml">
9 <br />
10 <xsl:for-each select="version">
11 <xsl:for-each select="lib">
12 <xsl:apply-templates />
13 </xsl:for-each>
14 </xsl:for-each>
15 <br />
16 <br />
17 <xsl:for-each select="section">
18 <xsl:for-each select="@id">
19 <xsl:value-of select="." />
20 </xsl:for-each>
21 <p>
22 rizwank 1.1 <xsl:for-each select="table">
23 <xsl:for-each select="tr">
24 <xsl:for-each select="td">
25 <xsl:apply-templates /> </xsl:for-each>
26 <br />
27 </xsl:for-each>
28 <br />
29 </xsl:for-each>
30 </p>
31 </xsl:for-each>
32 <br />
33 </xsl:for-each>
34 </body>
35 </html>
36 </xsl:template>
37 </xsl:stylesheet>
|