| 
									
										
										
										
											2006-06-28 18:11:03 +00: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 AdminController < ApplicationController | 
					
						
							| 
									
										
										
										
											2006-07-09 16:30:01 +00:00
										 |  |  |   layout 'base'	 | 
					
						
							|  |  |  |   before_filter :require_admin | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   helper :sort | 
					
						
							|  |  |  |   include SortHelper	 | 
					
						
							| 
									
										
										
										
											2006-06-28 18:11:03 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-09 16:30:01 +00:00
										 |  |  |   def index	 | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2006-06-28 18:11:03 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  |   def projects | 
					
						
							| 
									
										
										
										
											2006-07-09 16:30:01 +00:00
										 |  |  |     sort_init 'name', 'asc' | 
					
						
							|  |  |  |     sort_update		 | 
					
						
							|  |  |  |     @project_count = Project.count		 | 
					
						
							|  |  |  |     @project_pages = Paginator.new self, @project_count, | 
					
						
							|  |  |  | 								15, | 
					
						
							|  |  |  | 								@params['page']								 | 
					
						
							|  |  |  |     @projects = Project.find :all, :order => sort_clause, | 
					
						
							|  |  |  | 						:limit  =>  @project_pages.items_per_page, | 
					
						
							| 
									
										
										
										
											2006-10-21 10:38:53 +00:00
										 |  |  | 						:offset =>  @project_pages.current.offset | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     render :action => "projects", :layout => false if request.xhr? | 
					
						
							| 
									
										
										
										
											2006-06-28 18:11:03 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2006-07-09 16:30:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-28 18:11:03 +00:00
										 |  |  |   def mail_options | 
					
						
							| 
									
										
										
										
											2006-07-09 16:30:01 +00:00
										 |  |  |     @actions = Permission.find(:all, :conditions => ["mail_option=?", true]) || [] | 
					
						
							| 
									
										
										
										
											2006-06-28 18:11:03 +00:00
										 |  |  |     if request.post? | 
					
						
							|  |  |  |       @actions.each { |a| | 
					
						
							| 
									
										
										
										
											2006-07-09 16:30:01 +00:00
										 |  |  |         a.mail_enabled = (params[:action_ids] || []).include? a.id.to_s  | 
					
						
							| 
									
										
										
										
											2006-06-28 18:11:03 +00:00
										 |  |  |         a.save | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2006-07-30 10:47:02 +00:00
										 |  |  |       flash.now[:notice] = l(:notice_successful_update) | 
					
						
							| 
									
										
										
										
											2006-06-28 18:11:03 +00:00
										 |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |   def info | 
					
						
							|  |  |  |     @adapter_name = ActiveRecord::Base.connection.adapter_name | 
					
						
							| 
									
										
										
										
											2006-07-09 16:30:01 +00:00
										 |  |  |   end   | 
					
						
							| 
									
										
										
										
											2006-06-28 18:11:03 +00:00
										 |  |  | end |