old-website/xsl/directory.xsl

42 lines
1.1 KiB
XML
Raw Permalink Normal View History

<?xml version='1.0'?>
2007-11-22 03:44:33 -05:00
<xsl:stylesheet version="1.1"
2007-08-11 04:26:38 -04:00
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:csc="http://csclub.uwaterloo.ca/xsltproc"
xmlns="http://www.w3.org/1999/xhtml"
exclude-result-prefixes="csc">
<xsl:output method="xml" />
<xsl:template match="directory">
<xsl:variable name="href">
<xsl:choose>
<xsl:when test="@href != ''"><xsl:value-of select="@href"/></xsl:when>
2008-03-27 23:07:22 -04:00
<xsl:otherwise>.</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:if test="@title">
2007-09-29 21:58:00 -04:00
<a class="diritem homedir" href="{$g_pre}">Home</a>
<a class="diritem" href="{$href}">
<xsl:value-of select="@title" />
</a>
</xsl:if>
2007-08-11 04:26:38 -04:00
<xsl:apply-templates select="diritem" />
</xsl:template>
2007-09-19 04:43:46 -04:00
<xsl:template name="diritem">
<xsl:param name="title" />
<xsl:param name="href" />
<a class="diritem" href="{$href}">
<xsl:value-of select="$title" />
</a>
</xsl:template>
2007-09-19 04:43:46 -04:00
<xsl:template match="diritem">
<xsl:call-template name="diritem">
<xsl:with-param name="title" select="@title" />
<xsl:with-param name="href" select="@href" />
</xsl:call-template>
</xsl:template>
</xsl:stylesheet>