1 class OldNodeController < ApplicationController
5 after_filter :compress_output
9 node = Node.find(params[:id])
11 doc = OSM::API.new.get_xml_doc
13 node.old_nodes.each do |old_node|
14 doc.root << old_node.to_xml_node
17 render :text => doc.to_s, :content_type => "text/xml"
18 rescue ActiveRecord::RecordNotFound
19 render :nothing => true, :status => :not_found
21 render :nothing => true, :status => :internal_server_error