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 /utility/master.xsl | |
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 'utility/master.xsl')
-rw-r--r-- | utility/master.xsl | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/utility/master.xsl b/utility/master.xsl deleted file mode 100644 index 4f3597c..0000000 --- a/utility/master.xsl +++ /dev/null @@ -1,35 +0,0 @@ -<?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:variable name="root" select="/datasource"/> - -<xsl:template match="/"> -<html> - <head> - <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> - <meta name="viewport" content="width=device-width,initial-scale=1.0"/> - - <link rel="stylesheet" type="text/css" href="/main.css" /> - </head> - <body> - <xsl:apply-templates /> - </body> -</html> -</xsl:template> - -<xsl:template match="text()|@*"/> - -</xsl:stylesheet> |