2008-01-12 06:53:29 +01:00
|
|
|
#####
|
2007-01-22 14:43:50 +01:00
|
|
|
# Bootstrap the Rails environment, frameworks, and default configuration
|
2008-01-12 06:53:29 +01:00
|
|
|
####
|
|
|
|
|
|
|
|
# Make sure we are using the latest rexml
|
2008-01-13 07:26:25 +01:00
|
|
|
rexml_versions = ['', 'vendor/plugins/rexml/lib/'].collect { |v|
|
|
|
|
`ruby -r #{v + 'rexml/rexml'} -e 'p REXML::VERSION'`.split('.').collect {|n| n.to_i} }
|
|
|
|
$:.unshift('vendor/plugins/rexml/lib') if (rexml_versions[0] <=> rexml_versions[1]) == -1
|
2008-01-12 06:53:29 +01:00
|
|
|
|
2007-01-22 14:43:50 +01:00
|
|
|
require File.join(File.dirname(__FILE__), 'boot')
|
2008-01-12 06:53:29 +01:00
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
require 'rails_generator/secret_key_generator'
|
2007-01-22 14:43:50 +01:00
|
|
|
|
|
|
|
Rails::Initializer.run do |config|
|
2007-12-21 08:48:59 +01:00
|
|
|
|
|
|
|
# Secret session key
|
|
|
|
generator = Rails::SecretKeyGenerator.new("Instiki")
|
|
|
|
config.action_controller.session = {
|
|
|
|
:session_key => "instiki_session",
|
2007-12-25 00:18:30 +01:00
|
|
|
#####
|
|
|
|
### This one generates a secret key automatically at launch.
|
|
|
|
### advantage: secure, no configuration necessary
|
|
|
|
### disadvantage: restart the server, and all existing
|
|
|
|
### session keys become invalid.
|
2007-12-21 08:48:59 +01:00
|
|
|
:secret => generator.generate_secret
|
2007-12-25 00:18:30 +01:00
|
|
|
###
|
|
|
|
### Alternatively, you can set your own unchanging secret key
|
|
|
|
### by editing and then uncommenting the following line, instead:
|
|
|
|
# : secret => "a_very_long_string_of_random_letter_and_numbers"
|
|
|
|
#####
|
2007-12-21 08:48:59 +01:00
|
|
|
}
|
|
|
|
|
2008-05-18 06:22:34 +02:00
|
|
|
# Don't do file system STAT calls to check to see if the templates have changed.
|
|
|
|
#config.action_view.cache_template_loading = true
|
|
|
|
|
2007-01-22 14:43:50 +01:00
|
|
|
# Skip frameworks you're not going to use
|
|
|
|
config.frameworks -= [ :action_web_service, :action_mailer ]
|
|
|
|
|
|
|
|
# Use the database for sessions instead of the file system
|
|
|
|
# (create the session table with 'rake create_sessions_table')
|
2007-02-09 09:04:31 +01:00
|
|
|
#config.action_controller.session_store = :active_record_store
|
2007-01-22 14:43:50 +01:00
|
|
|
|
|
|
|
# Enable page/fragment caching by setting a file-based store
|
|
|
|
# (remember to create the caching directory and make it readable to the application)
|
2008-05-18 06:22:34 +02:00
|
|
|
config.action_controller.cache_store = :file_store, "#{RAILS_ROOT}/cache"
|
2007-01-22 14:43:50 +01:00
|
|
|
|
|
|
|
# Activate observers that should always be running
|
|
|
|
config.active_record.observers = :page_observer
|
|
|
|
|
|
|
|
# Use Active Record's schema dumper instead of SQL when creating the test database
|
|
|
|
# (enables use of different database adapters for development and test environments)
|
2007-04-09 00:35:33 +02:00
|
|
|
config.active_record.schema_format = :sql
|
2007-01-22 14:43:50 +01:00
|
|
|
|
|
|
|
config.load_paths << "#{RAILS_ROOT}/vendor/plugins/sqlite3-ruby"
|
2007-03-31 17:06:51 +02:00
|
|
|
File.umask(0026)
|
2007-01-22 14:43:50 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
# Instiki-specific configuration below
|
|
|
|
require_dependency 'instiki_errors'
|
|
|
|
|
|
|
|
require 'jcode'
|