This repository has been archived on 2022-08-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
wikiufc/app/views/wiki/versions.xml.builder
2008-03-02 16:04:34 -03:00

16 lines
426 B
Ruby

xml.instruct! :xml, :version=>"1.0"
xml.versions do
xml.count @wiki_page.versions.count
xml.offset @offset
@wiki_page.versions[(@offset.to_i)..(@offset.to_i+30)].reverse.each do |version|
xml.version do
xml.created_at version.created_at
xml.updated_at version.updated_at
xml.description version.description
xml.title version.title
xml.user_id version.user_id
xml.version version.version
end
end
end