diff options
author | Adrian Kummerlaender | 2014-10-21 19:43:59 +0200 |
---|---|---|
committer | Adrian Kummerlaender | 2014-10-21 19:43:59 +0200 |
commit | f6667b9796d590428b071e3d1923b5b0a6fa3579 (patch) | |
tree | 722cfbb4709bfe3a035fb4a9ee9f64d9e73384b7 /source/03_merge | |
parent | 4c6e50ef89cc2b114a085df37b5f72e8b1876da7 (diff) | |
download | Overview-f6667b9796d590428b071e3d1923b5b0a6fa3579.tar Overview-f6667b9796d590428b071e3d1923b5b0a6fa3579.tar.gz Overview-f6667b9796d590428b071e3d1923b5b0a6fa3579.tar.bz2 Overview-f6667b9796d590428b071e3d1923b5b0a6fa3579.tar.lz Overview-f6667b9796d590428b071e3d1923b5b0a6fa3579.tar.xz Overview-f6667b9796d590428b071e3d1923b5b0a6fa3579.tar.zst Overview-f6667b9796d590428b071e3d1923b5b0a6fa3579.zip |
Added message content based timeline selection criteria
* only commits with equal to or more than two content nodes are included into the timeline
** this is very specific to the way I write commit messages
** it may not be a sensible selection criteria in all circumstances
* this was changed with the aim of only including interesting commits in the timeline
Diffstat (limited to 'source/03_merge')
-rw-r--r-- | source/03_merge/timeline.xsl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/03_merge/timeline.xsl b/source/03_merge/timeline.xsl index b26f11d..0bed670 100644 --- a/source/03_merge/timeline.xsl +++ b/source/03_merge/timeline.xsl @@ -13,7 +13,7 @@ </xsl:variable> <xsl:template match="repositories"> - <xsl:apply-templates select="entry/commit" mode="commit"> + <xsl:apply-templates select="entry/commit[count(message/ul/li | message/ul/li/ul) >= 2]" mode="commit"> <xsl:sort select="date" data-type="text" order="descending"/> </xsl:apply-templates> </xsl:template> |