]> git.openstreetmap.org Git - rails.git/commitdiff
Don't create sessions for API calls.
authorTom Hughes <tom@compton.nu>
Tue, 14 Aug 2007 13:59:07 +0000 (13:59 +0000)
committerTom Hughes <tom@compton.nu>
Tue, 14 Aug 2007 13:59:07 +0000 (13:59 +0000)
app/controllers/amf_controller.rb
app/controllers/api_controller.rb
app/controllers/node_controller.rb
app/controllers/old_node_controller.rb
app/controllers/old_segment_controller.rb
app/controllers/old_way_controller.rb
app/controllers/segment_controller.rb
app/controllers/swf_controller.rb
app/controllers/way_controller.rb

index 47f8f24584375699bfd19713eed40c92458b0887..2e2f112cd416441b62543023ecd85a355cfa4826 100644 (file)
@@ -1,6 +1,7 @@
 class AmfController < ApplicationController
   require 'stringio'
 
+  session :off
   before_filter :check_availability
 
   # to log:
index 62633dbb3ddbb6a79e0f38183e61a70621ece0d5..39706edf0b3b4e2228aa5c08735eaa4f748b5111 100644 (file)
@@ -1,5 +1,6 @@
 class ApiController < ApplicationController
 
+  session :off
   after_filter :compress_output
 
   #COUNT is the number of map requests to allow before exiting and starting a new process
index fba41e3305dc16c59eec00561027f09441a9f983..5d50df7e6517fb3fe78f4c4e3d143af0e3014cb4 100644 (file)
@@ -1,6 +1,7 @@
 class NodeController < ApplicationController
   require 'xml/libxml'
 
+  session :off
   before_filter :authorize, :only => [:create, :update, :delete]
   before_filter :check_availability, :only => [:create, :update, :delete]
   after_filter :compress_output
index 27e233b2f5c62e460c6ae6a45b991638c91a2d75..0337cb2cffcec604e26f7090eff565234680c998 100644 (file)
@@ -1,6 +1,7 @@
 class OldNodeController < ApplicationController
   require 'xml/libxml'
 
+  session :off
   after_filter :compress_output
 
   def history
index be5de7afd38824e42032d47fc4036cd445194671..2d48fb5b9489547e6d8b423d4221990a20f81461 100644 (file)
@@ -1,6 +1,7 @@
 class OldSegmentController < ApplicationController
   require 'xml/libxml'
 
+  session :off
   after_filter :compress_output
 
   def history
index 16db86555363494a6024f0dfcfd983f1023b11b6..f10e0d2f0193e0550932e0d15396369fa2939f52 100644 (file)
@@ -1,6 +1,7 @@
 class OldWayController < ApplicationController
   require 'xml/libxml'
 
+  session :off
   after_filter :compress_output
 
   def history
index 070c2be8123ebcc1f556ede5f140df345ba42e6e..42e939a655e1a2f5f8ba7913882815c03e759742 100644 (file)
@@ -1,6 +1,7 @@
 class SegmentController < ApplicationController
   require 'xml/libxml'
 
+  session :off
   before_filter :authorize, :only => [:create, :update, :delete]
   before_filter :check_availability, :only => [:create, :update, :delete]
   after_filter :compress_output
index 9a4516016700eaa2986ee1ebd06ccccbfa6e480c..4e7e1c8ee85b601ce5fc5954f030eed14e984d2a 100644 (file)
@@ -1,5 +1,6 @@
 class SwfController < ApplicationController
-  before_filter :check_availability
+       session :off
+       before_filter :check_availability
 
 # to log:
 # RAILS_DEFAULT_LOGGER.error("Args: #{args[0]}, #{args[1]}, #{args[2]}, #{args[3]}")
index b1adf25a2fa5a6656918a969f5ffaccf660597d1..d6489fef80d7b445c8926207851cddac20d19226 100644 (file)
@@ -1,6 +1,7 @@
 class WayController < ApplicationController
   require 'xml/libxml'
 
+  session :off
   before_filter :authorize, :only => [:create, :update, :delete]
   before_filter :check_availability, :only => [:create, :update, :delete]
   after_filter :compress_output