avoid a bug of the latest redmine

even if call ?include=changesets, latest redmine doesn't return
changesets.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48931 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2014-12-23 13:04:06 +00:00
parent b9ffe579da
commit 429537310e
1 changed files with 17 additions and 13 deletions

View File

@ -276,20 +276,24 @@ eom
#end
sio.puts i["description"]
sio.puts
sio.puts "= changesets"
@changesets = []
i["changesets"].each do |x|
@changesets << x["revision"]
sio.puts "== #{x["revision"]} #{x["committed_on"]} #{x["user"]["name"] rescue nil}"
sio.puts x["comments"]
end
sio.puts "= journals"
i["journals"].each do |x|
sio.puts "== #{x["user"]["name"]} (#{x["created_on"]})"
x["details"].each do |y|
sio.puts JSON(y)
if i["changesets"]
sio.puts "= changesets"
@changesets = []
i["changesets"].each do |x|
@changesets << x["revision"]
sio.puts "== #{x["revision"]} #{x["committed_on"]} #{x["user"]["name"] rescue nil}"
sio.puts x["comments"]
end
end
if i["journals"] && !i["journals"].empty?
sio.puts "= journals"
i["journals"].each do |x|
sio.puts "== #{x["user"]["name"]} (#{x["created_on"]})"
x["details"].each do |y|
sio.puts JSON(y)
end
sio.puts x["notes"]
end
sio.puts x["notes"]
end
more(sio)