Skip to content

Commit b1f7e6d

Browse files
committed
fixing/removing legitimate 404 links
1 parent aba2363 commit b1f7e6d

37 files changed

+67
-97
lines changed

guides/v1.10.0/application/index.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,8 @@ What does creating an `Ember.Application` instance get you?
1818
`App.PostsView` and `App.PostsController`). This helps to prevent
1919
polluting the global scope.
2020
2. It adds event listeners to the document and is responsible for
21-
delegating events to your views. (See [The View
22-
Layer](../understanding-ember/the-view-layer)
21+
delegating events to your views. (See [The View Layer](../understanding-ember/the-view-layer/)
2322
for a detailed description.)
24-
3. It automatically renders the [application
25-
template](../templates/the-application-template).
23+
3. It automatically renders the [application template](../templates/the-application-template/).
2624
4. It automatically creates a router and begins routing, choosing which
2725
template and model to display based on the current URL.

guides/v1.10.0/components/defining-a-component.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,7 @@ component of the same name. Given the above template, you can now use the
3535
Each component, under the hood, is backed by an element. By default
3636
Ember will use a `<div>` element to contain your component's template.
3737
To learn how to change the element Ember uses for your component, see
38-
[Customizing a Component's
39-
Element](../customizing-a-components-element).
38+
[Customizing a Component's Element](../customizing-a-components-element/).
4039

4140

4241
### Defining a Component Subclass

guides/v1.10.0/components/handling-user-interaction-with-actions.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ users of your application to interact with it.
77

88
You can make elements in your component interactive by using the
99
`{{action}}` helper. This is the [same `{{action}}` helper you use in
10-
application templates](../../templates/actions), but it has an
10+
[application templates](../../templates/actions/), but it has an
1111
important difference when used inside a component.
1212

1313
Instead of sending an action to the template's controller, then bubbling
@@ -41,5 +41,4 @@ App.PostSummaryComponent = Ember.Component.extend({
4141
The `{{action}}` helper can accept arguments, listen for different event
4242
types, control how action bubbling occurs, and more.
4343

44-
For details about using the `{{action}}` helper, see the [Actions
45-
section](../../templates/actions) of the Templates chapter.
44+
For details about using the `{{action}}` helper, see the [Actions section](../../templates/actions/) of the Templates chapter.

guides/v1.10.0/configuring-ember/embedding-applications.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ existing page, or run alongside other JavaScript frameworks?
66

77
### Changing the Root Element
88

9-
By default, your application will render the [application
10-
template](../../templates/the-application-template) and attach it to
9+
By default, your application will render the [application template](../../templates/the-application-template/) and attach it to
1110
the document's `body` element.
1211

1312
You can tell the application to append the application template to a
@@ -20,13 +19,11 @@ App = Ember.Application.create({
2019
```
2120

2221
This property can be specified as either an element or a
23-
[jQuery-compatible selector
24-
string](http://api.jquery.com/category/selectors/).
22+
[jQuery-compatible selector string](http://api.jquery.com/category/selectors/).
2523

2624
### Disabling URL Management
2725

28-
You can prevent Ember from making changes to the URL by [changing the
29-
router's `location`](../../routing/specifying-the-location-api) to
26+
You can prevent Ember from making changes to the URL by [changing the router's `location`](../../routing/specifying-the-location-api/) to
3027
`none`:
3128

3229
```javascript

guides/v1.10.0/cookbook/user_interface_and_interaction/adding_css_classes_to_your_components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ classNames: ['bold', 'italic', 'blue']
3232

3333
<a class="jsbin-embed" href="http://emberjs.jsbin.com/ifUDExu/2/edit?js,output">JS Bin</a>
3434

35-
See [Customizing a Component's Element](../../components/customizing-a-components-element/) for further examples.
35+
See [Customizing a Component's Element](../../../components/customizing-a-components-element/) for further examples.

guides/v1.10.0/cookbook/user_interface_and_interaction/adding_css_classes_to_your_components_based_on_properties.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ isRelatedBinding: "content.isRelated" // value resolves to boolean
3333

3434
<a class="jsbin-embed" href="http://emberjs.jsbin.com/AwAYUwe/2/edit?js,output">JS Bin</a>
3535

36-
See [Customizing a Component's Element](../../components/customizing-a-components-element/) for further examples.
36+
See [Customizing a Component's Element](../../../components/customizing-a-components-element/) for further examples.

guides/v1.10.0/cookbook/working_with_objects/continuous_redrawing_of_views.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ You'd like to redraw your views every few seconds/minutes e.g. to update
33
relative timestamps (like on twitter.com).
44

55
## Solution
6-
Have a clock object with a `pulse` attribute in your application which
6+
Have a clock object with a `pulse` attribute in your application which
77
increments using a timed interval. You want to let view(s) bind values to be
88
refreshed when the `pulse` attribute increments.
99

@@ -188,7 +188,7 @@ Further reading:
188188
* [Ember Object](http://emberjs.com/api/classes/Ember.Object.html)
189189
* [Ember Application Initializers](http://emberjs.com/api/classes/Ember.Application.html#toc_initializers)
190190
* [Method Inject](http://emberjs.com/api/classes/Ember.Application.html#method_inject)
191-
* [Conditionals](../../templates/conditionals/)
192-
* [Writing Helpers](../../templates/writing-helpers/)
193-
* [Defining a Component](../../components/defining-a-component/)
191+
* [Conditionals](../../../templates/conditionals/)
192+
* [Writing Helpers](../../../templates/writing-helpers/)
193+
* [Defining a Component](../../../components/defining-a-component/)
194194
* [Ember Array Controller](http://emberjs.com/api/classes/Ember.ArrayController.html)

guides/v1.10.0/enumerables/index.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Usually, objects that represent lists implement the Enumerable interface. Some e
5555

5656
* **Array** - Ember extends the native JavaScript `Array` with the
5757
Enumerable interface (unless you [disable prototype
58-
extensions.](../../configuring-ember/disabling-prototype-extensions/))
58+
extensions.](../configuring-ember/disabling-prototype-extensions/))
5959
* **Ember.ArrayController** - A controller that wraps an underlying array and
6060
adds additional functionality for the view layer.
6161
* **Ember.Set** - A data structure that can efficiently answer whether it
@@ -230,4 +230,3 @@ Just like the filtering methods, the `every` and `some` methods have analogous `
230230
people.isEvery('isHappy', true) // false
231231
people.isAny('isHappy', true) // true
232232
```
233-

guides/v1.10.0/models/defining-models.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,7 @@ App.Person = DS.Model.extend({
8080
});
8181
```
8282

83-
For more about adding computed properties to your classes, see [Computed
84-
Properties](../../object-model/computed-properties).
83+
For more about adding computed properties to your classes, see [Computed Properties](../../object-model/computed-properties/).
8584

8685
If you don't specify the type of the attribute, it will be whatever was
8786
provided by the server. You can make sure that an attribute is always
@@ -233,4 +232,3 @@ App.Folder = DS.Model.extend({
233232
parent: belongsTo('folder', {inverse: null})
234233
});
235234
```
236-

guides/v1.10.0/models/index.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ In Ember, every route has an associated model. This model is set by
44
implementing a route's `model` hook, by passing the model as an argument
55
to `{{link-to}}`, or by calling a route's `transitionTo()` method.
66

7-
See [Specifying a Route's
8-
Model](../../routing/specifying-a-routes-model) for more information
7+
See [Specifying a Route's Model](../routing/specifying-a-routes-model/) for more information
98
on setting a route's model.
109

1110
For simple applications, you can get by using jQuery to load JSON data

0 commit comments

Comments
 (0)