mirror of
https://github.com/igniterealtime/Spark.git
synced 2025-12-01 12:27:58 +00:00
Initial checkin of Spark Open Source
git-svn-id: http://svn.igniterealtime.org/svn/repos/spark/trunk@4456 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
27
documentation/changes.xsl
Normal file
27
documentation/changes.xsl
Normal file
@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
||||
<xsl:template match="/">
|
||||
<html>
|
||||
<body>
|
||||
<h2>Change log</h2>
|
||||
|
||||
<ul>
|
||||
<xsl:apply-templates/>
|
||||
</ul>
|
||||
</body>
|
||||
</html>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="channel">
|
||||
<xsl:apply-templates select="item"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="item">
|
||||
<li>
|
||||
<xsl:value-of select="type"/>:
|
||||
[<xsl:value-of select="key"/>] - <xsl:value-of
|
||||
select="customfields/customfield[@id='customfield_10013']/customfieldvalues/customfieldvalue"
|
||||
/></li>
|
||||
</xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
||||
Reference in New Issue
Block a user