gaim/www

update tags
default tip
2019-09-10, convert-repo
7d915c997ccd
update tags
<xsl:stylesheet version="1.1" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html"/>
<xsl:template match="/">
<html>
<head>
<title>Gaim Status Rewrite Bugs</title>
<meta HTTP-EQUIV="Content-Type" content="text/html; charset=UTF-8"/>
<link rel="stylesheet" href="gaim.css" type="text/css"/>
</head>
<body>
<table>
<tr class="header">
<th>Bug</th>
<th>Description</th>
<th>Priority</th>
<th>Found By</th>
<th>Found On</th>
<th>Fixed By</th>
<th>Fixed On</th>
<th>Patch</th>
</tr>
<xsl:for-each select="gaim/bug">
<xsl:sort select="fixedon" order="ascending"/>
<tr>
<xsl:attribute name="class">
<xsl:choose>
<xsl:when test="patch">
<xsl:text>fixed</xsl:text>
</xsl:when>
<xsl:when test="string-length(fixedon) != 0">
<xsl:text>fixed</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="priority"/>
</xsl:otherwise>
</xsl:choose>
</xsl:attribute>
<td><xsl:value-of select="number"/></td>
<td><xsl:value-of select="description"/></td>
<td><xsl:value-of select="priority"/></td>
<td><xsl:value-of select="foundby"/></td>
<td><xsl:value-of select="foundon"/></td>
<td><xsl:value-of select="fixedby"/></td>
<td><xsl:value-of select="fixedon"/></td>
<td>
<xsl:if test="patch">
<a>
<xsl:attribute name="href">
<xsl:value-of select="patch"/>
</xsl:attribute>
<xsl:text>patch</xsl:text>
</a>
</xsl:if>
</td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>