scm: cvs: code clean up app/models/repository/cvs.rb.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5376 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-04-09 23:22:22 +00:00
parent cae3fcce54
commit 18431d3681
1 changed files with 21 additions and 18 deletions

View File

@ -77,12 +77,11 @@ class Repository::Cvs < Repository
changeset_to=changesets.find_by_revision(rev_to)
end
changeset_from.changes.each() do |change_from|
revision_from = nil
revision_to = nil
revision_from=change_from.revision if path.nil? || (change_from.path.starts_with? scm.with_leading_slash(path))
if path.nil? || (change_from.path.starts_with? scm.with_leading_slash(path))
revision_from=change_from.revision
end
if revision_from
if changeset_to
changeset_to.changes.each() do |change_to|
@ -101,7 +100,8 @@ class Repository::Cvs < Repository
def fetch_changesets
# some nifty bits to introduce a commit-id with cvs
# natively cvs doesn't provide any kind of changesets, there is only a revision per file.
# natively cvs doesn't provide any kind of changesets,
# there is only a revision per file.
# we now take a guess using the author, the commitlog and the commit-date.
# last one is the next step to take. the commit-date is not equal for all
@ -150,7 +150,8 @@ class Repository::Cvs < Repository
action="D" #dead-state is similar to Delete
end
Change.create(:changeset => cs,
Change.create(
:changeset => cs,
:action => action,
:path => scm.with_leading_slash(revision.paths[0][:path]),
:revision => revision.paths[0][:revision],
@ -161,7 +162,9 @@ class Repository::Cvs < Repository
# Renumber new changesets in chronological order
changesets.find(
:all, :order => 'committed_on ASC, id ASC', :conditions => "revision LIKE 'tmp%'"
:all,
:order => 'committed_on ASC, id ASC',
:conditions => "revision LIKE 'tmp%'"
).each do |changeset|
changeset.update_attribute :revision, next_revision_number
end