docs: tweaks and fixes to dart/ts/js navigation & page titles

closes #911
This commit is contained in:
Kathy Walrath 2016-03-03 16:36:39 -08:00
parent 92ca77e3e8
commit cab0abdb2c
6 changed files with 65 additions and 73 deletions

View File

@ -21,7 +21,7 @@
li: a(href='#{base}guide') Overview li: a(href='#{base}guide') Overview
li: a(href='#{base}guide/architecture.html') Architecture li: a(href='#{base}guide/architecture.html') Architecture
li: a(href='#{base}guide/displaying-data.html') Displaying Data li: a(href='#{base}guide/displaying-data.html') Displaying Data
li: a(href='#{base}guide/user-input.html') User Inputs li: a(href='#{base}guide/user-input.html') User Input
li: a(href='#{base}guide/forms.html') Forms li: a(href='#{base}guide/forms.html') Forms
li: a(href='#{base}guide/dependency-injection.html') Dependency Injection li: a(href='#{base}guide/dependency-injection.html') Dependency Injection
li: a(href='#{base}guide/template-syntax.html') Template Syntax li: a(href='#{base}guide/template-syntax.html') Template Syntax
@ -35,15 +35,13 @@
li: a(href='#{base}guide/server-communication.html') Http Client li: a(href='#{base}guide/server-communication.html') Http Client
li: a(href='#{base}guide/lifecycle-hooks.html') Lifecycle Hooks li: a(href='#{base}guide/lifecycle-hooks.html') Lifecycle Hooks
li: a(href='#{base}guide/pipes.html') Pipes li: a(href='#{base}guide/pipes.html') Pipes
li: a(href='#{base}guide/router.html') Routing and Navigation li: a(href='#{base}guide/router.html') Routing & Navigation
li: a(href='#{base}guide/structural-directives.html') Structural Directives li: a(href='#{base}guide/structural-directives.html') Structural Directives
li: a(href='#{base}guide/upgrade.html') Upgrading from 1.x
.nav-blocks .nav-blocks
.nav-title Cookbook .nav-title Cookbook
.nav-unordered-lists .nav-unordered-lists
ul ul
li: a(href='#{base}cookbook') Overview li: a(href='#{base}cookbook') Overview
li: a(href='#{base}cookbook/a1-a2-quick-reference.html') Angular 1 to 2 Quick Ref
li: a(href='#{base}cookbook/component-communication.html') Component Interaction li: a(href='#{base}cookbook/component-communication.html') Component Interaction
.nav-blocks .nav-blocks
.nav-title Reference .nav-title Reference

View File

