web commit by http://id.inelegant.org/: Terribly minor patch for making OpenID URLs clickable in log viewers.

master
joey 2007-02-19 05:28:21 +00:00
parent 1d3af13603
commit 895deed7fe
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
Index: IkiWiki/Rcs/svn.pm
===================================================================
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.
<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>