To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / app / views / wiki / show.api.rsb @ 1591:63650ae64bf2
History | View | Annotate | Download (518 Bytes)
| 1 |
api.wiki_page do |
|---|---|
| 2 |
api.title @page.title |
| 3 |
if @page.parent |
| 4 |
api.parent :title => @page.parent.title |
| 5 |
end |
| 6 |
api.text @content.text |
| 7 |
api.version @content.version |
| 8 |
api.author(:id => @content.author_id, :name => @content.author.name) |
| 9 |
api.comments @content.comments |
| 10 |
api.created_on @page.created_on |
| 11 |
api.updated_on @content.updated_on |
| 12 |
|
| 13 |
api.array :attachments do |
| 14 |
@page.attachments.each do |attachment| |
| 15 |
render_api_attachment(attachment, api) |
| 16 |
end |
| 17 |
end if include_in_api_response?('attachments')
|
| 18 |
end |