##// END OF EJS Templates
scm: subversion: set available version above 1.3 (#4273, #1604)....
scm: subversion: set available version above 1.3 (#4273, #1604). "--xml" options are introduced in 1.3. http://subversion.apache.org/docs/release-notes/1.3.html git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5636 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r4391:ac60fc9c1c58
r5516:741967ae6844
Show More
index.api.rsb
14 lines | 506 B | text/plain | TextLexer
api.array :news, api_meta(:total_count => @news_count, :offset => @offset, :limit => @limit) do
@newss.each do |news|
api.news do
api.id news.id
api.project(:id => news.project_id, :name => news.project.name) unless news.project.nil?
api.author(:id => news.author_id, :name => news.author.name) unless news.author.nil?
api.title news.title
api.summary news.summary
api.description news.description
api.created_on news.created_on
end
end
end