2007-03-10 18:09:49 +03:00
|
|
|
# redMine - project management software
|
|
|
|
# Copyright (C) 2006-2007 Jean-Philippe Lang
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
2007-07-14 15:25:03 +04:00
|
|
|
require 'diff'
|
|
|
|
|
2007-03-10 18:09:49 +03:00
|
|
|
class WikiController < ApplicationController
|
|
|
|
layout 'base'
|
2007-08-29 20:52:35 +04:00
|
|
|
before_filter :find_wiki, :authorize
|
2007-05-25 20:44:50 +04:00
|
|
|
|
2007-05-26 19:42:37 +04:00
|
|
|
verify :method => :post, :only => [:destroy, :destroy_attachment], :redirect_to => { :action => :index }
|
|
|
|
|
|
|
|
helper :attachments
|
|
|
|
include AttachmentsHelper
|
2007-05-25 20:44:50 +04:00
|
|
|
|
2007-03-10 18:09:49 +03:00
|
|
|
# display a page (in editing mode if it doesn't exist)
|
|
|
|
def index
|
|
|
|
page_title = params[:page]
|
|
|
|
@page = @wiki.find_or_new_page(page_title)
|
|
|
|
if @page.new_record?
|
2007-10-11 01:18:10 +04:00
|
|
|
if User.current.allowed_to?(:edit_wiki_pages, @project)
|
|
|
|
edit
|
|
|
|
render :action => 'edit'
|
|
|
|
else
|
|
|
|
render_404
|
|
|
|
end
|
|
|
|
return
|
2007-03-10 18:09:49 +03:00
|
|
|
end
|
2007-04-05 18:45:44 +04:00
|
|
|
@content = @page.content_for_version(params[:version])
|
2007-03-10 18:09:49 +03:00
|
|
|
if params[:export] == 'html'
|
|
|
|
export = render_to_string :action => 'export', :layout => false
|
|
|
|
send_data(export, :type => 'text/html', :filename => "#{@page.title}.html")
|
|
|
|
return
|
|
|
|
elsif params[:export] == 'txt'
|
|
|
|
send_data(@content.text, :type => 'text/plain', :filename => "#{@page.title}.txt")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
render :action => 'show'
|
|
|
|
end
|
|
|
|
|
|
|
|
# edit an existing page or a new one
|
|
|
|
def edit
|
|
|
|
@page = @wiki.find_or_new_page(params[:page])
|
|
|
|
@page.content = WikiContent.new(:page => @page) if @page.new_record?
|
2007-04-05 18:45:44 +04:00
|
|
|
|
|
|
|
@content = @page.content_for_version(params[:version])
|
2007-03-20 21:14:23 +03:00
|
|
|
@content.text = "h1. #{@page.pretty_title}" if @content.text.blank?
|
2007-03-10 18:09:49 +03:00
|
|
|
# don't keep previous comment
|
2007-04-25 19:06:20 +04:00
|
|
|
@content.comments = nil
|
2007-03-10 18:09:49 +03:00
|
|
|
if request.post?
|
2007-09-15 20:57:37 +04:00
|
|
|
if !@page.new_record? && @content.text == params[:content][:text]
|
2007-03-10 18:09:49 +03:00
|
|
|
# don't save if text wasn't changed
|
|
|
|
redirect_to :action => 'index', :id => @project, :page => @page.title
|
|
|
|
return
|
|
|
|
end
|
2007-05-26 21:22:27 +04:00
|
|
|
#@content.text = params[:content][:text]
|
|
|
|
#@content.comments = params[:content][:comments]
|
|
|
|
@content.attributes = params[:content]
|
2007-11-20 18:40:16 +03:00
|
|
|
@content.author = User.current
|
2007-03-10 18:09:49 +03:00
|
|
|
# if page is new @page.save will also save content, but not if page isn't a new record
|
|
|
|
if (@page.new_record? ? @page.save : @content.save)
|
|
|
|
redirect_to :action => 'index', :id => @project, :page => @page.title
|
|
|
|
end
|
|
|
|
end
|
2007-05-26 21:22:27 +04:00
|
|
|
rescue ActiveRecord::StaleObjectError
|
|
|
|
# Optimistic locking exception
|
2007-08-02 21:42:20 +04:00
|
|
|
flash[:error] = l(:notice_locking_conflict)
|
2007-03-10 18:09:49 +03:00
|
|
|
end
|
|
|
|
|
2007-09-09 21:05:38 +04:00
|
|
|
# rename a page
|
|
|
|
def rename
|
|
|
|
@page = @wiki.find_page(params[:page])
|
|
|
|
@page.redirect_existing_links = true
|
|
|
|
# used to display the *original* title if some AR validation errors occur
|
|
|
|
@original_title = @page.pretty_title
|
|
|
|
if request.post? && @page.update_attributes(params[:wiki_page])
|
|
|
|
flash[:notice] = l(:notice_successful_update)
|
|
|
|
redirect_to :action => 'index', :id => @project, :page => @page.title
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2007-03-10 18:09:49 +03:00
|
|
|
# show page history
|
|
|
|
def history
|
|
|
|
@page = @wiki.find_page(params[:page])
|
2007-06-23 22:53:45 +04:00
|
|
|
|
|
|
|
@version_count = @page.content.versions.count
|
2007-12-29 14:36:30 +03:00
|
|
|
@version_pages = Paginator.new self, @version_count, per_page_option, params['p']
|
2007-06-23 22:53:45 +04:00
|
|
|
# don't load text
|
2007-03-10 18:09:49 +03:00
|
|
|
@versions = @page.content.versions.find :all,
|
2007-04-25 19:06:20 +04:00
|
|
|
:select => "id, author_id, comments, updated_on, version",
|
2007-06-23 22:53:45 +04:00
|
|
|
:order => 'version DESC',
|
2007-07-14 15:25:03 +04:00
|
|
|
:limit => @version_pages.items_per_page + 1,
|
2007-06-23 22:53:45 +04:00
|
|
|
:offset => @version_pages.current.offset
|
|
|
|
|
|
|
|
render :layout => false if request.xhr?
|
2007-03-10 18:09:49 +03:00
|
|
|
end
|
2007-05-25 20:44:50 +04:00
|
|
|
|
2007-07-14 15:25:03 +04:00
|
|
|
def diff
|
|
|
|
@page = @wiki.find_page(params[:page])
|
|
|
|
@diff = @page.diff(params[:version], params[:version_from])
|
|
|
|
render_404 unless @diff
|
|
|
|
end
|
|
|
|
|
2007-12-20 22:10:24 +03:00
|
|
|
def annotate
|
|
|
|
@page = @wiki.find_page(params[:page])
|
|
|
|
@annotate = @page.annotate(params[:version])
|
|
|
|
end
|
|
|
|
|
2007-05-25 20:44:50 +04:00
|
|
|
# remove a wiki page and its history
|
|
|
|
def destroy
|
|
|
|
@page = @wiki.find_page(params[:page])
|
|
|
|
@page.destroy if @page
|
|
|
|
redirect_to :action => 'special', :id => @project, :page => 'Page_index'
|
|
|
|
end
|
2007-03-10 18:09:49 +03:00
|
|
|
|
|
|
|
# display special pages
|
|
|
|
def special
|
|
|
|
page_title = params[:page].downcase
|
|
|
|
case page_title
|
|
|
|
# show pages index, sorted by title
|
2007-09-27 23:35:53 +04:00
|
|
|
when 'page_index', 'date_index'
|
2007-03-10 18:09:49 +03:00
|
|
|
# eager load information about last updates, without loading text
|
2007-03-16 01:11:02 +03:00
|
|
|
@pages = @wiki.pages.find :all, :select => "#{WikiPage.table_name}.*, #{WikiContent.table_name}.updated_on",
|
|
|
|
:joins => "LEFT JOIN #{WikiContent.table_name} ON #{WikiContent.table_name}.page_id = #{WikiPage.table_name}.id",
|
2007-03-10 18:09:49 +03:00
|
|
|
:order => 'title'
|
2007-09-27 23:35:53 +04:00
|
|
|
@pages_by_date = @pages.group_by {|p| p.updated_on.to_date}
|
2007-03-10 18:09:49 +03:00
|
|
|
# export wiki to a single html file
|
|
|
|
when 'export'
|
|
|
|
@pages = @wiki.pages.find :all, :order => 'title'
|
|
|
|
export = render_to_string :action => 'export_multiple', :layout => false
|
|
|
|
send_data(export, :type => 'text/html', :filename => "wiki.html")
|
|
|
|
return
|
|
|
|
else
|
|
|
|
# requested special page doesn't exist, redirect to default page
|
|
|
|
redirect_to :action => 'index', :id => @project, :page => nil and return
|
|
|
|
end
|
|
|
|
render :action => "special_#{page_title}"
|
|
|
|
end
|
|
|
|
|
|
|
|
def preview
|
2007-05-26 19:42:37 +04:00
|
|
|
page = @wiki.find_page(params[:page])
|
|
|
|
@attachements = page.attachments if page
|
2007-03-10 18:09:49 +03:00
|
|
|
@text = params[:content][:text]
|
2007-10-06 12:54:05 +04:00
|
|
|
render :partial => 'common/preview'
|
2007-03-10 18:09:49 +03:00
|
|
|
end
|
|
|
|
|
2007-05-26 19:42:37 +04:00
|
|
|
def add_attachment
|
|
|
|
@page = @wiki.find_page(params[:page])
|
2007-12-14 20:33:05 +03:00
|
|
|
attach_files(@page, params[:attachments])
|
2007-05-26 19:42:37 +04:00
|
|
|
redirect_to :action => 'index', :page => @page.title
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy_attachment
|
|
|
|
@page = @wiki.find_page(params[:page])
|
|
|
|
@page.attachments.find(params[:attachment_id]).destroy
|
|
|
|
redirect_to :action => 'index', :page => @page.title
|
|
|
|
end
|
|
|
|
|
2007-03-10 18:09:49 +03:00
|
|
|
private
|
|
|
|
|
|
|
|
def find_wiki
|
|
|
|
@project = Project.find(params[:id])
|
|
|
|
@wiki = @project.wiki
|
2007-06-14 22:26:27 +04:00
|
|
|
render_404 unless @wiki
|
2007-03-10 18:09:49 +03:00
|
|
|
rescue ActiveRecord::RecordNotFound
|
|
|
|
render_404
|
|
|
|
end
|
|
|
|
end
|