<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:html="http://www.w3.org/TR/REC-html40/">
<xsl:output method="html" encoding="utf-8" />

<xsl:template match="Library">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="author" content="Johannes Knabe"/>
<meta name="description" content="List of texts Johannes Knabe has read, which were (by no fixed criteria) more important.
 Started July 2005, older stuff incompletely added."/>
<meta name="keywords" content="scientific books recurrent neural networks dynamics adaptive systems evolution biology epistemology listing rating Johannes Knabe"/>
<title>List of Texts</title>
<link rel="stylesheet" type="text/css" href="../browser/general.css">
</head>
<body>
<table border="1px"><tr><th>Lang.</th><th>Type</th><th>Title</th><th>Author</th><th>Topic</th>
           <th>Rating<br/>(1 to 5 - best)</th><th>Comment</th><th>Acquired</th></tr>
<xsl:apply-templates/>
</table>
</body>
</html>
</xsl:template>
<xsl:template match="Notification">
</xsl:template>
<xsl:template match="Text">
<tr>
<xsl:apply-templates/>
</tr>
</xsl:template>
<xsl:template match="Language">
    <td><xsl:value-of select="."/></td>
</xsl:template>
<xsl:template match="Type">
    <td><xsl:value-of select="."/></td>
</xsl:template>
<xsl:template match="Title">
    <td><xsl:value-of select="."/></td>
</xsl:template>
<xsl:template match="Author">
    <td><xsl:value-of select="."/></td>
</xsl:template>
<xsl:template match="Acquired">
    <td><xsl:value-of select="."/></td>
</xsl:template>
<xsl:template match="Topic">
    <td><xsl:value-of select="."/></td>
</xsl:template>
<xsl:template match="Rating">
    <td><xsl:value-of select="."/></td>
</xsl:template>
<xsl:template match="Comment">
    <td><xsl:value-of select="."/></td>
</xsl:template>
</xsl:stylesheet>