From 7db66848866d03253f492a97a4c519ef7e83de16 Mon Sep 17 00:00:00 2001 From: Patrice Chalin Date: Wed, 8 Jun 2016 08:02:57 -0700 Subject: [PATCH] chore(dart): add/cleanup example hosting config files (#1605) --- public/docs/_examples/architecture/dart/.docsync.json | 4 ++-- .../docs/_examples/attribute-directives/dart/.docsync.json | 4 ++++ .../docs/_examples/dependency-injection/dart/.docsync.json | 4 ++-- public/docs/_examples/displaying-data/dart/.docsync.json | 4 ++-- public/docs/_examples/forms/dart/.docsync.json | 4 ++-- .../hierarchical-dependency-injection/dart/.docsync.json | 4 ++++ public/docs/_examples/pipes/dart/.docsync.json | 4 ++++ public/docs/_examples/quickstart/dart/.docsync.json | 3 +++ .../docs/_examples/server-communication/dart/.docsync.json | 4 ++-- public/docs/_examples/template-syntax/dart/.docsync.json | 4 ++-- public/docs/_examples/toh-1/dart/.docsync.json | 5 +++++ public/docs/_examples/toh-2/dart/.docsync.json | 5 +++++ public/docs/_examples/toh-3/dart/.docsync.json | 5 +++++ public/docs/_examples/toh-4/dart/.docsync.json | 5 +++++ public/docs/_examples/toh-5/dart/.docsync.json | 5 +++++ public/docs/_examples/user-input/dart/.docsync.json | 4 ++-- 16 files changed, 54 insertions(+), 14 deletions(-) create mode 100644 public/docs/_examples/attribute-directives/dart/.docsync.json create mode 100644 public/docs/_examples/hierarchical-dependency-injection/dart/.docsync.json create mode 100644 public/docs/_examples/pipes/dart/.docsync.json create mode 100644 public/docs/_examples/quickstart/dart/.docsync.json create mode 100644 public/docs/_examples/toh-1/dart/.docsync.json create mode 100644 public/docs/_examples/toh-2/dart/.docsync.json create mode 100644 public/docs/_examples/toh-3/dart/.docsync.json create mode 100644 public/docs/_examples/toh-4/dart/.docsync.json create mode 100644 public/docs/_examples/toh-5/dart/.docsync.json diff --git a/public/docs/_examples/architecture/dart/.docsync.json b/public/docs/_examples/architecture/dart/.docsync.json index f47a6645ce..59471b5a08 100644 --- a/public/docs/_examples/architecture/dart/.docsync.json +++ b/public/docs/_examples/architecture/dart/.docsync.json @@ -1,4 +1,4 @@ { - "name": "Architecture overview", - "docHref": "https://angular.io/docs/dart/latest/guide/architecture.html" + "title": "Architecture Overview", + "docPart": "guide" } diff --git a/public/docs/_examples/attribute-directives/dart/.docsync.json b/public/docs/_examples/attribute-directives/dart/.docsync.json new file mode 100644 index 0000000000..de4f8418ee --- /dev/null +++ b/public/docs/_examples/attribute-directives/dart/.docsync.json @@ -0,0 +1,4 @@ +{ + "title": "Attribute Directives", + "docPart": "guide" +} diff --git a/public/docs/_examples/dependency-injection/dart/.docsync.json b/public/docs/_examples/dependency-injection/dart/.docsync.json index 3695627e50..fe3b9a3073 100644 --- a/public/docs/_examples/dependency-injection/dart/.docsync.json +++ b/public/docs/_examples/dependency-injection/dart/.docsync.json @@ -1,4 +1,4 @@ { - "name": "Dependency injection", - "docHref": "https://angular.io/docs/dart/latest/guide/dependency-injection.html" + "title": "Dependency Injection", + "docPart": "guide" } diff --git a/public/docs/_examples/displaying-data/dart/.docsync.json b/public/docs/_examples/displaying-data/dart/.docsync.json index 3d1d13a2df..b5fefc76cc 100644 --- a/public/docs/_examples/displaying-data/dart/.docsync.json +++ b/public/docs/_examples/displaying-data/dart/.docsync.json @@ -1,4 +1,4 @@ { - "name": "Displaying data", - "docHref": "https://angular.io/docs/dart/latest/guide/displaying-data.html" + "title": "Displaying Data", + "docPart": "guide" } diff --git a/public/docs/_examples/forms/dart/.docsync.json b/public/docs/_examples/forms/dart/.docsync.json index 066f6e56e9..962346743f 100644 --- a/public/docs/_examples/forms/dart/.docsync.json +++ b/public/docs/_examples/forms/dart/.docsync.json @@ -1,4 +1,4 @@ { - "name": "Forms", - "docHref": "https://angular.io/docs/dart/latest/guide/forms.html" + "title": "Forms", + "docPart": "guide" } diff --git a/public/docs/_examples/hierarchical-dependency-injection/dart/.docsync.json b/public/docs/_examples/hierarchical-dependency-injection/dart/.docsync.json new file mode 100644 index 0000000000..a458150445 --- /dev/null +++ b/public/docs/_examples/hierarchical-dependency-injection/dart/.docsync.json @@ -0,0 +1,4 @@ +{ + "title": "Hierarchical Dependency Injection", + "docPart": "guide" +} diff --git a/public/docs/_examples/pipes/dart/.docsync.json b/public/docs/_examples/pipes/dart/.docsync.json new file mode 100644 index 0000000000..7b5fe18832 --- /dev/null +++ b/public/docs/_examples/pipes/dart/.docsync.json @@ -0,0 +1,4 @@ +{ + "title": "Pipes", + "docPart": "guide" +} diff --git a/public/docs/_examples/quickstart/dart/.docsync.json b/public/docs/_examples/quickstart/dart/.docsync.json new file mode 100644 index 0000000000..f8dc055278 --- /dev/null +++ b/public/docs/_examples/quickstart/dart/.docsync.json @@ -0,0 +1,3 @@ +{ + "title": "QuickStart" +} diff --git a/public/docs/_examples/server-communication/dart/.docsync.json b/public/docs/_examples/server-communication/dart/.docsync.json index baa578054f..4dc63783c9 100644 --- a/public/docs/_examples/server-communication/dart/.docsync.json +++ b/public/docs/_examples/server-communication/dart/.docsync.json @@ -1,4 +1,4 @@ { - "name": "HTTP client (server communication)", - "docHref": "https://angular.io/docs/dart/latest/guide/server-communication.html" + "title": "HTTP Client (Server Communication)", + "docPart": "guide" } diff --git a/public/docs/_examples/template-syntax/dart/.docsync.json b/public/docs/_examples/template-syntax/dart/.docsync.json index 0caee30723..8156f76401 100644 --- a/public/docs/_examples/template-syntax/dart/.docsync.json +++ b/public/docs/_examples/template-syntax/dart/.docsync.json @@ -1,4 +1,4 @@ { - "name": "Template Syntax", - "docHref": "https://angular.io/docs/ts/latest/guide/template-syntax.html" + "title": "Template Syntax", + "docPart": "guide" } diff --git a/public/docs/_examples/toh-1/dart/.docsync.json b/public/docs/_examples/toh-1/dart/.docsync.json new file mode 100644 index 0000000000..7ea3bce8f9 --- /dev/null +++ b/public/docs/_examples/toh-1/dart/.docsync.json @@ -0,0 +1,5 @@ +{ + "title": "Tour of Heroes: The Hero Editor", + "docPart": "tutorial", + "docHref": "toh-pt1.html" +} diff --git a/public/docs/_examples/toh-2/dart/.docsync.json b/public/docs/_examples/toh-2/dart/.docsync.json new file mode 100644 index 0000000000..7b3eecf567 --- /dev/null +++ b/public/docs/_examples/toh-2/dart/.docsync.json @@ -0,0 +1,5 @@ +{ + "title": "Tour of Heroes: Master/Detail", + "docPart": "tutorial", + "docHref": "toh-pt2.html" +} diff --git a/public/docs/_examples/toh-3/dart/.docsync.json b/public/docs/_examples/toh-3/dart/.docsync.json new file mode 100644 index 0000000000..b6418ebe94 --- /dev/null +++ b/public/docs/_examples/toh-3/dart/.docsync.json @@ -0,0 +1,5 @@ +{ + "title": "Tour of Heroes: Multiple Components", + "docPart": "tutorial", + "docHref": "toh-pt3.html" +} diff --git a/public/docs/_examples/toh-4/dart/.docsync.json b/public/docs/_examples/toh-4/dart/.docsync.json new file mode 100644 index 0000000000..fa76636c8e --- /dev/null +++ b/public/docs/_examples/toh-4/dart/.docsync.json @@ -0,0 +1,5 @@ +{ + "title": "Tour of Heroes: Services", + "docPart": "tutorial", + "docHref": "toh-pt4.html" +} diff --git a/public/docs/_examples/toh-5/dart/.docsync.json b/public/docs/_examples/toh-5/dart/.docsync.json new file mode 100644 index 0000000000..74d2e1165a --- /dev/null +++ b/public/docs/_examples/toh-5/dart/.docsync.json @@ -0,0 +1,5 @@ +{ + "title": "Tour of Heroes: Routing", + "docPart": "tutorial", + "docHref": "toh-pt5.html" +} diff --git a/public/docs/_examples/user-input/dart/.docsync.json b/public/docs/_examples/user-input/dart/.docsync.json index 7538cfa2a0..14a4c32d55 100644 --- a/public/docs/_examples/user-input/dart/.docsync.json +++ b/public/docs/_examples/user-input/dart/.docsync.json @@ -1,4 +1,4 @@ { - "name": "User input", - "docHref": "https://angular.io/docs/dart/latest/guide/user-input.html" + "title": "User Input", + "docPart": "guide" }