2011-10-29 16:19:11 +04:00
|
|
|
#-- encoding: UTF-8
|
2011-05-30 00:11:52 +04:00
|
|
|
#-- copyright
|
|
|
|
# ChiliProject is a project management system.
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2012-01-03 23:36:40 +04:00
|
|
|
# Copyright (C) 2010-2012 the ChiliProject Team
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +04: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.
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +04:00
|
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
|
|
#++
|
|
|
|
|
2007-03-12 20:59:02 +03:00
|
|
|
class TrackersController < ApplicationController
|
2009-12-17 21:21:02 +03:00
|
|
|
layout 'admin'
|
2011-05-30 22:52:25 +04:00
|
|
|
|
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
|
2011-05-30 22:52:25 +04: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'
|
2011-05-30 22:52:25 +04:00
|
|
|
end
|
2006-06-28 22:11:03 +04:00
|
|
|
end
|