X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/b56f57ec43dfefa4171dc0cefe26d9e75d4ca2bc..dfa81462b81e5df5249d0e15084c0e94e20b6374:/app/controllers/node_controller.rb diff --git a/app/controllers/node_controller.rb b/app/controllers/node_controller.rb index eed00a016..c03f3c4fb 100644 --- a/app/controllers/node_controller.rb +++ b/app/controllers/node_controller.rb @@ -44,21 +44,6 @@ class NodeController < ApplicationController end end - # Dump a specific version of the node based on the given params[:id] and params[:version] - def version - begin - node = Node.find(:first, :conditions => { :id => params[:id], :version => params[:version] } ) - if node.visible - response.headers['Last-Modified'] = node.timestamp.rfc822 - render :text => node.to_xml.to_s, :content_type => "text/xml" - else - render :nothing => true, :status => :gone - end - rescue ActiveRecord::RecordNotFound - render :nothing => true, :status => :not_found - end - end - # Update a node from given XML def update begin @@ -99,7 +84,7 @@ class NodeController < ApplicationController end end - # WTF does this do? + # Dump the details on many nodes whose ids are given in the "nodes" parameter. def nodes ids = params['nodes'].split(',').collect { |n| n.to_i }