1 class OldNodeController < ApplicationController
6 node = Node.find(params[:id])
8 doc = OSM::API.new.get_xml_doc
10 node.old_nodes.each do |old_node|
11 doc.root << old_node.to_xml_node
14 render :text => doc.to_s, :content_type => "text/xml"
15 rescue ActiveRecord::RecordNotFound
16 render :nothing => true, :status => :not_found
18 render :nothing => true, :status => :internal_server_error