Commit f11119cde2a01acccfa1ff6cb13e440251f5f50b
1 parent
f52512e3
Exists in
master
and in
29 other branches
ActionItem237: removing configuration added by accident
git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@1593 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing
1 changed file
with
0 additions
and
51 deletions
Show diff stats
config/environment.rb
@@ -104,54 +104,3 @@ lambda do |localconfig| | @@ -104,54 +104,3 @@ lambda do |localconfig| | ||
104 | require localconfig | 104 | require localconfig |
105 | end | 105 | end |
106 | end.call(File.join(RAILS_ROOT, 'config', 'local.rb')) | 106 | end.call(File.join(RAILS_ROOT, 'config', 'local.rb')) |
107 | -# These defaults are used in GeoKit::Mappable.distance_to and in acts_as_mappable | ||
108 | -GeoKit::default_units = :miles | ||
109 | -GeoKit::default_formula = :sphere | ||
110 | - | ||
111 | -# This is the timeout value in seconds to be used for calls to the geocoder web | ||
112 | -# services. For no timeout at all, comment out the setting. The timeout unit | ||
113 | -# is in seconds. | ||
114 | -GeoKit::Geocoders::timeout = 3 | ||
115 | - | ||
116 | -# These settings are used if web service calls must be routed through a proxy. | ||
117 | -# These setting can be nil if not needed, otherwise, addr and port must be | ||
118 | -# filled in at a minimum. If the proxy requires authentication, the username | ||
119 | -# and password can be provided as well. | ||
120 | -GeoKit::Geocoders::proxy_addr = nil | ||
121 | -GeoKit::Geocoders::proxy_port = nil | ||
122 | -GeoKit::Geocoders::proxy_user = nil | ||
123 | -GeoKit::Geocoders::proxy_pass = nil | ||
124 | - | ||
125 | -# This is your yahoo application key for the Yahoo Geocoder. | ||
126 | -# See http://developer.yahoo.com/faq/index.html#appid | ||
127 | -# and http://developer.yahoo.com/maps/rest/V1/geocode.html | ||
128 | -GeoKit::Geocoders::yahoo = 'REPLACE_WITH_YOUR_YAHOO_KEY' | ||
129 | - | ||
130 | -# This is your Google Maps geocoder key. | ||
131 | -# See http://www.google.com/apis/maps/signup.html | ||
132 | -# and http://www.google.com/apis/maps/documentation/#Geocoding_Examples | ||
133 | -GeoKit::Geocoders::google = 'REPLACE_WITH_YOUR_GOOGLE_KEY' | ||
134 | - | ||
135 | -# This is your username and password for geocoder.us. | ||
136 | -# To use the free service, the value can be set to nil or false. For | ||
137 | -# usage tied to an account, the value should be set to username:password. | ||
138 | -# See http://geocoder.us | ||
139 | -# and http://geocoder.us/user/signup | ||
140 | -GeoKit::Geocoders::geocoder_us = false | ||
141 | - | ||
142 | -# This is your authorization key for geocoder.ca. | ||
143 | -# To use the free service, the value can be set to nil or false. For | ||
144 | -# usage tied to an account, set the value to the key obtained from | ||
145 | -# Geocoder.ca. | ||
146 | -# See http://geocoder.ca | ||
147 | -# and http://geocoder.ca/?register=1 | ||
148 | -GeoKit::Geocoders::geocoder_ca = false | ||
149 | - | ||
150 | -# This is the order in which the geocoders are called in a failover scenario | ||
151 | -# If you only want to use a single geocoder, put a single symbol in the array. | ||
152 | -# Valid symbols are :google, :yahoo, :us, and :ca. | ||
153 | -# Be aware that there are Terms of Use restrictions on how you can use the | ||
154 | -# various geocoders. Make sure you read up on relevant Terms of Use for each | ||
155 | -# geocoder you are going to use. | ||
156 | -GeoKit::Geocoders::provider_order = [:google,:us] | ||
157 | - |