##// END OF EJS Templates
Fixed: files with an apostrophe in their names can't be accessed in the repository...
Jean-Philippe Lang -
r519:98d08439dce6
parent child
Show More
@@ -192,7 +192,7 module SvnRepos
192 def target(path)
192 def target(path)
193 path ||= ""
193 path ||= ""
194 base = path.match(/^\//) ? root_url : url
194 base = path.match(/^\//) ? root_url : url
195 " \"" << "#{base}/#{path}".gsub(/["'?<>\*]/, '') << "\""
195 " \"" << "#{base}/#{path}".gsub(/["?<>\*]/, '') << "\""
196 end
196 end
197
197
198 def logger
198 def logger
General Comments 0
You need to be logged in to leave comments. Login now