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

chore: fix broken devguide links as of May 31 #1569

Merged
merged 1 commit into from
Jun 1, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion public/contribute.jade
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

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).

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

.l-sub-section
h3 AngularFire
Expand Down
5 changes: 5 additions & 0 deletions public/docs/dart/latest/tutorial/_data.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,10 @@
"title": "Routing",
"intro": "We add the Angular Component Router and learn to navigate among the views",
"nextable": true
},
"toh-pt6": {
"title": "Http",
"intro": "We convert our service and components to use Http",
"nextable": true
}
}
1 change: 1 addition & 0 deletions public/docs/dart/latest/tutorial/toh-pt6.jade
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
!= partial("../../../_includes/_ts-temp")
5 changes: 5 additions & 0 deletions public/docs/js/latest/tutorial/_data.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,10 @@
"title": "Routing",
"intro": "We add the Angular Component Router and learn to navigate among the views",
"nextable": true
},
"toh-pt6": {
"title": "Http",
"intro": "We convert our service and components to use Http",
"nextable": true
}
}
1 change: 1 addition & 0 deletions public/docs/js/latest/tutorial/toh-pt6.jade
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
!= partial("../../../_includes/_ts-temp")
43 changes: 21 additions & 22 deletions public/docs/ts/latest/glossary.jade
Original file line number Diff line number Diff line change
Expand Up @@ -176,16 +176,16 @@ include _util-fns
operations and supporting declaration syntax.

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

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

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

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

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

:marked
## Interpolation
Expand All @@ -397,7 +397,7 @@ include _util-fns

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


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

Learn more in the [Lifecycle Hooks](guide/lifecycle-hooks.html) chapter.
Learn more in the [Lifecycle Hooks](/docs/ts/latest/guide/lifecycle-hooks.html) chapter.
// #enddocregion f-l

// #docregion m1
Expand Down Expand Up @@ -472,7 +472,7 @@ include _util-fns
Application developers may pick any module library that conforms to the standard

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

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

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

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

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

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

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

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

// #enddocregion t1
// #docregion t2
Expand Down Expand Up @@ -683,8 +683,7 @@ include _util-fns

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

Expand Down
3 changes: 1 addition & 2 deletions public/docs/ts/latest/guide/npm-packages.jade
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,7 @@ a(id="why-peer-dependencies")

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

It explains why we load the [polyfill](#polyfills) *dependency* packages in the QuickStart `package.json`,
and why we'll need those packages in our own applications.
Expand Down
2 changes: 1 addition & 1 deletion public/docs/ts/latest/tutorial/toh-pt5.jade
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ code-example(format="." language="bash").
:marked
We specify the path _all the way back to the application root_ &mdash; `app/` in this case &mdash;
because Angular doesn't support relative paths _by default_.
We _can_ switch to [component-relative paths](../cookbook/component-relative-paths) if we prefer.
We _can_ switch to [component-relative paths](../cookbook/component-relative-paths.html) if we prefer.
:marked
Create that file with these contents:
+makeExample('toh-5/ts/app/dashboard.component.html', null, 'dashboard.component.html')(format=".")
Expand Down