2009-02-26 12:21:41 +03:00
|
|
|
# Redmine - project management software
|
|
|
|
# Copyright (C) 2006-2009 Jean-Philippe Lang
|
2007-03-12 20:59:02 +03:00
|
|
|
#
|
|
|
|
# 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
|
2009-12-17 21:21:02 +03:00
|
|
|
layout 'admin'
|
|
|
|
|
2007-03-12 20:59:02 +03:00
|
|
|
before_filter :require_admin
|
2006-06-28 22:11:03 +04:00
|
|
|
|
2010-02-15 19:41:27 +03:00
|
|
|
verify :method => :post, :only => :destroy, :redirect_to => { :action => :index }
|
2006-06-28 22:11:03 +04:00
|
|
|
|
2010-02-15 19:41:27 +03:00
|
|
|
def index
|
2007-03-12 20:59:02 +03:00
|
|
|
@tracker_pages, @trackers = paginate :trackers, :per_page => 10, :order => 'position'
|
2010-02-15 19:41:27 +03:00
|
|
|
render :action => "index", :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]))
|
2008-03-15 11:27:38 +03:00
|
|
|
@tracker.workflows.copy(copy_from)
|
2007-04-02 21:45:21 +04:00
|
|
|
end
|
2006-07-30 14:47:02 +04:00
|
|
|
flash[:notice] = l(:notice_successful_create)
|
2010-02-15 19:41:27 +03:00
|
|
|
redirect_to :action => 'index'
|
2009-01-29 17:22:56 +03:00
|
|
|
return
|
2006-06-28 22:11:03 +04:00
|
|
|
end
|
2008-03-15 11:27:38 +03:00
|
|
|
@trackers = Tracker.find :all, :order => 'position'
|
2009-01-29 17:22:56 +03:00
|
|
|
@projects = Project.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)
|
2010-02-15 19:41:27 +03:00
|
|
|
redirect_to :action => 'index'
|
2009-01-29 17:22:56 +03:00
|
|
|
return
|
2006-06-28 22:11:03 +04:00
|
|
|
end
|
2009-01-29 17:22:56 +03:00
|
|
|
@projects = Project.find(:all)
|
2006-06-28 22:11:03 +04:00
|
|
|
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?
|
2010-04-03 15:54:24 +04:00
|
|
|
flash[:error] = l(:error_can_not_delete_tracker)
|
2007-03-12 20:59:02 +03:00
|
|
|
else
|
|
|
|
@tracker.destroy
|
2006-06-28 22:11:03 +04:00
|
|
|
end
|
2010-02-15 19:41:27 +03:00
|
|
|
redirect_to :action => 'index'
|
2007-01-28 03:00:21 +03:00
|
|
|
end
|
2006-06-28 22:11:03 +04:00
|
|
|
end
|