annotate .svn/pristine/4f/4fdf97ac9fb70913b0f0a7ee691b6415c785a5ae.svn-base @ 1295:622f24f53b42 redmine-2.3

Update to Redmine SVN revision 11972 on 2.3-stable branch
author Chris Cannam
date Fri, 14 Jun 2013 09:02:21 +0100
parents
children
rev   line source
Chris@1295 1 api.array :wiki_pages do
Chris@1295 2 @pages.each do |page|
Chris@1295 3 api.wiki_page do
Chris@1295 4 api.title page.title
Chris@1295 5 if page.parent
Chris@1295 6 api.parent :title => page.parent.title
Chris@1295 7 end
Chris@1295 8 api.version page.version
Chris@1295 9 api.created_on page.created_on
Chris@1295 10 api.updated_on page.updated_on
Chris@1295 11 end
Chris@1295 12 end
Chris@1295 13 end