aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/journey
Commit message (Expand)AuthorAgeFilesLines
...
* | use the accessors on the request object rather than touching envAaron Patterson2014-05-231-2/+2
* | find_routes only use the request, so stop passing envAaron Patterson2014-05-231-3/+3
* | remove NullRequest and just always pass a request classAaron Patterson2014-05-231-26/+1
* | use the request object since we have itAaron Patterson2014-05-231-8/+9
|/
* stop using PARAMETERS_KEY, and use the accessor on the request objectAaron Patterson2014-05-221-6/+6
* pass the instantiated request to the find_routes methodAaron Patterson2014-05-221-5/+7
* Merge pull request #15254 from DNNX/formatter-refactoring-3Rafael Mendonça França2014-05-221-4/+4
|\
| * Rename `stack` to `queue`Viktar Basharymau2014-05-221-4/+4
* | Merge pull request #15252 from DNNX/formatter-refactoring-2Rafael Mendonça França2014-05-221-1/+1
|\ \
| * | Remove unnecessary `Hash#to_a` callViktar Basharymau2014-05-221-1/+1
| |/
* / Use `break` instead of `next` in AD::Journey::Formatter#match_routeViktar Basharymau2014-05-221-1/+1
|/
* drop hash allocations during matchAaron Patterson2014-05-211-2/+2
* fewer object allocations and method calls during route matchAaron Patterson2014-05-211-5/+5
* middle variable is never used, so rmAaron Patterson2014-05-211-1/+1
* reuse path formatter from the non-optimized path.Aaron Patterson2014-05-212-33/+2
* make variable name more clearAaron Patterson2014-05-211-2/+2
* do not mutate parameters, let the caller do mutationsAaron Patterson2014-05-212-4/+6
* push the formatter up to the Route objectAaron Patterson2014-05-212-4/+4
* we don't use this parameter for anything, so rmAaron Patterson2014-05-201-1/+1
* remove dead codeAaron Patterson2014-05-201-57/+0
* cache the formatter on the path objectAaron Patterson2014-05-202-2/+6
* translate AST to a formatter before url generationAaron Patterson2014-05-202-1/+72
* prepopulate the dispatch cache so we don't need the ThreadSafe cache.Aaron Patterson2014-05-201-7/+9
* make the each visitor top-down left-rightAaron Patterson2014-05-201-1/+1
* make the AST go from left to right, rather than right to leftAaron Patterson2014-05-192-45/+48
* fix escaping in generationAaron Patterson2014-05-191-1/+7
* Revert "Rewrite journey routes formatter for performance"Aaron Patterson2014-05-191-28/+23
* Make URL escaping more consistentAndrew White2014-04-203-4/+30
* Optimize URI escapingAndrew White2014-04-201-17/+42
* Always escape string passed to url helper.edogawaconan2014-04-201-1/+1
* push move_string in to `move`Aaron Patterson2014-04-011-14/+12
* combine move_regexp and move_string so we only loop over states onceAaron Patterson2014-04-011-9/+6
* do not create memo objects since we'll just throw them awayAaron Patterson2014-04-012-9/+11
* only ask if `t` is empty once.Aaron Patterson2014-04-011-4/+1
* Replace map.flatten with flat_map in actionpackErik Michaels-Ober2014-03-037-18/+18
* Replace map.flatten(1) with flat_mapErik Michaels-Ober2014-02-282-5/+5
* Revert "Don't remove trailing slash from PATH_INFO for mounted apps"Piotr Sarnacki2014-01-161-7/+1
* Show full route constraints in error messageAndrew White2014-01-051-2/+2
* Use a custom route vistor for optimized route generationAndrew White2014-01-051-4/+24
* Spelling and Grammar checksAkshay Vishnoi2013-12-121-1/+1
* Revert "Merge pull request #12990 from vipulnsward/remove_visualizer_param"Rafael Mendonça França2013-11-211-1/+1
* Remove unused param `title`to `TransitionTable#visualizer`Vipul A M2013-11-221-1/+1
* Eliminate `JSON.{parse,load,generate,dump}` and `def to_json`Godfrey Chan2013-11-051-5/+3
* Correct error in Utils.normalize_path that changed paths improperlyJosh Symonds2013-10-231-1/+1
* Make GTG::TransTable thread safe.thedarkone2013-09-281-12/+23
* Replace global Hash with TS::Cache.thedarkone2013-09-281-1/+4
* No need the else clauseRafael Mendonça França2013-09-241-2/+0
* Use join to concat the both side of the ASTRafael Mendonça França2013-09-241-1/+2
* Merge pull request #9155 from bogdan/route-formatterAndrew White2013-09-221-23/+23
|\
| * Rewrite journey routes formatter for performanceBogdan Gusiev2013-08-281-23/+23