2004-11-24 01:04:44 +00:00
|
|
|
#--
|
|
|
|
# Copyright (c) 2004 David Heinemeier Hansson
|
|
|
|
#
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
# a copy of this software and associated documentation files (the
|
|
|
|
# "Software"), to deal in the Software without restriction, including
|
|
|
|
# without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
# distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
# permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
# the following conditions:
|
|
|
|
#
|
|
|
|
# The above copyright notice and this permission notice shall be
|
|
|
|
# included in all copies or substantial portions of the Software.
|
|
|
|
#
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
|
|
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
|
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
|
|
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
#++
|
|
|
|
|
2005-09-15 05:34:59 +00:00
|
|
|
$:.unshift(File.dirname(__FILE__)) unless
|
|
|
|
$:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
|
2004-11-24 01:04:44 +00:00
|
|
|
|
2005-09-15 05:34:59 +00:00
|
|
|
unless defined?(ActiveSupport)
|
|
|
|
begin
|
|
|
|
$:.unshift(File.dirname(__FILE__) + "/../../activesupport/lib")
|
|
|
|
require 'active_support'
|
|
|
|
rescue LoadError
|
|
|
|
require 'rubygems'
|
|
|
|
require_gem 'activesupport'
|
|
|
|
end
|
2005-02-15 15:57:44 +00:00
|
|
|
end
|
2004-11-24 01:04:44 +00:00
|
|
|
|
|
|
|
require 'action_controller/base'
|
2005-07-24 16:45:39 +00:00
|
|
|
require 'action_controller/deprecated_redirects'
|
2004-11-24 01:04:44 +00:00
|
|
|
require 'action_controller/rescue'
|
|
|
|
require 'action_controller/benchmarking'
|
|
|
|
require 'action_controller/filters'
|
|
|
|
require 'action_controller/layout'
|
|
|
|
require 'action_controller/flash'
|
2004-12-06 18:25:01 +00:00
|
|
|
require 'action_controller/dependencies'
|
2005-03-20 23:12:05 +00:00
|
|
|
require 'action_controller/pagination'
|
2004-11-24 01:04:44 +00:00
|
|
|
require 'action_controller/scaffolding'
|
|
|
|
require 'action_controller/helpers'
|
2004-11-26 02:04:35 +00:00
|
|
|
require 'action_controller/cookies'
|
2004-11-24 01:04:44 +00:00
|
|
|
require 'action_controller/cgi_process'
|
2005-01-08 23:32:11 +00:00
|
|
|
require 'action_controller/caching'
|
2005-02-19 20:29:55 +00:00
|
|
|
require 'action_controller/components'
|
2005-03-26 21:41:10 +00:00
|
|
|
require 'action_controller/verification'
|
2005-05-22 08:58:43 +00:00
|
|
|
require 'action_controller/streaming'
|
2005-07-22 10:37:09 +00:00
|
|
|
require 'action_controller/session_management'
|
2005-09-11 07:52:53 +00:00
|
|
|
require 'action_controller/macros/auto_complete'
|
|
|
|
require 'action_controller/macros/in_place_editing'
|
2005-02-19 20:29:55 +00:00
|
|
|
|
|
|
|
require 'action_view'
|
|
|
|
ActionController::Base.template_class = ActionView::Base
|
2004-11-24 01:04:44 +00:00
|
|
|
|
|
|
|
ActionController::Base.class_eval do
|
|
|
|
include ActionController::Filters
|
|
|
|
include ActionController::Layout
|
|
|
|
include ActionController::Flash
|
|
|
|
include ActionController::Benchmarking
|
|
|
|
include ActionController::Rescue
|
2004-12-06 18:25:01 +00:00
|
|
|
include ActionController::Dependencies
|
2005-03-20 23:12:05 +00:00
|
|
|
include ActionController::Pagination
|
2004-11-24 01:04:44 +00:00
|
|
|
include ActionController::Scaffolding
|
|
|
|
include ActionController::Helpers
|
2004-11-26 02:04:35 +00:00
|
|
|
include ActionController::Cookies
|
2005-01-08 23:32:11 +00:00
|
|
|
include ActionController::Caching
|
2005-02-19 20:29:55 +00:00
|
|
|
include ActionController::Components
|
2005-03-26 21:41:10 +00:00
|
|
|
include ActionController::Verification
|
2005-05-22 08:58:43 +00:00
|
|
|
include ActionController::Streaming
|
2005-07-22 10:37:09 +00:00
|
|
|
include ActionController::SessionManagement
|
2005-09-11 07:52:53 +00:00
|
|
|
include ActionController::Macros::AutoComplete
|
|
|
|
include ActionController::Macros::InPlaceEditing
|
2004-11-24 01:04:44 +00:00
|
|
|
end
|