##// END OF EJS Templates
Fixed (CVS adapter): changes not recorded when using :pserver string....
Jean-Philippe Lang -
r894:1469a4c8df57
parent child
Show More
@@ -142,7 +142,8 module Redmine
142
142
143 if state=="entry_start"
143 if state=="entry_start"
144 branch_map=Hash.new
144 branch_map=Hash.new
145 if /^RCS file: #{Regexp.escape(root_url)}\/#{Regexp.escape(path_with_project)}(.+),v$/ =~ line
145 # gsub(/^:.*@[^:]+:/, '') is here to remove :pserver:anonymous@foo.bar: string if present in the url
146 if /^RCS file: #{Regexp.escape(root_url.gsub(/^:.*@[^:]+:/, ''))}\/#{Regexp.escape(path_with_project)}(.+),v$/ =~ line
146 entry_path = normalize_cvs_path($1)
147 entry_path = normalize_cvs_path($1)
147 entry_name = normalize_path(File.basename($1))
148 entry_name = normalize_path(File.basename($1))
148 logger.debug("Path #{entry_path} <=> Name #{entry_name}")
149 logger.debug("Path #{entry_path} <=> Name #{entry_name}")
@@ -45,7 +45,7 Calendar._SDN = new Array
45
45
46 // First day of the week. "0" means display Sunday first, "1" means display
46 // First day of the week. "0" means display Sunday first, "1" means display
47 // Monday first, etc.
47 // Monday first, etc.
48 Calendar._FD = 0;
48 Calendar._FD = 1;
49
49
50 // full month names
50 // full month names
51 Calendar._MN = new Array
51 Calendar._MN = new Array
General Comments 0
You need to be logged in to leave comments. Login now