aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/Http_error_500_when_using_mercurial_backend.mdwn
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-03-24 12:21:34 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-03-24 12:21:34 +0000
commit210fe3664b622ba439c5bed3f95a2c938fd323f7 (patch)
tree211b689c42063152016783fc1848021b808b89e1 /doc/bugs/Http_error_500_when_using_mercurial_backend.mdwn
parentb2cf231a4308ace4dafe77ee25cf21688821d993 (diff)
downloadikiwiki-210fe3664b622ba439c5bed3f95a2c938fd323f7.tar
ikiwiki-210fe3664b622ba439c5bed3f95a2c938fd323f7.tar.gz
web commit by hb: Adding patch for the no message case for mercurial
Diffstat (limited to 'doc/bugs/Http_error_500_when_using_mercurial_backend.mdwn')
-rw-r--r--doc/bugs/Http_error_500_when_using_mercurial_backend.mdwn22
1 files changed, 22 insertions, 0 deletions
diff --git a/doc/bugs/Http_error_500_when_using_mercurial_backend.mdwn b/doc/bugs/Http_error_500_when_using_mercurial_backend.mdwn
new file mode 100644
index 000000000..5015b6290
--- /dev/null
+++ b/doc/bugs/Http_error_500_when_using_mercurial_backend.mdwn
@@ -0,0 +1,22 @@
+The mercurial backend is broken when no changelog message is given.
+
+Here is a quick patch, partialy copying the svn backend.
+
+ --- /usr/share/perl5/IkiWiki/Rcs/mercurial.pm 2007-03-18 23:19:40.000000000 +0100
+ +++ ./mercurial.pm 2007-03-24 13:11:36.000000000 +0100
+ @@ -70,12 +70,15 @@
+
+ if (defined $user) {
+ $user = possibly_foolish_untaint($user);
+ + $message="web commit by $user".(length $message ? ": $message" : "");
+ }
+ elsif (defined $ipaddr) {
+ $user = "Anonymous from $ipaddr";
+ + $message="web commit from $ipaddr".(length $message ? ": $message" : "");
+ }
+ else {
+ $user = "Anonymous";
+ + $message="web commit by Anonymous".(length $message ? ": $message" : "");
+ }
+
+ $message = possibly_foolish_untaint($message); \ No newline at end of file