Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
892 B

  1. <?xml version="1.0"?>
  2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
  3. <xsl:template match="/">
  4. <TABLE STYLE="border:1px solid black">
  5. <TR STYLE="font-size:12pt; font-family:Verdana; font-weight:bold; text-decoration:underline">
  6. <TD>Name</TD>
  7. <TD>Type</TD>
  8. </TR>
  9. <xsl:for-each select="//CLASS/PROPERTY">
  10. <TR STYLE="font-family:Verdana; font-size:12pt; padding:0px 6px">
  11. <TD><xsl:value-of select="@NAME"/></TD>
  12. <TD><xsl:value-of select="@TYPE"/></TD>
  13. </TR>
  14. </xsl:for-each>
  15. <xsl:for-each select="//INSTANCE/PROPERTY">
  16. <TR STYLE="font-family:Verdana; font-size:12pt; padding:0px 6px">
  17. <TD><xsl:value-of select="@NAME"/></TD>
  18. <TD><xsl:value-of select="@TYPE"/></TD>
  19. </TR>
  20. </xsl:for-each>
  21. </TABLE>
  22. </xsl:template>
  23. </xsl:stylesheet>