⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 changes.xsl.svn-base

📁 开源项目openfire的完整源程序
💻 SVN-BASE
字号:
<?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>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -