aboutsummaryrefslogtreecommitdiff
path: root/doc/patchqueue/clickable-openid-urls-in-logs.mdwn
blob: 997bc7492d4dfcd9a3091f9c69ca470e14e08cb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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.

> Reasonable, but probably needs to modify the wiki\_commit\_regexp to
> recognise such commit messages when parsing the logs. Do that and extend
> to the other modules and I'll accept it. --[[Joey]]

<pre>
--- IkiWiki/Rcs/svn.pm  (revision 2650)
+++ IkiWiki/Rcs/svn.pm  (working copy)
@@ -71,7 +71,7 @@
        my $ipaddr=shift;
 
        if (defined $user) {
-               $message="web commit by $user".(length $message ? ": $message" : "");
+               $message="web commit by $user ".(length $message ? ": $message" : "");
        }
        elsif (defined $ipaddr) {
                $message="web commit from $ipaddr".(length $message ? ": $message" : "");
</pre>