Sha256: 53af52c18863ee34daac14f2f40d04e64e543f25d06c9064abe36e15df858fc5
Contents?: true
Size: 853 Bytes
Versions: 1
Compression:
Stored size: 853 Bytes
Contents
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output cdata-section-elements="script"/> <xsl:template match="/"> <html> <head> <title>Changelog</title> <link REL='SHORTCUT ICON' HREF="../img/ruby-sm.png" /> <style> td { font-family: sans-serif; padding: 0px 10px; } </style> </head> <body> <div class="container"> <h1>Changelog</h1> <table style="width: 100%;"> <xsl:apply-templates /> </table> </div> </body> </html> </xsl:template> <xsl:template match="entry"> <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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
folio-0.4.0 | doc/log/changelog.xsl |