aboutsummaryrefslogtreecommitdiff
path: root/source/04_meta
diff options
context:
space:
mode:
authorAdrian Kummerlaender2014-10-24 18:59:25 +0200
committerAdrian Kummerlaender2014-10-24 18:59:25 +0200
commitee1786edd7972f9ff55fc8abb90a6d981d66998e (patch)
treec8776d08ded942982f6bc40438f1dffbeef25361 /source/04_meta
parentc3c2a4f161ab168debb64ed8a99dc1e4e3403364 (diff)
downloadOverview-ee1786edd7972f9ff55fc8abb90a6d981d66998e.tar
Overview-ee1786edd7972f9ff55fc8abb90a6d981d66998e.tar.gz
Overview-ee1786edd7972f9ff55fc8abb90a6d981d66998e.tar.bz2
Overview-ee1786edd7972f9ff55fc8abb90a6d981d66998e.tar.lz
Overview-ee1786edd7972f9ff55fc8abb90a6d981d66998e.tar.xz
Overview-ee1786edd7972f9ff55fc8abb90a6d981d66998e.tar.zst
Overview-ee1786edd7972f9ff55fc8abb90a6d981d66998e.zip
Added timeline ATOM feed and removed XHTML target
* moved repository feeds to `repository` directory * replaced paginated XHTML timeline target with and ATOM feed ** removed `paginated_timeline.xsl` transformation including the `04_meta` level ** removed CSS and master stylesheets * added title, url and commit count meta data to `meta.xml` * expanded ATOM feed URLs * timeline feed has an upper limit of `commit_count` items ** repository feeds have the same limit because only `commit_count` commits of every repository are fetched in the first place
Diffstat (limited to 'source/04_meta')
-rw-r--r--source/04_meta/paginated_timeline.xsl24
1 files changed, 0 insertions, 24 deletions
diff --git a/source/04_meta/paginated_timeline.xsl b/source/04_meta/paginated_timeline.xsl
deleted file mode 100644
index cb25d3b..0000000
--- a/source/04_meta/paginated_timeline.xsl
+++ /dev/null
@@ -1,24 +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/reference_commit.xsl]"/>
-
-<xsl:variable name="meta">
- <datasource type="main" mode="full" source="03_merge/timeline.xml" target="timeline"/>
- <target mode="plain" value="paginated_timeline.xml"/>
-</xsl:variable>
-
-<xsl:variable name="commits_per_page">20</xsl:variable>
-<xsl:variable name="total" select="ceiling(count(datasource/timeline/commit) div $commits_per_page)"/>
-
-<xsl:template match="timeline/commit[position() mod $commits_per_page = 1]">
- <entry index="{floor(position() div $commits_per_page)}" total="{$total}">
- <xsl:apply-templates select=". | following-sibling::commit[not(position() > ($commits_per_page - 1))]" mode="commit"/>
- </entry>
-</xsl:template>
-
-</xsl:stylesheet>