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-01-21 14:50:22 +03:00
|
|
|
class SettingsController < ApplicationController
|
2009-12-17 21:21:02 +03:00
|
|
|
layout 'admin'
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2007-01-21 14:50:22 +03:00
|
|
|
before_filter :require_admin
|
2008-11-07 18:37:17 +03:00
|
|
|
|
2007-01-21 14:50:22 +03:00
|
|
|
def index
|
|
|
|
edit
|
|
|
|
render :action => 'edit'
|
|
|
|
end
|
|
|
|
|
|
|
|
def edit
|
2010-09-29 00:19:55 +04:00
|
|
|
@notifiables = Redmine::Notifiable.all
|
2008-01-06 23:24:26 +03:00
|
|
|
if request.post? && params[:settings] && params[:settings].is_a?(Hash)
|
|
|
|
settings = (params[:settings] || {}).dup.symbolize_keys
|
|
|
|
settings.each do |name, value|
|
|
|
|
# remove blank values in array settings
|
|
|
|
value.delete_if {|v| v.blank? } if value.is_a?(Array)
|
|
|
|
Setting[name] = value
|
|
|
|
end
|
|
|
|
flash[:notice] = l(:notice_successful_update)
|
|
|
|
redirect_to :action => 'edit', :tab => params[:tab]
|
2011-04-29 01:39:19 +04:00
|
|
|
else
|
|
|
|
@options = {}
|
|
|
|
@options[:user_format] = User::USER_FORMATS.keys.collect {|f| [User.current.name(f), f.to_s] }
|
|
|
|
@deliveries = ActionMailer::Base.perform_deliveries
|
2008-11-07 18:37:17 +03:00
|
|
|
|
2011-04-29 01:39:19 +04:00
|
|
|
@guessed_host_and_path = request.host_with_port.dup
|
|
|
|
@guessed_host_and_path << ('/'+ Redmine::Utils.relative_url_root.gsub(%r{^\/}, '')) unless Redmine::Utils.relative_url_root.blank?
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2011-04-29 01:39:19 +04:00
|
|
|
Redmine::Themes.rescan
|
|
|
|
end
|
2007-01-21 14:50:22 +03:00
|
|
|
end
|
2008-11-07 18:37:17 +03:00
|
|
|
|
2007-09-23 21:19:27 +04:00
|
|
|
def plugin
|
2008-11-16 18:38:37 +03:00
|
|
|
@plugin = Redmine::Plugin.find(params[:id])
|
2007-09-23 21:19:27 +04:00
|
|
|
if request.post?
|
2008-11-16 18:38:37 +03:00
|
|
|
Setting["plugin_#{@plugin.id}"] = params[:settings]
|
2007-09-23 21:19:27 +04:00
|
|
|
flash[:notice] = l(:notice_successful_update)
|
2008-11-16 18:38:37 +03:00
|
|
|
redirect_to :action => 'plugin', :id => @plugin.id
|
2011-04-29 01:39:19 +04:00
|
|
|
else
|
|
|
|
@partial = @plugin.settings[:partial]
|
|
|
|
@settings = Setting["plugin_#{@plugin.id}"]
|
2007-09-23 21:19:27 +04:00
|
|
|
end
|
2008-11-16 18:38:37 +03:00
|
|
|
rescue Redmine::PluginNotFound
|
|
|
|
render_404
|
2007-09-23 21:19:27 +04:00
|
|
|
end
|
2007-01-21 14:50:22 +03:00
|
|
|
end
|