summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xikiwiki7
-rw-r--r--templates/recentchanges.tmpl1
2 files changed, 7 insertions, 1 deletions
diff --git a/ikiwiki b/ikiwiki
index e684ce38a..abeda29c2 100755
--- a/ikiwiki
+++ b/ikiwiki
@@ -446,13 +446,18 @@ sub rcs_recentchanges ($) { #{{{
$state='body';
}
elsif ($state eq 'body' && /$div/) {
+ my $committype="web";
if (defined $message[0] &&
$message[0]->{line}=~/^web commit by (\w+)(.*)/) {
- $user="$1 (web)";
+ $user="$1";
$message[0]->{line}=$2;
}
+ else {
+ $committype="svn";
+ }
push @ret, { rev => $rev, user => $user,
+ commitype => $commitype,
when => $when, message => [@message],
pages => [@pages] } if @pages;
return @ret if @ret >= $num;
diff --git a/templates/recentchanges.tmpl b/templates/recentchanges.tmpl
index 774fb34f0..3dc9fc1be 100644
--- a/templates/recentchanges.tmpl
+++ b/templates/recentchanges.tmpl
@@ -15,6 +15,7 @@
<TMPL_VAR NAME="LINK">
</TMPL_LOOP>
<br>
+ <!-- <TMPL_VAR NAME="COMMITTYPE"> -->
changed <TMPL_VAR NAME="WHEN"> by <TMPL_VAR NAME="USER">:
<i>
<TMPL_LOOP NAME="MESSAGE">