diff options
author | Adrian Kummerlaender | 2019-04-13 00:36:45 +0200 |
---|---|---|
committer | Adrian Kummerlaender | 2019-04-13 00:49:11 +0200 |
commit | 6e5e71882d9d9969e0ffe3013e656cac8fa4f115 (patch) | |
tree | b25460980bf2a9a172c7c7872f0468e05261c2bc /source/02_augment | |
parent | cd9463e572f31b82a73cdab6db6b53f3a1237b3e (diff) | |
download | Overview-6e5e71882d9d9969e0ffe3013e656cac8fa4f115.tar Overview-6e5e71882d9d9969e0ffe3013e656cac8fa4f115.tar.gz Overview-6e5e71882d9d9969e0ffe3013e656cac8fa4f115.tar.bz2 Overview-6e5e71882d9d9969e0ffe3013e656cac8fa4f115.tar.lz Overview-6e5e71882d9d9969e0ffe3013e656cac8fa4f115.tar.xz Overview-6e5e71882d9d9969e0ffe3013e656cac8fa4f115.tar.zst Overview-6e5e71882d9d9969e0ffe3013e656cac8fa4f115.zip |
Replace commit feed aggregation with manual import
This is the starting point for extending _Overview_ to support various
types of recent updates (i.e. not just blog articles and commits over a
certain message size).
While direct fetching and rendering of markdown-formatted Git commit
messages is an attractive concept, this new approach should be much more
flexible. As a side benefit commit entries can now be edited and
expanded compared to their fixed Git reference. e.g. retroactively
expanding upon older commits or adding example media that doesn't
strictly belong inside the actual commit message.
Diffstat (limited to 'source/02_augment')
-rw-r--r-- | source/02_augment/commits.xsl | 75 |
1 files changed, 0 insertions, 75 deletions
diff --git a/source/02_augment/commits.xsl b/source/02_augment/commits.xsl deleted file mode 100644 index a2ad0b5..0000000 --- a/source/02_augment/commits.xsl +++ /dev/null @@ -1,75 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<xsl:stylesheet - version="1.0" - xmlns:xsl="http://www.w3.org/1999/XSL/Transform" -> - -<xsl:include href="[utility/datasource.xsl]"/> -<xsl:include href="[utility/formatter.xsl]"/> - -<xsl:variable name="meta"> - <datasource type="main" mode="full" source="01_raw/repository_feeds.xml" target="repositories"/> - <target mode="plain" value="commits.xml"/> -</xsl:variable> - -<xsl:template match="entry" mode="commit"> - <commit hash="{substring(id, 0, 7)}"> - <xsl:apply-templates select="@*|node()" mode="commit"/> - </commit> -</xsl:template> - -<xsl:template match="id" mode="commit"/> -<xsl:template match="updated" mode="commit"/> -<xsl:template match="content[@type = 'xhtml']" mode="commit"/> - -<xsl:template match="author" mode="commit"> - <xsl:copy> - <xsl:value-of select="name"/> - </xsl:copy> -</xsl:template> - -<xsl:template match="published" mode="commit"> - <date> - <xsl:attribute name="time"> - <xsl:value-of select="substring(text(), 12, 5)"/> - </xsl:attribute> - - <xsl:apply-templates select="@*|node()" mode="commit"/> - </date> -</xsl:template> - -<xsl:template match="published/text()" mode="commit"> - <xsl:value-of select="substring(., 0, 11)"/> -</xsl:template> - -<xsl:template match="link" mode="commit"> - <link> - <xsl:value-of select="@href"/> - </link> -</xsl:template> - -<xsl:template match="content[@type = 'text']" mode="commit"> - <message> - <xsl:apply-templates select="node()" mode="commit"/> - </message> -</xsl:template> - -<xsl:template match="content[@type = 'text']/text()" mode="commit"> - <xsl:call-template name="formatter"> - <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="entry" mode="commit"/> - </entry> -</xsl:template> - -</xsl:stylesheet> |