aboutsummaryrefslogtreecommitdiff
path: root/source/99_result/timeline.xsl
diff options
context:
space:
mode:
authorAdrian Kummerlaender2014-10-26 11:40:28 +0100
committerAdrian Kummerlaender2014-10-26 11:40:28 +0100
commit0d0e34feb65ba998f8b1df06b498de3f56ea6b7e (patch)
treebf404e95a5abb1ac95c7c638e112ca8d4e812171 /source/99_result/timeline.xsl
parentee1786edd7972f9ff55fc8abb90a6d981d66998e (diff)
downloadOverview-0d0e34feb65ba998f8b1df06b498de3f56ea6b7e.tar
Overview-0d0e34feb65ba998f8b1df06b498de3f56ea6b7e.tar.gz
Overview-0d0e34feb65ba998f8b1df06b498de3f56ea6b7e.tar.bz2
Overview-0d0e34feb65ba998f8b1df06b498de3f56ea6b7e.tar.lz
Overview-0d0e34feb65ba998f8b1df06b498de3f56ea6b7e.tar.xz
Overview-0d0e34feb65ba998f8b1df06b498de3f56ea6b7e.tar.zst
Overview-0d0e34feb65ba998f8b1df06b498de3f56ea6b7e.zip
Replaced local Git log extraction with CGit ATOM feeds
* I just realized that repository specific commit feeds are already provided by both CGit and GitHub ** i.e. I made the mistake of not checking if my current system already provides the required functionality when I wanted to aggregate my commits and found this to be a use case for StaticXSLT * feeds are fetched via `curl` ** this will be a local request in production ** the messages are still cleaned using `sed` and transformed into _XHTML_ using `peg-markdown` * instead of reading a customized Git log output CommitLog now simply transforms CGit ATOM feeds using identity templates ** this requires ATOM namespace removal which is implemented in `utility/remove_namespace.xsl`
Diffstat (limited to 'source/99_result/timeline.xsl')
-rw-r--r--source/99_result/timeline.xsl15
1 files changed, 3 insertions, 12 deletions
diff --git a/source/99_result/timeline.xsl b/source/99_result/timeline.xsl
index 4793e8c..dfcca01 100644
--- a/source/99_result/timeline.xsl
+++ b/source/99_result/timeline.xsl
@@ -44,21 +44,12 @@
<xsl:value-of select="$hash"/>
</id>
<title>
- <xsl:value-of select="$commit/message/h1"/>
+ <xsl:value-of select="$commit/title"/>
</title>
- <link rel="alternate" title="{@hash}">
- <xsl:attribute name="href">
- <xsl:value-of select="concat(
- $root/meta/mirror/repository, '/',
- $repository, '/',
- $root/meta/mirror/commit,
- $hash
- )"/>
- </xsl:attribute>
- </link>
+ <link rel="alternate" title="{$commit/title}" href="{$commit/link}"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
- <xsl:apply-templates select="$commit/message/*[name() != 'h1']" mode="xhtml"/>
+ <xsl:apply-templates select="$commit/message/*" mode="xhtml"/>
</div>
</content>
<updated>