]> git.openstreetmap.org Git - rails.git/blob - app/controllers/old_node_controller.rb
27e233b2f5c62e460c6ae6a45b991638c91a2d75
[rails.git] / app / controllers / old_node_controller.rb
1 class OldNodeController < ApplicationController
2   require 'xml/libxml'
3
4   after_filter :compress_output
5
6   def history
7     begin
8       node = Node.find(params[:id])
9
10       doc = OSM::API.new.get_xml_doc
11
12       node.old_nodes.each do |old_node|
13         doc.root << old_node.to_xml_node
14       end
15
16       render :text => doc.to_s, :content_type => "text/xml"
17     rescue ActiveRecord::RecordNotFound
18       render :nothing => true, :status => :not_found
19     rescue
20       render :nothing => true, :status => :internal_server_error
21     end
22   end
23 end