aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Kummerlaender2014-10-26 15:44:00 +0100
committerAdrian Kummerlaender2014-10-26 15:44:00 +0100
commitb49dee8e3e0bc68d43ad750b702afd166ca0b355 (patch)
tree4a0dd1ba0f053312f4ea3c5cbd1cb0ca4ae35425
parent6db25a29f964161bb6e72ae65c18844393b3891a (diff)
downloadOverview-b49dee8e3e0bc68d43ad750b702afd166ca0b355.tar
Overview-b49dee8e3e0bc68d43ad750b702afd166ca0b355.tar.gz
Overview-b49dee8e3e0bc68d43ad750b702afd166ca0b355.tar.bz2
Overview-b49dee8e3e0bc68d43ad750b702afd166ca0b355.tar.lz
Overview-b49dee8e3e0bc68d43ad750b702afd166ca0b355.tar.xz
Overview-b49dee8e3e0bc68d43ad750b702afd166ca0b355.tar.zst
Overview-b49dee8e3e0bc68d43ad750b702afd166ca0b355.zip
Reintroduced overview page
* CommitLog will be used as the new overview page of my [website](http://kummerlaender.eu) * displays the five latest commits and their message ** links to the full feed * I plan to add the latest blog article and a subdomain overview in the future
-rw-r--r--source/99_result/main.css16
-rw-r--r--source/99_result/overview.xsl103
2 files changed, 119 insertions, 0 deletions
diff --git a/source/99_result/main.css b/source/99_result/main.css
new file mode 100644
index 0000000..882204f
--- /dev/null
+++ b/source/99_result/main.css
@@ -0,0 +1,16 @@
+body{font:1em Droid Sans,sans-serif,Verdana,Arial,FreeSans;color:#272828}
+#content{max-width:45em;margin:auto}
+h1{width:100%;border-bottom:0.2em solid #e3e8e8}
+a{text-decoration:underline;color:#272828}
+a:hover{color:black}
+h2{font-size:1.5em;color:#F80;margin:.5em 0 .5em 0}
+h2 a{text-decoration:none}
+h2 span{font-size:0.9em;text-decoration:none;color:#272828;font-weight:normal}
+h3{font-size:1.05em;font-weight:normal;margin-bottom:.2em;border-bottom:.1em solid #e3e8e8}
+h3 a{text-decoration:none}
+ul{margin:0;text-align:justify}
+ul li{list-style-type:circle}
+dt {float:left;clear:left;width:7em}
+dd {padding-bottom:0.75em}
+.info{font-size:.8em;margin-bottom:.5em;display:block}
+.info a{margin:0 .1em 0 .1em}
diff --git a/source/99_result/overview.xsl b/source/99_result/overview.xsl
new file mode 100644
index 0000000..215fea0
--- /dev/null
+++ b/source/99_result/overview.xsl
@@ -0,0 +1,103 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<xsl:stylesheet
+ version="1.0"
+ xmlns="http://www.w3.org/1999/xhtml"
+ xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+>
+
+<xsl:output
+ method="xml"
+ doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
+ doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
+ omit-xml-declaration="yes"
+ encoding="UTF-8"
+ indent="no"
+/>
+
+<xsl:include href="[utility/xhtml.xsl]"/>
+<xsl:include href="[utility/date-time.xsl]"/>
+
+<xsl:variable name="meta">
+ <datasource type="main" mode="full" source="03_merge/timeline.xml" target="timeline"/>
+ <datasource type="support" mode="full" source="02_augment/commits.xml" target="repositories"/>
+ <datasource type="support" mode="full" source="00_content/meta.xml" target="meta"/>
+ <target mode="plain" value="index.html"/>
+</xsl:variable>
+
+<xsl:variable name="root" select="/datasource"/>
+
+<xsl:template name="get_commit">
+ <xsl:param name="repository"/>
+ <xsl:param name="hash"/>
+
+ <xsl:variable name="commit" select="$root/repositories/entry[
+ @handle = $repository
+ ]/commit[
+ @hash = $hash
+ ]"/>
+
+ <h3>
+ <xsl:text>» </xsl:text>
+ <a href="{$commit/link}">
+ <xsl:value-of select="$commit/title"/>
+ </a>
+ </h3>
+
+ <span class="info">
+ <xsl:call-template name="format-date">
+ <xsl:with-param name="date" select="$commit/date"/>
+ <xsl:with-param name="format" select="'M x, Y'"/>
+ </xsl:call-template>
+ <xsl:text> at </xsl:text>
+ <xsl:value-of select="$commit/date/@time"/>
+ <xsl:text> | </xsl:text>
+ <xsl:value-of select="$repository"/>
+ <xsl:text> | </xsl:text>
+ <a href="{$commit/link}">
+ <xsl:value-of select="$commit/@hash"/>
+ </a>
+ </span>
+
+ <xsl:apply-templates select="$commit/message/*" mode="xhtml"/>
+</xsl:template>
+
+<xsl:template match="timeline/commit">
+ <xsl:call-template name="get_commit">
+ <xsl:with-param name="repository" select="@repository"/>
+ <xsl:with-param name="hash" select="@hash"/>
+ </xsl:call-template>
+</xsl:template>
+
+<xsl:template match="datasource">
+<html>
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+
+ <title>
+ <xsl:value-of select="$root/meta/title"/>
+ </title>
+
+ <link rel="stylesheet" type="text/css" href="/main.css" />
+</head>
+<body>
+ <div id="content">
+ <h1>
+ <xsl:value-of select="$root/meta/title"/>
+ </h1>
+
+ <h2>» <span>
+ <a href="{$root/meta/url}/timeline.xml">
+ <xsl:text>Latest commits</xsl:text>
+ </a>
+ </span>
+ </h2>
+
+ <xsl:apply-templates select="timeline/commit[position() &lt;= 5]"/>
+ </div>
+</body>
+</html>
+</xsl:template>
+
+<xsl:template match="text()|@*"/>
+
+</xsl:stylesheet>