class AmfController < ApplicationController
require 'stringio'
+ session :off
before_filter :check_availability
# to log:
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
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
class OldNodeController < ApplicationController
require 'xml/libxml'
+ session :off
after_filter :compress_output
def history
class OldSegmentController < ApplicationController
require 'xml/libxml'
+ session :off
after_filter :compress_output
def history
class OldWayController < ApplicationController
require 'xml/libxml'
+ session :off
after_filter :compress_output
def history
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
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]}")
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