+ rescue ActiveRecord::RecordNotFound
+ render :nothing => true, :status => :not_found
+ rescue => ex
+ puts ex
+ end
+ end
+
+ def full
+ begin
+ way = Way.find(params[:id])
+
+ if way.visible
+ nd_ids = way.nds + [-1]
+ nodes = Node.find(:all, :conditions => "visible = 1 AND id IN (#{nd_ids.join(',')})")
+
+ # Render
+ doc = OSM::API.new.get_xml_doc
+ nodes.each do |node|
+ doc.root << node.to_xml_node()
+ end
+ doc.root << way.to_xml_node()
+
+ render :text => doc.to_s, :content_type => "text/xml"
+ else
+ render :text => "", :status => :gone
+ end
+ rescue ActiveRecord::RecordNotFound
+ render :nothing => true, :status => :not_found