X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/071c3581e94552e5da08a2eed14e9a69e4f87e4f..51c5be98f7c10e077d22488434365a626da5a893:/app/controllers/old_relation_controller.rb diff --git a/app/controllers/old_relation_controller.rb b/app/controllers/old_relation_controller.rb index 19b4e5d34..78eca324c 100644 --- a/app/controllers/old_relation_controller.rb +++ b/app/controllers/old_relation_controller.rb @@ -1,32 +1,11 @@ -class OldRelationController < ApplicationController - require 'xml/libxml' +class OldRelationController < OldController + private - skip_before_filter :verify_authenticity_token - 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