scm: cvs: code clean up.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4790 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-02-02 04:01:27 +00:00 committed by Eric Davis
parent 70214da573
commit 6d649a6f84
1 changed files with 5 additions and 4 deletions

View File

@ -104,8 +104,8 @@ class Repository::Cvs < Repository
scm.revisions('', fetch_since, nil, :with_paths => true) do |revision| scm.revisions('', fetch_since, nil, :with_paths => true) do |revision|
# only add the change to the database, if it doen't exists. the cvs log # only add the change to the database, if it doen't exists. the cvs log
# is not exclusive at all. # is not exclusive at all.
unless changes.find_by_path_and_revision(scm.with_leading_slash(revision.paths[0][:path]), revision.paths[0][:revision]) unless changes.find_by_path_and_revision(
revision scm.with_leading_slash(revision.paths[0][:path]), revision.paths[0][:revision])
cs = changesets.find(:first, :conditions=>{ cs = changesets.find(:first, :conditions=>{
:committed_on=>revision.time-time_delta..revision.time+time_delta, :committed_on=>revision.time-time_delta..revision.time+time_delta,
:committer=>revision.author, :committer=>revision.author,
@ -116,7 +116,6 @@ class Repository::Cvs < Repository
unless cs unless cs
# we use a temporaray revision number here (just for inserting) # we use a temporaray revision number here (just for inserting)
# later on, we calculate a continous positive number # later on, we calculate a continous positive number
latest = changesets.find(:first, :order => 'id DESC')
cs = Changeset.create(:repository => self, cs = Changeset.create(:repository => self,
:revision => "_#{tmp_rev_num}", :revision => "_#{tmp_rev_num}",
:committer => revision.author, :committer => revision.author,
@ -144,7 +143,9 @@ class Repository::Cvs < Repository
end end
# Renumber new changesets in chronological order # Renumber new changesets in chronological order
changesets.find(:all, :order => 'committed_on ASC, id ASC', :conditions => "revision LIKE '_%'").each do |changeset| changesets.find(
:all, :order => 'committed_on ASC, id ASC', :conditions => "revision LIKE '_%'"
).each do |changeset|
changeset.update_attribute :revision, next_revision_number changeset.update_attribute :revision, next_revision_number
end end
end # transaction end # transaction