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