| Commit message (Expand) | Author | Age | Files | Lines |
* | Force encoding of US-ASCII to UTF-8 in unescape_uri. | Karl Entwistle | 2014-07-10 | 1 | -5/+7 |
* | Replace x.sort_by!.select! with x.select!.sort_by! | Viktar Basharymau | 2014-06-20 | 1 | -1/+2 |
* | Fix request's path_info when a rack app mounted at '/'. | Larry Lv | 2014-06-14 | 1 | -0/+1 |
* | no more is_a checks on instantiation | Aaron Patterson | 2014-05-29 | 1 | -9/+4 |
* | Path::Pattern is instantiated internally, so make the contructor require a st... | Aaron Patterson | 2014-05-29 | 1 | -7/+6 |
* | Strexp#names is only used in a test, so rm | Aaron Patterson | 2014-05-29 | 1 | -4/+0 |
* | add an alternate constructor to Strexp that takes a string | Aaron Patterson | 2014-05-29 | 1 | -7/+9 |
* | ask the strexp for the ast | Aaron Patterson | 2014-05-29 | 2 | -3/+7 |
* | use a parser to extract the group parts from the path | Aaron Patterson | 2014-05-29 | 1 | -0/+4 |
* | Merge branch 'constraints' | Aaron Patterson | 2014-05-27 | 2 | -10/+2 |
|\ |
|
| * | pass the request object to the application | Aaron Patterson | 2014-05-25 | 1 | -1/+1 |
| * | push is_a?(Dispatcher) check in to one place | Aaron Patterson | 2014-05-24 | 1 | -9/+1 |
* | | Merge pull request #15321 from tgxworld/only_find_routes_as_heads_for_head_re... | Santiago Pastorino | 2014-05-27 | 1 | -1/+4 |
|\ \ |
|
| * | | Call get_routes_as_head only on HEAD requests. | Guo Xiang Tan | 2014-05-25 | 1 | -1/+4 |
| |/ |
|
* / | Remove unnecessary flatten! method call. | Guo Xiang Tan | 2014-05-25 | 1 | -3/+1 |
|/ |
|
* | unwrap the constraints object on initialization, eliminate loops | Aaron Patterson | 2014-05-24 | 1 | -1/+1 |
* | Fix router visualizer CSS and JS resources | Franco Catena | 2014-05-23 | 1 | -2/+2 |
* | there is no formatter on the router object, so rm | Aaron Patterson | 2014-05-23 | 1 | -1/+0 |
* | Merge pull request #15273 from DNNX/formatter-refactoring-4 | Rafael Mendonça França | 2014-05-23 | 1 | -5/+0 |
|\ |
|
| * | Remove AD::Journey::Formatter#verify_required_parts! | Viktar Basharymau | 2014-05-23 | 1 | -5/+0 |
* | | decouple the router object from the request class | Aaron Patterson | 2014-05-23 | 1 | -5/+3 |
* | | pass the correct custom request to the recognize method | Aaron Patterson | 2014-05-23 | 1 | -3/+1 |
* | | switch to the `serve` method so we can remove the request class (eventually) | Aaron Patterson | 2014-05-23 | 1 | -6/+0 |
* | | extract request allocation from the main app serving routine | Aaron Patterson | 2014-05-23 | 1 | -2/+4 |
* | | use the accessors on the request object rather than touching env | Aaron Patterson | 2014-05-23 | 1 | -2/+2 |
* | | find_routes only use the request, so stop passing env | Aaron Patterson | 2014-05-23 | 1 | -3/+3 |
* | | remove NullRequest and just always pass a request class | Aaron Patterson | 2014-05-23 | 1 | -26/+1 |
* | | use the request object since we have it | Aaron Patterson | 2014-05-23 | 1 | -8/+9 |
|/ |
|
* | stop using PARAMETERS_KEY, and use the accessor on the request object | Aaron Patterson | 2014-05-22 | 1 | -6/+6 |
* | pass the instantiated request to the find_routes method | Aaron Patterson | 2014-05-22 | 1 | -5/+7 |
* | Merge pull request #15254 from DNNX/formatter-refactoring-3 | Rafael Mendonça França | 2014-05-22 | 1 | -4/+4 |
|\ |
|
| * | Rename `stack` to `queue` | Viktar Basharymau | 2014-05-22 | 1 | -4/+4 |
* | | Merge pull request #15252 from DNNX/formatter-refactoring-2 | Rafael Mendonça França | 2014-05-22 | 1 | -1/+1 |
|\ \ |
|
| * | | Remove unnecessary `Hash#to_a` call | Viktar Basharymau | 2014-05-22 | 1 | -1/+1 |
| |/ |
|
* / | Use `break` instead of `next` in AD::Journey::Formatter#match_route | Viktar Basharymau | 2014-05-22 | 1 | -1/+1 |
|/ |
|
* | drop hash allocations during match | Aaron Patterson | 2014-05-21 | 1 | -2/+2 |
* | fewer object allocations and method calls during route match | Aaron Patterson | 2014-05-21 | 1 | -5/+5 |
* | middle variable is never used, so rm | Aaron Patterson | 2014-05-21 | 1 | -1/+1 |
* | reuse path formatter from the non-optimized path. | Aaron Patterson | 2014-05-21 | 2 | -33/+2 |
* | make variable name more clear | Aaron Patterson | 2014-05-21 | 1 | -2/+2 |
* | do not mutate parameters, let the caller do mutations | Aaron Patterson | 2014-05-21 | 2 | -4/+6 |
* | push the formatter up to the Route object | Aaron Patterson | 2014-05-21 | 2 | -4/+4 |
* | we don't use this parameter for anything, so rm | Aaron Patterson | 2014-05-20 | 1 | -1/+1 |
* | remove dead code | Aaron Patterson | 2014-05-20 | 1 | -57/+0 |
* | cache the formatter on the path object | Aaron Patterson | 2014-05-20 | 2 | -2/+6 |
* | translate AST to a formatter before url generation | Aaron Patterson | 2014-05-20 | 2 | -1/+72 |
* | prepopulate the dispatch cache so we don't need the ThreadSafe cache. | Aaron Patterson | 2014-05-20 | 1 | -7/+9 |
* | make the each visitor top-down left-right | Aaron Patterson | 2014-05-20 | 1 | -1/+1 |
* | make the AST go from left to right, rather than right to left | Aaron Patterson | 2014-05-19 | 2 | -45/+48 |
* | fix escaping in generation | Aaron Patterson | 2014-05-19 | 1 | -1/+7 |