-# Add new inflection rules using the following format
-# (all these examples are active by default):
-# Inflector.inflections do |inflect|
-# inflect.plural /^(ox)$/i, '\1en'
-# inflect.singular /^(ox)en/i, '\1'
-# inflect.irregular 'person', 'people'
-# inflect.uncountable %w( fish sheep )
-# end
-
-# Hack the AssetTagHelper to make asset tagging work better
-module ActionView
- module Helpers
- module AssetTagHelper
- private
- alias :old_compute_public_path :compute_public_path
-
- def compute_public_path(source, dir, ext)
- path = old_compute_public_path(source, dir, ext)
- if path =~ /(.+)\?(\d+)\??$/
- path = "#{$1}/#{$2}"
- end
- path
- end
- end
- end
-end
-
-# Set to :readonly to put the API in read-only mode or :offline to
-# take it completely offline
-API_STATUS = :online
-
-# Include your application configuration below
-SERVER_URL = ENV['OSM_SERVER_URL'] || 'www.openstreetmap.org'
-
-ActionMailer::Base.smtp_settings = {
- :address => "localhost",
- :port => 25,
- :domain => 'localhost',
-}
-
-#Taming FCGI
-#
-COUNT = 0
-MAX_COUNT = 10000
-
-