@ -2,15 +2,12 @@
"_listtype": "ordered", "_listtype": "ordered",
"index": { "index": {
"title": "Developer Guides" "title": "Documentation Overview"
},
"cheatsheet": {
"title": "Angular Cheat Sheet"
}, },
"architecture": { "architecture": {
"title": "Architecture Overview" "title": "Architecture Overview",
"intro": "The basic building blocks of Angular 2 applications"
}, },
"displaying-data": { "displaying-data": {
@ -38,14 +35,14 @@
"intro": "Learn how to write templates that display data and consume user events with the help of data binding." "intro": "Learn how to write templates that display data and consume user events with the help of data binding."
}, },
"pipes": { "attribute-directives": {
"title": "Pipes", "title": "Attribute Directives",
"intro": "Pipes transform displayed values within a template." "intro": "Attribute directives attach behavior to elements."
}, },
"router": { "hierarchical-dependency-injection": {
"title": "Routing & Navigation", "title": "Hierarchical Injectors",
"intro": "Discover the basics of screen navigation with the Angular 2 router." "intro": "Angular's hierarchical dependency injection system supports nested injectors in parallel with the component tree."
}, },
"server-communication": { "server-communication": {
@ -58,9 +55,14 @@
"intro": "Angular calls lifecycle hook methods on directives and components as it creates, changes, and destroys them." "intro": "Angular calls lifecycle hook methods on directives and components as it creates, changes, and destroys them."
}, },
"attribute-directives": { "pipes": {
"title": "Attribute Directives", "title": "Pipes",
"intro": "Attribute directives attach behavior to elements." "intro": "Pipes transform displayed values within a template."
},
"router": {
"title": "Routing & Navigation",
"intro": "Discover the basics of screen navigation with the Angular 2 router."
}, },
"structural-directives": { "structural-directives": {
@ -68,11 +70,6 @@
"intro": "Angular has a powerful template engine that lets us easily manipulate the DOM structure of our elements." "intro": "Angular has a powerful template engine that lets us easily manipulate the DOM structure of our elements."
}, },
"hierarchical-dependency-injection": {
"title": "Hierarchical Injectors",
"intro": "Angular's hierarchical dependency injection system supports nested injectors in parallel with the component tree."
},
"upgrade": { "upgrade": {
"title": "Upgrading from 1.x", "title": "Upgrading from 1.x",
"intro": "Angular 1 applications can be incrementally upgraded to Angular 2." "intro": "Angular 1 applications can be incrementally upgraded to Angular 2."

View File

@ -21,7 +21,7 @@
li: a(href='#{base}guide') Overview li: a(href='#{base}guide') Overview
li: a(href='#{base}guide/architecture.html') Architecture li: a(href='#{base}guide/architecture.html') Architecture
li: a(href='#{base}guide/displaying-data.html') Displaying Data li: a(href='#{base}guide/displaying-data.html') Displaying Data
li: a(href='#{base}guide/user-input.html') User Inputs li: a(href='#{base}guide/user-input.html') User Input
li: a(href='#{base}guide/forms.html') Forms li: a(href='#{base}guide/forms.html') Forms
li: a(href='#{base}guide/dependency-injection.html') Dependency Injection li: a(href='#{base}guide/dependency-injection.html') Dependency Injection
li: a(href='#{base}guide/template-syntax.html') Template Syntax li: a(href='#{base}guide/template-syntax.html') Template Syntax
@ -36,7 +36,7 @@
li: a(href='#{base}guide/lifecycle-hooks.html') Lifecycle Hooks li: a(href='#{base}guide/lifecycle-hooks.html') Lifecycle Hooks
li: a(href='#{base}guide/npm-packages.html') npm packages li: a(href='#{base}guide/npm-packages.html') npm packages
li: a(href='#{base}guide/pipes.html') Pipes li: a(href='#{base}guide/pipes.html') Pipes
li: a(href='#{base}guide/router.html') Routing and Navigation li: a(href='#{base}guide/router.html') Routing & Navigation
li: a(href='#{base}guide/structural-directives.html') Structural Directives li: a(href='#{base}guide/structural-directives.html') Structural Directives
li: a(href='#{base}guide/upgrade.html') Upgrading from 1.x li: a(href='#{base}guide/upgrade.html') Upgrading from 1.x
.nav-blocks .nav-blocks

View File

@ -2,15 +2,12 @@
"_listtype": "ordered", "_listtype": "ordered",
"index": { "index": {
"title": "Developer Guides" "title": "Documentation Overview"
},
"cheatsheet": {
"title": "Angular Cheat Sheet"
}, },
"architecture": { "architecture": {
"title": "Architecture Overview" "title": "Architecture Overview",
"intro": "The basic building blocks of Angular 2 applications"
}, },
"displaying-data": { "displaying-data": {
@ -38,14 +35,14 @@
"intro": "Learn how to write templates that display data and consume user events with the help of data binding." "intro": "Learn how to write templates that display data and consume user events with the help of data binding."
}, },
"pipes": { "attribute-directives": {
"title": "Pipes", "title": "Attribute Directives",
"intro": "Pipes transform displayed values within a template." "intro": "Attribute directives attach behavior to elements."
}, },
"router": { "hierarchical-dependency-injection": {
"title": "Routing & Navigation", "title": "Hierarchical Injectors",
"intro": "Discover the basics of screen navigation with the Angular 2 router." "intro": "Angular's hierarchical dependency injection system supports nested injectors in parallel with the component tree."
}, },
"server-communication": { "server-communication": {
@ -58,9 +55,19 @@
"intro": "Angular calls lifecycle hook methods on directives and components as it creates, changes, and destroys them." "intro": "Angular calls lifecycle hook methods on directives and components as it creates, changes, and destroys them."
}, },
"attribute-directives": { "npm-packages": {
"title": "Attribute Directives", "title": "npm packages",
"intro": "Attribute directives attach behavior to elements." "intro": "Details of the recommended npm packages and the different kinds of package dependencies"
},
"pipes": {
"title": "Pipes",
"intro": "Pipes transform displayed values within a template."
},
"router": {
"title": "Routing & Navigation",
"intro": "Discover the basics of screen navigation with the Angular 2 router."
}, },
"structural-directives": { "structural-directives": {
@ -68,16 +75,6 @@
"intro": "Angular has a powerful template engine that lets us easily manipulate the DOM structure of our elements." "intro": "Angular has a powerful template engine that lets us easily manipulate the DOM structure of our elements."
}, },
"hierarchical-dependency-injection": {
"title": "Hierarchical Injectors",
"intro": "Angular's hierarchical dependency injection system supports nested injectors in parallel with the component tree."
},
"npm-packages": {
"title": "npm packages",
"intro": "Details of the recommended npm packages and the different kinds of package dependencies"
},
"upgrade": { "upgrade": {
"title": "Upgrading from 1.x", "title": "Upgrading from 1.x",
"intro": "Angular 1 applications can be incrementally upgraded to Angular 2." "intro": "Angular 1 applications can be incrementally upgraded to Angular 2."

View File

@ -21,7 +21,7 @@
li: a(href='#{base}guide') Overview li: a(href='#{base}guide') Overview
li: a(href='#{base}guide/architecture.html') Architecture li: a(href='#{base}guide/architecture.html') Architecture
li: a(href='#{base}guide/displaying-data.html') Displaying Data li: a(href='#{base}guide/displaying-data.html') Displaying Data
li: a(href='#{base}guide/user-input.html') User Inputs li: a(href='#{base}guide/user-input.html') User Input
li: a(href='#{base}guide/forms.html') Forms li: a(href='#{base}guide/forms.html') Forms
li: a(href='#{base}guide/dependency-injection.html') Dependency Injection li: a(href='#{base}guide/dependency-injection.html') Dependency Injection
li: a(href='#{base}guide/template-syntax.html') Template Syntax li: a(href='#{base}guide/template-syntax.html') Template Syntax
@ -34,9 +34,9 @@
li: a(href='#{base}guide/hierarchical-dependency-injection.html') Hierarchical Injectors li: a(href='#{base}guide/hierarchical-dependency-injection.html') Hierarchical Injectors
li: a(href='#{base}guide/server-communication.html') Http Client li: a(href='#{base}guide/server-communication.html') Http Client
li: a(href='#{base}guide/lifecycle-hooks.html') Lifecycle Hooks li: a(href='#{base}guide/lifecycle-hooks.html') Lifecycle Hooks
li: a(href='#{base}guide/npm-packages.html') npm packages li: a(href='#{base}guide/npm-packages.html') Npm Packages
li: a(href='#{base}guide/pipes.html') Pipes li: a(href='#{base}guide/pipes.html') Pipes
li: a(href='#{base}guide/router.html') Routing and Navigation li: a(href='#{base}guide/router.html') Routing & Navigation
li: a(href='#{base}guide/structural-directives.html') Structural Directives li: a(href='#{base}guide/structural-directives.html') Structural Directives
li: a(href='#{base}guide/testing.html') Testing li: a(href='#{base}guide/testing.html') Testing
li: a(href='#{base}guide/typescript-configuration.html') TypeScript Configuration li: a(href='#{base}guide/typescript-configuration.html') TypeScript Configuration

View File

@ -56,7 +56,7 @@
}, },
"npm-packages": { "npm-packages": {
"title": "Lifecycle Hooks", "title": "Npm Packages",
"intro": "Details of the recommended npm packages and the different kinds of package dependencies" "intro": "Details of the recommended npm packages and the different kinds of package dependencies"
}, },