]> git.openstreetmap.org Git - rails.git/commitdiff
adding the Last-Modified response header to the version action
authorShaun McDonald <shaun@shaunmcdonald.me.uk>
Thu, 16 Oct 2008 07:11:28 +0000 (07:11 +0000)
committerShaun McDonald <shaun@shaunmcdonald.me.uk>
Thu, 16 Oct 2008 07:11:28 +0000 (07:11 +0000)
app/controllers/old_node_controller.rb
app/controllers/old_relation_controller.rb
app/controllers/old_way_controller.rb

index 8c43941ec61b0404634da02a834fe59d0281328a..56397625c967490fdd1b365e664bb94588ede6a7 100644 (file)
@@ -26,6 +26,8 @@ class OldNodeController < ApplicationController
   def version
     begin
       old_node = OldNode.find(:first, :conditions => {:id => params[:id], :version => params[:version]} )
+      
+      response.headers['Last-Modified'] = old_node.timestamp.rfc822
 
       doc = OSM::API.new.get_xml_doc
       doc.root << old_node.to_xml_node
index 9307ee1ce4a8c61b5d6d29bd08f09dda14893f47..84d0b0c902c53d84ce4fd09f942ff220a9b87455 100644 (file)
@@ -25,6 +25,8 @@ class OldRelationController < ApplicationController
   def version
     begin
       old_relation = OldRelation.find(:first, :conditions => {:id => params[:id], :version => params[:version]} )
+      
+      response.headers['Last-Modified'] = old_relation.timestamp.rfc822
 
       doc = OSM::API.new.get_xml_doc
       doc.root << old_relation.to_xml_node
index 6cd8c8f22aaf23f8c6cbe00ed9299ec31ee1e8e8..da4e26d67be706e07aebd6297b38838ce73f7813 100644 (file)
@@ -13,7 +13,7 @@ class OldWayController < ApplicationController
 
       way.old_ways.each do |old_way|
         doc.root << old_way.to_xml_node
-     end
+      end
 
       render :text => doc.to_s, :content_type => "text/xml"
     rescue ActiveRecord::RecordNotFound
@@ -27,6 +27,8 @@ class OldWayController < ApplicationController
     begin
       old_way = OldWay.find(:first, :conditions => {:id => params[:id], :version => params[:version]} )
       
+      response.headers['Last-Modified'] = old_way.timestamp.rfc822
+      
       doc = OSM::API.new.get_xml_doc
       doc.root << old_way.to_xml_node