aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/middleware/session
Commit message (Expand)AuthorAgeFilesLines
* generated session ids should be encoded as UTF-8Aaron Patterson2011-04-141-1/+3
* Initialize sid should just skip instance variables.José Valim2010-10-041-0/+7
* Rely on Rack::Session stores API for more compatibility across the Ruby world.José Valim2010-10-033-321/+76
* no need to check for nil?Neeraj Singh2010-09-301-1/+1
* Remove more warnings on AP.Emilio Tagua2010-09-281-2/+2
* Only send secure cookies over SSL.W. Andrew Loe III2010-09-131-1/+4
* Revert "Avoid uneeded queries in session stores if sid is not given."José Valim2010-07-292-5/+3
* Set session options id to nil is respected and cancels lazy loading.José Valim2010-07-181-2/+2
* Avoid uneeded queries in session stores if sid is not given.José Valim2010-07-182-3/+5
* Fixed many references to the old config/environment.rb and Rails::InitializerBenjamin Quorning2010-07-131-1/+1
* porting session.clear fix to master branch. [#5030 state:resolved]Aaron Patterson2010-07-011-0/+5
* Fixed that an ArgumentError is thrown when request.session_options[:id] is re...Michael Lovitt2010-06-272-36/+38
* Do not mark the session as loaded if an error happened while doing it.José Valim2010-06-251-2/+1
* Calling exists? in the session store, without checking for stale sessions, wa...José Valim2010-06-252-10/+10
* Make sure that Rails doesn't resent session_id cookie over and over again if ...Prem Sichanugrist2010-06-251-1/+3
* Avoid deserializing cookies too early, which causes session objects to not be...José Valim2010-06-242-18/+22
* Sessions should not be created until written to and session data should be de...Michael Lovitt2010-06-233-29/+115
* Took out the domain option logic to cookies.rb.Rizwan Reza2010-06-112-20/+0
* Moved Domain regexp to a constant and added comments.Rizwan Reza2010-06-111-1/+8
* The previous commit didn't work with complex domains, which is now fixed.Rizwan Reza2010-06-111-4/+4
* Add support for multi-subdomain session by setting cookie host in session coo...Rizwan Reza2010-06-112-1/+14
* Stop the flash middleware from forcibly loading sessions even if the user doe...wycats2010-06-041-4/+4
* Cut the fat and make session stores rely on request.cookie_jar and change set...José Valim2010-05-183-130/+55
* Remove deprecated methods since 2-3-stable.José Valim2010-05-181-34/+6
* Simplify cookie_store by simply relying on cookies.signed.José Valim2010-05-181-93/+14
* corrected error message in session/cookie_store [#4546 state:resolved]Josh Kalderimis2010-05-101-1/+1
* Rename config.cookie_secret to config.secret_token and pass it as configurati...José Valim2010-04-051-1/+1
* adds missing requires for Object#blank? and Object#present?Xavier Noria2010-03-282-0/+2
* Make many parts of Rails lazy. In order to facilitate this,wycats2010-03-071-1/+0
* Deprecated ActionController::Base.session_options= and ActionController::Base...Carlhuda2010-03-041-7/+5
* Fix const reference for SessionRestoreErrorJoshua Peek2010-01-151-1/+1
* fixed missing or incorrect session data error messageStefan Penner2010-01-021-1/+1
* All AD modules are "deferrable"Joshua Peek2009-12-222-4/+6
* SessionRestoreError belongs in ADJoshua Peek2009-09-231-3/+6
* Lazy require memcache for session middlewareJoshua Peek2009-09-131-40/+35
* CookieStore should not be derived from Hash - reverting [#2268 state:resolved]Jay Pignata2009-09-031-1/+1
* If session_options[:id] is requested when using CookieStore, unmarshal the se...Jay Pignata2009-09-031-3/+14
* SessionHash#update and SessionHash#delete are missing a call to load! [#3056 ...Joshua Peek2009-08-311-0/+2
* Require necessary active_support files in cookie storeCarl Lerche2009-08-261-0/+2
* ActionPack components should no longer have undeclared dependencies.Yehuda Katz + Carl Lerche2009-06-081-0/+1
* Revert "Only save the session if we're actually writing to it [#2703 state:re...Joshua Peek2009-05-301-10/+1
* Only save the session if we're actually writing to it [#2703 state:resolved]Johan Sörensen2009-05-281-1/+10
* Inherit TestSession from Session::AbstractStore and add indifferent access to...Joshua Peek2009-04-262-6/+29
* Fix typo in stale session check [#2404 state:resolved]Joshua Peek2009-04-261-1/+1
* Bring abstract_controller up to date with rails/masterCarl Lerche & Yehuda Katz2009-04-132-32/+42
* Merge commit 'rails/3-0-unstable'Yehuda Katz2009-01-302-4/+8
* Move HTTP libs and middleware into ActionDispatch componentJoshua Peek2009-01-273-0/+439