X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/986f1c61fa115b7cfd5bef4a108c984da79fec85..91b3d1a83feba263cb4fe529fb76737f259107ac:/app/controllers/old_relation_controller.rb diff --git a/app/controllers/old_relation_controller.rb b/app/controllers/old_relation_controller.rb index 0e1950cee..0cb3b2747 100644 --- a/app/controllers/old_relation_controller.rb +++ b/app/controllers/old_relation_controller.rb @@ -1,31 +1,12 @@ -class OldRelationController < ApplicationController - require 'xml/libxml' +class OldRelationController < OldController - 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" - end + private - def version - if old_relation = OldRelation.where(: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 + def lookup_old_element + @old_element = OldRelation.find([params[:id], params[:version]]) + end - 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