X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/fc25c3d412829774abf0454e4dcc92e41f47454c..9fdea1c7398618a99e5b553af2674db7f7326b23:/app/controllers/old_relation_controller.rb diff --git a/app/controllers/old_relation_controller.rb b/app/controllers/old_relation_controller.rb index 771b322ee..78eca324c 100644 --- a/app/controllers/old_relation_controller.rb +++ b/app/controllers/old_relation_controller.rb @@ -1,31 +1,11 @@ -class OldRelationController < ApplicationController - require 'xml/libxml' +class OldRelationController < OldController + private - before_filter :check_api_readable - after_filter :compress_output - around_filter :api_call_handle_error, :api_call_timeout - - def history - relation = Relation.find(params[:id]) - doc = OSM::API.new.get_xml_doc - - relation.old_relations.each do |old_relation| - doc.root << old_relation.to_xml_node - end - - render :text => doc.to_s, :content_type => "text/xml" + def lookup_old_element + @old_element = OldRelation.find([params[:id], params[:version]]) end - - def version - if old_relation = OldRelation.where(:relation_id => params[:id], :version => params[:version]).first - response.last_modified = old_relation.timestamp - - doc = OSM::API.new.get_xml_doc - doc.root << old_relation.to_xml_node - render :text => doc.to_s, :content_type => "text/xml" - else - render :nothing => true, :status => :not_found - end + def lookup_old_element_versions + @elements = OldRelation.where(:relation_id => params[:id]).order(:version) end end