]> git.openstreetmap.org Git - rails.git/commitdiff
Remove unused code
authorTom Hughes <tom@compton.nu>
Mon, 2 Mar 2015 00:06:02 +0000 (00:06 +0000)
committerTom Hughes <tom@compton.nu>
Mon, 2 Mar 2015 00:07:13 +0000 (00:07 +0000)
app/controllers/geocoder_controller.rb
config/locales/en.yml

index 11460f8c0aa5363f842f46a591d3767e0e3b9929..a4e1ded860d66916b2b2bbaba63aa7c1b4f59af3 100644 (file)
@@ -293,35 +293,6 @@ class GeocoderController < ApplicationController
     REXML::Document.new(fetch_text(url))
   end
 
-  def format_distance(distance)
-    t("geocoder.distance", :count => distance)
-  end
-
-  def format_direction(bearing)
-    return t("geocoder.direction.south_west") if bearing >= 22.5 && bearing < 67.5
-    return t("geocoder.direction.south") if bearing >= 67.5 && bearing < 112.5
-    return t("geocoder.direction.south_east") if bearing >= 112.5 && bearing < 157.5
-    return t("geocoder.direction.east") if bearing >= 157.5 && bearing < 202.5
-    return t("geocoder.direction.north_east") if bearing >= 202.5 && bearing < 247.5
-    return t("geocoder.direction.north") if bearing >= 247.5 && bearing < 292.5
-    return t("geocoder.direction.north_west") if bearing >= 292.5 && bearing < 337.5
-    t("geocoder.direction.west")
-  end
-
-  def format_name(name)
-    name.gsub(/( *\[[^\]]*\])*$/, "")
-  end
-
-  def count_results(results)
-    count = 0
-
-    results.each do |source|
-      count += source[:results].length if source[:results]
-    end
-
-    count
-  end
-
   def escape_query(query)
     URI.escape(query, Regexp.new("[^#{URI::PATTERN::UNRESERVED}]", false, "N"))
   end
index a5c2f645387e156e62b28ee60a70f4c328073f03..65b7f3639660922ee4457a8beaf05ff9b655a452 100644 (file)
@@ -902,19 +902,6 @@ en:
     results:
       no_results: "No results found"
       more_results: "More results"
-    distance:
-      zero: "less than 1km"
-      one: "about 1km"
-      other: "about %{count}km"
-    direction:
-      south_west: "south-west"
-      south: "south"
-      south_east: "south-east"
-      east: "east"
-      north_east: "north-east"
-      north: "north"
-      north_west: "north-west"
-      west: "west"
   layouts:
     project_name:
       # in <title>