To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / app / views / wiki / index.api.rsb @ 1531:ae8145b28b2b

History | View | Annotate | Download (298 Bytes)

1
api.array :wiki_pages do
2
  @pages.each do |page|
3
    api.wiki_page do
4
      api.title page.title
5
      if page.parent
6
        api.parent :title => page.parent.title
7
      end
8
      api.version page.version
9
      api.created_on page.created_on
10
      api.updated_on page.updated_on
11
    end
12
  end
13
end