annotate .svn/pristine/1a/1a0df8758a6961e9243b5416c8d2489913c4510a.svn-base @ 1524:82fac3dcf466 redmine-2.5-integration

Fix failure to interpret Javascript when autocompleting members for project
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Thu, 11 Sep 2014 10:24:38 +0100
parents e248c7af89ec
children
rev   line source
Chris@1494 1 # Redmine - project management software
Chris@1494 2 # Copyright (C) 2006-2014 Jean-Philippe Lang
Chris@1494 3 #
Chris@1494 4 # This program is free software; you can redistribute it and/or
Chris@1494 5 # modify it under the terms of the GNU General Public License
Chris@1494 6 # as published by the Free Software Foundation; either version 2
Chris@1494 7 # of the License, or (at your option) any later version.
Chris@1494 8 #
Chris@1494 9 # This program is distributed in the hope that it will be useful,
Chris@1494 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
Chris@1494 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Chris@1494 12 # GNU General Public License for more details.
Chris@1494 13 #
Chris@1494 14 # You should have received a copy of the GNU General Public License
Chris@1494 15 # along with this program; if not, write to the Free Software
Chris@1494 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Chris@1494 17
Chris@1494 18 class EnumerationsController < ApplicationController
Chris@1494 19 layout 'admin'
Chris@1494 20
Chris@1494 21 before_filter :require_admin, :except => :index
Chris@1494 22 before_filter :require_admin_or_api_request, :only => :index
Chris@1494 23 before_filter :build_new_enumeration, :only => [:new, :create]
Chris@1494 24 before_filter :find_enumeration, :only => [:edit, :update, :destroy]
Chris@1494 25 accept_api_auth :index
Chris@1494 26
Chris@1494 27 helper :custom_fields
Chris@1494 28
Chris@1494 29 def index
Chris@1494 30 respond_to do |format|
Chris@1494 31 format.html
Chris@1494 32 format.api {
Chris@1494 33 @klass = Enumeration.get_subclass(params[:type])
Chris@1494 34 if @klass
Chris@1494 35 @enumerations = @klass.shared.sorted.all
Chris@1494 36 else
Chris@1494 37 render_404
Chris@1494 38 end
Chris@1494 39 }
Chris@1494 40 end
Chris@1494 41 end
Chris@1494 42
Chris@1494 43 def new
Chris@1494 44 end
Chris@1494 45
Chris@1494 46 def create
Chris@1494 47 if request.post? && @enumeration.save
Chris@1494 48 flash[:notice] = l(:notice_successful_create)
Chris@1494 49 redirect_to enumerations_path
Chris@1494 50 else
Chris@1494 51 render :action => 'new'
Chris@1494 52 end
Chris@1494 53 end
Chris@1494 54
Chris@1494 55 def edit
Chris@1494 56 end
Chris@1494 57
Chris@1494 58 def update
Chris@1494 59 if request.put? && @enumeration.update_attributes(params[:enumeration])
Chris@1494 60 flash[:notice] = l(:notice_successful_update)
Chris@1494 61 redirect_to enumerations_path
Chris@1494 62 else
Chris@1494 63 render :action => 'edit'
Chris@1494 64 end
Chris@1494 65 end
Chris@1494 66
Chris@1494 67 def destroy
Chris@1494 68 if !@enumeration.in_use?
Chris@1494 69 # No associated objects
Chris@1494 70 @enumeration.destroy
Chris@1494 71 redirect_to enumerations_path
Chris@1494 72 return
Chris@1494 73 elsif params[:reassign_to_id].present? && (reassign_to = @enumeration.class.find_by_id(params[:reassign_to_id].to_i))
Chris@1494 74 @enumeration.destroy(reassign_to)
Chris@1494 75 redirect_to enumerations_path
Chris@1494 76 return
Chris@1494 77 end
Chris@1494 78 @enumerations = @enumeration.class.system.all - [@enumeration]
Chris@1494 79 end
Chris@1494 80
Chris@1494 81 private
Chris@1494 82
Chris@1494 83 def build_new_enumeration
Chris@1494 84 class_name = params[:enumeration] && params[:enumeration][:type] || params[:type]
Chris@1494 85 @enumeration = Enumeration.new_subclass_instance(class_name, params[:enumeration])
Chris@1494 86 if @enumeration.nil?
Chris@1494 87 render_404
Chris@1494 88 end
Chris@1494 89 end
Chris@1494 90
Chris@1494 91 def find_enumeration
Chris@1494 92 @enumeration = Enumeration.find(params[:id])
Chris@1494 93 rescue ActiveRecord::RecordNotFound
Chris@1494 94 render_404
Chris@1494 95 end
Chris@1494 96 end