Changeset 459 for trunk/lib/arrow/transaction.rb
- Timestamp:
- 08/15/08 19:28:50 (5 months ago)
- Files:
-
- 1 modified
-
trunk/lib/arrow/transaction.rb (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/arrow/transaction.rb
r452 r459 84 84 ### objects. 85 85 def initialize( request, config, broker ) 86 @request = request87 @config = config88 @broker = broker89 @handler_status = Apache::OK90 91 @serial = make_transaction_serial( request )86 @request = request 87 @config = config 88 @broker = broker 89 @handler_status = Apache::OK 90 91 @serial = make_transaction_serial( request ) 92 92 93 93 # Stuff that may be filled in later 94 @session = nil # Lazily-instantiated95 @applet_path = nil # Added by the broker96 @vargs = nil # Filled in by the applet97 @data = {}98 @request_cookies = parse_cookies( request )99 @cookies = Arrow::CookieSet.new()94 @session = nil # Lazily-instantiated 95 @applet_path = nil # Added by the broker 96 @vargs = nil # Filled in by the applet 97 @data = {} 98 @request_cookies = parse_cookies( request ) 99 @cookies = Arrow::CookieSet.new() 100 100 101 101 # Check for a "RubyOption root_dispatcher true" … … 525 525 ### Parse cookies from the specified request and return them in a Hash. 526 526 def parse_cookies( request ) 527 hash = Arrow::Cookie.parse( request.headers_in['cookie'])527 hash = Arrow::Cookie.parse( request.headers_in['cookie'] ) 528 528 return Arrow::CookieSet.new( hash.values ) 529 529 end
