Fixed (CVS adapter): changes not recorded when using :pserver string.
Updated Russian js calendar (iGor kMeta). git-svn-id: http://redmine.rubyforge.org/svn/trunk@907 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
76cdef46f2
commit
1469a4c8df
|
@ -142,7 +142,8 @@ module Redmine
|
||||||
|
|
||||||
if state=="entry_start"
|
if state=="entry_start"
|
||||||
branch_map=Hash.new
|
branch_map=Hash.new
|
||||||
if /^RCS file: #{Regexp.escape(root_url)}\/#{Regexp.escape(path_with_project)}(.+),v$/ =~ line
|
# gsub(/^:.*@[^:]+:/, '') is here to remove :pserver:anonymous@foo.bar: string if present in the url
|
||||||
|
if /^RCS file: #{Regexp.escape(root_url.gsub(/^:.*@[^:]+:/, ''))}\/#{Regexp.escape(path_with_project)}(.+),v$/ =~ line
|
||||||
entry_path = normalize_cvs_path($1)
|
entry_path = normalize_cvs_path($1)
|
||||||
entry_name = normalize_path(File.basename($1))
|
entry_name = normalize_path(File.basename($1))
|
||||||
logger.debug("Path #{entry_path} <=> Name #{entry_name}")
|
logger.debug("Path #{entry_path} <=> Name #{entry_name}")
|
||||||
|
|
|
@ -45,7 +45,7 @@ Calendar._SDN = new Array
|
||||||
|
|
||||||
// First day of the week. "0" means display Sunday first, "1" means display
|
// First day of the week. "0" means display Sunday first, "1" means display
|
||||||
// Monday first, etc.
|
// Monday first, etc.
|
||||||
Calendar._FD = 0;
|
Calendar._FD = 1;
|
||||||
|
|
||||||
// full month names
|
// full month names
|
||||||
Calendar._MN = new Array
|
Calendar._MN = new Array
|
||||||
|
|
Loading…
Reference in New Issue