]> sipb.mit.edu Git - ikiwiki.git/blob - doc/todo/clickable-openid-urls-in-logs.mdwn
efficiency
[ikiwiki.git] / doc / todo / clickable-openid-urls-in-logs.mdwn
1 OpenID URLs aren't clickable in the ViewVC logs because they're directly
2 followed by a colon. At the expense of, um, proper grammar, here's a patch
3 for SVN. If this is OK, I'll patch the other RCS modules, too.
4
5 > Reasonable, but probably needs to modify the wiki\_commit\_regexp to
6 > recognise such commit messages when parsing the logs. Do that and extend
7 > to the other modules and I'll accept it. --[[Joey]]
8
9 [[!tag patch]]
10
11 <pre>
12 --- IkiWiki/Rcs/svn.pm  (revision 2650)
13 +++ IkiWiki/Rcs/svn.pm  (working copy)
14 @@ -71,7 +71,7 @@
15         my $ipaddr=shift;
16  
17         if (defined $user) {
18 -               $message="web commit by $user".(length $message ? ": $message" : "");
19 +               $message="web commit by $user ".(length $message ? ": $message" : "");
20         }
21         elsif (defined $ipaddr) {
22                 $message="web commit from $ipaddr".(length $message ? ": $message" : "");
23 </pre>