Package: websvn
Severity: normal
Some repository names have characters that need to
encode. A example is here: http://gnosislivre.org/websvn/
The patch for using urlencode() in repository name is attached.
Thanks,
-- System Information:
Debian Release: 3.1
APT prefers unstable
APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.9
Locale: LANG=pt_BR, LC_CTYPE=pt_BR (charmap=ISO-8859-1)
diff -Nur websvn-1.61.orig/include/configclass.inc
websvn-1.61/include/configclass.inc
--- websvn-1.61.orig/include/configclass.inc 2005-03-10 11:12:25 -0300
+++ websvn-1.61/include/configclass.inc 2005-03-10 11:12:52 -0300
@@ -402,7 +402,7 @@
if ($rep == -1)
return $fname."?path=".urlencode($path)."&";
else
- return
$fname."?repname=".$rep->name."&path=".urlencode($path)."&";
+ return
$fname."?repname=".urlencode($rep->name)."&path=".urlencode($path)."&";
}
}