]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/old_way_controller.rb
rails API support for history of node/segment/way + various bugfixes and cleanups
[rails.git] / app / controllers / old_way_controller.rb
index 7fbed26ea4c5e1230af08f68ec0f96f33401b94c..8eca507ef91b96c12aee0198debec05d24861f8c 100644 (file)
@@ -1,2 +1,21 @@
 class OldWayController < ApplicationController
+  def history
+    response.headers["Content-Type"] = 'application/xml'
+    way = Way.find(params[:id])
+
+    unless way
+      render :nothing => true, :staus => 404
+      return
+    end
+    
+    doc = get_xml_doc
+
+    way.old_ways.each do |old_way|
+      doc.root << old_way.to_xml_node
+    end
+
+    render :text => doc.to_s
+  end
+
+
 end