]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/old_relation_controller.rb
Fix typo...
[rails.git] / app / controllers / old_relation_controller.rb
index b98c9da4952b3a54840127e0ea454a0e0f70fe42..78eca324cb4cb819e0450f089b179de947b074f3 100644 (file)
@@ -1,35 +1,11 @@
-class OldRelationController < ApplicationController
-  require 'xml/libxml'
+class OldRelationController < OldController
+  private
 
-  session :off
-  before_filter :check_api_readable
-  after_filter :compress_output
-  around_filter :api_call_handle_error
-
-  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
-    old_relation = OldRelation.find(:first, :conditions => {:id => params[:id], :version => params[:version]} )
-    if old_relation.nil?
-      # (RecordNotFound is not raised with find :first...)
-      render :nothing => true, :status => :not_found
-      return
-    end
-    
-    response.headers['Last-Modified'] = old_relation.timestamp.rfc822
-    
-    doc = OSM::API.new.get_xml_doc
-    doc.root << old_relation.to_xml_node
-    
-    render :text => doc.to_s, :content_type => "text/xml"
+
+  def lookup_old_element_versions
+    @elements = OldRelation.where(:relation_id => params[:id]).order(:version)
   end
 end