| 
									
										
										
										
											2009-02-26 09:21:41 +00:00
										 |  |  | # Redmine - project management software | 
					
						
							|  |  |  | # Copyright (C) 2006-2009  Jean-Philippe Lang | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00: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 18:21:02 +00:00
										 |  |  |   layout 'admin' | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |   before_filter :require_admin | 
					
						
							| 
									
										
										
										
											2006-06-28 18:11:03 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-15 16:41:27 +00:00
										 |  |  |   verify :method => :post, :only => :destroy, :redirect_to => { :action => :index } | 
					
						
							| 
									
										
										
										
											2006-06-28 18:11:03 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-15 16:41:27 +00:00
										 |  |  |   def index | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |     @tracker_pages, @trackers = paginate :trackers, :per_page => 10, :order => 'position' | 
					
						
							| 
									
										
										
										
											2010-02-15 16:41:27 +00:00
										 |  |  |     render :action => "index", :layout => false if request.xhr? | 
					
						
							| 
									
										
										
										
											2006-06-28 18:11:03 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def new | 
					
						
							|  |  |  |     @tracker = Tracker.new(params[:tracker]) | 
					
						
							|  |  |  |     if request.post? and @tracker.save | 
					
						
							| 
									
										
										
										
											2007-04-02 17:45:21 +00:00
										 |  |  |       # workflow copy | 
					
						
							| 
									
										
										
										
											2007-08-01 19:51:02 +00:00
										 |  |  |       if !params[:copy_workflow_from].blank? && (copy_from = Tracker.find_by_id(params[:copy_workflow_from])) | 
					
						
							| 
									
										
										
										
											2008-03-15 08:27:38 +00:00
										 |  |  |         @tracker.workflows.copy(copy_from) | 
					
						
							| 
									
										
										
										
											2007-04-02 17:45:21 +00:00
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2006-07-30 10:47:02 +00:00
										 |  |  |       flash[:notice] = l(:notice_successful_create) | 
					
						
							| 
									
										
										
										
											2010-02-15 16:41:27 +00:00
										 |  |  |       redirect_to :action => 'index' | 
					
						
							| 
									
										
										
										
											2009-01-29 14:22:56 +00:00
										 |  |  |       return | 
					
						
							| 
									
										
										
										
											2006-06-28 18:11:03 +00:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2008-03-15 08:27:38 +00:00
										 |  |  |     @trackers = Tracker.find :all, :order => 'position' | 
					
						
							| 
									
										
										
										
											2009-01-29 14:22:56 +00:00
										 |  |  |     @projects = Project.find(:all) | 
					
						
							| 
									
										
										
										
											2006-06-28 18:11:03 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def edit | 
					
						
							|  |  |  |     @tracker = Tracker.find(params[:id]) | 
					
						
							|  |  |  |     if request.post? and @tracker.update_attributes(params[:tracker]) | 
					
						
							| 
									
										
										
										
											2006-07-30 10:47:02 +00:00
										 |  |  |       flash[:notice] = l(:notice_successful_update) | 
					
						
							| 
									
										
										
										
											2010-02-15 16:41:27 +00:00
										 |  |  |       redirect_to :action => 'index' | 
					
						
							| 
									
										
										
										
											2009-01-29 14:22:56 +00:00
										 |  |  |       return | 
					
						
							| 
									
										
										
										
											2006-06-28 18:11:03 +00:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2009-01-29 14:22:56 +00:00
										 |  |  |     @projects = Project.find(:all) | 
					
						
							| 
									
										
										
										
											2006-06-28 18:11:03 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2007-01-31 21:18:43 +00:00
										 |  |  |    | 
					
						
							| 
									
										
										
										
											2006-06-28 18:11:03 +00:00
										 |  |  |   def destroy | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |     @tracker = Tracker.find(params[:id]) | 
					
						
							|  |  |  |     unless @tracker.issues.empty? | 
					
						
							| 
									
										
										
										
											2010-04-03 11:54:24 +00:00
										 |  |  |       flash[:error] = l(:error_can_not_delete_tracker) | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |     else | 
					
						
							|  |  |  |       @tracker.destroy | 
					
						
							| 
									
										
										
										
											2006-06-28 18:11:03 +00:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2010-02-15 16:41:27 +00:00
										 |  |  |     redirect_to :action => 'index' | 
					
						
							| 
									
										
										
										
											2007-01-28 00:00:21 +00:00
										 |  |  |   end   | 
					
						
							| 
									
										
										
										
											2006-06-28 18:11:03 +00:00
										 |  |  | end |