Oops. The previous patch did not contain all the differences required to make sense. Here you go again.
diff -Nur websvn-2.3.0.orig/debian/apache.conf websvn-2.3.0/debian/apache.conf --- websvn-2.3.0.orig/debian/apache.conf 2010-03-24 08:58:45.000000000 +0100 +++ websvn-2.3.0/debian/apache.conf 2010-03-24 09:19:08.000000000 +0100 @@ -3,8 +3,13 @@ Alias /websvn /usr/share/websvn
<Directory /usr/share/websvn> + ## No MultiViews DirectoryIndex index.php Options FollowSymLinks + ## MultiViews + #DirectoryIndex wsvn.php + #Options FollowSymLinks MultiViews + ## End MultiViews Order allow,deny Allow from all <IfModule mod_php4.c> diff -Nur websvn-2.3.0.orig/debian/docs websvn-2.3.0/debian/docs --- websvn-2.3.0.orig/debian/docs 2010-03-24 08:58:45.000000000 +0100 +++ websvn-2.3.0/debian/docs 2010-03-24 09:03:43.000000000 +0100 @@ -1,3 +1,4 @@ doc/install.html doc/style.css doc/templates.html +doc/README.multiviews \ No newline at end of file diff -Nur websvn-2.3.0.orig/doc/README.multiviews websvn-2.3.0/doc/README.multiviews --- websvn-2.3.0.orig/doc/README.multiviews 1970-01-01 01:00:00.000000000 +0100 +++ websvn-2.3.0/doc/README.multiviews 2010-03-24 09:12:05.000000000 +0100 @@ -0,0 +1,5 @@ +To enable multiviews, you have to: +- edit /etc/websvn/apache.conf: + + comment out the "## No MultiViews" section, + + uncomment the "## Multiviews" section, and +- uncomment $config->useMultiViews() in /etc/websvn/config.php. diff -Nur websvn-2.3.0.orig/wsvn.php websvn-2.3.0/wsvn.php --- websvn-2.3.0.orig/wsvn.php 2009-12-04 06:53:49.000000000 +0100 +++ websvn-2.3.0/wsvn.php 2010-03-24 08:59:45.000000000 +0100 @@ -28,10 +28,10 @@ // // e.g. For "http://www.example.com/websvn" use '/websvn' // -// Note that wsvn.php need not be in the /websvn directory (and normally isn't). // If you want to use the root server directory, just use a blank string (''). -//$locwebsvnhttp = '/websvn'; -$locwebsvnhttp = ''; +// In Debian, the application usually is accessible in directory 'websvn': +$locwebsvnhttp = '/websvn'; +#$locwebsvnhttp = ''; // Physical location of websvn directory. Change this if your wsvn.php is not in // the same folder as the rest of the distribution