Line | |
---|
1 | <xsl:stylesheet |
---|
2 | xmlns:xsl="http://www.w3.org/1999/XSL/Transform" |
---|
3 | version="1.0"> |
---|
4 | |
---|
5 | <xsl:output method="html"/> |
---|
6 | |
---|
7 | <xsl:template match="/"> |
---|
8 | <b> |
---|
9 | <xsl:text>Current iMPACT Usage Statistics.</xsl:text> |
---|
10 | <br></br> |
---|
11 | <xsl:text>Copyright (c) 1995-2010 Xilinx, Inc. All rights reserved.</xsl:text> |
---|
12 | </b> |
---|
13 | <br></br> |
---|
14 | <br></br> |
---|
15 | <xsl:text>This page displays the current iMPACT device usage statistics that will be sent to Xilinx using WebTalk.</xsl:text> |
---|
16 | |
---|
17 | <table width = "100%" border="1" CELLSPACING="0" cols="50% 50%"> |
---|
18 | <xsl:for-each select="document/application/section"> |
---|
19 | <tr> |
---|
20 | <th COLSPAN="2" BGCOLOR="#99CCFF"><xsl:value-of select="@name"/></th> |
---|
21 | |
---|
22 | </tr> |
---|
23 | <xsl:for-each select="property"> |
---|
24 | <tr> |
---|
25 | <td><xsl:value-of select="@name"/></td> |
---|
26 | |
---|
27 | <td><xsl:value-of select="@value"/></td> |
---|
28 | </tr> |
---|
29 | |
---|
30 | |
---|
31 | </xsl:for-each> |
---|
32 | |
---|
33 | <xsl:for-each select="item"> |
---|
34 | <tr> |
---|
35 | <td COLSPAN="2" BGCOLOR="#FFFF99"><b><xsl:value-of select="@name"/></b></td> |
---|
36 | </tr> |
---|
37 | <xsl:value-of select="@value"/> |
---|
38 | <xsl:for-each select="property"> |
---|
39 | <tr> |
---|
40 | <td><xsl:value-of select="@name"/></td> |
---|
41 | <td><xsl:value-of select="@value"/> </td> |
---|
42 | </tr> |
---|
43 | |
---|
44 | </xsl:for-each> |
---|
45 | |
---|
46 | </xsl:for-each> |
---|
47 | </xsl:for-each> |
---|
48 | </table> |
---|
49 | </xsl:template> |
---|
50 | |
---|
51 | </xsl:stylesheet> |
---|
52 | |
---|
53 | <!-- |
---|
54 | <xsl:if test="position() != last()"> <h1><xsl:text> </xsl:text></h1></xsl:if> |
---|
55 | --> |
---|
Note: See
TracBrowser
for help on using the repository browser.