diff options
author | Adrian Kummerlaender | 2014-10-24 18:59:25 +0200 |
---|---|---|
committer | Adrian Kummerlaender | 2014-10-24 18:59:25 +0200 |
commit | ee1786edd7972f9ff55fc8abb90a6d981d66998e (patch) | |
tree | c8776d08ded942982f6bc40438f1dffbeef25361 /source/01_raw | |
parent | c3c2a4f161ab168debb64ed8a99dc1e4e3403364 (diff) | |
download | Overview-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/01_raw')
-rw-r--r-- | source/01_raw/commits.xsl | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/source/01_raw/commits.xsl b/source/01_raw/commits.xsl index c606030..b5fe201 100644 --- a/source/01_raw/commits.xsl +++ b/source/01_raw/commits.xsl @@ -9,16 +9,15 @@ <xsl:include href="[utility/datasource.xsl]"/> <xsl:variable name="meta"> - <datasource type="main" mode="full" source="00_content/repositories.xml" target="repositories"/> + <datasource type="main" mode="full" source="00_content/repositories.xml" target="repositories"/> + <datasource type="support" mode="full" source="00_content/meta.xml" target="meta"/> <target mode="plain" value="commits.xml"/> </xsl:variable> -<xsl:variable name="commit_count">20</xsl:variable> - <xsl:template match="repositories/entry"> <entry handle="{@handle}"> <xsl:copy-of select="InputXSLT:external-command( - concat('./utility/git_log.sh ', path, ' ', $commit_count) + concat('./utility/git_log.sh ', path, ' ', $root/meta/commit_count) )/self::command/commit"/> </entry> </xsl:template> |