Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

root/trunk/actionpack/test/controller/routing_test.rb


Mode:

Legend:

Added
Modified
Copied or renamed
Rev Chgset Date Author Log Message
(edit) @9115 [9115] 03/28/08 20:01:21 david Added support for regexp flags like ignoring case in the :requirements …
(edit) @9069 [9069] 03/21/08 22:44:04 bitsweat Fix an edge case with extra periods in Routing.normalize_paths. Closes …
(edit) @8738 [8738] 01/26/08 08:41:19 nzkoz Make it simpler to make the root route an alias for another route. Closes …
(edit) @8673 [8673] 01/19/08 05:24:44 bitsweat Add timing test for large restful route recognition. References #10835
(edit) @8590 [8590] 01/07/08 08:12:34 bitsweat Ruby 1.9 compat: don't rely on Array#to_s to flatten and join as string
(edit) @8564 [8564] 01/05/08 13:32:06 bitsweat require abstract_unit directly since test is in load path
(edit) @8406 [8406] 12/15/07 02:29:04 bitsweat Fixes for standalone tests
(edit) @8301 [8301] 12/05/07 18:54:41 david Fix typos (closes #10378)
(edit) @8227 [8227] 11/28/07 04:11:37 nzkoz Make sure the optimisation code for routes doesn't get used if :host, …
(edit) @8216 [8216] 11/26/07 22:41:28 david Fixed to_s bug with namespace routes (closes #10283) [johnb]
(edit) @8206 [8206] 11/25/07 22:24:23 david Fixed that named routes living under resources shouldn't have double …
(edit) @8169 [8169] 11/20/07 21:25:25 nzkoz Ensure that the routing optimisation code isn't used when additional …
(edit) @7898 [7898] 10/15/07 04:27:31 bitsweat Expand Routes::DynamicSegment test coverage. Closes #7122 [Kevin Clark]
(edit) @7849 [7849] 10/13/07 03:28:35 nzkoz Make sure that custom inflections are picked up by map.resources by …
(edit) @7724 [7724] 10/03/07 05:47:41 rick Move ActionController::Routing.optimise_named_routes to …
(edit) @7673 [7673] 09/28/07 20:57:39 nzkoz Re-enable Routing optimisation code for _url methods, add …
(edit) @7666 [7666] 09/28/07 14:18:47 david Fixed spelling errors (closes #9706) [tarmo/rmm5t]
(edit) @7605 [7605] 09/23/07 22:52:57 bitsweat Optimized named routes respect AbstractRequest.relative_url_root. Closes …
(edit) @7599 [7599] 09/23/07 21:58:02 bitsweat Remove , and ; (comma and semicolon) from routing separators again. …
(edit) @7572 [7572] 09/22/07 19:20:06 nzkoz Disable the routing optimisation code when dealing with foo_url helpers. …
(edit) @7501 [7501] 09/17/07 09:30:18 nzkoz Disable optimisation code for UrlWriter as request.host doesn't make sense …
(edit) @7487 [7487] 09/15/07 22:10:20 bitsweat Fixed optimized route segment escaping. Closes #9562.
(edit) @7482 [7482] 09/15/07 20:38:39 bitsweat root_path returns '/' not . Closes #9563.
(edit) @7421 [7421] 09/09/07 00:18:55 nzkoz Optimise named route generation when using positional arguments. Closes …
(edit) @7415 [7415] 09/06/07 14:28:32 xal Remove deprecated named routes [pixeltrix]
(edit) @7411 [7411] 09/05/07 23:37:17 nzkoz Allow additional parameters to be passed to named route helpers when using …
(edit) @7138 [7138] 06/27/07 08:38:55 bitsweat Prefix nested resource named routes with their action name, e.g. …
(edit) @6979 [6979] 06/09/07 04:39:01 bitsweat Routing: improve static segment test coverage. #7117 [Kevin Clark]
(edit) @6888 [6888] 05/29/07 06:40:33 bitsweat Routing: drop semicolon and comma as route separators.
(edit) @6862 [6862] 05/26/07 20:07:34 bitsweat Routing: respond with 405 Method Not Allowed status when the route path …
(edit) @6783 [6783] 05/19/07 16:26:44 xal Allow routes to be declared off namespaces
(edit) @6730 [6730] 05/14/07 11:14:30 bitsweat Rationalize route path escaping according to RFC 2396 section 3.3. Closes …
(edit) @6724 [6724] 05/12/07 04:46:17 ulysses Add broken test
(edit) @6722 [6722] 05/12/07 04:18:46 ulysses Add ActionController::Routing::Helpers, a module to contain common URL …
(edit) @6673 [6673] 05/06/07 04:26:49 marcel More documentations for typos in routes. Closes #8228 [pam]
(edit) @6465 [6465] 03/26/07 19:02:19 minam Make sure the expiry hash is built by comparing the to_param-ized values …
(edit) @6343 [6343] 03/06/07 07:47:23 bitsweat Allow array and hash query parameters. Array route parameters are …
(edit) @6231 [6231] 02/25/07 20:11:18 david Fixed broken test
(edit) @6185 [6185] 02/21/07 10:05:07 bitsweat Routing: better support for escaped values in route segments. Closes …
(edit) @6113 [6113] 02/04/07 19:07:08 rick fix form_for example in ActionController::Resources documentation. Closes …
(edit) @6082 [6082] 01/28/07 17:29:51 ulysses Allow Routes to generate all urls for a set of options by specifying …
(edit) @6057 [6057] 01/28/07 07:16:55 bitsweat Use a consistent load path to avoid double requires. Fix some scattered …
(edit) @5976 [5976] 01/17/07 06:49:43 rick Improve Test Coverage for …
(edit) @5803 [5803] 12/28/06 21:04:44 bitsweat Routing uses URI escaping for path components and CGI escaping for query …
(edit) @5709 [5709] 12/09/06 04:42:32 ulysses Fix a bug in Routing where a parameter taken from the path of the current …
(edit) @5671 [5671] 12/04/06 00:12:00 david Dropped the idea of automatically routing :format for the vanilla routes …
(edit) @5607 [5607] 11/22/06 16:31:00 ulysses Update Routing to complain when :controller is not specified by a route. …
(edit) @5503 [5503] 11/13/06 01:17:10 bitsweat silence const_set warning
(edit) @5337 [5337] 10/22/06 23:48:52 rick clean up failing routing tests from missing :only_path option [Rick]
(edit) @5314 [5314] 10/16/06 19:52:21 ulysses Fix routing to correctly determine when generation fails. Closes #6300.
(edit) @5304 [5304] 10/15/06 03:11:08 minam remove an obsolete #dup call. avoid double negatives, to make the code …
(edit) @5252 [5252] 10/09/06 01:20:36 ulysses Rename test assertion to prevent shadowing. Closes #6306.
(edit) @5169 [5169] 09/23/06 17:25:06 ulysses Clear the cache of possible controllers whenever Routes are reloaded.
(edit) @5151 [5151] 09/20/06 17:45:03 ulysses Fix routing to respect user provided requirements and defaults when …
(edit) @4998 [4998] 09/04/06 20:09:15 david Fixed default routing NoMethodError downcase for nil when default …
(edit) @4907 [4907] 09/02/06 20:41:40 rick Add routing tests to assert that RoutingError is raised when conditions …
(edit) @4805 [4805] 08/22/06 07:18:24 ulysses Add test case from ticket #4090
(edit) @4763 [4763] 08/15/06 02:04:11 ulysses Relax Routing's anchor pattern warning; it was preventing use of [/] …
(edit) @4762 [4762] 08/15/06 01:28:06 ulysses Add controller_paths variable to Routing; Assign Routing.controller_paths …
(edit) @4757 [4757] 08/13/06 18:31:58 rick Fix assert_redirected_to issue with named routes for module controllers. …
(edit) @4677 [4677] 08/05/06 22:12:50 ulysses Make Routing noisy when an anchor regexp is assigned to a segment. Closes …
(edit) @4518 [4518] 06/30/06 02:36:17 ulysses Add route_name_path method to generate only the path for a named routes. …
(edit) @4454 [4454] 06/17/06 00:25:24 rick Fix that routes with *path segments in the recall can generate URLs. …
(edit) @4451 [4451] 06/16/06 03:22:09 rick add passing test to make sure unhandled requests don't load unnecessary …
(edit) @4444 [4444] 06/07/06 16:27:14 minam Make sure passed routing options are not mutated by routing code. (closes …
(edit) @4443 [4443] 06/07/06 16:16:37 minam Do some path normalization to prevent the possible_controllers list from …
(edit) @4442 [4442] 06/06/06 19:09:56 minam Make sure named routes are never generated relative to some containing …
(edit) @4441 [4441] 06/06/06 17:59:54 minam Improve parameter expiry handling to fix sticky-id issue. Add a more …
(edit) @4438 [4438] 06/05/06 15:48:29 minam Make sure changing the controller from foo/bar to bing/bang does not …
(edit) @4436 [4436] 06/05/06 15:30:09 minam Escape the entire path before trying to recognize it (closes #3671)
(edit) @4435 [4435] 06/05/06 14:51:27 minam Make sure :id and friends are properly unescaped (closes #5275).
(edit) @4434 [4434] 06/05/06 14:31:38 minam Make sure regexp chunks are grouped when the segment has a regexp …
(edit) @4394 [4394] 06/01/06 15:42:08 minam New routes implementation. Simpler, faster, easier to understand. The …
(edit) @4319 [4319] 04/30/06 21:06:49 rick Small fix in routing to allow dynamic routes (broken after [4242]) [Rick]
(edit) @4245 [4245] 04/21/06 20:15:53 minam restore some commented lines
(edit) @4244 [4244] 04/21/06 17:21:26 minam fix to ';' interpretation in route recognition--only follow a route with …
(edit) @4242 [4242] 04/21/06 15:17:02 minam Add support in routes for semicolon delimited "subpaths", like …
(edit) @3542 [3542] 02/04/06 23:59:37 ulysses Don't let arbitrary classes match as controllers
(edit) @3541 [3541] 02/04/06 23:14:22 ulysses Fix bad require for rake test
(edit) @3540 [3540] 02/04/06 23:12:15 ulysses Fix routing tests to pass when run independently of the entire AP suite
(edit) @3539 [3539] 02/04/06 23:09:26 ulysses Fix Routing tests. Fix routing where failing to match a controller would …
(edit) @2257 [2257] 09/18/05 14:37:43 ulysses Add routing tests from #1945
(edit) @2256 [2256] 09/18/05 14:11:24 ulysses Add a routing test case covering #2101
(edit) @2205 [2205] 09/11/05 13:56:43 ulysses Add ability to specify Route Regexps for controllers. Closes #1917.
(edit) @2204 [2204] 09/11/05 13:45:55 ulysses Provide Named Route's hash methods as helper methods. Closes #1744.
(edit) @1857 [1857] 07/18/05 03:12:45 ulysses Fixed construction of get parameters for arrays
(edit) @1837 [1837] 07/15/05 15:00:39 ulysses Fix assert_routing with nested controllers. Closes #1582 and #1386.
(edit) @1834 [1834] 07/14/05 10:32:37 ulysses Add RouteSet#named_route so that RouteSet instance methods do not shadow …
(edit) @1833 [1833] 07/14/05 09:09:39 ulysses Provide correct defaults for Named Routes which do not specify :action
(edit) @1826 [1826] 07/14/05 00:13:06 ulysses Generate URLs for :action => index when :action => nil is supplied.
(edit) @1825 [1825] 07/13/05 23:13:15 ulysses Named routes should not provide nil values to url_for. Includes factoring …
(edit) @1769 [1769] 07/08/05 08:56:24 ulysses Routes now raise an exception if a path component is misconfigured.
(edit) @1768 [1768] 07/08/05 08:45:51 ulysses Fix routes to generate proper URLs when given Fixnum defaults
(edit) @1765 [1765] 07/07/05 19:51:20 ulysses Enable routes to recognize uppercase controller names. Closes #1635
(edit) @1764 [1764] 07/07/05 19:43:03 ulysses Properly unescape recognized path components. Fixes #1651.
(edit) @1758 [1758] 07/07/05 14:16:05 david Fixed that named routes didn't use the default values for action and …
(edit) @1736 [1736] 07/06/05 10:45:14 david Fixed routing snafu
(edit) @1713 [1713] 07/05/05 15:31:51 david Fixed routing regression on index exception
(edit) @1712 [1712] 07/05/05 15:06:09 minam Routing fix
(edit) @1645 [1645] 07/03/05 12:01:06 david Fixed routing bug #1592
Note: See TracRevisionLog for help on using the revision log.