scm: mercurial: fix exception operation in adapter all methods using xml and io.read (#4455).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4879 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
b399e18548
commit
dbdbe26f5c
|
@ -124,7 +124,10 @@ module Redmine
|
|||
def entries(path=nil, identifier=nil)
|
||||
manifest = hg('rhmanifest', '-r', hgrev(identifier),
|
||||
CGI.escape(without_leading_slash(path.to_s))) do |io|
|
||||
ActiveSupport::XmlMini.parse(io.read)['rhmanifest']['repository']['manifest']
|
||||
begin
|
||||
ActiveSupport::XmlMini.parse(io.read)['rhmanifest']['repository']['manifest']
|
||||
rescue
|
||||
end
|
||||
end
|
||||
path_prefix = path.blank? ? '' : with_trailling_slash(path)
|
||||
|
||||
|
@ -164,8 +167,11 @@ module Redmine
|
|||
hg_args << '--limit' << options[:limit] if options[:limit]
|
||||
hg_args << hgtarget(path) unless path.blank?
|
||||
log = hg(*hg_args) do |io|
|
||||
# Mercurial < 1.5 does not support footer template for '</log>'
|
||||
ActiveSupport::XmlMini.parse("#{io.read}</log>")['log']
|
||||
begin
|
||||
# Mercurial < 1.5 does not support footer template for '</log>'
|
||||
ActiveSupport::XmlMini.parse("#{io.read}</log>")['log']
|
||||
rescue
|
||||
end
|
||||
end
|
||||
|
||||
as_ary(log['logentry']).each do |le|
|
||||
|
|
Loading…
Reference in New Issue