diff options
author | Adrian Kummerlaender | 2014-10-17 22:59:45 +0200 |
---|---|---|
committer | Adrian Kummerlaender | 2014-10-17 22:59:45 +0200 |
commit | acacfda54016cbd4437d1ccaa609a52e9c1739d0 (patch) | |
tree | 6429c262d2e33fe215613e6b0ac69a0af5f0492b /source/00_content | |
download | Overview-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 'source/00_content')
-rw-r--r-- | source/00_content/repositories.xml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/source/00_content/repositories.xml b/source/00_content/repositories.xml new file mode 100644 index 0000000..fc4d47e --- /dev/null +++ b/source/00_content/repositories.xml @@ -0,0 +1,23 @@ +<datasource> + <entry handle="InputXSLT"> + <path>~/projects/dev/InputXSLT</path> + </entry> + <entry handle="blog.kummerlaender.eu"> + <path>~/projects/dev/blog.kummerlaender.eu</path> + </entry> + <entry handle="SimpleParser"> + <path>~/projects/dev/parser</path> + </entry> + <entry handle="StaticXSLT"> + <path>~/projects/dev/StaticXSLT</path> + </entry> + <entry handle="BuildXSLT"> + <path>~/projects/dev/BuildXSLT</path> + </entry> + <entry handle="GraphStorage"> + <path>~/projects/dev/graphdb</path> + </entry> + <entry handle="BinaryMapping"> + <path>~/projects/dev/BinaryMapping</path> + </entry> +</datasource> |