-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Upgraded codebase to use Rails 2.3.2. Main changes:
- Updated the Annotations and Favourites plugins (to also use the latest plugin_test_helper). - WSDL parsing - loading XML into a Hash has changed now... <serviceType> is now x['service_type']. - Many other small tweaks to get things working properly. I have carried out some extensive testing but we still need much more testing to ascertain stability. We especially need to test Soaplab Server submission and new user account signups. - Integrated the “Better Logging” plugin for Rails (http://github.com/pauldowman/better_logging/tree/master) to provide better log outputs. (Unfortunately this has resulted in losing the rotated log files mechanism. This is necessary because ActiveSupport::BufferedLogger.new is the recommended logger, NOT Logger.new). - Revamped the way the cache client is set up to make it more consistent and also easier to fix for Passenger. Also, we now use the latest memcache-client instead of the one supplied by Rails (as the former is significantly faster). - Installed the geokit-rails plugin, in place of the old geokit plugin, which relies on the geokit gem (which has been vendored). git-svn-id: svn+ssh://rubyforge.org/var/svn/biocatalogue/trunk@763 1acaf488-1b9d-4964-8077-0a2fdb83ef00
- Loading branch information
jits
committed
Jun 6, 2009
1 parent
0cb4c13
commit 28ac66d
Showing
147 changed files
with
6,223 additions
and
1,330 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
if defined? Geokit | ||
|
||
# These defaults are used in Geokit::Mappable.distance_to and in acts_as_mappable | ||
Geokit::default_units = :miles | ||
Geokit::default_formula = :sphere | ||
|
||
# This is the timeout value in seconds to be used for calls to the geocoder web | ||
# services. For no timeout at all, comment out the setting. The timeout unit | ||
# is in seconds. | ||
Geokit::Geocoders::timeout = 3 | ||
|
||
# These settings are used if web service calls must be routed through a proxy. | ||
# These setting can be nil if not needed, otherwise, addr and port must be | ||
# filled in at a minimum. If the proxy requires authentication, the username | ||
# and password can be provided as well. | ||
Geokit::Geocoders::proxy_addr = nil | ||
Geokit::Geocoders::proxy_port = nil | ||
Geokit::Geocoders::proxy_user = nil | ||
Geokit::Geocoders::proxy_pass = nil | ||
|
||
# This is your yahoo application key for the Yahoo Geocoder. | ||
# See http://developer.yahoo.com/faq/index.html#appid | ||
# and http://developer.yahoo.com/maps/rest/V1/geocode.html | ||
Geokit::Geocoders::yahoo = 'REPLACE_WITH_YOUR_YAHOO_KEY' | ||
|
||
# This is your Google Maps geocoder key. | ||
# See http://www.google.com/apis/maps/signup.html | ||
# and http://www.google.com/apis/maps/documentation/#Geocoding_Examples | ||
Geokit::Geocoders::google = 'REPLACE_WITH_YOUR_GOOGLE_KEY' | ||
|
||
# This is your username and password for geocoder.us. | ||
# To use the free service, the value can be set to nil or false. For | ||
# usage tied to an account, the value should be set to username:password. | ||
# See http://geocoder.us | ||
# and http://geocoder.us/user/signup | ||
Geokit::Geocoders::geocoder_us = false | ||
|
||
# This is your authorization key for geocoder.ca. | ||
# To use the free service, the value can be set to nil or false. For | ||
# usage tied to an account, set the value to the key obtained from | ||
# Geocoder.ca. | ||
# See http://geocoder.ca | ||
# and http://geocoder.ca/?register=1 | ||
Geokit::Geocoders::geocoder_ca = false | ||
|
||
# Uncomment to use a username with the Geonames geocoder | ||
#Geokit::Geocoders::geonames="REPLACE_WITH_YOUR_GEONAMES_USERNAME" | ||
|
||
# This is the order in which the geocoders are called in a failover scenario | ||
# If you only want to use a single geocoder, put a single symbol in the array. | ||
# Valid symbols are :google, :yahoo, :us, and :ca. | ||
# Be aware that there are Terms of Use restrictions on how you can use the | ||
# various geocoders. Make sure you read up on relevant Terms of Use for each | ||
# geocoder you are going to use. | ||
Geokit::Geocoders::provider_order = [:google,:us] | ||
|
||
# The IP provider order. Valid symbols are :ip,:geo_plugin. | ||
# As before, make sure you read up on relevant Terms of Use for each | ||
# Geokit::Geocoders::ip_provider_order = [:geo_plugin,:ip] | ||
|
||
end |
Oops, something went wrong.