Sha256: 9a4f54a376154074640e3e24d749dc87c37590f8cd283d9cb69db84e37eb81fa
Contents?: true
Size: 1.08 KB
Versions: 28
Compression:
Stored size: 1.08 KB
Contents
<?xml version="1.0" encoding="ISO-8859-1"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:output cdata-section-elements="script"/> <xsl:template match="/"> <html> <head> <title>Facets Changelog</title> <link REL='SHORTCUT ICON' HREF="img/xml-ruby.png" /> <style> td { font-family: monospace; font-size: 8pt; padding: 0px 10px; } </style> </head> <body> <div class="container"> <h1>LibXML ChangeLog</h1> <table style="width: 100%;"> <xsl:apply-templates /> </table> <br/><br/> <div class='copyright'> Copyright © 2001-2006 LibXML-Ruby Development Team<br/> Changelog is pure XML/XSLT.<br/> </div> </div> </body> </html> </xsl:template> <xsl:template match="logentry"> <tr> <td><b><pre><xsl:value-of select="msg"/></pre></b></td> <td><xsl:value-of select="author"/></td> <td><xsl:value-of select="date"/></td> </tr> </xsl:template> </xsl:stylesheet>
Version data entries
28 entries across 28 versions & 3 rubygems