<?xml version="1.0" ?>
<!-- file: http://xlqr.de/stuff/all_bots/all_bots.xsl -->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="bots">

<html>
<head>
<title>robots.txt database</title>
</head>
<body style="color:#000;font-size:small; font-family: 'Lucida Grande', sans-serif; background:#8b9a8f url(http://xlqr.de/xlqr/img/baum.jpg) no-repeat fixed right bottom">

#<br/>
# robots.txt database of <a style="color:#a60f38; text-decoration: none" href="http://xlqr.de">http://xlqr.de</a><br/>
#<br/>
# suggestions, comments, complaints and more infos: <a style="color:#a60f38; text-decoration: none" href="http://dereinzige.de/2007/03/26/robots-database/">http://dereinzige.de/2007/03/26/robots-database/</a><br/>
#<br/>
# if you want it, use copy + paste ;) <a style="color:#a60f38; text-decoration: none" href="http://creativecommons.org/licenses/by-sa/3.0/">http://creativecommons.org/licenses/by-sa/3.0/</a><br/>
#<br/>
         
<xsl:apply-templates select="bot">
<xsl:sort select="allow" order="ascending" />
<xsl:sort select="agent" order="ascending" />
</xsl:apply-templates>

#<br/>
# <a style="color:#a60f38; text-decoration: none" href="#top">top</a><br/>
#<br/>
# have a nice day :)<br/>
#<br/>
 <img style="float:right"><xsl:attribute name="src">http://cgi.brettnet.de/CGI/counter</xsl:attribute></img>
</body>
</html>

</xsl:template>

<xsl:template match="bot">
<p>
User-agent: <xsl:value-of select="agent" /><br/>
#url: <a style="color:#a60f38; text-decoration: none"><xsl:attribute name="href"><xsl:value-of select="url" /></xsl:attribute><xsl:value-of select="url" /></a><br/>
#note: <xsl:value-of select="note" /><br/>
Disallow: <xsl:value-of select="allow" /><br/>
<xsl:value-of select="delay" />
</p>

</xsl:template>
</xsl:stylesheet>
