Skip to content

Commit f0ffe9b

Browse files
author
Arthur Evans
committed
Fix links.
1 parent 4f5d0cf commit f0ffe9b

33 files changed

+73
-73
lines changed

app/1.0/docs/apps/case-study.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ the category "Shoes" to the browse view.
6464

6565
More information:
6666

67-
- [Encapsulated routing with elements](/1.0/blog/routing)
67+
- [Encapsulated routing with elements](https://www.polymer-project.org/blog/routing)
6868
- [`<app-route>` API reference](https://elements.polymer-project.org/elements/app-route)
6969

7070
## Views

app/1.0/docs/apps/news-case-study.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ subfolders.
4646

4747
Views in the News app use the same implementation as the Shop app. [See the Shop app case study for
4848
more information on views and
49-
routing](https://www.polymer-project.org/1.0/toolbox/case-study#views).
49+
routing](https://www.polymer-project.org/1.0/docs/apps/case-study#views).
5050

5151
For more information on encapsulated routing, see [Encapsulated routing with
52-
elements](https://www.polymer-project.org/1.0/blog/routing).
52+
elements](https://www.polymer-project.org/blog/routing).
5353

5454
For more information on the `<app-route>` Polymer element used in these implementations, see the
5555
[`<app-route>` API reference](https://www.webcomponents.org/element/PolymerElements/app-route).

app/1.0/docs/apps/routing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,6 @@ _viewChanged: function(view) {
159159

160160
## More resources
161161

162-
- [Encapsulated routing with elements](/1.0/blog/routing)
162+
- [Encapsulated routing with elements](https://www.polymer-project.org/blog/routing)
163163
- [`<app-route>`
164164
API reference](https://elements.polymer-project.org/elements/app-route)

app/1.0/docs/browsers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Notes:
9292
#### Should I use webcomponents-lite.js or webcomponents.js?
9393
9494
We recommend using the `webcomponents-lite.js` version of the polyfills with Polymer 1.0+. This
95-
version is designed to be used with [Shady DOM](https://www.polymer-project.org/1.0/blog/shadydom.html),
95+
version is designed to be used with [Shady DOM](https://www.polymer-project.org/blog/shadydom.html),
9696
and does not contain the full Shadow DOM polyfill.
9797
9898
Although the full `webcomponents.js` polyfill works with Polymer 1.0+, we do not recommend using it.

app/1.0/docs/devguide/registering-elements.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ and `registered`.
441441

442442
Use the `beforeRegister` callback to transform an element's prototype before
443443
registration. This is useful when registering an element using an ES6 class,
444-
as described in the article, [Building web components using ES6 classes](/1.0/blog/es6).
444+
as described in the article, [Building web components using ES6 classes](https://www.polymer-project.org/blog/es6).
445445

446446
You can implement the `registered` callback to perform one-time initialization
447447
when an element is registered. This is primarily useful when implementing

app/1.0/docs/devguide/templates.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ different name for the index property.
290290

291291
### Forcing synchronous renders {#synchronous-renders}
292292

293-
Call [`render`](/{{{polymer_version_dir}}}/docs/api/dom-repeat#method-render)
293+
Call [`render`](/{{{polymer_version_dir}}}/api/dom-repeat#method-render)
294294
to force a `dom-repeat` template to synchronously render any changes to its
295295
data. Normally changes are batched and rendered asynchronously. Synchronous
296296
rendering has a performance cost, but can be useful in a few scenarios:
@@ -323,22 +323,22 @@ By default, `dom-repeat` tries to render all of the list items at once. If
323323
you try to use `dom-repeat` to render a very large list of items, the UI may
324324
freeze while it's rendering the list. If you encounter this problem, enable
325325
"chunked" rendering by setting
326-
[`initialCount`](/{{{polymer_version_dir}}}/docs/api/dom-repeat#property-initialCount).
326+
[`initialCount`](/{{{polymer_version_dir}}}/api/dom-repeat#property-initialCount).
327327
In chunked mode,
328328
`dom-repeat` renders `initialCount` items at first, then renders the rest of
329329
the items incrementally one chunk per animation frame. This lets the UI thread
330330
handle user input between chunks. You can keep track of how many items have
331331
been rendered with the
332-
[`renderedItemCount`](/{{{polymer_version_dir}}}/docs/api/dom-repeat#property-renderedItemCount)
332+
[`renderedItemCount`](/{{{polymer_version_dir}}}/api/dom-repeat#property-renderedItemCount)
333333
read-only property.
334334

335335
`dom-repeat` adjusts the number of items rendered in each chunk to try and
336336
maintain a target framerate. You can further tune rendering by setting
337-
[`targetFramerate`](/{{{polymer_version_dir}}}/docs/api/dom-repeat#property-targetFramerate).
337+
[`targetFramerate`](/{{{polymer_version_dir}}}/api/dom-repeat#property-targetFramerate).
338338

339339
You can also set a debounce time that must pass before a `filter` or `sort`
340340
function is re-run by setting the
341-
[`delay`](/{{{polymer_version_dir}}}/docs/api/dom-repeat#property-delay)
341+
[`delay`](/{{{polymer_version_dir}}}/api/dom-repeat#property-delay)
342342
property.
343343

344344
## Data bind an array selection (array-selector) {#array-selector}

app/1.0/docs/tools/polymer-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ Polymer CLI is designed for apps that follow the [app shell
155155
architecture](https://developers.google.com/web/updates/2015/11/app-shell).
156156

157157
There are fundamental concepts of the app shell architecture that you should understand before creating your app project with Polymer CLI: the entrypoint,
158-
the shell, and fragments. See [App structure](/1.0/toolbox/server#app-structure)
158+
the shell, and fragments. See [App structure](/1.0/docs/apps/server#app-structure)
159159
from the App Toolbox docs for an in-depth overview of these concepts.
160160

161161
### Set up basic app project {#basic-app}

app/2.0/docs/apps/case-study.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ the category "Shoes" to the browse view.
6363

6464
More information:
6565

66-
- [Encapsulated routing with elements](/blog/routing)
66+
- [Encapsulated routing with elements](https://www.polymer-project.org/blog/routing)
6767
- [`<app-route>` API reference](https://www.webcomponents.org/element/PolymerElements/app-route)
6868

6969
## Views
@@ -125,7 +125,7 @@ _pageChanged(page, oldPage) {
125125
In the logic above, the home view is built into the app shell, but the other
126126
views are demand-loaded fragments.
127127

128-
Shop also uses [`dom-if`](/{{{polymer_version_dir}}}/docs/api/elements/Polymer.DomIf) templates to lazily create views:
128+
Shop also uses [`dom-if`](/{{{polymer_version_dir}}}/api/elements/Polymer.DomIf) templates to lazily create views:
129129

130130
```html
131131
<!-- Lazy-create the tabs for larger screen sizes. -->

app/2.0/docs/apps/news-case-study.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ more information on views and
4949
routing](case-study#views).
5050

5151
For more information on encapsulated routing, see [Encapsulated routing with
52-
elements](/blog/routing).
52+
elements](https://www.polymer-project.org/blog/routing).
5353

5454
For more information on the `<app-route>` Polymer element used in these implementations, see the
5555
[`<app-route>` API reference](https://www.webcomponents.org/element/PolymerElements/app-route).

app/2.0/docs/apps/prpl.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ The shell (including its static dependencies) should contain everything needed f
102102

103103
By default, the Polymer CLI build process produces an unbundled build designed for server/browser combinations that support HTTP/2 and HTTP/2 server push to deliver the resources the browser needs for a fast first paint while optimizing caching.
104104

105-
To generate a bundled build, designed to minimize the number of round-trips required to get the application running on server/browser combinations that don't support server push, you will need to pass a command line option or configure your [polymer.json file](polymer-json) appropriately.
105+
To generate a bundled build, designed to minimize the number of round-trips required to get the application running on server/browser combinations that don't support server push, you will need to pass a command line option or configure your [polymer.json file](/{{{polymer_version_dir}}}/docs/tools/polymer-json) appropriately.
106106

107107
If you have multiple builds, your server logic must deliver the appropriate build for each browser.
108108

0 commit comments

Comments
 (0)