From 001b255b081bec908851ac7e8d715f1bb6e61c03 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Sun, 5 Feb 2012 14:35:27 +0000 Subject: Ability to edit a wiki page's parent on the edit page (#6449). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8787 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/controllers/wiki_controller.rb | 13 ++++++------- app/models/wiki_page.rb | 5 +++++ app/views/wiki/edit.html.erb | 9 +++++++-- 3 files changed, 18 insertions(+), 9 deletions(-) (limited to 'app') diff --git a/app/controllers/wiki_controller.rb b/app/controllers/wiki_controller.rb index 079c44ff3..28d0d44b1 100644 --- a/app/controllers/wiki_controller.rb +++ b/app/controllers/wiki_controller.rb @@ -123,6 +123,7 @@ class WikiController < ApplicationController def update return render_403 unless editable? @page.content = WikiContent.new(:page => @page) if @page.new_record? + @page.safe_attributes = params[:wiki_page] @content = @page.content_for_version(params[:version]) @content.text = initial_page_content(@page) if @content.text.blank? @@ -132,11 +133,12 @@ class WikiController < ApplicationController if !@page.new_record? && params[:content].present? && @content.text == params[:content][:text] attachments = Attachment.attach_files(@page, params[:attachments]) render_attachment_warning_if_needed(@page) - # don't save if text wasn't changed + # don't save content if text wasn't changed + @page.save redirect_to :action => 'show', :project_id => @project, :id => @page.title return end - + @content.comments = params[:content][:comments] @text = params[:content][:text] if params[:section].present? && Redmine::WikiFormatting.supports_section_edit? @@ -148,11 +150,8 @@ class WikiController < ApplicationController @content.text = @text end @content.author = User.current - if @page.new_record? && params[:page] - @page.parent_id = params[:page][:parent_id] - end - # 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) + @page.content = @content + if @page.save attachments = Attachment.attach_files(@page, params[:attachments]) render_attachment_warning_if_needed(@page) call_hook(:controller_wiki_edit_after_save, { :params => params, :page => @page}) diff --git a/app/models/wiki_page.rb b/app/models/wiki_page.rb index 5508bd218..6088e48ca 100644 --- a/app/models/wiki_page.rb +++ b/app/models/wiki_page.rb @@ -19,6 +19,8 @@ require 'diff' require 'enumerator' class WikiPage < ActiveRecord::Base + include Redmine::SafeAttributes + belongs_to :wiki has_one :content, :class_name => 'WikiContent', :foreign_key => 'page_id', :dependent => :destroy acts_as_attachable :delete_permission => :delete_wiki_pages_attachments @@ -55,6 +57,9 @@ class WikiPage < ActiveRecord::Base # Wiki pages that are protected by default DEFAULT_PROTECTED_PAGES = %w(sidebar) + safe_attributes 'parent_id', + :if => lambda {|page, user| page.new_record? || user.allowed_to?(:rename_wiki_pages, page.project)} + def initialize(attributes=nil, *args) super if new_record? && DEFAULT_PROTECTED_PAGES.include?(title.to_s.downcase) diff --git a/app/views/wiki/edit.html.erb b/app/views/wiki/edit.html.erb index 00d243a13..3bee3dcc8 100644 --- a/app/views/wiki/edit.html.erb +++ b/app/views/wiki/edit.html.erb @@ -13,8 +13,13 @@
<%= text_area_tag 'content[text]', @text, :cols => 100, :rows => 25, :class => 'wiki-edit', :accesskey => accesskey(:edit) %> -<% if @page.new_record? && @page.parent %> -

<%=h @page.parent.pretty_title %>

+<% if @page.safe_attribute_names.include?('parent_id') && @wiki.pages.any? %> + <% fields_for @page do |fp| %> +

+ + <%= fp.select :parent_id, "" + wiki_page_options_for_select(@wiki.pages.all(:include => :parent) - @page.self_and_descendants, @page.parent) %> +

+ <% end %> <% end %>

<%= f.text_field :comments, :size => 120 %>

-- cgit v1.2.3