Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit 2f115a3

Browse files
committed
chore: fix broken devguide links as of May 31
Did not fix broken Dart and API links
1 parent b2262c2 commit 2f115a3

File tree

9 files changed

+36
-26
lines changed

9 files changed

+36
-26
lines changed

public/contribute.jade

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
p Our goal is to deliver a lean, lightweight set of Angular-based UI elements that implement the material design specification for use in Angular single-page applications (SPAs).
2525

26-
a(href="https://github.com/angular/material/blob/master/CONTRIBUTING.md" class="button" md-button) Contribute to Angular Material
26+
a(href="https://github.com/angular/material/blob/master/.github/CONTRIBUTING.md" class="button" md-button) Contribute to Angular Material
2727

2828
.l-sub-section
2929
h3 AngularFire

public/docs/dart/latest/tutorial/_data.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,10 @@
2929
"title": "Routing",
3030
"intro": "We add the Angular Component Router and learn to navigate among the views",
3131
"nextable": true
32+
},
33+
"toh-pt6": {
34+
"title": "Http",
35+
"intro": "We convert our service and components to use Http",
36+
"nextable": true
3237
}
3338
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
!= partial("../../../_includes/_ts-temp")

public/docs/js/latest/tutorial/_data.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,10 @@
2929
"title": "Routing",
3030
"intro": "We add the Angular Component Router and learn to navigate among the views",
3131
"nextable": true
32+
},
33+
"toh-pt6": {
34+
"title": "Http",
35+
"intro": "We convert our service and components to use Http",
36+
"nextable": true
3237
}
3338
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
!= partial("../../../_includes/_ts-temp")

public/docs/ts/latest/glossary.jade

Lines changed: 21 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -176,16 +176,16 @@ include _util-fns
176176
operations and supporting declaration syntax.
177177

