Adam Vessey
13 years ago
committed by
Adam Vessey
2 changed files with 40 additions and 32 deletions
@ -1,33 +1,33 @@ |
|||||||
<?xml version="1.0" encoding="UTF-8"?> |
<?xml version="1.0" encoding="UTF-8"?> |
||||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> |
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> |
||||||
<xsl:variable name="BASEURL"> |
<!-- Old parameter names "$baseUrl" and "$path" are deprecated. Currently just used as defaults. --> |
||||||
<xsl:value-of select="$baseUrl"/> |
<xsl:param name="BASEURL" select="$baseUrl"/> |
||||||
</xsl:variable> |
<xsl:param name="PATH" select="$path"/> |
||||||
<xsl:variable name="PATH"> |
|
||||||
<xsl:value-of select="$path"/> |
<xsl:template match="/"> |
||||||
</xsl:variable> |
<div> |
||||||
<xsl:template match="/"> |
<table cellspacing="3" cellpadding="3"> |
||||||
|
<tbody> |
||||||
<div><table cellspacing="3" cellpadding="3"><tbody> |
<tr> |
||||||
<tr><th colspan="3"><h3>MetaData</h3></th></tr> |
<th colspan="3"><h3>MetaData</h3></th> |
||||||
<xsl:for-each select="/*/*"> |
</tr> |
||||||
<xsl:variable name="FULLFIELD" select="name()"/> |
<xsl:for-each select="/*/*"> |
||||||
<xsl:variable name="FIELD" select="local-name()"/> |
<xsl:variable name="FULLFIELD" select="name()"/> |
||||||
<xsl:variable name="DATA" select="text()"/> |
<xsl:variable name="FIELD" select="local-name()"/> |
||||||
<xsl:if test="$DATA != ' '"> |
<xsl:variable name="DATA" select="normalize-space(text())"/> |
||||||
<tr><td><strong><xsl:value-of select="local-name()"/></strong></td><td><xsl:value-of select="text()"/> |
<xsl:if test="$DATA"> |
||||||
<xsl:for-each select="*"> |
<tr> |
||||||
<div> |
<td><strong><xsl:value-of select="local-name()"/></strong></td> |
||||||
<xsl:value-of select="local-name()"/> = <xsl:value-of select="text()"/> |
<td><xsl:value-of select="$DATA"/> |
||||||
</div> |
<xsl:for-each select="*"> |
||||||
</xsl:for-each> |
<div><xsl:value-of select="concat(local-name(), ' = ', text())"/></div> |
||||||
</td></tr> |
</xsl:for-each> |
||||||
</xsl:if> |
</td> |
||||||
</xsl:for-each> |
</tr> |
||||||
|
</xsl:if> |
||||||
</tbody></table></div> |
</xsl:for-each> |
||||||
|
</tbody> |
||||||
</xsl:template> |
</table> |
||||||
|
</div> |
||||||
|
</xsl:template> |
||||||
</xsl:stylesheet> |
</xsl:stylesheet> |
||||||
|
Loading…
Reference in new issue