annotate .svn/pristine/43/4336b667481667d3872d0efd1130886aadc2be58.svn-base @ 1327:287f201c2802 redmine-2.2-integration

Add italic
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Wed, 19 Jun 2013 20:56:22 +0100
parents 038ba2d95de8
children
rev   line source
Chris@1296 1 # Redmine - project management software
Chris@1296 2 # Copyright (C) 2006-2012 Jean-Philippe Lang
Chris@1296 3 #
Chris@1296 4 # This program is free software; you can redistribute it and/or
Chris@1296 5 # modify it under the terms of the GNU General Public License
Chris@1296 6 # as published by the Free Software Foundation; either version 2
Chris@1296 7 # of the License, or (at your option) any later version.
Chris@1296 8 #
Chris@1296 9 # This program is distributed in the hope that it will be useful,
Chris@1296 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
Chris@1296 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Chris@1296 12 # GNU General Public License for more details.
Chris@1296 13 #
Chris@1296 14 # You should have received a copy of the GNU General Public License
Chris@1296 15 # along with this program; if not, write to the Free Software
Chris@1296 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Chris@1296 17
Chris@1296 18 require 'redmine/scm/adapters/subversion_adapter'
Chris@1296 19
Chris@1296 20 class Repository::Subversion < Repository
Chris@1296 21 attr_protected :root_url
Chris@1296 22 validates_presence_of :url
Chris@1296 23 validates_format_of :url, :with => /^(http|https|svn(\+[^\s:\/\\]+)?|file):\/\/.+/i
Chris@1296 24
Chris@1296 25 def self.scm_adapter_class
Chris@1296 26 Redmine::Scm::Adapters::SubversionAdapter
Chris@1296 27 end
Chris@1296 28
Chris@1296 29 def self.scm_name
Chris@1296 30 'Subversion'
Chris@1296 31 end
Chris@1296 32
Chris@1296 33 def supports_directory_revisions?
Chris@1296 34 true
Chris@1296 35 end
Chris@1296 36
Chris@1296 37 def repo_log_encoding
Chris@1296 38 'UTF-8'
Chris@1296 39 end
Chris@1296 40
Chris@1296 41 def latest_changesets(path, rev, limit=10)
Chris@1296 42 revisions = scm.revisions(path, rev, nil, :limit => limit)
Chris@1296 43 if revisions
Chris@1296 44 identifiers = revisions.collect(&:identifier).compact
Chris@1296 45 changesets.where(:revision => identifiers).reorder("committed_on DESC").includes(:repository, :user).all
Chris@1296 46 else
Chris@1296 47 []
Chris@1296 48 end
Chris@1296 49 end
Chris@1296 50
Chris@1296 51 # Returns a path relative to the url of the repository
Chris@1296 52 def relative_path(path)
Chris@1296 53 path.gsub(Regexp.new("^\/?#{Regexp.escape(relative_url)}"), '')
Chris@1296 54 end
Chris@1296 55
Chris@1296 56 def fetch_changesets
Chris@1296 57 scm_info = scm.info
Chris@1296 58 if scm_info
Chris@1296 59 # latest revision found in database
Chris@1296 60 db_revision = latest_changeset ? latest_changeset.revision.to_i : 0
Chris@1296 61 # latest revision in the repository
Chris@1296 62 scm_revision = scm_info.lastrev.identifier.to_i
Chris@1296 63 if db_revision < scm_revision
Chris@1296 64 logger.debug "Fetching changesets for repository #{url}" if logger && logger.debug?
Chris@1296 65 identifier_from = db_revision + 1
Chris@1296 66 while (identifier_from <= scm_revision)
Chris@1296 67 # loads changesets by batches of 200
Chris@1296 68 identifier_to = [identifier_from + 199, scm_revision].min
Chris@1296 69 revisions = scm.revisions('', identifier_to, identifier_from, :with_paths => true)
Chris@1296 70 revisions.reverse_each do |revision|
Chris@1296 71 transaction do
Chris@1296 72 changeset = Changeset.create(:repository => self,
Chris@1296 73 :revision => revision.identifier,
Chris@1296 74 :committer => revision.author,
Chris@1296 75 :committed_on => revision.time,
Chris@1296 76 :comments => revision.message)
Chris@1296 77
Chris@1296 78 revision.paths.each do |change|
Chris@1296 79 changeset.create_change(change)
Chris@1296 80 end unless changeset.new_record?
Chris@1296 81 end
Chris@1296 82 end unless revisions.nil?
Chris@1296 83 identifier_from = identifier_to + 1
Chris@1296 84 end
Chris@1296 85 end
Chris@1296 86 end
Chris@1296 87 end
Chris@1296 88
Chris@1296 89 protected
Chris@1296 90
Chris@1296 91 def load_entries_changesets(entries)
Chris@1296 92 return unless entries
Chris@1296 93
Chris@1296 94 entries_with_identifier = entries.select {|entry| entry.lastrev && entry.lastrev.identifier.present?}
Chris@1296 95 identifiers = entries_with_identifier.map {|entry| entry.lastrev.identifier}.compact.uniq
Chris@1296 96
Chris@1296 97 if identifiers.any?
Chris@1296 98 changesets_by_identifier = changesets.where(:revision => identifiers).includes(:user, :repository).all.group_by(&:revision)
Chris@1296 99 entries_with_identifier.each do |entry|
Chris@1296 100 if m = changesets_by_identifier[entry.lastrev.identifier]
Chris@1296 101 entry.changeset = m.first
Chris@1296 102 end
Chris@1296 103 end
Chris@1296 104 end
Chris@1296 105 end
Chris@1296 106
Chris@1296 107 private
Chris@1296 108
Chris@1296 109 # Returns the relative url of the repository
Chris@1296 110 # Eg: root_url = file:///var/svn/foo
Chris@1296 111 # url = file:///var/svn/foo/bar
Chris@1296 112 # => returns /bar
Chris@1296 113 def relative_url
Chris@1296 114 @relative_url ||= url.gsub(Regexp.new("^#{Regexp.escape(root_url || scm.root_url)}", Regexp::IGNORECASE), '')
Chris@1296 115 end
Chris@1296 116 end