2007-03-12 20:59:02 +03:00
|
|
|
# redMine - project management software
|
|
|
|
# Copyright (C) 2006 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.
|
|
|
|
|
|
|
|
class TrackersController < ApplicationController
|
|
|
|
layout 'base'
|
|
|
|
before_filter :require_admin
|
2006-06-28 22:11:03 +04:00
|
|
|
|
|
|
|
def index
|
|
|
|
list
|
2006-10-21 14:38:53 +04:00
|
|
|
render :action => 'list' unless request.xhr?
|
2006-06-28 22:11:03 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
# GETs should be safe (see http://www.w3.org/2001/tag/doc/whenToUseGet.html)
|
2007-02-01 00:20:49 +03:00
|
|
|
verify :method => :post, :only => [ :destroy, :move ], :redirect_to => { :action => :list }
|
2006-06-28 22:11:03 +04:00
|
|
|
|
|
|
|
def list
|
2007-03-12 20:59:02 +03:00
|
|
|
@tracker_pages, @trackers = paginate :trackers, :per_page => 10, :order => 'position'
|
2006-10-21 14:38:53 +04:00
|
|
|
render :action => "list", :layout => false if request.xhr?
|
2006-06-28 22:11:03 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
def new
|
|
|
|
@tracker = Tracker.new(params[:tracker])
|
|
|
|
if request.post? and @tracker.save
|
2007-04-02 21:45:21 +04:00
|
|
|
# workflow copy
|
2007-08-01 23:51:02 +04:00
|
|
|
if !params[:copy_workflow_from].blank? && (copy_from = Tracker.find_by_id(params[:copy_workflow_from]))
|
2007-04-02 21:45:21 +04:00
|
|
|
copy_from.workflows.each do |w|
|
|
|
|
@tracker.workflows << w.clone
|
|
|
|
end
|
|
|
|
end
|
2006-07-30 14:47:02 +04:00
|
|
|
flash[:notice] = l(:notice_successful_create)
|
2006-06-28 22:11:03 +04:00
|
|
|
redirect_to :action => 'list'
|
|
|
|
end
|
2007-04-02 21:45:21 +04:00
|
|
|
@trackers = Tracker.find :all
|
2006-06-28 22:11:03 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
def edit
|
|
|
|
@tracker = Tracker.find(params[:id])
|
|
|
|
if request.post? and @tracker.update_attributes(params[:tracker])
|
2006-07-30 14:47:02 +04:00
|
|
|
flash[:notice] = l(:notice_successful_update)
|
2006-06-28 22:11:03 +04:00
|
|
|
redirect_to :action => 'list'
|
|
|
|
end
|
|
|
|
end
|
2007-03-12 20:59:02 +03:00
|
|
|
|
|
|
|
def move
|
|
|
|
@tracker = Tracker.find(params[:id])
|
|
|
|
case params[:position]
|
|
|
|
when 'highest'
|
|
|
|
@tracker.move_to_top
|
|
|
|
when 'higher'
|
|
|
|
@tracker.move_higher
|
|
|
|
when 'lower'
|
|
|
|
@tracker.move_lower
|
|
|
|
when 'lowest'
|
|
|
|
@tracker.move_to_bottom
|
|
|
|
end if params[:position]
|
|
|
|
redirect_to :action => 'list'
|
|
|
|
end
|
2007-02-01 00:18:43 +03:00
|
|
|
|
2006-06-28 22:11:03 +04:00
|
|
|
def destroy
|
2007-03-12 20:59:02 +03:00
|
|
|
@tracker = Tracker.find(params[:id])
|
|
|
|
unless @tracker.issues.empty?
|
2007-08-02 21:42:20 +04:00
|
|
|
flash[:error] = "This tracker contains issues and can\'t be deleted."
|
2007-03-12 20:59:02 +03:00
|
|
|
else
|
|
|
|
@tracker.destroy
|
2006-06-28 22:11:03 +04:00
|
|
|
end
|
|
|
|
redirect_to :action => 'list'
|
2007-01-28 03:00:21 +03:00
|
|
|
end
|
2006-06-28 22:11:03 +04:00
|
|
|
end
|