diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 50ed8a2b8f13..0f73c4f67efd 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -20,7 +20,7 @@ -**Which versions of Angular, and which browser / OS are affected by this issue? Did this work in previous versions of Angular? Please also test with the latest stable and snapshot (https://code.angularjs.org/snapshot/) versions.** +**Which versions of AngularJS, and which browser / OS are affected by this issue? Did this work in previous versions of AngularJS? Please also test with the latest stable and snapshot (https://code.angularjs.org/snapshot/) versions.** diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 83def1e87ae7..22849d948da2 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -15,7 +15,7 @@ today! Here are the guidelines we'd like you to follow: ## Code of Conduct -Help us keep Angular open and inclusive. Please read and follow our [Code of Conduct][coc]. +Help us keep AngularJS open and inclusive. Please read and follow our [Code of Conduct][coc]. ## Got a Question or Problem? @@ -29,7 +29,7 @@ If you find a bug in the source code or a mistake in the documentation, you can submitting an issue to our [GitHub Repository][github]. Even better you can submit a Pull Request with a fix. -**Localization Issues:** Angular.js uses the [Google Closure I18N library] to generate +**Localization Issues:** AngularJS uses the [Google Closure I18N library] to generate its own I18N files (the ngLocale module). This means that any changes to these files would be lost the next time that we import the library. Since the Closure library i18n data is itself auto-generated from the data of the @@ -81,7 +81,7 @@ quickly: * **Overview of the Issue** - if an error is being thrown a non-minified stack trace helps * **Motivation for or Use Case** - explain why this is a bug for you -* **Angular Version(s)** - is it a regression? +* **AngularJS Version(s)** - is it a regression? * **Browsers and Operating System** - is this a problem with all browsers or only specific ones? * **Reproduce the Error** - provide a live example (using [Plunker][plunker] or [JSFiddle][jsfiddle]) or an unambiguous set of steps. @@ -108,7 +108,7 @@ Before you submit your pull request consider the following guidelines: * Create your patch, **including appropriate test cases**. * Follow our [Coding Rules](#rules). -* Run the full Angular test suite, as described in the [developer documentation][dev-doc], +* Run the full AngularJS test suite, as described in the [developer documentation][dev-doc], and ensure that all tests pass. * Commit your changes using a descriptive commit message that follows our [commit message conventions](#commit) and passes our commit message presubmit hook @@ -132,11 +132,11 @@ Before you submit your pull request consider the following guidelines: git push origin my-fix-branch ``` -In GitHub, send a pull request to `angular:master`. +In GitHub, send a pull request to `angular.js:master`. If we suggest changes, then: * Make the required updates. -* Re-run the Angular test suite to ensure tests are still passing. +* Re-run the AngularJS test suite to ensure tests are still passing. * Commit your changes to your branch (e.g. `my-fix-branch`). * Push the changes to your GitHub repository (this will update your Pull Request). @@ -189,10 +189,10 @@ To ensure consistency throughout the source code, keep these rules in mind as yo * All features or bug fixes **must be tested** by one or more [specs][unit-testing]. * All public API methods **must be documented** with ngdoc, an extended version of jsdoc (we added support for markdown and templating via @ngdoc tag). To see how we document our APIs, please check - out the existing ngdocs and see [this wiki page][ngDocs]. + out the existing source code and see [this wiki page][ngDocs]. * With the exceptions listed below, we follow the rules contained in [Google's JavaScript Style Guide][js-style-guide]: - * **Do not use namespaces**: Instead, wrap the entire angular code base in an anonymous closure and + * **Do not use namespaces**: Instead, wrap the entire AngularJS code base in an anonymous closure and export our API explicitly rather than implicitly. * Wrap all code at **100 characters**. * Instead of complex inheritance hierarchies, we **prefer simple objects**. We use prototypal diff --git a/README.closure.md b/README.closure.md index aa237ef5a508..21ef84770da0 100644 --- a/README.closure.md +++ b/README.closure.md @@ -7,7 +7,7 @@ in its `contrib/externs` directory. The definitions contain externs for use with the Closure compiler (aka JSCompiler). Passing these files to the --externs parameter of a compiler pass allows using type annotations for AngularJS objects. For example, -Angular's $scope objects can be annotated as: +AngularJS's $scope objects can be annotated as: ```js /** @type {angular.Scope} */ var scope = $scope; diff --git a/README.md b/README.md index bc3b9554a61c..c6a8dd5c369c 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ piece of cake. Best of all? It makes development fun! * Contribution guidelines: [CONTRIBUTING.md](https://github.com/angular/angular.js/blob/master/CONTRIBUTING.md) * Dashboard: https://dashboard.angularjs.org -##### Looking for Angular 2? Go here: https://github.com/angular/angular +##### Looking for the new Angular? Go here: https://github.com/angular/angular Building AngularJS --------- @@ -80,7 +80,7 @@ HTML is also used to determine the wiring of the app. Special attributes in the to load the app, which components or controllers to use for each element, etc. We specify "what" gets loaded, but not "how". This declarative approach greatly simplifies app development in a sort of WYSIWYG way. Rather than spending time on how the program flows and orchestrating the various -moving parts, we simply define what we want and Angular will take care of the dependencies. +moving parts, we simply define what we want and AngularJS will take care of the dependencies. #### Data Handling made simple Data and Data Models in AngularJS are plain JavaScript objects and one can add and change properties diff --git a/TRIAGING.md b/TRIAGING.md index 99621915b8e4..0dc6ee357232 100644 --- a/TRIAGING.md +++ b/TRIAGING.md @@ -1,6 +1,6 @@ # Triage new issues/PRs on github -This document shows the steps the Angular team is using to triage issues. +This document shows the steps the AngularJS team is using to triage issues. The labels are used later on for [planning releases](#assigning-work). @@ -45,12 +45,12 @@ This process based on the idea of minimizing user pain 1. Label `frequency: *` – How often does this issue come up? How many developers does this affect? Chose just one of the following: * low - obscure issue affecting a handful of developers * moderate - impacts a common usage pattern - * high - impacts most or all Angular apps + * high - impacts most or all AngularJS apps 1. Label `severity: *` - How bad is the issue? Chose just one of the following: * security issue * regression * memory leak - * broken expected use - it's hard or impossible for a developer using Angular to accomplish something that Angular should be able to do + * broken expected use - it's hard or impossible for a developer using AngularJS to accomplish something that AngularJS should be able to do * confusing - unexpected or inconsistent behavior; hard-to-debug * inconvenience - causes ugly/boilerplate code in apps 1. Label `component: *` diff --git a/docs/config/templates/app/indexPage.template.html b/docs/config/templates/app/indexPage.template.html index 602df1619a65..75abb7190280 100644 --- a/docs/config/templates/app/indexPage.template.html +++ b/docs/config/templates/app/indexPage.template.html @@ -76,7 +76,7 @@
- +