| Commit message (Expand) | Author | Age | Files | Lines |
* | Added test for `send_file_headers` called with nil content type | Ronak Jangir | 2015-09-19 | 1 | -1/+12 |
* | mostly remove the ParamsParser middleware | Aaron Patterson | 2015-09-18 | 1 | -1/+0 |
* | remove outdated comment | Aaron Patterson | 2015-09-18 | 1 | -4/+0 |
* | all parameter parsing is done through the request object now. | Aaron Patterson | 2015-09-18 | 1 | -1/+1 |
* | let the request object handle parsing XML posts | Aaron Patterson | 2015-09-18 | 1 | -2/+9 |
* | remove setting request parameters for JSON requests | Aaron Patterson | 2015-09-18 | 1 | -2/+0 |
* | remove the request parameter from `parse_formatted_parameters` | Aaron Patterson | 2015-09-18 | 2 | -6/+6 |
* | do not instantiate a param parser middleware | Aaron Patterson | 2015-09-18 | 2 | -14/+14 |
* | push the parameter parsers on to the class | Aaron Patterson | 2015-09-18 | 3 | -37/+37 |
* | stop eagerly parsing parameters | Aaron Patterson | 2015-09-18 | 1 | -2/+0 |
* | only wrap the strategy with exception handling | Aaron Patterson | 2015-09-18 | 1 | -9/+10 |
* | pull `normalize_encode_params` up | Aaron Patterson | 2015-09-18 | 2 | -4/+3 |
* | remove the `default` parameter from the parser method | Aaron Patterson | 2015-09-18 | 1 | -8/+5 |
* | move parameter parsing to the request object | Aaron Patterson | 2015-09-18 | 2 | -22/+37 |
* | File encoding is defaulted to utf-8 in Ruby >= 2.1 | Akira Matsuda | 2015-09-18 | 4 | -7/+0 |
* | Use rack.session_options instead of directly change env | Juanito Fatas | 2015-09-16 | 1 | -1/+1 |
* | fewer direct env manipulations | Aaron Patterson | 2015-09-15 | 2 | -2/+2 |
* | allocate request objects with the env hash, set routes on the request | Aaron Patterson | 2015-09-15 | 2 | -9/+6 |
* | only "normalize" once | Aaron Patterson | 2015-09-14 | 1 | -1/+1 |
* | create a new renderer instance on calls to `for` | Aaron Patterson | 2015-09-14 | 2 | -55/+49 |
* | eagerly allocate the renderer object | Aaron Patterson | 2015-09-14 | 3 | -9/+10 |
* | initialize `@renderer` to avoid ivar warnings | Aaron Patterson | 2015-09-14 | 1 | -1/+8 |
* | add a lock when allocating the renderer | Aaron Patterson | 2015-09-14 | 1 | -1/+5 |
* | `rack_response` should use the status it's given | Aaron Patterson | 2015-09-14 | 1 | -1/+1 |
* | Fix HSTS default expire in ActionDispatch::SSL docs. | Pedro Nascimento | 2015-09-14 | 1 | -1/+2 |
* | Merge pull request #21584 from claudiob/remove-hawd-doc | Claudio B. | 2015-09-10 | 1 | -3/+2 |
|\ |
|
| * | Remove wrong doc line about AC::Parameters | claudiob | 2015-09-10 | 1 | -3/+2 |
* | | Update documentation to reflect Rack::Session::Abstract changes | eileencodes | 2015-09-09 | 1 | -1/+1 |
* | | Handle Content-Types that are not :json, :xml, or :url_encoded_form | eileencodes | 2015-09-09 | 2 | -2/+30 |
|/ |
|
* | ensure that mutating headers will impact the content_type method | Aaron Patterson | 2015-09-08 | 1 | -0/+5 |
* | mime_type will always return a string | Aaron Patterson | 2015-09-08 | 1 | -2/+1 |
* | remove `parse_content_type` parameter | Aaron Patterson | 2015-09-08 | 1 | -6/+7 |
* | avoid allocations when there is no content type set | Aaron Patterson | 2015-09-08 | 1 | -1/+2 |
* | handle implicit rendering correctly | Aaron Patterson | 2015-09-08 | 1 | -3/+4 |
* | remove mime type lookups when parsing the content type | Aaron Patterson | 2015-09-08 | 1 | -5/+5 |
* | refactor content type setting | Aaron Patterson | 2015-09-08 | 1 | -44/+39 |
* | make Content-Type header the canonical location for content-type info | Aaron Patterson | 2015-09-08 | 1 | -34/+50 |
* | pull content type parsing in to a method | Aaron Patterson | 2015-09-08 | 1 | -7/+15 |
* | ensure that content type defaults to text / html when setting charset | Aaron Patterson | 2015-09-08 | 1 | -0/+7 |
* | push content_type assigment in to metal | Aaron Patterson | 2015-09-08 | 3 | -9/+11 |
* | avoid useless string allocations | Aaron Patterson | 2015-09-08 | 2 | -2/+1 |
* | use accessors instead of manipulating the hash | Aaron Patterson | 2015-09-08 | 1 | -2/+2 |
* | Push key_generator into SerializedCookieJars | Kasper Timm Hansen | 2015-09-08 | 1 | -4/+4 |
* | Move the request method in to the AbstractCookieJar | Kasper Timm Hansen | 2015-09-08 | 1 | -4/+3 |
* | Pull up parse to the legacy upgrading module | Kasper Timm Hansen | 2015-09-08 | 1 | -10/+5 |
* | Call super to remove the decrypt_and_verify method | Kasper Timm Hansen | 2015-09-08 | 1 | -8/+4 |
* | Call super to remove the verify method | Kasper Timm Hansen | 2015-09-08 | 1 | -8/+2 |
* | Add parse method to share deserialization logic. | Kasper Timm Hansen | 2015-09-08 | 1 | -19/+12 |
* | Add commit in the EncryptedCookieJar | Kasper Timm Hansen | 2015-09-08 | 1 | -17/+7 |
* | Use commit in the SignedCookieJar | Kasper Timm Hansen | 2015-09-08 | 1 | -15/+6 |