From 0d0e34feb65ba998f8b1df06b498de3f56ea6b7e Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Sun, 26 Oct 2014 11:40:28 +0100 Subject: Replaced local Git log extraction with CGit ATOM feeds * I just realized that repository specific commit feeds are already provided by both CGit and GitHub ** i.e. I made the mistake of not checking if my current system already provides the required functionality when I wanted to aggregate my commits and found this to be a use case for StaticXSLT * feeds are fetched via `curl` ** this will be a local request in production ** the messages are still cleaned using `sed` and transformed into _XHTML_ using `peg-markdown` * instead of reading a customized Git log output CommitLog now simply transforms CGit ATOM feeds using identity templates ** this requires ATOM namespace removal which is implemented in `utility/remove_namespace.xsl` --- source/00_content/meta.xml | 5 --- source/00_content/repositories.xml | 14 +++---- source/01_raw/commits.xsl | 25 ----------- source/01_raw/repository_feeds.xsl | 25 +++++++++++ source/02_augment/commits.xsl | 51 +++++++++++++++-------- source/99_result/repository/atom.xsl | 81 ------------------------------------ source/99_result/timeline.xsl | 15 ++----- utility/fetch_feed.sh | 3 ++ utility/formatter.xsl | 19 +++++++++ utility/git_log.sh | 7 ---- utility/reference_commit.xsl | 2 +- utility/remove_namespace.xsl | 18 ++++++++ 12 files changed, 110 insertions(+), 155 deletions(-) delete mode 100644 source/01_raw/commits.xsl create mode 100644 source/01_raw/repository_feeds.xsl delete mode 100644 source/99_result/repository/atom.xsl create mode 100755 utility/fetch_feed.sh create mode 100644 utility/formatter.xsl delete mode 100755 utility/git_log.sh create mode 100644 utility/remove_namespace.xsl diff --git a/source/00_content/meta.xml b/source/00_content/meta.xml index 56bbb9d..869431b 100644 --- a/source/00_content/meta.xml +++ b/source/00_content/meta.xml @@ -3,9 +3,4 @@ CommitLog http://localhost:8000 20 - - - http://code.kummerlaender.eu - commit/?id= - diff --git a/source/00_content/repositories.xml b/source/00_content/repositories.xml index d7b0f05..6f0cbfd 100644 --- a/source/00_content/repositories.xml +++ b/source/00_content/repositories.xml @@ -1,24 +1,24 @@ - ~/projects/dev/InputXSLT + http://code.kummerlaender.eu/InputXSLT/atom/?h=master - ~/projects/dev/blog.kummerlaender.eu + http://code.kummerlaender.eu/blog.kummerlaender.eu/atom/?h=master - ~/projects/dev/parser + http://code.kummerlaender.eu/SimpleParser/atom/?h=master - ~/projects/dev/StaticXSLT + http://code.kummerlaender.eu/StaticXSLT/atom/?h=master - ~/projects/dev/BuildXSLT + http://code.kummerlaender.eu/BuildXSLT/atom/?h=master - ~/projects/dev/graphdb + http://code.kummerlaender.eu/GraphStorage/atom/?h=master - ~/projects/dev/BinaryMapping + http://code.kummerlaender.eu/BinaryMapping/atom/?h=master diff --git a/source/01_raw/commits.xsl b/source/01_raw/commits.xsl deleted file mode 100644 index b5fe201..0000000 --- a/source/01_raw/commits.xsl +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/source/01_raw/repository_feeds.xsl b/source/01_raw/repository_feeds.xsl new file mode 100644 index 0000000..24cc2d8 --- /dev/null +++ b/source/01_raw/repository_feeds.xsl @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + diff --git a/source/02_augment/commits.xsl b/source/02_augment/commits.xsl index 27f9bcd..7f17240 100644 --- a/source/02_augment/commits.xsl +++ b/source/02_augment/commits.xsl @@ -2,49 +2,66 @@ + - + - - - - - + + + + - + + + + + + + + + + + - + - + - + + + + + + + + + + + + + markdown - + @@ -52,7 +69,7 @@ - + diff --git a/source/99_result/repository/atom.xsl b/source/99_result/repository/atom.xsl deleted file mode 100644 index f858dea..0000000 --- a/source/99_result/repository/atom.xsl +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - <xsl:value-of select="$title"/> - - - - T - - :00+02:00 - - - - - - - - - - - - - <xsl:value-of select="message/h1"/> - - - - - - - -
- -
-
- - - T - - :00+02:00 - -
-
- -
diff --git a/source/99_result/timeline.xsl b/source/99_result/timeline.xsl index 4793e8c..dfcca01 100644 --- a/source/99_result/timeline.xsl +++ b/source/99_result/timeline.xsl @@ -44,21 +44,12 @@ - <xsl:value-of select="$commit/message/h1"/> + <xsl:value-of select="$commit/title"/> - - - - - +
- +
diff --git a/utility/fetch_feed.sh b/utility/fetch_feed.sh new file mode 100755 index 0000000..45dbc6c --- /dev/null +++ b/utility/fetch_feed.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +curl $1 | sed -e 's~^\([\*]\)\{3\}~\t\t\*~g' -e 's~^\([\*]\)\{2\}~\t\*~g' diff --git a/utility/formatter.xsl b/utility/formatter.xsl new file mode 100644 index 0000000..d2c2f7c --- /dev/null +++ b/utility/formatter.xsl @@ -0,0 +1,19 @@ + + + + + + + + + + + diff --git a/utility/git_log.sh b/utility/git_log.sh deleted file mode 100755 index 4d00552..0000000 --- a/utility/git_log.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh - -format="%cd" - - git --no-pager -C $1 log -n $2 --date=iso --pretty=tformat:"$format" \ -| tidy --input-xml yes --escape-cdata true --wrap 0 \ -| sed -e 's~^\([\*]\)\{3\}~\t\t\*~g' -e 's~^\([\*]\)\{2\}~\t\*~g' diff --git a/utility/reference_commit.xsl b/utility/reference_commit.xsl index 63cb064..3423cd9 100644 --- a/utility/reference_commit.xsl +++ b/utility/reference_commit.xsl @@ -20,6 +20,6 @@
- +
diff --git a/utility/remove_namespace.xsl b/utility/remove_namespace.xsl new file mode 100644 index 0000000..6775901 --- /dev/null +++ b/utility/remove_namespace.xsl @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + -- cgit v1.2.3