aboutsummaryrefslogtreecommitdiff
path: root/utility/git_log.sh
diff options
context:
space:
mode:
authorAdrian Kummerlaender2014-10-17 22:59:45 +0200
committerAdrian Kummerlaender2014-10-17 22:59:45 +0200
commitacacfda54016cbd4437d1ccaa609a52e9c1739d0 (patch)
tree6429c262d2e33fe215613e6b0ac69a0af5f0492b /utility/git_log.sh
downloadOverview-acacfda54016cbd4437d1ccaa609a52e9c1739d0.tar
Overview-acacfda54016cbd4437d1ccaa609a52e9c1739d0.tar.gz
Overview-acacfda54016cbd4437d1ccaa609a52e9c1739d0.tar.bz2
Overview-acacfda54016cbd4437d1ccaa609a52e9c1739d0.tar.lz
Overview-acacfda54016cbd4437d1ccaa609a52e9c1739d0.tar.xz
Overview-acacfda54016cbd4437d1ccaa609a52e9c1739d0.tar.zst
Overview-acacfda54016cbd4437d1ccaa609a52e9c1739d0.zip
Added basic commit timeline aggregator implementation
* another application based on StaticXSLT * git is instructed to export XML through a special log format definition * the commit messages are processed as Markdown * currently implemented result views are commits-by-repo and a paginated timeline of all commits in every repository * repositories to be read have to be defined in the `repositories.xml` file in the `00_content` level
Diffstat (limited to 'utility/git_log.sh')
-rwxr-xr-xutility/git_log.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/utility/git_log.sh b/utility/git_log.sh
new file mode 100755
index 0000000..2dfb0bd
--- /dev/null
+++ b/utility/git_log.sh
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+format="<commit hash=\"%h\"><date>%cd</date><message><![CDATA[# %B]]></message></commit>"
+
+ git --no-pager -C $1 log --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'