2007-07-25 05:36:53 +02:00
|
|
|
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.
|
2007-02-19 06:28:21 +01:00
|
|
|
|
2007-02-20 04:05:47 +01:00
|
|
|
> Reasonable, but probably needs to modify the wiki\_commit\_regexp to
|
2007-02-20 02:11:25 +01:00
|
|
|
> recognise such commit messages when parsing the logs. Do that and extend
|
|
|
|
> to the other modules and I'll accept it. --[[Joey]]
|
|
|
|
|
2008-07-21 13:31:33 +02:00
|
|
|
[[!tag patch]]
|
2007-07-25 05:36:53 +02:00
|
|
|
|
2007-02-19 06:28:21 +01:00
|
|
|
<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" : "");
|
2007-02-20 02:11:25 +01:00
|
|
|
</pre>
|