aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/guide
AgeCommit message (Collapse)Author
2013-10-08docs(guide/animations): improve animations guideBrian Ford
2013-10-03docs(guide/directive): clarify use of binding to scopesgdennie
The use of 'angular' as sample text is confusing to the newbie in that they are forced to confirm that the text 'angular' is not a keyword or otherwise referring to a system component. This is changed to a more obvious sample text. The most common form of `ngBind` is moved to the top of the list. Closes #4237
2013-10-03docs(guide/directive): fix indentation in example codemtaran-google
Closes #4241
2013-10-03docs(guide/$location): fix broken example demoPete Bacon Darwin
The demo of the hash-bang vs html5-mode deep links was broken since the introduction of a check for previously bootstrapped elements. See this commit: 3ee744cc63 We fix this problem by applying a null for the injector value of the element of the at the root of the sub-app. It also turns out that it was not necessary, and if fact broke the demo, to replace the $document service for the sub-app. This was because the $compile service calls `$document.createElement()`, which doesn't exist on a `div`. Finally, the bootstrap CSS was limiting the width of the ngAddress bar input box, which made it difficult to see the changing URLs.
2013-10-03docs(guide/$location): replace host.com addresses with example.comFreek Wielstra
The host.com links on this documentation page took you to an ad page of dubious content. Now changed to example.com, in accordance with RFC 2606 Closes #4206
2013-09-30docs(guide): describe directive replace:falseRon Waldon
Previous version stated `replace:false` will append template to element. Improve description to accurately state that template will _replace_ the contents of the current element. Closes #2235, #4166
2013-09-28docs(guide/overview): fix typoThomas Tuts
Closes #4188
2013-09-27docs(guide/e2e-testing): select also uses ng-model (like input)joscarsson
This is specified for input fields, but not for selects. This change specifies it also for select().
2013-09-27docs(overview.ngdoc): fix small typo in overview.ngdocLane Goldberg
2013-09-26docs(guide/services): fix another typoPete Bacon Darwin
2013-09-25docs(guide/services): fix typoMichael Kueller
Closes #4112
2013-09-25docs(guide/$location): provide a title for section about `replace()`gdennie
Closes #4104
2013-09-25docs(guide/$location): clarify $location service rolegdennie
Clean up confusing use of the term URL to refer to $location as well as 'URL in the browser'. Closes #4103
2013-09-25docs(guide/e2e-testing): Fix typojanhartigan
Closes #4100
2013-09-19docs(guide/services): rewording of explanationPete Bacon Darwin
2013-09-19docs(guide/services): explain services in plain languageanilgulecha
See the discussion at http://docs.angularjs.org/guide/dev_guide.services.understanding_services#comment-1002821035 Closes #4055
2013-09-19docs(guide/i18n): change non-existent de-ge to de-deMaarten Stolte
The de-ge locale does not exist Closes #4053
2013-09-18docs(guide/$location): describe workaround for collocated appsAsh
When using Angular in the root of a domain with HTML5 URLs where there are links to external paths within the same directory, the `otherwise` route handler will catch these external files. This can be fixed by prefixing '.' onto the links to URLs that should be handled by angular routing. Original Issue: #3520 Example of Fix: http://fiddle.jshell.net/fgHf6/3/ Closes #3555
2013-09-15docs(guide/bootstrap): add info about deferred bootstrapPete Bacon Darwin
2013-09-14docs(guide/forms): add comma for clarityts-web
Closes #3985
2013-09-13docs(guide/e2e_testing): clarify that .enter searches by ng-modelbrakon
2013-09-11docs(guide/concepts): remove div-clear-tags that break the formattingRandi Hillerøe
Closes #3974
2013-09-09docs(forms.ngdoc): fix spacing in exampleAnthony Tran
Closes #3930
2013-09-05docs(css_styling_guide): add ng-scope and ng-binding classesNick Donohue
I noticed angular was adding these css classes to elements and believe they should be listed in the documentation at this page. The ng-scope class is mentioned in the developer guide, hence the link there, and the ng-binding class is not mentioned anywhere else in the documentation or the guide that I found. Closes #3728
2013-09-05docs(bootstrap.ngdoc): clarify bootstrap exampleCalvin Fernandez
Clear up confusion about module declaration when using manual bootstrap.
2013-08-29docs(guide): remove duplicated `require` sectiontomazy
2013-08-28docs(guide): update description of $inject mechanism to be a little clearerphanboy4
2013-08-22docs(overview): improve grammarBrian Ford
2013-08-22docs(guide): warn about module creation versus retrievalghodss
Updated Module documentation to include the suggestion of the top-rated comment: "This documentation should warn that "angular.module('myModule', [])" always creates a new module, but "angular.module('myModule')" always retrieves an existing reference."
2013-08-22docs(guide): grammatical corrections to Form and Control definitionsMarcel Morgan
2013-08-03docs(guide/controller): fix wording in list of 'Do not use'Mark Campbell
Wording has been changed in two of the examples to read naturally. For example: From: 'Do not use controllers for to run stateless or stateful code shared across controllers' To: 'Do not use controllers for sharing stateless or stateful code across controllers' Closes #3454
2013-07-31feat(directive): support as instance syntaxLucas Galfasó
Support controller: 'MyController as my' syntax for directives which publishes the controller instance to the directive scope. Support controllerAs syntax to define an alias to the controller within the directive scope.
2013-07-25feat($sce): new $sce service for Strict Contextual Escaping.Chirayu Krishnappa
$sce is a service that provides Strict Contextual Escaping services to AngularJS. Strict Contextual Escaping -------------------------- Strict Contextual Escaping (SCE) is a mode in which AngularJS requires bindings in certain contexts to result in a value that is marked as safe to use for that context One example of such a context is binding arbitrary html controlled by the user via ng-bind-html-unsafe. We refer to these contexts as privileged or SCE contexts. As of version 1.2, Angular ships with SCE enabled by default. Note: When enabled (the default), IE8 in quirks mode is not supported. In this mode, IE8 allows one to execute arbitrary javascript by the use of the expression() syntax. Refer http://blogs.msdn.com/b/ie/archive/2008/10/16/ending-expressions.aspx to learn more about them. You can ensure your document is in standards mode and not quirks mode by adding <!doctype html> to the top of your HTML document. SCE assists in writing code in way that (a) is secure by default and (b) makes auditing for security vulnerabilities such as XSS, clickjacking, etc. a lot easier. Here's an example of a binding in a privileged context: <input ng-model="userHtml"> <div ng-bind-html-unsafe="{{userHtml}}"> Notice that ng-bind-html-unsafe is bound to {{userHtml}} controlled by the user. With SCE disabled, this application allows the user to render arbitrary HTML into the DIV. In a more realistic example, one may be rendering user comments, blog articles, etc. via bindings. (HTML is just one example of a context where rendering user controlled input creates security vulnerabilities.) For the case of HTML, you might use a library, either on the client side, or on the server side, to sanitize unsafe HTML before binding to the value and rendering it in the document. How would you ensure that every place that used these types of bindings was bound to a value that was sanitized by your library (or returned as safe for rendering by your server?) How can you ensure that you didn't accidentally delete the line that sanitized the value, or renamed some properties/fields and forgot to update the binding to the sanitized value? To be secure by default, you want to ensure that any such bindings are disallowed unless you can determine that something explicitly says it's safe to use a value for binding in that context. You can then audit your code (a simple grep would do) to ensure that this is only done for those values that you can easily tell are safe - because they were received from your server, sanitized by your library, etc. You can organize your codebase to help with this - perhaps allowing only the files in a specific directory to do this. Ensuring that the internal API exposed by that code doesn't markup arbitrary values as safe then becomes a more manageable task. In the case of AngularJS' SCE service, one uses $sce.trustAs (and shorthand methods such as $sce.trustAsHtml, etc.) to obtain values that will be accepted by SCE / privileged contexts. In privileged contexts, directives and code will bind to the result of $sce.getTrusted(context, value) rather than to the value directly. Directives use $sce.parseAs rather than $parse to watch attribute bindings, which performs the $sce.getTrusted behind the scenes on non-constant literals. As an example, ngBindHtmlUnsafe uses $sce.parseAsHtml(binding expression). Here's the actual code (slightly simplified): var ngBindHtmlUnsafeDirective = ['$sce', function($sce) { return function(scope, element, attr) { scope.$watch($sce.parseAsHtml(attr.ngBindHtmlUnsafe), function(value) { element.html(value || ''); }); }; }]; Impact on loading templates --------------------------- This applies both to the ng-include directive as well as templateUrl's specified by directives. By default, Angular only loads templates from the same domain and protocol as the application document. This is done by calling $sce.getTrustedResourceUrl on the template URL. To load templates from other domains and/or protocols, you may either either whitelist them or wrap it into a trusted value. *Please note*: The browser's Same Origin Policy and Cross-Origin Resource Sharing (CORS) policy apply in addition to this and may further restrict whether the template is successfully loaded. This means that without the right CORS policy, loading templates from a different domain won't work on all browsers. Also, loading templates from file:// URL does not work on some browsers. This feels like too much overhead for the developer? ---------------------------------------------------- It's important to remember that SCE only applies to interpolation expressions. If your expressions are constant literals, they're automatically trusted and you don't need to call $sce.trustAs on them. e.g. <div ng-html-bind-unsafe="'<b>implicitly trusted</b>'"></div> just works. Additionally, a[href] and img[src] automatically sanitize their URLs and do not pass them through $sce.getTrusted. SCE doesn't play a role here. The included $sceDelegate comes with sane defaults to allow you to load templates in ng-include from your application's domain without having to even know about SCE. It blocks loading templates from other domains or loading templates over http from an https served document. You can change these by setting your own custom whitelists and blacklists for matching such URLs. This significantly reduces the overhead. It is far easier to pay the small overhead and have an application that's secure and can be audited to verify that with much more ease than bolting security onto an application later.
2013-07-24docs(directive): Clarified and cleaned up directive guideDean Sofer
- corrected terminology about how directives use `require` - added more variations to the DirectiveDefinitionObject - removed some slightly superfluous text docs(directive): Minor correction to example to avoid bad practice Anchor tags should use `ng-href` instead of `href` for interpolation. docs(directive): Supplementing DDO description DDO = Directive Definition Object Tweak recommended here: https://github.com/angular/angular.js/pull/2888/files#r4664565
2013-07-23docs(bootstrap): Note that ngScenario requires ngAppBraden Shepherdson
ngScenario expects an ngApp directive to be used, and doesn't work for manually bootstrapped apps. The failure mode is to hang on navigation. Trying to make this wont-fix bug less obscure by documenting it. Eventually Protractor will replace ngScenario and fix this.
2013-07-14docs(di): promote registering controllers on modulessdesmond
2013-07-10docs(guide): clarify examplesdesmond
2013-07-10docs(guide): example filter does not conditionally assign a colorsdesmond
2013-07-10docs(guide/di): fix typoRobert Fauver
2013-07-10docs(overview): fix typoLefteris Paraskevas
Removed repeated "the" in the sentence: The input invalidates itself by turning red when you enter invalid data or leave "the" the input fields blank (Line 137).
2013-07-07docs(guide/e2e-testing): fix typostgkokk
2013-07-04docs(guide/directive): make directive controller minification-safeAndrew O'Brien
It is best to emphasize that the "controller" property needs to be min safe Closes #3125
2013-07-02docs(guide/location): fix example code - `hashPrefix` is a methodNiall Smart
2013-06-27docs(guide/e2e-testing): clarify description of input(name) selectorAdam
The description of the input selector made it seem that you were selecting an input element based upon it's name attribute. In reality, you are selecting an element by the string in the ng-model attribute.
2013-06-25docs(guide/controller): fix an error in the scope inheritance exampleJeffrey Palmer
The chained scope creation example at the bottom of this document was using the childCtrl to create the babyScope, instead of the childScope.
2013-06-25docs(guide/expression): remove reference to `NullPointerException`Domenic Denicola
2013-06-19feat(jqLite): switch bind/unbind to more recent jQuery on/offMichał Gołębiowski
jQuery switched to a completely new event binding implementation as of 1.7.0, centering around on/off methods instead of previous bind/unbind. This patch makes jqLite match this implementation while still supporting previous bind/unbind methods.
2013-06-19docs(directive): fix typosarkasm
2013-06-13docs(guide/di): fix headings hierarchyOre Landau
2013-06-13docs(guide/e2e-testing): fix verb tenseJad Naous