aboutsummaryrefslogtreecommitdiff
path: root/doc/rcs
diff options
context:
space:
mode:
authorhttps://www.google.com/accounts/o8/id?id=AItOawngqGADV9fidHK5qabIzKN0bx1ZIfvaTqs <Glenn@web>2010-09-10 13:01:14 +0000
committerJoey Hess <joey@kitenet.net>2010-09-10 13:01:14 +0000
commit807a75f6b6d95910deb68359873563b528e17d82 (patch)
tree87bf791277c06016b4f0119e8ff5d86eeed6feb7 /doc/rcs
parent32a70b7c4859dfeb6f9fa91fb4bc0f4d709b8376 (diff)
downloadikiwiki-807a75f6b6d95910deb68359873563b528e17d82.tar
ikiwiki-807a75f6b6d95910deb68359873563b528e17d82.tar.gz
Move the discussion of svn+ssh to the forum for now.
Diffstat (limited to 'doc/rcs')
-rw-r--r--doc/rcs/svn/discussion.mdwn14
1 files changed, 0 insertions, 14 deletions
diff --git a/doc/rcs/svn/discussion.mdwn b/doc/rcs/svn/discussion.mdwn
index 887b5c4a2..426735182 100644
--- a/doc/rcs/svn/discussion.mdwn
+++ b/doc/rcs/svn/discussion.mdwn
@@ -11,17 +11,3 @@ can act upon them sequentially, or (2) optionally divorce the `ikiwiki
I'm not aware of web servers, at least apache, killing cgi processes when
the user stops a page load. If this is happening ikiwiki should be able to
avoid it by blocking whatever signal is causing it to terminate. --[[Joey]]
-
-Just as an experiment, I tried running ikiwiki using a *remote* repository,
-i.e. via "svn+ssh". After setting up the repo and relocating the working copy,
-unfortunately, it doesn't work; editing a page gives the error:
-
-Error: no element found at line 3, column 0, byte 28 at /opt/local/lib/perl5/vendor_perl/5.10.1/darwin-multi-2level/XML/Parser.pm line 187
-
-I *think* this is because, despite a SetEnv directive in the apache configuration,
-the CGI wrapper is expunging SVN_SSH from the environment (based on perusing
-the source of Wrapper.pm and looking at "envsave" there at the top).
-Is this the case? --Glenn
-
-> That seems likely. You can edit Wrapper.pm and add `SVN_SSH` to the
-> `@envsave` list and rebuild your wrappers to test it. --[[Joey]]