From: Joey Hess Date: Sat, 4 Apr 2009 22:36:39 +0000 (-0400) Subject: fix display of web commits in recentchanges X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/commitdiff_plain/6a7eb63ca534bdad7ab13f840cdee33ea391d9bf?hp=-c fix display of web commits in recentchanges The darcs backend appends @web to the names of web committers, so remove it when extracting. --- 6a7eb63ca534bdad7ab13f840cdee33ea391d9bf diff --git a/IkiWiki/Plugin/darcs.pm b/IkiWiki/Plugin/darcs.pm index 5927f23da..1ed9f0044 100644 --- a/IkiWiki/Plugin/darcs.pm +++ b/IkiWiki/Plugin/darcs.pm @@ -354,16 +354,19 @@ sub rcs_recentchanges ($) { push @message, { line => $_ } foreach (@{$patch->{name}}); my $committype; - if ($patch->{author} =~ /\@web$/) { + my $author; + if ($patch->{author} =~ /(.*)\@web$/) { + $author = $1; $committype = "web"; } else { + $author=$patch->{author}; $committype = "darcs"; } push @ret, { rev => $patch->{hash}, - user => $patch->{author}, + user => $author, committype => $committype, when => $when, message => [@message],