blob: 84109245e4605b30f6f2cb247930a492dfee38f2 [file] [log] [blame]
<?xml version="1.0"?>
<!-- 5630-A23, 5630-A22, (C) Copyright IBM Corporation, 1997, 2000 -->
<!-- All rights reserved. Licensed Materials Property of IBM -->
<!-- Note to US Government users: Documentation related to restricted rights -->
<!-- Use, duplication or disclosure is subject to restrictions set forth in GSA ADP Schedule with IBM Corp. -->
<!-- This page may contain other proprietary notices and copyright information, the terms of which must be observed and followed. -->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/TR/REC-html40">
<xsl:output method="html" indent="no"/>
<xsl:template match="/">
<html>
<head>
<meta name="GENERATOR" content="Mozilla/4.73 [en] (Windows NT 5.0; U) [Netscape]"></meta>
</head>
<body>
<table BORDER="0" CELLSPACING="0" CELLPADDING="0" COLS="4" WIDTH="100%" >
<caption><b><font face="Arial,Helvetica"><font size="-1">My Books</font></font></b></caption>
<tr>
<td ALIGN="CENTER" WIDTH="75" BGCOLOR="#666666"><b><font face="Arial,Helvetica"><font color="#FFFFFF"><font size="-2">ISBN</font></font></font></b></td>
<td ALIGN="CENTER" WIDTH="250" BGCOLOR="#666666"><b><font face="Arial,Helvetica"><font color="#FFFFFF"><font size="-2">Title</font></font></font></b></td>
<td ALIGN="CENTER" BGCOLOR="#666666"><b><font face="Arial,Helvetica"><font color="#FFFFFF"><font size="-2">Author</font></font></font></b></td>
<td ALIGN="CENTER" BGCOLOR="#666666"><b><font face="Arial,Helvetica"><font color="#FFFFFF"><font size="-2">Published</font></font></font></b></td>
</tr>
<xsl:apply-templates/>
</table>
</body>
</html>
</xsl:template>
<xsl:template match="BOOK">
<tr>
<td BGCOLOR="#CCCCCC"><font face="Arial,Helvetica"><font size="-1"> <xsl:value-of select="ISBN"/> </font></font></td>
<td BGCOLOR="#EBEBEB"><font face="Arial,Helvetica"><font size="-1"> <xsl:value-of select="TITLE"/> </font></font></td>
<td BGCOLOR="#CCCCCC"><font face="Arial,Helvetica"><font size="-1"> <xsl:value-of select="AUTHOR"/> </font></font></td>
<td ALIGN="left" BGCOLOR="#EBEBEB"><font face="Arial,Helvetica"><font size="-1"> <xsl:value-of select="YEAR-PUBLISHED"/> </font></font></td>
</tr>
</xsl:template>
</xsl:stylesheet>