blob: ba17f504dc5690ef07cb0e4916ae798d642d9568 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<!--
svn2html.xsl - xslt stylesheet for converting svn log to a normal
changelog fromatted in html
version 0.12
Usage (replace ++ with two minus signs):
svn ++verbose ++xml log | \
xsltproc ++stringparam strip-prefix `basename $(pwd)` \
++stringparam groupbyday yes \
++stringparam authorsfile FILE \
++stringparam title NAME \
++stringparam revision-link NAME \
svn2html.xsl - > ChangeLog.html
This file is partially based on (and includes) svn2cl.xsl.
Copyright (C) 2005, 2006, 2007, 2009 Arthur de Jong.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
3. The name of the author may not be used to endorse or promote
products derived from this software without specific prior
written permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-->
<xsl:stylesheet
version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<!-- include default formatting templates from svn2cl.xsl -->
<xsl:include href="svn2cl.xsl" />
<xsl:output
method="xml"
encoding="utf-8"
media-type="text/html"
omit-xml-declaration="no"
standalone="yes"
indent="yes"
doctype-public="-//W3C//DTD XHTML 1.1//EN"
doctype-system="http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd" />
<!-- title of the report -->
<xsl:param name="title" select="'ChangeLog'" />
<!-- link to use for linking revision numbers -->
<xsl:param name="revision-link" select="'#r'" />
<!-- match toplevel element -->
<xsl:template match="log">
<html>
<head>
<title><xsl:value-of select="string($title)" /></title>
<link rel="stylesheet" href="svn2html.css" type="text/css" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<xsl:if test="$title">
<h1><xsl:value-of select="string($title)" /></h1>
</xsl:if>
<ul class="changelog_entries">
<xsl:choose>
<xsl:when test="$ignore-message-starting != ''">
<!-- only handle logentries with don't contain the string -->
<xsl:apply-templates select="logentry[not(starts-with(msg,$ignore-message-starting))]" />
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates select="logentry" />
</xsl:otherwise>
</xsl:choose>
</ul>
<p class="changelog_footer">
<xsl:text>Generated by </xsl:text><a href="http://arthurdejong.org/svn2cl/">svn2cl 0.12</a>
</p>
</body>
</html>
</xsl:template>
<!-- format one entry from the log -->
<xsl:template match="logentry">
<xsl:choose>
<!-- if we're grouping we should omit some headers -->
<xsl:when test="$groupbyday='yes'">
<!-- fetch previous entry's date -->
<xsl:variable name="prevdate">
<xsl:apply-templates select="preceding-sibling::logentry[position()=1]/date" />
</xsl:variable>
<!-- fetch previous entry's author -->
<xsl:variable name="prevauthor">
<xsl:value-of select="normalize-space(preceding-sibling::logentry[position()=1]/author)" />
</xsl:variable>
<!-- fetch this entry's date -->
<xsl:variable name="date">
<xsl:apply-templates select="date" />
</xsl:variable>
<!-- fetch this entry's author -->
<xsl:variable name="author">
<xsl:value-of select="normalize-space(author)" />
</xsl:variable>
<!-- check if header is changed -->
<xsl:if test="($prevdate!=$date) or ($prevauthor!=$author)">
<li class="changelog_entry">
<!-- date -->
<span class="changelog_date"><xsl:value-of select="$date" /></span>
<xsl:text>&#32;</xsl:text>
<!-- author's name -->
<span class="changelog_author"><xsl:apply-templates select="author" /></span>
</li>
</xsl:if>
</xsl:when>
<!-- write the log header -->
<xsl:otherwise>
<li class="changelog_entry">
<!-- date -->
<span class="changelog_date"><xsl:apply-templates select="date" /></span>
<xsl:text>&#32;</xsl:text>
<!-- author's name -->
<span class="changelog_author"><xsl:apply-templates select="author" /></span>
</li>
</xsl:otherwise>
</xsl:choose>
<!-- entry -->
<li class="changelog_change">
<!-- get revision number -->
<xsl:variable name="revlink">
<xsl:choose>
<xsl:when test="contains($revision-link,'##')">
<xsl:value-of select="concat(substring-before($revision-link,'##'),@revision,substring-after($revision-link,'##'))" />
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="concat($revision-link,@revision)" />
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<span class="changelog_revision">
<a id="r{@revision}" href="{$revlink}">[r<xsl:value-of select="@revision" />]</a>
</span>
<xsl:text>&#32;</xsl:text>
<!-- get paths string -->
<span class="changelog_files"><xsl:apply-templates select="paths" /></span>
<xsl:text>&#32;</xsl:text>
<!-- get message text -->
<xsl:variable name="msg">
<xsl:call-template name="trim-newln">
<xsl:with-param name="txt" select="msg" />
</xsl:call-template>
</xsl:variable>
<xsl:variable name="msg2">
<xsl:call-template name="newlinestobr">
<xsl:with-param name="txt" select="$msg" />
</xsl:call-template>
</xsl:variable>
<span class="changelog_message">
<xsl:call-template name="urlstolinks">
<xsl:with-param name="txt" select="$msg2" />
</xsl:call-template>
</span>
</li>
</xsl:template>
<!-- template to replace line breaks with <br /> tags -->
<xsl:template name="newlinestobr">
<xsl:param name="txt" />
<xsl:choose>
<xsl:when test="contains($txt,'&#10;')">
<!-- text contains newlines, do the first line -->
<xsl:value-of select="substring-before($txt,'&#10;')" />
<!-- print new line -->
<br />
<!-- wrap the rest of the text -->
<xsl:call-template name="newlinestobr">
<xsl:with-param name="txt" select="substring-after($txt,'&#10;')" />
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$txt" />
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- template to replace url-like strings with links -->
<xsl:template name="urlstolinks">
<xsl:param name="txt" />
<!-- see if the string contains something url-like -->
<xsl:variable name="before">
<xsl:choose>
<xsl:when test="contains($txt,'http://')">
<xsl:value-of select="substring-before($txt,'http://')" />
</xsl:when>
<xsl:when test="contains($txt,'https://')">
<xsl:value-of select="substring-before($txt,'https://')" />
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$txt" />
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<!-- output the first part -->
<xsl:value-of select="$before" />
<!-- get the rest of the text -->
<xsl:variable name="rest" select="substring($txt,string-length($before)+1)" />
<!-- if there is a rest it's beginning is a URL -->
<xsl:if test="string-length($rest) &gt; 0">
<!-- get the url part -->
<xsl:variable name="url">
<xsl:choose>
<xsl:when test="contains($rest,' ')">
<xsl:value-of select="substring-before($rest,' ')" />
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$rest" />
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<!-- output the link -->
<a href="{$url}"><xsl:value-of select="$url" /></a>
<!-- parse the part after -->
<xsl:call-template name="urlstolinks">
<xsl:with-param name="txt" select="substring($rest,string-length($url)+1)" />
</xsl:call-template>
</xsl:if>
</xsl:template>
</xsl:stylesheet>