angular/modules/angular2/test
Nathan Walker b602bd8c83 refactor(Location): out of router and into platform/common
closes https://github.com/angular/angular/issues/4943

BREAKING CHANGE:

`Location` and other related providers have been moved out of `router` and into `platform/common`. `BrowserPlatformLocation` is not meant to be used directly however advanced configurations may use it via the following import change.

Before:

```
import {
  PlatformLocation,
  Location,
  LocationStrategy,
  HashLocationStrategy,
  PathLocationStrategy,
  APP_BASE_HREF}
from 'angular2/router';

import {BrowserPlatformLocation} from 'angular2/src/router/location/browser_platform_location';
```

After:

```
import {
  PlatformLocation,
  Location,
  LocationStrategy,
  HashLocationStrategy,
  PathLocationStrategy,
  APP_BASE_HREF}
from 'angular2/platform/common';

import {BrowserPlatformLocation} from 'angular2/src/platform/browser/location/browser_platform_location';
```

Closes #7962
2016-04-20 04:28:47 +00:00
..
animate revert(format): Revert "chore(format): update to latest formatter" 2016-04-12 09:41:01 -07:00
common refactor(view_compiler): codegen DI and Queries 2016-04-13 14:43:48 -07:00
compiler feat(i18n): add support for nested expansion forms 2016-04-18 19:38:12 +00:00
core refactor(view_compiler): codegen DI and Queries 2016-04-13 14:43:48 -07:00
facade revert(format): Revert "chore(format): update to latest formatter" 2016-04-12 09:41:01 -07:00
http fix(http) : set response.ok based on given status code 2016-04-20 04:28:27 +00:00
i18n feat(i18n): add support for nested expansion forms 2016-04-18 19:38:12 +00:00
mock revert(format): Revert "chore(format): update to latest formatter" 2016-04-12 09:41:01 -07:00
platform refactor(Location): out of router and into platform/common 2016-04-20 04:28:47 +00:00
router refactor(Location): out of router and into platform/common 2016-04-20 04:28:47 +00:00
symbol_inspector refactor(Location): out of router and into platform/common 2016-04-20 04:28:47 +00:00
testing feat(tests): manage asynchronous tests using zones 2016-04-18 15:59:07 -07:00
upgrade revert(format): Revert "chore(format): update to latest formatter" 2016-04-12 09:41:01 -07:00
web_workers refactor(view_compiler): codegen DI and Queries 2016-04-13 14:43:48 -07:00
dev_mode_spec.ts revert(format): Revert "chore(format): update to latest formatter" 2016-04-12 09:41:01 -07:00
public_api_spec.ts refactor(Location): out of router and into platform/common 2016-04-20 04:28:47 +00:00