diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2009-01-17 13:39:53 -0500 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2009-01-17 13:39:53 -0500 |
commit | 4bede22e4f2189a570ea43dec3b087052ef85edc (patch) | |
tree | 6e5298de19123a8832387631745a89fccd836ab1 /IkiWiki | |
parent | df9ba9fb1a4a247a23867a507de3de323db5cac0 (diff) | |
download | ikiwiki-4bede22e4f2189a570ea43dec3b087052ef85edc.tar ikiwiki-4bede22e4f2189a570ea43dec3b087052ef85edc.tar.gz |
use short names in comittype
Use mtn for monontone and hg for mercurial. The long names cause ugly
formatting in recentchanges, which has CSS that only allows a few
characters for the commit type column.
Diffstat (limited to 'IkiWiki')
-rw-r--r-- | IkiWiki/Plugin/mercurial.pm | 2 | ||||
-rw-r--r-- | IkiWiki/Plugin/monotone.pm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/IkiWiki/Plugin/mercurial.pm b/IkiWiki/Plugin/mercurial.pm index 82423286d..6c4855e57 100644 --- a/IkiWiki/Plugin/mercurial.pm +++ b/IkiWiki/Plugin/mercurial.pm @@ -217,7 +217,7 @@ sub rcs_recentchanges ($) { push @ret, { rev => $info->{"changeset"}, user => $user, - committype => "mercurial", + committype => "hg", when => str2time($info->{"date"}), message => [@message], pages => [@pages], diff --git a/IkiWiki/Plugin/monotone.pm b/IkiWiki/Plugin/monotone.pm index 38abb9a07..bdb564a71 100644 --- a/IkiWiki/Plugin/monotone.pm +++ b/IkiWiki/Plugin/monotone.pm @@ -559,7 +559,7 @@ sub rcs_recentchanges ($) { if ($cert->{key} eq $config{mtnkey}) { $committype = "web"; } else { - $committype = "monotone"; + $committype = "mtn"; } } elsif ($cert->{name} eq "date") { $when = str2time($cert->{value}, 'UTC'); |