# File config_manager.rb, line 101 def get_external_context(url=nil) external_context_prop = "_external_context" context = request.env['HTTP_MOBIO_CONTEXT'] if context and not context == '' and url external_context = MOBIO_CONFIG[url].gsub(external_context_prop, context) RAILS_DEFAULT_LOGGER.debug 'Utils: Setting the uri to: "' + external_context + '" for the current request.' unless not defined? RAILS_DEFAULT_LOGGER return external_context end end