summaryrefslogtreecommitdiff
path: root/doc/patchqueue/clickable-openid-urls-in-logs.mdwn
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-02-19 05:28:21 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-02-19 05:28:21 +0000
commit895deed7fe2b1d90b96f192314d72adde7683f0d (patch)
treeb3177f43463825c16e5f3720248ac995cd07c756 /doc/patchqueue/clickable-openid-urls-in-logs.mdwn
parent1d3af13603aa972b6a16cdcbb56fb5ae1dd72f20 (diff)
web commit by http://id.inelegant.org/: Terribly minor patch for making OpenID URLs clickable in log viewers.
Diffstat (limited to 'doc/patchqueue/clickable-openid-urls-in-logs.mdwn')
-rw-r--r--doc/patchqueue/clickable-openid-urls-in-logs.mdwn17
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/patchqueue/clickable-openid-urls-in-logs.mdwn b/doc/patchqueue/clickable-openid-urls-in-logs.mdwn
new file mode 100644
index 000000000..260b725f5
--- /dev/null
+++ b/doc/patchqueue/clickable-openid-urls-in-logs.mdwn
@@ -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> \ No newline at end of file