After Width: | Height: | Size: 3.3 KiB |
After Width: | Height: | Size: 3.3 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 3.9 KiB |
After Width: | Height: | Size: 2.7 KiB |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 208 B |
After Width: | Height: | Size: 24 KiB |
After Width: | Height: | Size: 511 B |
After Width: | Height: | Size: 2.4 KiB |
After Width: | Height: | Size: 3.5 KiB |
After Width: | Height: | Size: 2.0 KiB |
After Width: | Height: | Size: 3.6 KiB |
After Width: | Height: | Size: 2.9 KiB |
After Width: | Height: | Size: 4.1 KiB |
After Width: | Height: | Size: 2.7 KiB |
After Width: | Height: | Size: 3.0 KiB |
After Width: | Height: | Size: 3.8 KiB |
@ -0,0 +1,14 @@ |
||||
<menudefs> |
||||
<menuitem title="Home" icon="homepage" href="index.html"/> |
||||
<menuitem title="About" icon="csc" href="about/"/> |
||||
<menuitem title="Services" icon="services" href="services/"/> |
||||
<menuitem title="Office" icon="office" href="office/"/> |
||||
<menuitem title="Events" icon="calendar" href="events/"/> |
||||
<menuitem title="Media" icon="package_multimedia" href="media/"/> |
||||
<menuitem title="Library" icon="library" absolute="true" href="http://library.csclub.uwaterloo.ca/"/> |
||||
<menuitem title="Wiki" icon="sunflower" absolute="true" href="http://wiki.csclub.uwaterloo.ca/"/> |
||||
<menuitem title="Webmail" icon="horde" absolute="true" href="https://mail.csclub.uwaterloo.ca/"/> |
||||
<menuitem title="Mailman" icon="mm-icon" absolute="true" href="/mailman/"/> |
||||
<menuitem title="gopher" icon="gopher" absolute="true" href="gopher://csclub.uwaterloo.ca/"/> |
||||
<menuitem title="gitweb" icon="gitweb" absolute="true" href="http://gitweb.csclub.uwaterloo.ca/"/> |
||||
</menudefs> |
@ -0,0 +1,35 @@ |
||||
<?xml version='1.0'?> |
||||
|
||||
<xsl:stylesheet version="2.0" |
||||
xmlns="http://www.w3.org/1999/xhtml" |
||||
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" |
||||
xmlns:xs="http://www.w3.org/2001/XMLSchema" |
||||
xmlns:fn="http://www.w3.org/2005/xpath-functions" |
||||
xmlns:csc="http://csclub.uwaterloo.ca/xslt"> |
||||
|
||||
<xsl:template match="menuitem"> |
||||
<xsl:variable name="preabs"> |
||||
<xsl:choose> |
||||
<xsl:when test="@absolute = 'true'" /> |
||||
<xsl:otherwise> |
||||
<xsl:value-of select="$pre" /> |
||||
</xsl:otherwise> |
||||
</xsl:choose> |
||||
</xsl:variable> |
||||
<div class="menuitem"> |
||||
<a href="{$preabs}{@href}"><p><img src="{$pre}buttons/{@icon}.png" width="40" |
||||
height="40" alt="{@title}" /></p><p><xsl:value-of select="@title" /></p></a> |
||||
</div> |
||||
</xsl:template> |
||||
|
||||
<xsl:template match="menudefs"> |
||||
<div class="menubar"> |
||||
<xsl:apply-templates select="menuitem" /> |
||||
</div> |
||||
</xsl:template> |
||||
|
||||
<xsl:template match="menu" name="menu"> |
||||
<xsl:apply-templates select="document(concat($g_root, '/menu.xml'))/menudefs" /> |
||||
</xsl:template> |
||||
|
||||
</xsl:stylesheet> |