git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4794 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
cb7e4f01cc
commit
1656ce3c53
|
@ -109,7 +109,7 @@ module Redmine
|
||||||
|
|
||||||
path_with_project="#{url}#{with_leading_slash(path)}"
|
path_with_project="#{url}#{with_leading_slash(path)}"
|
||||||
cmd = "#{CVS_BIN} -d #{shell_quote root_url} rlog"
|
cmd = "#{CVS_BIN} -d #{shell_quote root_url} rlog"
|
||||||
cmd << " -d\">#{time_to_cvstime(identifier_from)}\"" if identifier_from
|
cmd << " -d\">#{time_to_cvstime_rlog(identifier_from)}\"" if identifier_from
|
||||||
cmd << " #{shell_quote path_with_project}"
|
cmd << " #{shell_quote path_with_project}"
|
||||||
shellout(cmd) do |io|
|
shellout(cmd) do |io|
|
||||||
state="entry_start"
|
state="entry_start"
|
||||||
|
@ -291,6 +291,12 @@ module Redmine
|
||||||
return time.strftime("%Y-%m-%d %H:%M:%S")
|
return time.strftime("%Y-%m-%d %H:%M:%S")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def time_to_cvstime_rlog(time)
|
||||||
|
return nil if time.nil?
|
||||||
|
t1 = time.clone.localtime
|
||||||
|
return t1.strftime("%Y-%m-%d %H:%M:%S")
|
||||||
|
end
|
||||||
|
|
||||||
def normalize_cvs_path(path)
|
def normalize_cvs_path(path)
|
||||||
normalize_path(path.gsub(/Attic\//,''))
|
normalize_path(path.gsub(/Attic\//,''))
|
||||||
end
|
end
|
||||||
|
|
|
@ -19,6 +19,15 @@ begin
|
||||||
end
|
end
|
||||||
assert_equal 14, cnt
|
assert_equal 14, cnt
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_revisions_from_rev3
|
||||||
|
rev3_committed_on = Time.gm(2007, 12, 13, 16, 27, 22)
|
||||||
|
cnt = 0
|
||||||
|
@adapter.revisions('', rev3_committed_on, nil, :with_paths => true) do |revision|
|
||||||
|
cnt += 1
|
||||||
|
end
|
||||||
|
assert_equal 2, cnt
|
||||||
|
end
|
||||||
else
|
else
|
||||||
puts "Cvs test repository NOT FOUND. Skipping unit tests !!!"
|
puts "Cvs test repository NOT FOUND. Skipping unit tests !!!"
|
||||||
def test_fake; assert true end
|
def test_fake; assert true end
|
||||||
|
|
Loading…
Reference in New Issue