# encoding: UTF-8 # Copyright 2011 innoQ Deutschland GmbH # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. require File.expand_path('../boot', __FILE__) require 'rails/all' if defined?(Bundler) groups = { :assets => %w(development test), } # If you precompile assets before deploying to production, use this line Bundler.require(*Rails.groups(groups)) # If you want your assets lazily compiled in production, use this line # Bundler.require(:default, :assets, Rails.env) end module Iqvoc class Application < Rails::Application # Settings in config/environments/* take precedence over those specified here. # Application configuration should go into files in config/initializers # -- all .rb files in that directory are automatically loaded. # Custom directories with classes and modules you want to be autoloadable. # config.autoload_paths += %W(#{config.root}/extras) # Only load the plugins named here, in the order given (default is alphabetical). # :all can be used as a placeholder for all plugins not explicitly named. # config.plugins = [ :exception_notification, :ssl_requirement, :all ] # Activate observers that should always be running. # config.active_record.observers = :cacher, :garbage_collector, :forum_observer # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone. # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC. # config.time_zone = 'Central Time (US & Canada)' # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded. # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s] # config.i18n.default_locale = :en # config.i18n.available_locales = [:de, :en] # See: config/initializers/iqvoc.rb # JavaScript files you want as :defaults (application.js is always included). # config.action_view.javascript_expansions[:defaults] = %w(jquery rails) # Configure the default encoding used in templates for Ruby 1.9. config.encoding = "utf-8" # Configure sensitive parameters which will be filtered from the log file. config.filter_parameters += [:password, :password_confirmation] # Enable the asset pipeline config.assets.enabled = true # Version of your assets, change this if you want to expire all your assets config.assets.version = '1.0' # TODO This must be refactored! # The JDBC driver url for the coinnection to the virtuoso triple store. # Login crdentials have to be stored here too. See # http://docs.openlinksw.com/virtuoso/VirtuosoDriverJDBC.html#jdbcurl4mat for # more details. # Example: "jdbc:virtuoso://localhost:1111/UID=dba/PWD=dba" # Use nil to disable virtuoso triple synchronization config.virtuoso_jdbc_driver_url = nil # Set up the virtuoso synchronization (which is a triggered pull from the # virtuoso server) to be run in a new thread. # This is needed in environments where the webserver only runs in a single # process/thread (mostly in development environments). # When a synchronizaion would be triggered e.g. from a running # update action in the UPB, the update would trigger virtuoso to do a HTTP GET # back to the UPB to fetch the RDF data. But the only process in the UPB would be # blocked by the update... => Deadlock. You can avoid this by using the threaded # mode. config.virtuoso_sync_threaded = false end end