aboutsummaryrefslogtreecommitdiff
path: root/source/02_augment
diff options
context:
space:
mode:
authorAdrian Kummerlaender2014-10-17 22:59:45 +0200
committerAdrian Kummerlaender2014-10-17 22:59:45 +0200
commitacacfda54016cbd4437d1ccaa609a52e9c1739d0 (patch)
tree6429c262d2e33fe215613e6b0ac69a0af5f0492b /source/02_augment
downloadOverview-acacfda54016cbd4437d1ccaa609a52e9c1739d0.tar
Overview-acacfda54016cbd4437d1ccaa609a52e9c1739d0.tar.gz
Overview-acacfda54016cbd4437d1ccaa609a52e9c1739d0.tar.bz2
Overview-acacfda54016cbd4437d1ccaa609a52e9c1739d0.tar.lz
Overview-acacfda54016cbd4437d1ccaa609a52e9c1739d0.tar.xz
Overview-acacfda54016cbd4437d1ccaa609a52e9c1739d0.tar.zst
Overview-acacfda54016cbd4437d1ccaa609a52e9c1739d0.zip
Added basic commit timeline aggregator implementation
* another application based on StaticXSLT * git is instructed to export XML through a special log format definition * the commit messages are processed as Markdown * currently implemented result views are commits-by-repo and a paginated timeline of all commits in every repository * repositories to be read have to be defined in the `repositories.xml` file in the `00_content` level
Diffstat (limited to 'source/02_augment')
-rw-r--r--source/02_augment/formatted_commits.xsl45
1 files changed, 45 insertions, 0 deletions
diff --git a/source/02_augment/formatted_commits.xsl b/source/02_augment/formatted_commits.xsl
new file mode 100644
index 0000000..555e0d8
--- /dev/null
+++ b/source/02_augment/formatted_commits.xsl
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<xsl:stylesheet
+ version="1.0"
+ xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ xmlns:InputXSLT="function.inputxslt.application"
+ exclude-result-prefixes="InputXSLT"
+>
+
+<xsl:include href="[utility/datasource.xsl]"/>
+
+<xsl:variable name="meta">
+ <datasource type="main" mode="full" source="01_raw/commits.xml" target="repositories"/>
+ <target mode="plain" value="formatted_commits.xml"/>
+</xsl:variable>
+
+<xsl:template name="formatter">
+ <xsl:param name="format"/>
+ <xsl:param name="source"/>
+
+ <xsl:copy-of select="InputXSLT:external-command(
+ $format,
+ $source
+ )/self::command/node()"/>
+</xsl:template>
+
+<xsl:template match="message/text()" mode="commit">
+ <xsl:call-template name="formatter">
+ <xsl:with-param name="format">markdown</xsl:with-param>
+ <xsl:with-param name="source" select="."/>
+ </xsl:call-template>
+</xsl:template>
+
+<xsl:template match="@*|node()" mode="commit">
+ <xsl:copy>
+ <xsl:apply-templates select="@*|node()" mode="commit"/>
+ </xsl:copy>
+</xsl:template>
+
+<xsl:template match="repositories/entry">
+ <entry handle="{@handle}">
+ <xsl:apply-templates select="commit" mode="commit"/>
+ </entry>
+</xsl:template>
+
+</xsl:stylesheet>