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.
23 lines
892 B
23 lines
892 B
<?xml version="1.0"?>
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
|
|
<xsl:template match="/">
|
|
<TABLE STYLE="border:1px solid black">
|
|
<TR STYLE="font-size:12pt; font-family:Verdana; font-weight:bold; text-decoration:underline">
|
|
<TD>Name</TD>
|
|
<TD>Type</TD>
|
|
</TR>
|
|
<xsl:for-each select="//CLASS/PROPERTY">
|
|
<TR STYLE="font-family:Verdana; font-size:12pt; padding:0px 6px">
|
|
<TD><xsl:value-of select="@NAME"/></TD>
|
|
<TD><xsl:value-of select="@TYPE"/></TD>
|
|
</TR>
|
|
</xsl:for-each>
|
|
<xsl:for-each select="//INSTANCE/PROPERTY">
|
|
<TR STYLE="font-family:Verdana; font-size:12pt; padding:0px 6px">
|
|
<TD><xsl:value-of select="@NAME"/></TD>
|
|
<TD><xsl:value-of select="@TYPE"/></TD>
|
|
</TR>
|
|
</xsl:for-each>
|
|
</TABLE>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|