Browse Source

Fixed that Redmine::VERSION.revision returns nil with svn 1.7 (#12012).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10616 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/2.2.0
Jean-Philippe Lang 11 years ago
parent
commit
7af1504672
1 changed files with 6 additions and 13 deletions
  1. 6
    13
      lib/redmine/version.rb

+ 6
- 13
lib/redmine/version.rb View File

@@ -12,26 +12,19 @@ module Redmine
# * trunk: devel
BRANCH = 'devel'

# Retrieves the revision from the working copy
def self.revision
revision = nil
entries_path = "#{Rails.root}/.svn/entries"
if File.readable?(entries_path)
if File.directory?(File.join(Rails.root, '.svn'))
begin
f = File.open(entries_path, 'r')
entries = f.read
f.close
if entries.match(%r{^\d+})
revision = $1.to_i if entries.match(%r{^\d+\s+dir\s+(\d+)\s})
else
xml = REXML::Document.new(entries)
revision =
xml.elements['wc-entries'].elements[1].attributes['revision'].to_i
path = Redmine::Scm::Adapters::AbstractAdapter.shell_quote(Rails.root.to_s)
if `svn info --xml #{path}` =~ /revision="(\d+)"/
return $1.to_i
end
rescue
# Could not find the current revision
end
end
revision
nil
end

REVISION = self.revision

Loading…
Cancel
Save