2011-10-30 23:02:41 +00:00
|
|
|
module Locomotive
|
2010-05-10 22:39:52 +00:00
|
|
|
class PagesController < BaseController
|
2010-07-21 23:35:30 +00:00
|
|
|
|
2010-05-10 22:39:52 +00:00
|
|
|
sections 'contents'
|
2010-07-21 23:35:30 +00:00
|
|
|
|
2011-11-21 01:27:05 +00:00
|
|
|
respond_to :json, :only => [:show, :update, :sort, :get_path]
|
2010-07-21 23:35:30 +00:00
|
|
|
|
2010-05-10 22:39:52 +00:00
|
|
|
def index
|
2011-01-02 22:58:06 +00:00
|
|
|
@pages = current_site.all_pages_in_once
|
2011-11-09 01:35:59 +00:00
|
|
|
respond_with(@pages)
|
2010-05-10 22:39:52 +00:00
|
|
|
end
|
2010-07-21 23:35:30 +00:00
|
|
|
|
2011-11-21 01:27:05 +00:00
|
|
|
def show
|
|
|
|
@page = current_site.pages.find(params[:id])
|
|
|
|
respond_with @page
|
|
|
|
end
|
|
|
|
|
2010-05-10 22:39:52 +00:00
|
|
|
def new
|
|
|
|
@page = current_site.pages.build
|
2011-11-09 01:35:59 +00:00
|
|
|
respond_with @page
|
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
2011-11-10 21:41:20 +00:00
|
|
|
@page = current_site.pages.create(params[:page])
|
|
|
|
respond_with @page, :location => edit_page_url(@page._id)
|
2010-08-28 00:00:05 +00:00
|
|
|
end
|
|
|
|
|
2011-11-16 00:39:16 +00:00
|
|
|
def edit
|
|
|
|
@page = current_site.pages.find(params[:id])
|
|
|
|
respond_with @page
|
|
|
|
end
|
|
|
|
|
2010-08-28 00:00:05 +00:00
|
|
|
def update
|
2011-11-10 21:41:20 +00:00
|
|
|
@page = current_site.pages.find(params[:id])
|
2011-11-09 01:35:59 +00:00
|
|
|
@page.update_attributes(params[:page])
|
2011-11-21 01:27:05 +00:00
|
|
|
puts @page.errors.inspect
|
|
|
|
respond_with @page, :location => edit_page_url(@page._id)
|
|
|
|
# do |format|
|
|
|
|
# format.json do
|
|
|
|
# render :json => {
|
|
|
|
# :notice => t('flash.locomotive.pages.update.notice'),
|
|
|
|
# :editable_elements => @page.template_changed ?
|
|
|
|
# render_to_string(:partial => 'locomotive/pages/editable_elements.html.haml') : ''
|
|
|
|
# }
|
|
|
|
# end
|
|
|
|
# end
|
2010-05-10 22:39:52 +00:00
|
|
|
end
|
2010-07-21 23:35:30 +00:00
|
|
|
|
2011-11-10 21:41:20 +00:00
|
|
|
def destroy
|
|
|
|
@page = current_site.pages.find(params[:id])
|
|
|
|
@page.destroy
|
|
|
|
respond_with @page
|
|
|
|
end
|
|
|
|
|
2010-05-10 22:39:52 +00:00
|
|
|
def sort
|
|
|
|
@page = current_site.pages.find(params[:id])
|
|
|
|
@page.sort_children!(params[:children])
|
2010-07-13 00:46:17 +00:00
|
|
|
respond_with @page
|
2010-05-10 22:39:52 +00:00
|
|
|
end
|
2010-07-21 23:35:30 +00:00
|
|
|
|
2010-05-10 22:39:52 +00:00
|
|
|
def get_path
|
2011-06-21 20:03:24 +00:00
|
|
|
page = current_site.pages.build(:parent => current_site.pages.find(params[:parent_id]), :slug => params[:slug].permalink)
|
2010-07-21 23:35:30 +00:00
|
|
|
|
2011-11-10 21:41:20 +00:00
|
|
|
render :json => { :url => public_page_url(page), :slug => page.slug }
|
2010-05-10 22:39:52 +00:00
|
|
|
end
|
2010-07-21 23:35:30 +00:00
|
|
|
|
2010-07-13 00:46:17 +00:00
|
|
|
end
|
2011-11-09 01:35:59 +00:00
|
|
|
end
|