escape most characters which have special meaning in URIs...
results = Array.new
# ask geocoder.us (they have a non-commercial use api)
results = Array.new
# ask geocoder.us (they have a non-commercial use api)
- response = fetch_text("http://rpc.geocoder.us/service/csv?zip=#{URI.escape(query)}")
+ response = fetch_text("http://rpc.geocoder.us/service/csv?zip=#{escape_query(query)}")
# parse the response
unless response.match(/couldn't find this zip/)
# parse the response
unless response.match(/couldn't find this zip/)
results = Array.new
# ask npemap.org.uk to do a combined npemap + freethepostcode search
results = Array.new
# ask npemap.org.uk to do a combined npemap + freethepostcode search
- response = fetch_text("http://www.npemap.org.uk/cgi/geocoder.fcgi?format=text&postcode=#{URI.escape(query)}")
+ response = fetch_text("http://www.npemap.org.uk/cgi/geocoder.fcgi?format=text&postcode=#{escape_query(query)}")
# parse the response
unless response.match(/Error/)
# parse the response
unless response.match(/Error/)
results = Array.new
# ask geocoder.ca (note - they have a per-day limit)
results = Array.new
# ask geocoder.ca (note - they have a per-day limit)
- response = fetch_xml("http://geocoder.ca/?geoit=XML&postal=#{URI.escape(query)}")
+ response = fetch_xml("http://geocoder.ca/?geoit=XML&postal=#{escape_query(query)}")
# parse the response
unless response.get_elements("geodata/error")
# parse the response
unless response.get_elements("geodata/error")
results = Array.new
# ask OSM namefinder
results = Array.new
# ask OSM namefinder
- response = fetch_xml("http://www.frankieandshadow.com/osm/search.xml?find=#{URI.escape(query)}")
+ response = fetch_xml("http://www.frankieandshadow.com/osm/search.xml?find=#{escape_query(query)}")
# parse the response
response.elements.each("searchresults/named") do |named|
# parse the response
response.elements.each("searchresults/named") do |named|
results = Array.new
# ask geonames.org
results = Array.new
# ask geonames.org
- response = fetch_xml("http://ws.geonames.org/search?q=#{URI.escape(query)}&maxRows=20")
+ response = fetch_xml("http://ws.geonames.org/search?q=#{escape_query(query)}&maxRows=20")
# parse the response
response.elements.each("geonames/geoname") do |geoname|
# parse the response
response.elements.each("geonames/geoname") do |geoname|
+
+ def escape_query(query)
+ return URI.escape(query, Regexp.new("[^#{URI::PATTERN::UNRESERVED}]", false, 'N'))
+ end