diff options
author | Adrian Kummerlaender | 2019-04-13 23:42:06 +0200 |
---|---|---|
committer | Adrian Kummerlaender | 2019-04-13 23:42:06 +0200 |
commit | 037a1f4d4fc1a67158ab0c6aa99608e6fae85ed2 (patch) | |
tree | 86238f40a0204775d6e995b5d16515cf65c64399 /source/99_result | |
parent | 714a92a163645bb436b1e8f4c56a818656c35f8a (diff) | |
download | Overview-037a1f4d4fc1a67158ab0c6aa99608e6fae85ed2.tar Overview-037a1f4d4fc1a67158ab0c6aa99608e6fae85ed2.tar.gz Overview-037a1f4d4fc1a67158ab0c6aa99608e6fae85ed2.tar.bz2 Overview-037a1f4d4fc1a67158ab0c6aa99608e6fae85ed2.tar.lz Overview-037a1f4d4fc1a67158ab0c6aa99608e6fae85ed2.tar.xz Overview-037a1f4d4fc1a67158ab0c6aa99608e6fae85ed2.tar.zst Overview-037a1f4d4fc1a67158ab0c6aa99608e6fae85ed2.zip |
Use raw timeline of `blip.kummerlaender.eu`
Diffstat (limited to 'source/99_result')
-rw-r--r-- | source/99_result/overview.xsl | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/source/99_result/overview.xsl b/source/99_result/overview.xsl index 9a14e01..b489262 100644 --- a/source/99_result/overview.xsl +++ b/source/99_result/overview.xsl @@ -20,7 +20,7 @@ <xsl:variable name="meta"> <datasource type="main" mode="full" source="00_content/meta.xml" target="meta"/> <datasource type="support" mode="full" source="02_augment/articles.xml" target="articles"/> - <datasource type="support" mode="full" source="02_augment/blips.xml" target="timeline"/> + <datasource type="support" mode="full" source="00_content/blip_feed.xml" target="timeline"/> <target mode="plain" value="index.html"/> </xsl:variable> @@ -31,7 +31,7 @@ <span class="arrow"> <xsl:text>ยป </xsl:text> </span> - <a href="{link}"> + <a href="{$root/meta/repository_base}/{@repo}/commit/?id={@hash}"> <xsl:value-of select="title"/> </a> </h3> @@ -41,8 +41,18 @@ <xsl:with-param name="date" select="date"/> <xsl:with-param name="format" select="'M x, Y'"/> </xsl:call-template> + <xsl:text> at </xsl:text> + <xsl:value-of select="date/@time"/> <xsl:text> | </xsl:text> - <xsl:value-of select="author"/> + <a href="{$root/meta/repository_base}/{@repo}/"> + <xsl:value-of select="@repo"/> + </a> + <xsl:text> | </xsl:text> + <a href="{$root/meta/repository_base}/{@repo}/commit/?id={@hash}"> + <xsl:value-of select="substring(@hash,0,7)"/> + </a> + <xsl:text> | </xsl:text> + <xsl:value-of select="$root/meta/author"/> </span> <xsl:apply-templates select="content/node()" mode="xhtml"/> @@ -144,18 +154,15 @@ </h2> <ul> <li> - <a href="https://github.com/KnairdA">GitHub</a> - </li> - <li> <a href="https://tree.kummerlaender.eu/projects">Projects</a> </li> <li> - <a href="https://blip.kummerlaender.eu/timeline.xml">Feed</a> + <a href="https://blip.kummerlaender.eu/atom.xml">Feed</a> </li> </ul> </div> - <xsl:apply-templates select="timeline/entry"/> + <xsl:apply-templates select="timeline/entry[position() <= $root/meta/limits/blips]"/> </div> </body> </html> |