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` --- utility/git_log.sh | 7 ------- 1 file changed, 7 deletions(-) delete mode 100755 utility/git_log.sh (limited to 'utility/git_log.sh') 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' -- cgit v1.2.3