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