aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/http
Commit message (Expand)AuthorAgeFilesLines
* Rescue Rack::Utils::ParameterTypeError instead of TypeErrorYuki Nishijima2014-09-131-2/+2
* [ci skip]Correct variables in the sample codesuginoy2014-09-101-2/+2
* Add support for Rack::ContentLength middelwareJavan Makhmali2014-09-061-0/+4
* Deprecate implicit AD::Response splatting and Array conversionJeremy Kemper2014-09-061-2/+13
* Avoid duplicating routes for HEAD requests.Guo Xiang Tan2014-08-211-0/+6
* Protect against error when parsing parameters with Bad RequestRafael Mendonça França2014-08-191-2/+2
* use 'based on' instead of 'based off' [ci skip]Akshay Vishnoi2014-08-121-1/+1
* Realign assignments :scissors:Carlos Antonio da Silva2014-07-311-5/+5
* Do not reassign variable when mutation is happeningCarlos Antonio da Silva2014-07-311-8/+5
* Only concatenate path if it was given rather than converting blindlyCarlos Antonio da Silva2014-07-311-1/+1
* Rename variable to better show its intentCarlos Antonio da Silva2014-07-311-12/+12
* Simplify conditionalCarlos Antonio da Silva2014-07-311-3/+2
* Push options check up so we can simplify internal methodsCarlos Antonio da Silva2014-07-311-13/+10
* LOCALHOST definition should match any 127.0.0.0/8 addressEarl J St Sauver2014-07-181-1/+1
* use a strategy object for generating urls in named helpersAaron Patterson2014-07-171-8/+13
* extract path building to a methodAaron Patterson2014-07-161-9/+11
* break out path building logic to methodsAaron Patterson2014-07-161-14/+22
* only extract :params from the options hash onceAaron Patterson2014-07-161-3/+2
* always transcode the file to utf-8Aaron Patterson2014-07-161-0/+1
* rack 1.6 encodes the filenames in posts correctly nowAaron Patterson2014-07-151-8/+1
* Merge pull request #13999 from jamox/update_rackAaron Patterson2014-07-082-12/+11
|\
| * Since upgrading rack we can remove unnecessary string encodingsJarmo Isotalo2014-05-191-9/+2
| * Upgraded rackJarmo Isotalo2014-05-191-3/+9
* | Remove symbolized_path_parameters.Guo Xiang Tan2014-07-021-3/+4
* | makes it sound less misleadingShunsukeAida2014-07-021-2/+2
* | push host / port / protocol extraction upAaron Patterson2014-06-301-6/+6
* | add both branches to the only_path conditionalAaron Patterson2014-06-191-6/+6
* | Change Http::Cache::SPECIAL_KEYS from Array to SetMindaugas Mozūras2014-06-151-1/+1
* | only check named_host? once in normalize_hostAaron Patterson2014-06-121-3/+7
* | lookup subdomain from the options hash once, defaulting to trueAaron Patterson2014-06-121-2/+2
* | only extract domain from the options hash onceAaron Patterson2014-06-121-3/+4
* | reduce calls to `named_host?`Aaron Patterson2014-06-121-2/+6
* | Removed warning actionpack url.rbJuanito Fatas2014-06-121-2/+2
* | remove useless to_param callAaron Patterson2014-06-111-1/+1
* | only look up the subdomain onceAaron Patterson2014-06-111-3/+4
* | scheme should contain one or more charactersAaron Patterson2014-06-111-1/+1
* | pull the port out of the options hash onceAaron Patterson2014-06-111-2/+3
* | remove useless nil checkAaron Patterson2014-06-111-2/+2
* | these methods are always called with a tld_parameterAaron Patterson2014-06-111-3/+3
* | rm `same_host?`. The same conditional is two lines down.Aaron Patterson2014-06-111-5/+3
* | Revert "rm `same_host?`. The same conditional is two lines down."Aaron Patterson2014-06-111-5/+8
* | rm `same_host?`. The same conditional is two lines down.Aaron Patterson2014-06-111-8/+5
* | cache host on the stack so we only look it up onceAaron Patterson2014-06-111-8/+9
* | only pull :protocol from the options hash onceAaron Patterson2014-06-111-2/+3
* | cache protocol on the stack to reduce options hash lookupsAaron Patterson2014-06-111-7/+7
* | eliminate nil checks in normalize_portAaron Patterson2014-06-111-7/+7
* | reduce hash lookups and disconnect normalize_port from the options hashAaron Patterson2014-06-111-9/+9
* | Handle client disconnect during live streamingMatthew Draper2014-06-081-13/+47
* | Use a frozen Set instance for CGI_VARIABLES.Nathaniel Bibler2014-06-051-8/+21
* | Merge pull request #15349 from tgxworld/remove_duplicated_method_callRafael Mendonça França2014-06-032-3/+2
|\ \