@ -34,14 +34,18 @@
<xsl:apply-templates />
</xsl:template>
<xsl:template match= "biglogo" name= "menu " >
<table cellspacing= "0" cellpadding= "2 " border= "0" align= "center" >
<xsl:template match= "biglogo" name= "biglogo " >
<table cellspacing= "0" cellpadding= "0 " border= "0" align= "center" >
<tr >
<td width= "174" rowspan= "2" > <img src= "/logos/csc_160_70.png" alt= "CSC" width= "165" height= "75" /> </td>
<td > University of Waterloo</td>
</tr>
<tr >
<td > Computer Science Club</td>
<td width= "109" > <a href= "http://www.uwaterloo.ca/" > <img
src="/logos/uw_logo_100_68.gif" alt="University of Waterloo"
width="100" height="68" align="center" border="0" /></a> </td>
<td width= "174" > <a href= "/" > <img src= "/logos/csc_160_70.png"
alt="Computer Science Club" width="165" height="75" align="center"
border="0" /></a> </td>
<td width= "91" > <a href= "http://www.acm.org" > <img width= "82"
height="103" src="/logos/acm_logo.gif" alt="A Student Chapter of
the ACM" align="center" border="0" /></a> </td>
</tr>
</table>
</xsl:template>
@ -239,6 +243,9 @@
</tr>
<xsl:for-each select= "document('members.xml')/memberlist/member" >
<tr >
<xsl:if test= "position() mod 2 = 0" >
<xsl:attribute name= "bgcolor" > #cee6ff</xsl:attribute>
</xsl:if>
<td > <xsl:value-of select= "@id" /> </td>
<td > <xsl:value-of select= "@name" /> </td>
<td > <xsl:value-of select= "@program" /> </td>
@ -247,6 +254,52 @@
</table>
</xsl:template>
<xsl:template match= "all-books" >
<p > The books we currently own include:</p>
<table >
<tr >
<th > Title</th>
<th > Author</th>
</tr>
<xsl:for-each select= "document('books.xml')/booklist/book" >
<tr >
<xsl:if test= "position() mod 2 = 0" >
<xsl:attribute name= "bgcolor" > #cee6ff</xsl:attribute>
</xsl:if>
<td > <a href= "/office/books/{@isbn}.html" > <xsl:value-of
select="@title"/><xsl:if test= "@edition != ''" > (<xsl:value-of
select="@edition"/>)</xsl:if> </a> </td>
<td > <xsl:value-of select= "@author" /> </td>
</tr>
<xsl:document method= "html" href= "{translate(concat($root, '/office/books/', @isbn, '.html'), ' ', '_')}" >
<xsl:text disable-output-escaping= "yes" > <![CDATA[<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">]]>
</xsl:text>
<html >
<head >
<title > Book: <xsl:value-of select= "@title" /> </title>
<style type= "text/css" >
<![CDATA[<!-- @import url('/default.css'); -->]]>
</style>
</head>
<body >
<xsl:call-template name= "header" >
<xsl:with-param name= "title" select= "@title" />
</xsl:call-template>
<p >
<b > Title: </b> <xsl:value-of select= "@title" /> <br />
<b > Edition: </b> <xsl:value-of select= "@edition" /> <br />
<b > ISBN: </b> <xsl:value-of select= "@isbn" /> <br />
<b > Author: </b> <xsl:value-of select= "@author" /> <br />
<b > Published: </b> <xsl:value-of select= "@published" /> <br />
</p>
<xsl:call-template name= "footer" />
</body>
</html>
</xsl:document>
</xsl:for-each>
</table>
</xsl:template>
<xsl:template match= "generate-event-files" >
<xsl:apply-templates select= "document('events.xml')/eventdefs" />
</xsl:template>