From b01a03c1b9c574f44a855dd4252af7d748539b63 Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Thu, 4 Sep 2014 16:49:16 +0100 Subject: [PATCH] docs(guide): add sortOrder to each page Finally we can control the order of the guide pages --- docs/content/guide/$location.ngdoc | 1 + docs/content/guide/animations.ngdoc | 1 + docs/content/guide/bootstrap.ngdoc | 1 + docs/content/guide/compiler.ngdoc | 1 + docs/content/guide/concepts.ngdoc | 1 + docs/content/guide/controller.ngdoc | 1 + docs/content/guide/css-styling.ngdoc | 1 + docs/content/guide/databinding.ngdoc | 1 + docs/content/guide/di.ngdoc | 1 + docs/content/guide/directive.ngdoc | 1 + docs/content/guide/e2e-testing.ngdoc | 2 +- docs/content/guide/expression.ngdoc | 1 + docs/content/guide/filter.ngdoc | 1 + docs/content/guide/forms.ngdoc | 1 + docs/content/guide/i18n.ngdoc | 1 + docs/content/guide/ie.ngdoc | 1 + docs/content/guide/introduction.ngdoc | 1 + docs/content/guide/migration.ngdoc | 1 + docs/content/guide/module.ngdoc | 1 + docs/content/guide/production.ngdoc | 1 + docs/content/guide/providers.ngdoc | 1 + docs/content/guide/scope.ngdoc | 1 + docs/content/guide/services.ngdoc | 1 + docs/content/guide/templates.ngdoc | 1 + docs/content/guide/unit-testing.ngdoc | 1 + 25 files changed, 25 insertions(+), 1 deletion(-) diff --git a/docs/content/guide/$location.ngdoc b/docs/content/guide/$location.ngdoc index 241bed03..75123925 100644 --- a/docs/content/guide/$location.ngdoc +++ b/docs/content/guide/$location.ngdoc @@ -1,5 +1,6 @@ @ngdoc overview @name Using $location +@sortOrder 500 @description # What does it do? diff --git a/docs/content/guide/animations.ngdoc b/docs/content/guide/animations.ngdoc index 79e47fff..871b6365 100644 --- a/docs/content/guide/animations.ngdoc +++ b/docs/content/guide/animations.ngdoc @@ -1,5 +1,6 @@ @ngdoc overview @name Animations +@sortOrder 310 @description diff --git a/docs/content/guide/bootstrap.ngdoc b/docs/content/guide/bootstrap.ngdoc index 11f77b35..678d4600 100644 --- a/docs/content/guide/bootstrap.ngdoc +++ b/docs/content/guide/bootstrap.ngdoc @@ -1,5 +1,6 @@ @ngdoc overview @name Bootstrap +@sortOrder 350 @description # Bootstrap diff --git a/docs/content/guide/compiler.ngdoc b/docs/content/guide/compiler.ngdoc index 32ceea1d..0df48191 100644 --- a/docs/content/guide/compiler.ngdoc +++ b/docs/content/guide/compiler.ngdoc @@ -1,5 +1,6 @@ @ngdoc overview @name HTML Compiler +@sortOrder 330 @description
diff --git a/docs/content/guide/concepts.ngdoc b/docs/content/guide/concepts.ngdoc index a1786e77..0ae07675 100644 --- a/docs/content/guide/concepts.ngdoc +++ b/docs/content/guide/concepts.ngdoc @@ -1,5 +1,6 @@ @ngdoc overview @name Conceptual Overview +@sortOrder 200 @description # Conceptual Overview diff --git a/docs/content/guide/controller.ngdoc b/docs/content/guide/controller.ngdoc index f0a6a8ce..ea86b13b 100644 --- a/docs/content/guide/controller.ngdoc +++ b/docs/content/guide/controller.ngdoc @@ -1,5 +1,6 @@ @ngdoc overview @name Controllers +@sortOrder 220 @description # Understanding Controllers diff --git a/docs/content/guide/css-styling.ngdoc b/docs/content/guide/css-styling.ngdoc index c96620b3..734f6c25 100644 --- a/docs/content/guide/css-styling.ngdoc +++ b/docs/content/guide/css-styling.ngdoc @@ -1,5 +1,6 @@ @ngdoc overview @name Working With CSS +@sortOrder 510 @description diff --git a/docs/content/guide/databinding.ngdoc b/docs/content/guide/databinding.ngdoc index 3362b8a8..cf03f7aa 100644 --- a/docs/content/guide/databinding.ngdoc +++ b/docs/content/guide/databinding.ngdoc @@ -1,5 +1,6 @@ @ngdoc overview @name Data Binding +@sortOrder 210 @description Data-binding in Angular apps is the automatic synchronization of data between the model and view diff --git a/docs/content/guide/di.ngdoc b/docs/content/guide/di.ngdoc index 115cdc48..c0f0a2ff 100644 --- a/docs/content/guide/di.ngdoc +++ b/docs/content/guide/di.ngdoc @@ -1,5 +1,6 @@ @ngdoc overview @name Dependency Injection +@sortOrder 250 @description # Dependency Injection diff --git a/docs/content/guide/directive.ngdoc b/docs/content/guide/directive.ngdoc index 5b6dfd95..1baeb68a 100644 --- a/docs/content/guide/directive.ngdoc +++ b/docs/content/guide/directive.ngdoc @@ -1,5 +1,6 @@ @ngdoc overview @name Directives +@sortOrder 300 @description # Creating Custom Directives diff --git a/docs/content/guide/e2e-testing.ngdoc b/docs/content/guide/e2e-testing.ngdoc index 514c159b..ad9d403c 100644 --- a/docs/content/guide/e2e-testing.ngdoc +++ b/docs/content/guide/e2e-testing.ngdoc @@ -1,6 +1,6 @@ -@workInProgress @ngdoc overview @name E2E Testing +@sortOrder 420 @description # E2E Testing diff --git a/docs/content/guide/expression.ngdoc b/docs/content/guide/expression.ngdoc index 9c406935..8bdbe99e 100644 --- a/docs/content/guide/expression.ngdoc +++ b/docs/content/guide/expression.ngdoc @@ -1,5 +1,6 @@ @ngdoc overview @name Expressions +@sortOrder 270 @description # Angular Expressions diff --git a/docs/content/guide/filter.ngdoc b/docs/content/guide/filter.ngdoc index a265157a..cfde1aab 100644 --- a/docs/content/guide/filter.ngdoc +++ b/docs/content/guide/filter.ngdoc @@ -1,5 +1,6 @@ @ngdoc overview @name Filters +@sortOrder 280 @description A filter formats the value of an expression for display to the user. They can be used in view templates, diff --git a/docs/content/guide/forms.ngdoc b/docs/content/guide/forms.ngdoc index 4f8144ce..e0a8e295 100644 --- a/docs/content/guide/forms.ngdoc +++ b/docs/content/guide/forms.ngdoc @@ -1,5 +1,6 @@ @ngdoc overview @name Forms +@sortOrder 290 @description Controls (`input`, `select`, `textarea`) are ways for a user to enter data. diff --git a/docs/content/guide/i18n.ngdoc b/docs/content/guide/i18n.ngdoc index a4a0f737..78640feb 100644 --- a/docs/content/guide/i18n.ngdoc +++ b/docs/content/guide/i18n.ngdoc @@ -1,5 +1,6 @@ @ngdoc overview @name i18n and l10n +@sortOrder 520 @description # i18n and l10n diff --git a/docs/content/guide/ie.ngdoc b/docs/content/guide/ie.ngdoc index d5facc9e..7260aea0 100644 --- a/docs/content/guide/ie.ngdoc +++ b/docs/content/guide/ie.ngdoc @@ -1,5 +1,6 @@ @ngdoc overview @name Internet Explorer Compatibility +@sortOrder 530 @description # Internet Explorer Compatibility diff --git a/docs/content/guide/introduction.ngdoc b/docs/content/guide/introduction.ngdoc index dfb04f49..3fd33cc4 100644 --- a/docs/content/guide/introduction.ngdoc +++ b/docs/content/guide/introduction.ngdoc @@ -1,5 +1,6 @@ @ngdoc overview @name Introduction +@sortOrder 100 @description diff --git a/docs/content/guide/migration.ngdoc b/docs/content/guide/migration.ngdoc index ee8894c0..97c1eefc 100644 --- a/docs/content/guide/migration.ngdoc +++ b/docs/content/guide/migration.ngdoc @@ -1,5 +1,6 @@ @ngdoc overview @name Migrating from Previous Versions +@sortOrder 550 @description Minor version releases in AngularJS introduce several breaking changes that may require changes to your diff --git a/docs/content/guide/module.ngdoc b/docs/content/guide/module.ngdoc index 0b029790..451bb11f 100644 --- a/docs/content/guide/module.ngdoc +++ b/docs/content/guide/module.ngdoc @@ -1,5 +1,6 @@ @ngdoc overview @name Modules +@sortOrder 320 @description # What is a Module? diff --git a/docs/content/guide/production.ngdoc b/docs/content/guide/production.ngdoc index 996e0486..a8c85d2a 100644 --- a/docs/content/guide/production.ngdoc +++ b/docs/content/guide/production.ngdoc @@ -1,5 +1,6 @@ @ngdoc overview @name Running in Production +@sortOrder 540 @description # Running an AngularJS App in Production diff --git a/docs/content/guide/providers.ngdoc b/docs/content/guide/providers.ngdoc index df91c807..7ac931eb 100644 --- a/docs/content/guide/providers.ngdoc +++ b/docs/content/guide/providers.ngdoc @@ -1,5 +1,6 @@ @ngdoc overview @name Providers +@sortOrder 340 @description # Providers diff --git a/docs/content/guide/scope.ngdoc b/docs/content/guide/scope.ngdoc index 6b748957..d42538ba 100644 --- a/docs/content/guide/scope.ngdoc +++ b/docs/content/guide/scope.ngdoc @@ -1,5 +1,6 @@ @ngdoc overview @name Scopes +@sortOrder 240 @description # What are Scopes? diff --git a/docs/content/guide/services.ngdoc b/docs/content/guide/services.ngdoc index 8be20da4..39519454 100644 --- a/docs/content/guide/services.ngdoc +++ b/docs/content/guide/services.ngdoc @@ -1,5 +1,6 @@ @ngdoc overview @name Services +@sortOrder 230 @description # Services diff --git a/docs/content/guide/templates.ngdoc b/docs/content/guide/templates.ngdoc index 8b60579f..f1954b5d 100644 --- a/docs/content/guide/templates.ngdoc +++ b/docs/content/guide/templates.ngdoc @@ -1,5 +1,6 @@ @ngdoc overview @name Templates +@sortOrder 260 @description In Angular, templates are written with HTML that contains Angular-specific elements and attributes. diff --git a/docs/content/guide/unit-testing.ngdoc b/docs/content/guide/unit-testing.ngdoc index f7c4ecbd..537422a2 100644 --- a/docs/content/guide/unit-testing.ngdoc +++ b/docs/content/guide/unit-testing.ngdoc @@ -1,5 +1,6 @@ @ngdoc overview @name Unit Testing +@sortOrder 410 @description JavaScript is a dynamically typed language which comes with great power of expression, but it also