blob: 721d81cbfbb679676f7eeee2c03cece8dc72af59 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:ch="http://cocoonhive.org/portal/schema/2002"
>
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="ch:page">
<html>
<head>
<title>CocoonHive.org Portal</title>
<link type="text/css" href="stylesheets/page.css" rel="stylesheet"/>
</head>
<body>
<a href="http://www.cocoonhive.org">CocoonHive</a> Portal
<a href="http://cvs.apache.org/viewcvs.cgi/cocoon-2.1/src/webapp/samples/webserviceproxy/">View source (CVS)</a>
<br/>
<xsl:apply-templates/>
</body>
</html>
</xsl:template>
<xsl:template match="ch:menu">
<div class="frame warning">
<div class="label">Menu</div>
<div class="warning">
<xsl:apply-templates/>
</div>
</div>
<br/>
</xsl:template>
<xsl:template match="ch:item">
<xsl:element name="a">
<xsl:attribute name="href"><xsl:value-of select="ch:command"/></xsl:attribute>
<xsl:value-of select="ch:label"/>
</xsl:element>
<xsl:text> </xsl:text>
</xsl:template>
<xsl:template match="ch:frame">
<div class="frame note">
<div class="label"><xsl:value-of select="ch:title"/></div>
<div class="note ">
<xsl:copy-of select="ch:content/*"/>
</div>
</div>
</xsl:template>
<xsl:template match="*"/>
</xsl:stylesheet>