Add Tobi's stylesheet for Helma xml db files
This commit is contained in:
parent
f1f4dbf8c1
commit
29c4e2bcc3
1 changed files with 127 additions and 0 deletions
127
src/helma/objectmodel/dom/helma.xsl
Normal file
127
src/helma/objectmodel/dom/helma.xsl
Normal file
|
@ -0,0 +1,127 @@
|
|||
<?xml version="1.0" encoding="iso-8859-15"?>
|
||||
|
||||
<xsl:stylesheet
|
||||
version="1.0"
|
||||
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:hop="http://www.helma.org/docs/guide/features/database"
|
||||
>
|
||||
|
||||
<xsl:output method="html"/>
|
||||
|
||||
<xsl:template match="/">
|
||||
<html>
|
||||
<head>
|
||||
<title>Helma Object Publisher XML Database File</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" />
|
||||
</head>
|
||||
<body bgcolor="white">
|
||||
|
||||
<xsl:variable name="id" select="/xmlroot/hopobject/@id"/>
|
||||
<h2>
|
||||
<xsl:if test="$id = 0">root</xsl:if>
|
||||
<xsl:if test="$id > 0">
|
||||
<a href="0.xml">root</a> : HopObject <xsl:value-of select="$id"/>
|
||||
</xsl:if>
|
||||
</h2>
|
||||
|
||||
<table border="0" cellspacing="1" cellpadding="5" bgcolor="gray">
|
||||
<tr bgcolor="white">
|
||||
<th>Name</th>
|
||||
<th>Value</th>
|
||||
</tr>
|
||||
|
||||
<xsl:variable name="name" select="/xmlroot/hopobject/@name"/>
|
||||
<xsl:if test="$name">
|
||||
<xsl:call-template name="property">
|
||||
<xsl:with-param name="name">_name</xsl:with-param>
|
||||
<xsl:with-param name="value" select="$name"/>
|
||||
</xsl:call-template>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:variable name="prototype" select="/xmlroot/hopobject/@prototype"/>
|
||||
<xsl:if test="$prototype">
|
||||
<xsl:call-template name="property">
|
||||
<xsl:with-param name="name">_prototype</xsl:with-param>
|
||||
<xsl:with-param name="value" select="$prototype"/>
|
||||
</xsl:call-template>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:variable name="parent" select="/xmlroot/hopobject/hop:parent"/>
|
||||
<xsl:if test="$parent">
|
||||
<xsl:call-template name="property">
|
||||
<xsl:with-param name="name">_parent</xsl:with-param>
|
||||
<xsl:with-param name="value">
|
||||
HopObject <xsl:value-of select="$parent/@idref"/>
|
||||
</xsl:with-param>
|
||||
<xsl:with-param name="href">
|
||||
<xsl:value-of select="$parent/@idref"/>.xml
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:variable name="children" select="/xmlroot/hopobject/hop:child"/>
|
||||
<xsl:if test="count($children) > 0">
|
||||
<tr bgcolor="white">
|
||||
<td valign="top" nowrap="nowrap">_children</td>
|
||||
<td>
|
||||
<xsl:for-each select="/xmlroot/hopobject/hop:child">
|
||||
<xsl:sort select="@idref" data-type="number"/>
|
||||
<a href="{@idref}.xml">HopObject <xsl:value-of select="@idref"/></a>
|
||||
<xsl:if test="position() < count($children)">
|
||||
<xsl:text>, </xsl:text>
|
||||
</xsl:if>
|
||||
</xsl:for-each>
|
||||
</td>
|
||||
</tr>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:for-each select="/xmlroot/hopobject/*">
|
||||
<xsl:sort select="name()"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="name() = 'hop:parent'"/>
|
||||
<xsl:when test="name() = 'hop:child'"/>
|
||||
<xsl:when test="@idref">
|
||||
<xsl:call-template name="property">
|
||||
<xsl:with-param name="name">
|
||||
<xsl:value-of select="name()"/>
|
||||
</xsl:with-param>
|
||||
<xsl:with-param name="value">
|
||||
HopObject <xsl:value-of select="@idref"/>
|
||||
</xsl:with-param>
|
||||
<xsl:with-param name="href">
|
||||
<xsl:value-of select="@idref"/>.xml
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="property">
|
||||
<xsl:with-param name="name"><xsl:value-of select="name()"/></xsl:with-param>
|
||||
<xsl:with-param name="value"><xsl:value-of select="text()"/></xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:for-each>
|
||||
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="property">
|
||||
<xsl:param name="name"/>
|
||||
<xsl:param name="type"/>
|
||||
<xsl:param name="href"/>
|
||||
<xsl:param name="value"/>
|
||||
|
||||
<tr bgcolor="white">
|
||||
<td valign="top" nowrap="nowrap"><xsl:value-of select="$name"/></td>
|
||||
<td><xsl:if test="$href">
|
||||
<a href="{$href}"><xsl:value-of select="$value"/></a>
|
||||
</xsl:if>
|
||||
<xsl:if test="$href = ''">
|
||||
<xsl:value-of select="$value"/>
|
||||
</xsl:if></td>
|
||||
</tr>
|
||||
</xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
Loading…
Add table
Reference in a new issue