Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
Merge branch 'jc/remove-treesame-parent-in-simplify-merges'
[gitweb.git]
/
perl
/
Git
/
SVN
/
Utils.pm
diff --git
a/perl/Git/SVN/Utils.pm
b/perl/Git/SVN/Utils.pm
index 8b8cf3755c268e03ef334534092bcd7959070cd2..3d1a0933a2eb27dc123730c67470be503e91bf93 100644
(file)
--- a/
perl/Git/SVN/Utils.pm
+++ b/
perl/Git/SVN/Utils.pm
@@
-155,7
+155,7
@@
sub _canonicalize_url_path {
my @parts;
foreach my $part (split m{/+}, $uri_path) {
- $part =~ s/([^
~\w.%+
-]|%(?![a-fA-F0-9]{2}))/sprintf("%%%02X",ord($1))/eg;
+ $part =~ s/([^
!\$%&'()*+,.\/\w:=\@_`~
-]|%(?![a-fA-F0-9]{2}))/sprintf("%%%02X",ord($1))/eg;
push @parts, $part;
}