old-website/xsl/positions.xsl

26 lines
807 B
XML
Raw Normal View History

<?xml version='1.0'?>
2007-11-22 03:44:33 -05:00
<xsl:stylesheet version="1.1"
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="positions">
<xsl:variable name="exec" select="@exec" />
<xsl:for-each select="csc:position-list('')/position[@exec=$exec]">
<xsl:sort select="@order" order="ascending" />
2007-11-21 18:35:32 -05:00
<xsl:if test="holder">
<p>
2007-11-22 04:56:40 -05:00
<a class="position" href="mailto:{@position}@csclub.uwaterloo.ca"><xsl:value-of select="@name" /></a><br />
2007-11-21 18:35:32 -05:00
<xsl:for-each select="holder">
<xsl:value-of select="@name" /><br />
</xsl:for-each>
</p>
</xsl:if>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>