| Commit message (Expand) | Author | Age | Files | Lines |
* | Removing ==Examples and last blank lines of docs from actionpack | Francesco Rodriguez | 2012-05-15 | 1 | -1/+1 |
* | session creation methods to a module | Aaron Patterson | 2012-05-04 | 3 | -24/+11 |
* | create a request session in the cookie stores | Aaron Patterson | 2012-05-04 | 1 | -0/+8 |
* | create a request::session object in the memecache store middleware | Aaron Patterson | 2012-05-04 | 1 | -0/+10 |
* | bread AD::Request::Session to it's own file, consolidate HASH OF DOOM lookups | Aaron Patterson | 2012-05-03 | 1 | -150/+1 |
* | extract options finding to a method | Aaron Patterson | 2012-05-02 | 1 | -4/+7 |
* | testing session store behavior | Aaron Patterson | 2012-05-02 | 1 | -7/+19 |
* | initialize instance variables | Aaron Patterson | 2012-05-02 | 1 | -6/+5 |
* | converted session hash to delegation | Aaron Patterson | 2012-05-02 | 1 | -21/+19 |
* | session hash imported | Aaron Patterson | 2012-05-02 | 1 | -15/+111 |
* | oops, forgot some semicolons | Aaron Patterson | 2012-05-02 | 1 | -3/+3 |
* | remove unused ivar | Aaron Patterson | 2012-05-02 | 1 | -4/+3 |
* | use hash fetches to populate the :id value | Aaron Patterson | 2012-05-02 | 1 | -12/+7 |
* | imported options, switched to object composition | Aaron Patterson | 2012-05-02 | 1 | -13/+56 |
* | * move exception message to exception constructor | Aaron Patterson | 2012-05-02 | 1 | -5/+11 |
* | Support cookie jar options for all cookie stores | brainopia | 2012-04-30 | 1 | -0/+7 |
* | Return the same session data object when setting session id | Carlos Antonio da Silva | 2012-03-26 | 1 | -1/+2 |
* | remove unnecessary memcache equire in ActionDispatch::Session::CacheStore | Brian Durand | 2012-02-28 | 1 | -1/+0 |
* | remove checks for encodings availability | Sergey Nartimov | 2011-12-25 | 1 | -1/+1 |
* | Get rid of the close checks since we cannot reliably close the session anyway. | José Valim | 2011-12-16 | 1 | -4/+0 |
* | Add ActionDispatch::Session::CacheStore as a generic way of storing sessions ... | Brian Durand | 2011-10-21 | 1 | -0/+50 |
* | Split long string into multiple shorter ones
| Daniel Schierbeck | 2011-08-29 | 1 | -1/+4 |
* | removed deprecated methods, and related tests, from ActionPack | Josh Kalderimis | 2011-05-24 | 1 | -7/+1 |
* | Replace references to ActiveSupport::SecureRandom with just SecureRandom, and... | Jon Leighton | 2011-05-23 | 1 | -1/+1 |
* | Fix renew feature on cookies. | José Valim | 2011-05-04 | 1 | -1/+1 |
* | generated session ids should be encoded as UTF-8 | Aaron Patterson | 2011-04-14 | 1 | -1/+3 |
* | Initialize sid should just skip instance variables. | José Valim | 2010-10-04 | 1 | -0/+7 |
* | Rely on Rack::Session stores API for more compatibility across the Ruby world. | José Valim | 2010-10-03 | 3 | -321/+76 |
* | no need to check for nil? | Neeraj Singh | 2010-09-30 | 1 | -1/+1 |
* | Remove more warnings on AP. | Emilio Tagua | 2010-09-28 | 1 | -2/+2 |
* | Only send secure cookies over SSL. | W. Andrew Loe III | 2010-09-13 | 1 | -1/+4 |
* | Revert "Avoid uneeded queries in session stores if sid is not given." | José Valim | 2010-07-29 | 2 | -5/+3 |
* | Set session options id to nil is respected and cancels lazy loading. | José Valim | 2010-07-18 | 1 | -2/+2 |
* | Avoid uneeded queries in session stores if sid is not given. | José Valim | 2010-07-18 | 2 | -3/+5 |
* | Fixed many references to the old config/environment.rb and Rails::Initializer | Benjamin Quorning | 2010-07-13 | 1 | -1/+1 |
* | porting session.clear fix to master branch. [#5030 state:resolved] | Aaron Patterson | 2010-07-01 | 1 | -0/+5 |
* | Fixed that an ArgumentError is thrown when request.session_options[:id] is re... | Michael Lovitt | 2010-06-27 | 2 | -36/+38 |
* | Do not mark the session as loaded if an error happened while doing it. | José Valim | 2010-06-25 | 1 | -2/+1 |
* | Calling exists? in the session store, without checking for stale sessions, wa... | José Valim | 2010-06-25 | 2 | -10/+10 |
* | Make sure that Rails doesn't resent session_id cookie over and over again if ... | Prem Sichanugrist | 2010-06-25 | 1 | -1/+3 |
* | Avoid deserializing cookies too early, which causes session objects to not be... | José Valim | 2010-06-24 | 2 | -18/+22 |
* | Sessions should not be created until written to and session data should be de... | Michael Lovitt | 2010-06-23 | 3 | -29/+115 |
* | Took out the domain option logic to cookies.rb. | Rizwan Reza | 2010-06-11 | 2 | -20/+0 |
* | Moved Domain regexp to a constant and added comments. | Rizwan Reza | 2010-06-11 | 1 | -1/+8 |
* | The previous commit didn't work with complex domains, which is now fixed. | Rizwan Reza | 2010-06-11 | 1 | -4/+4 |
* | Add support for multi-subdomain session by setting cookie host in session coo... | Rizwan Reza | 2010-06-11 | 2 | -1/+14 |
* | Stop the flash middleware from forcibly loading sessions even if the user doe... | wycats | 2010-06-04 | 1 | -4/+4 |
* | Cut the fat and make session stores rely on request.cookie_jar and change set... | José Valim | 2010-05-18 | 3 | -130/+55 |
* | Remove deprecated methods since 2-3-stable. | José Valim | 2010-05-18 | 1 | -34/+6 |
* | Simplify cookie_store by simply relying on cookies.signed. | José Valim | 2010-05-18 | 1 | -93/+14 |