* Factor out common sidebar layout template. * Convert wiki pages and posts to use this template. * Add data-layout attribute to <body> element indicating the current layout.
25 lines
749 B
Ruby
25 lines
749 B
Ruby
class WikiPageVersionsController < ApplicationController
|
|
respond_to :html, :xml, :json
|
|
layout "sidebar"
|
|
|
|
def index
|
|
@wiki_page_versions = WikiPageVersion.search(search_params).paginate(params[:page], :limit => params[:limit], :search_count => params[:search])
|
|
respond_with(@wiki_page_versions)
|
|
end
|
|
|
|
def show
|
|
@wiki_page_version = WikiPageVersion.find(params[:id])
|
|
respond_with(@wiki_page_version)
|
|
end
|
|
|
|
def diff
|
|
if params[:thispage].blank? || params[:otherpage].blank?
|
|
redirect_back fallback_location: wiki_pages_path, notice: "You must select two versions to diff"
|
|
return
|
|
end
|
|
|
|
@thispage = WikiPageVersion.find(params[:thispage])
|
|
@otherpage = WikiPageVersion.find(params[:otherpage])
|
|
end
|
|
end
|