178178
The many forms of binding include:
179-
* [Interpolation](guide/template-syntax.html#interpolation)
180-
* [Property Binding](guide/template-syntax.html#property-binding)
181-
* [Event Binding](guide/template-syntax.html#event-binding)
182-
* [Attribute Binding](guide/template-syntax.html#attribute-binding)
183-
* [Class Binding](guide/template-syntax.html#class-binding)
184-
* [Style Binding](guide/template-syntax.html#style-binding)
185-
* [Two-way data binding with ngModel](guide/template-syntax.html#ng-model)
179+
* [Interpolation](/docs/ts/latest/guide/template-syntax.html#interpolation)
180+
* [Property Binding](/docs/ts/latest/guide/template-syntax.html#property-binding)
181+
* [Event Binding](/docs/ts/latest/guide/template-syntax.html#event-binding)
182+
* [Attribute Binding](/docs/ts/latest/guide/template-syntax.html#attribute-binding)
183+
* [Class Binding](/docs/ts/latest/guide/template-syntax.html#class-binding)
184+
* [Style Binding](/docs/ts/latest/guide/template-syntax.html#style-binding)
185+
* [Two-way data binding with ngModel](/docs/ts/latest/guide/template-syntax.html#ng-model)
186186

187187
Learn more about data binding in the
188-
[Template Syntax](guide/template-syntax.html#data-binding) chapter.
188+
[Template Syntax](/docs/ts/latest/guide/template-syntax.html#data-binding) chapter.
189189

190190
// #enddocregion d1
191191
<a id="decorator"></a> <a id="decoration"></a>
@@ -275,7 +275,7 @@ include _util-fns
275275
is when we [bootstrap](#bootstrap) the application.
276276
There are other opportunities to register as well.
277277

278-
Learn more in the [Dependency Injection](guide/dependency-injection.html) chapter.
278+
Learn more in the [Dependency Injection](/docs/ts/latest/guide/dependency-injection.html) chapter.
279279
:marked
280280
## Directive
281281
.l-sub-section
@@ -376,11 +376,11 @@ include _util-fns
376376
.l-sub-section
377377
:marked
378378
A directive property that can be the ***target*** of a
379-
[Property Binding](guide/template-syntax.html#property-binding).
379+
[Property Binding](/docs/ts/latest/guide/template-syntax.html#property-binding).
380380
Data values flow *into* this property from the data source identified
381381
in the template expression to the right of the equal sign.
382382

383-
See the [Template Syntax](guide/template-syntax.html#inputs-outputs) chapter.
383+
See the [Template Syntax](/docs/ts/latest/guide/template-syntax.html#inputs-outputs) chapter.
384384

385385
:marked
386386
## Interpolation
@@ -397,7 +397,7 @@ include _util-fns
397397

398398
:marked
399399
Learn more about interpolation in the
400-
[Template Syntax](guide/template-syntax.html#interpolation) chapter.
400+
[Template Syntax](/docs/ts/latest/guide/template-syntax.html#interpolation) chapter.
401401

402402

403403
<a id="J"></a>
@@ -439,7 +439,7 @@ include _util-fns
439439
* `ngAfterViewChecked` - after every check of a component's view(s)
440440
* `ngOnDestroy` - just before the directive is destroyed.
441441

442-
Learn more in the [Lifecycle Hooks](guide/lifecycle-hooks.html) chapter.
442+
Learn more in the [Lifecycle Hooks](/docs/ts/latest/guide/lifecycle-hooks.html) chapter.
443443
// #enddocregion f-l
444444
445445
// #docregion m1
@@ -472,7 +472,7 @@ include _util-fns
472472
Application developers may pick any module library that conforms to the standard
473473

474474
Modules are typically named after the file in which the exported thing is defined.
475-
The Angular [DatePipe](https://github.com/angular/angular/blob/master/modules/angular2/src/common/pipes/date_pipe.ts)
475+
The Angular [DatePipe](https://github.com/angular/angular/blob/master/modules/@angular/common/src/pipes/date_pipe.ts)
476476
class belongs to a feature module named `date_pipe` in the file `date_pipe.ts`.
477477

478478
Developers rarely access Angular feature modules directly.
@@ -492,11 +492,11 @@ include _util-fns
492492
.l-sub-section
493493
:marked
494494
A directive property that can be the ***target*** of an
495-
[Event Binding](guide/template-syntax.html#property-binding).
495+
[Event Binding](/docs/ts/latest/guide/template-syntax.html#property-binding).
496496
Events stream *out* of this property to the receiver identified
497497
in the template expression to the right of the equal sign.
498498

499-
See the [Template Syntax](guide/template-syntax.html#inputs-outputs) chapter.
499+
See the [Template Syntax](/docs/ts/latest/guide/template-syntax.html#inputs-outputs) chapter.
500500

501501
.l-main-section
502502
<a id="P"></a>
@@ -525,7 +525,7 @@ include _util-fns
525525
code-example(language="html" escape="html").
526526
<label>Price: </label>{{product.price | currency}}
527527
:marked
528-
Learn more in the chapter on [pipes](guide/pipes.html) .
528+
Learn more in the chapter on [pipes](/docs/ts/latest/guide/pipes.html) .
529529

530530
:marked
531531
## Provider
@@ -552,7 +552,7 @@ include _util-fns
552552
and taking other similar actions that cause the application to
553553
replace one view with another.
554554

555-
The Angular [Component Router](guide/router.html) is a richly featured mechanism for configuring
555+
The Angular [Component Router](/docs/ts/latest/guide/router.html) is a richly featured mechanism for configuring
556556
and managing the entire view navigation process including the creation and destruction
557557
of views.
558558
:marked
@@ -609,15 +609,15 @@ include _util-fns
609609
the support and continuing guidance of an Angular [Directive](#directive),
610610
most notably a [Component](#component).
611611

612-
We write templates in a special [Template Syntax](guide/template-syntax.html).
612+
We write templates in a special [Template Syntax](/docs/ts/latest/guide/template-syntax.html).
613613

614614
:marked
615615
## Template Expression
616616
.l-sub-section
617617
:marked
618618
An expression in a JavaScript-like syntax that Angular evaluates within
619619
a [data binding](#data-binding). Learn how to write template expressions
620-
in the [Template Syntax](guide/template-syntax.html#template-expressions) chapter.
620+
in the [Template Syntax](/docs/ts/latest/guide/template-syntax.html#template-expressions) chapter.
621621

622622
// #enddocregion t1
623623
// #docregion t2
@@ -683,8 +683,7 @@ include _util-fns
683683

684684
The browser DOM and JavaScript have a limited number
685685
of asynchronous activities, activities such as DOM events (e.g., clicks),
686-
[promises](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/
687-
Promise), and
686+
[promises](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise), and
688687
[XHR](https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest)
689688
calls to remote servers.
690689

public/docs/ts/latest/guide/npm-packages.jade

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,7 @@ a(id="why-peer-dependencies")
172172

173173
We don't have a *peerDependencies* section in the QuickStart `package.json`.
174174
But Angular itself has a *peerDependencies* section in
175-
[*its* package.json](https://github.com/angular/angular/blob/master/modules/angular2/package.json)
176-
and that has important consequences for our application.
175+
*its* package.json and that has important consequences for our application.
177176

178177
It explains why we load the [polyfill](#polyfills) *dependency* packages in the QuickStart `package.json`,
179178
and why we'll need those packages in our own applications.

public/docs/ts/latest/tutorial/toh-pt5.jade

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ code-example(format="." language="bash").
284284
:marked
285285
We specify the path _all the way back to the application root_ &mdash; `app/` in this case &mdash;
286286
because Angular doesn't support relative paths _by default_.
287-
We _can_ switch to [component-relative paths](../cookbook/component-relative-paths) if we prefer.
287+
We _can_ switch to [component-relative paths](../cookbook/component-relative-paths.html) if we prefer.
288288
:marked
289289
Create that file with these contents:
290290
+makeExample('toh-5/ts/app/dashboard.component.html', null, 'dashboard.component.html')(format=".")

0 commit comments

Comments
 (0)