Skip to content

Commit 524807d

Browse files
jsshandlefilipesilva
authored andcommitted
docs(@angular/cli): resolve HTTP 301 redirects
1 parent 1188e35 commit 524807d

15 files changed

+29
-29
lines changed

docs/design/docker-deploy.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -436,19 +436,19 @@ The "2. Docker CLI tools via `child_process.exec`" method is recommended based o
436436

437437
* [Docker Run](https://docs.docker.com/engine/reference/run/)
438438
* [Docker-Compose File](https://docs.docker.com/compose/compose-file/)
439-
* [Kubernetes Pod](http://kubernetes.io/docs/api-reference/v1/definitions/#_v1_pod)
439+
* [Kubernetes Pod](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.10/)
440440
* [Marathon App](https://mesosphere.github.io/marathon/docs/rest-api.html#post-v2-apps)
441441
* [Tutum Container](https://docs.tutum.co/v2/api/#container)
442-
* [AWS Elastic Beanstalk/ECS Task Definition](http://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_defintions.html)
443-
* [Azure Service Fabric App](https://azure.microsoft.com/en-us/documentation/articles/service-fabric-deploy-remove-applications/)
444-
* [Heroku Docker CLI](https://github.com/heroku/heroku-docker)
442+
* [AWS Elastic Beanstalk/ECS Task Definition](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_definitions.html)
443+
* [Azure Service Fabric App](https://docs.microsoft.com/en-us/azure/service-fabric/service-fabric-deploy-remove-applications)
444+
* [Heroku Docker CLI](https://github.com/heroku/heroku-container-tools)
445445
* [Redspread](https://github.com/redspread/spread)
446446
* [Docker Universal Control Plane](https://www.docker.com/products/docker-universal-control-plane)
447447
* [Puppet Docker Module](https://github.com/garethr/garethr-docker)
448448
* [Chef Docker Cookbook](https://supermarket.chef.io/cookbooks/docker)
449-
* [Ansible Docker Module](http://docs.ansible.com/ansible/docker_module.html)
449+
* [Ansible Docker Module](https://docs.ansible.com/ansible/latest/modules/docker_module.html)
450450
* [Bamboo Docker Tasks](https://confluence.atlassian.com/bamboo/configuring-the-docker-task-in-bamboo-720411254.html)
451-
* [Freight Forwarder Manifest](http://freight-forwarder.readthedocs.org/en/latest/config/overview.html)
451+
* [Freight Forwarder Manifest](http://freight-forwarder.readthedocs.io/en/latest/config/overview.html)
452452
* [Gulp Docker Tasks](https://www.npmjs.com/package/gulp-docker)
453453
* [Grunt Dock Tasks](https://www.npmjs.com/package/grunt-dock)
454-
* [Robo Docker Tasks](http://robo.li/tasks/Docker/)
454+
* [Robo Docker Tasks](https://robo.li/tasks/Docker/)

docs/documentation/1-x/build.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ See https://github.com/angular/angular-cli/issues/7797 for details.
301301
<code>--stats-json</code>
302302
</p>
303303
<p>
304-
Generates a <code>stats.json</code> file which can be analyzed using tools such as: <code>webpack-bundle-analyzer</code> or https://webpack.github.io/analyse.
304+
Generates a <code>stats.json</code> file which can be analyzed using tools such as: <code>webpack-bundle-analyzer</code> or https://webpack.github.io/analyse/.
305305
</p>
306306
</details>
307307

docs/documentation/1-x/e2e.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
ng e2e
1212
```
1313

14-
End-to-end tests are run via [Protractor](https://angular.github.io/protractor/).
14+
End-to-end tests are run via [Protractor](http://www.protractortest.org/).
1515

1616
## Options
1717

docs/documentation/1-x/home.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ ng e2e
4242
```
4343

4444
Before running the tests make sure you are serving the app via `ng serve`.
45-
End-to-end tests are run via [Protractor](https://angular.github.io/protractor/).
45+
End-to-end tests are run via [Protractor](http://www.protractortest.org/).
4646

4747
### Additional Commands
4848
* [ng new](1-x/new)

docs/documentation/1-x/stories/autoprefixer.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Currently, the CLI uses [Autoprefixer](https://github.com/postcss/autoprefixer)
44
with different browser and browser versions. You may find it necessary to target specific browsers
55
or exclude certain browser versions from your build.
66

7-
Internally, Autoprefixer relies on a library called [Browserslist](https://github.com/ai/browserslist)
7+
Internally, Autoprefixer relies on a library called [Browserslist](https://github.com/browserslist/browserslist)
88
to figure out which browsers to support with prefixing.
99

1010
There are a few ways to tell Autoprefixer what browsers to target:
@@ -26,7 +26,7 @@ last 2 versions
2626
```
2727

2828
Autoprefixer will look for the configuration file/property to use when it prefixes your css.
29-
Check out the [browserslist repo](https://github.com/ai/browserslist) for more examples of how to target
29+
Check out the [browserslist repo](https://github.com/browserslist/browserslist) for more examples of how to target
3030
specific browsers and versions.
3131

3232
_Side note:_

docs/documentation/1-x/stories/configure-hmr.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
Hot Module Replacement (HMR) is a WebPack feature to update code in a running app without rebuilding it.
44
This results in faster updates and less full page-reloads.
55

6-
You can read more about HMR by visiting [this page](https://webpack.js.org/guides/hot-module-replacement).
6+
You can read more about HMR by visiting [this page](https://webpack.js.org/guides/hot-module-replacement/).
77

88
In order to get HMR working with Angular CLI we first need to add a new environment and enable it.
99

1010
Next we need to update the bootstrap process of our app to enable the
11-
[@angularclass/hmr](https://github.com/AngularClass/angular-hmr) module.
11+
[@angularclass/hmr](https://github.com/gdi2290/angular-hmr) module.
1212

1313
### Add environment for HMR
1414

docs/documentation/1-x/stories/github-pages.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ Commit your changes and push. On the GitHub project page, configure it to
1717
And that's all you need to do! Now you can see your page at
1818
`https://USER_NAME.github.io/PROJECT_NAME/`.
1919

20-
You can also use [angular-cli-ghpages](https://github.com/angular-buch/angular-cli-ghpages), a full
20+
You can also use [angular-cli-ghpages](https://github.com/angular-schule/angular-cli-ghpages), a full
2121
featured package that does this all this for you and has extra functionality.

docs/documentation/1-x/stories/include-font-awesome.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<!-- Links in /docs/documentation should NOT have `.md` at the end, because they end up in our wiki at release. -->
22

3-
# Include [Font Awesome](http://fontawesome.io/)
3+
# Include [Font Awesome](https://fontawesome.com/)
44

5-
[Font Awesome](http://fontawesome.io/) gives you scalable vector icons that can instantly be customized — size, color, drop shadow, and anything that can be done with the power of CSS.
5+
[Font Awesome](https://fontawesome.com/) gives you scalable vector icons that can instantly be customized — size, color, drop shadow, and anything that can be done with the power of CSS.
66

77
Create a new project and navigate into the project...
88
```
@@ -56,4 +56,4 @@ After saving this file, return to the browser to see the Font Awesome icon next
5656

5757
### More Info
5858

59-
- [Examples](http://fontawesome.io/examples/)
59+
- [Examples](https://fontawesome.com/how-to-use/on-the-web/setup/getting-started?using=web-fonts-with-css)

docs/documentation/1-x/stories/internationalization.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ If you are working on internationalization, the CLI can help you with the follow
66
- build
77

88
The first thing that you have to do is to setup your application to use i18n.
9-
To do that you can follow [the cookbook on angular.io](https://angular.io/docs/ts/latest/cookbook/i18n.html).
9+
To do that you can follow [the cookbook on angular.io](https://angular.io/guide/i18n).
1010

1111
### Extraction
1212
When your app is ready, you can extract the strings to translate from your templates with the

docs/documentation/e2e.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ng e2e [project]
1515
ng e2e
1616
```
1717

18-
End-to-end tests are run via [Protractor](https://angular.github.io/protractor/).
18+
End-to-end tests are run via [Protractor](http://www.protractortest.org/).
1919

2020
## Options
2121
<details>

docs/documentation/home.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ ng e2e
4242
```
4343

4444
Before running the tests make sure you are serving the app via `ng serve`.
45-
End-to-end tests are run via [Protractor](https://angular.github.io/protractor/).
45+
End-to-end tests are run via [Protractor](http://www.protractortest.org/).
4646

4747
### Additional Commands
4848
* [ng new](new)

docs/documentation/stories/autoprefixer.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Currently, the CLI uses [Autoprefixer](https://github.com/postcss/autoprefixer)
44
with different browser and browser versions. You may find it necessary to target specific browsers
55
or exclude certain browser versions from your build.
66

7-
Internally, Autoprefixer relies on a library called [Browserslist](https://github.com/ai/browserslist)
7+
Internally, Autoprefixer relies on a library called [Browserslist](https://github.com/browserslist/browserslist)
88
to figure out which browsers to support with prefixing.
99

1010
There are a few ways to tell Autoprefixer what browsers to target:
@@ -26,7 +26,7 @@ last 2 versions
2626
```
2727

2828
Autoprefixer will look for the configuration file/property to use when it prefixes your css.
29-
Check out the [browserslist repo](https://github.com/ai/browserslist) for more examples of how to target
29+
Check out the [browserslist repo](https://github.com/browserslist/browserslist) for more examples of how to target
3030
specific browsers and versions.
3131

3232
_Side note:_

docs/documentation/stories/configure-hmr.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
Hot Module Replacement (HMR) is a WebPack feature to update code in a running app without rebuilding it.
44
This results in faster updates and less full page-reloads.
55

6-
You can read more about HMR by visiting [this page](https://webpack.js.org/guides/hot-module-replacement).
6+
You can read more about HMR by visiting [this page](https://webpack.js.org/guides/hot-module-replacement/).
77

88
In order to get HMR working with Angular CLI we first need to add a new environment and enable it.
99

1010
Next we need to update the bootstrap process of our app to enable the
11-
[@angularclass/hmr](https://github.com/AngularClass/angular-hmr) module.
11+
[@angularclass/hmr](https://github.com/gdi2290/angular-hmr) module.
1212

1313
### Add environment for HMR
1414

docs/documentation/stories/include-font-awesome.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<!-- Links in /docs/documentation should NOT have `.md` at the end, because they end up in our wiki at release. -->
22

3-
# Include [Font Awesome](http://fontawesome.io/)
3+
# Include [Font Awesome](https://fontawesome.com/)
44

5-
[Font Awesome](http://fontawesome.io/) gives you scalable vector icons that can instantly be customized — size, color, drop shadow, and anything that can be done with the power of CSS.
5+
[Font Awesome](https://fontawesome.com/) gives you scalable vector icons that can instantly be customized — size, color, drop shadow, and anything that can be done with the power of CSS.
66

77
Create a new project and navigate into the project...
88
```
@@ -59,4 +59,4 @@ After saving this file, return to the browser to see the Font Awesome icon next
5959

6060
### More Info
6161

62-
- [Examples](http://fontawesome.io/examples/)
62+
- [Examples](https://fontawesome.com/how-to-use/on-the-web/setup/getting-started?using=web-fonts-with-css)

docs/documentation/stories/internationalization.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ If you are working on internationalization, the CLI can help you with the follow
66
- build
77

88
The first thing that you have to do is to setup your application to use i18n.
9-
To do that you can follow [the cookbook on angular.io](https://angular.io/docs/ts/latest/cookbook/i18n.html).
9+
To do that you can follow [the cookbook on angular.io](https://angular.io/guide/i18n).
1010

1111
### Extraction
1212
When your app is ready, you can extract the strings to translate from your templates with the

0 commit comments

Comments
 (0)