aboutsummaryrefslogtreecommitdiffstats
path: root/docs/src/templates/js
AgeCommit message (Collapse)Author
2014-02-16chore(doc-gen): new docsPeter Bacon Darwin
chore(doc-gen): implement dgeni
2014-01-28docs(cookbook): remove the cookbook docsJulie
The cookbook docs are now superceded by the guide. They are no longer available in any menus and the only way to find them is to search for them. Remove! Closes #5967
2014-01-24docs(search): make sure the forward slash doesn't focus on search while on ↵Matias Niemelä
another input element Closes #5969
2014-01-14docs(docs): preserve path to current doc page when switching versionsSebastian Müller
Preserve URL path when switching between doc versions. Closes #4661 Closes #5773
2013-12-09docs(tutorial): enlarge clickable area of tutorial nav buttonsShane M. Pelletier
Change position of <a> and <li> tags in tutorial nav buttons partial. This allows the full area of the button to be clicked rather than just the text. Closes #5074 Closes #5209
2013-11-28chore(docs): fix back-to-top anchor in angularjs.org doc pagesPeter Bacon Darwin
Closes https://github.com/angular/angularjs.org/issues/45
2013-11-22chore(docs): remove Disqus commentsBrian Ford
We don't actively moderate these comments, and they range from out of date, to inflammatory, to spam. Going forward, improvements to the docs should be done via a PR, and questions should go on StackOverflow where they can be curated and kept up to date by AngularJS developers who help out there.
2013-11-06fix(docModuleComponents): implement anchor scroll when content addedJeff Cross
When navigating to URLs such as docs.angularjs.org/api/ng#filter, the browser was not able to navigate to the named anchor, "filter," because the anchor did not yet exist in the DOM. This fix uses the $anchorScroll service to automatically scroll to the right place when the content has been added to the page. Fixes #4703
2013-10-24chore(ngdocs): ensure the docs menu changes when browsing a different sectionMatias Niemelä
Closes #4619
2013-10-23feat(docs): provide index pages for each angular moduleMatias Niemelä
2013-10-22feat(ngdocs): add forward slash shortcut key for search barMatias Niemelä
2013-10-22fix(ngdocs): remove the side search barMatias Niemelä
BREAKING CHANGE The side search bar on the docs page has been removed in favor of the top search bar.
2013-10-08feat(tutorial): add step 12 of the phonecat tutorialBrian Ford
2013-09-30fix(docs.js): handle empty deps array for plunkr/jsfiddleJames Daily
Change return value of docsApp.serviceFactory.prepareDefaultAppModule to include empty array `[]` instead of array containing one empty string element `['']`. This will correct script.js for simple plunkr/jsfiddle examples such as [ngChecked](http://docs.angularjs.org/api/ng.directive:ngChecked).
2013-09-27feat(docs): linkify error messages on minErr docs pagesKen Sheedlo
2013-08-23chore(ngdocs): fix the version jumperMatias Niemelä
correct the ordering and make gen-docs prepare the list of versions during the build process
2013-08-16chore(ngdocs): disable lunr search during e2e testsIgor Minar
lunr has been responsible for slowdown in our test suite by adding ~1sec per end-to-end test. (this is because it initializes the index when the app starts) since out test suite primarily tests the examples, it's reasonable do disable the search as a temporary meansure. the real fix is to use protractor and extract all of the examples into standalone apps which can be tested without bootstrapping the whole docs app.
2013-08-14chore(ngdocs): fixup the docs version switcherIgor Minar
2013-08-05fix(tutorial): show tutorial pages in search navKen Sheedlo
2013-08-01fix(docs): handle the empty string in errorDisplayKen Sheedlo
2013-07-29chore(ngdocs): fixed jsFiddle/Plunkr examples to include ngAnimate and use a ↵Matias Niemelä
default App the module is not set
2013-07-29fix(ngdocs): make jsFiddle and Plunkr links work with external AngularJS modulesMatias Niemelä
2013-07-26chore(ngdocs): fix docs search to properly hide the X button when collapsedMatias Niemelä
2013-07-26feat(ngAnimate): complete rewrite of animationsMatias Niemelä
- ngAnimate directive is gone and was replaced with class based animations/transitions - support for triggering animations on css class additions and removals - done callback was added to all animation apis - $animation and $animator where merged into a single $animate service with api: - $animate.enter(element, parent, after, done); - $animate.leave(element, done); - $animate.move(element, parent, after, done); - $animate.addClass(element, className, done); - $animate.removeClass(element, className, done); BREAKING CHANGE: too many things changed, we'll write up a separate doc with migration instructions
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(minErr): Build minErr doc siteKen Sheedlo
2013-06-21fix(docs): set ng-app for editing with plunkerChirayu Krishnappa
Closes #3011
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-18chore(ngdocs): change minimum search length requirementMatias Niemelä
2013-06-18chore(ngdocs): provide test code for lunr search in docsMatias Niemelä
2013-06-17feat(ngdocs): provide support for user to jump between different versions of ↵Matias Niemelä
the angularjs documentation
2013-06-17feat(ngdocs): support popover, foldouts and foldover annotationsMatias Niemelä
2013-06-17chore(ngdocs): allow user to press escape key to close docs searchMatias Niemelä
2013-06-06chore(ngdocs): setup bower as the package manager for the docs pagesMatias Niemelä
2013-06-06refactor($route): pull $route and friends into angular-route.jsIgor Minar
$route, $routeParams and ngView have been pulled from core angular.js to angular-route.js/ngRoute module. This is was done to in order keep the core focused on most commonly used functionality and allow community routers to be freely used instead of $route service. There is no need to panic, angular-route will keep on being supported by the angular team. Note: I'm intentionally not fixing tutorial links. Tutorial will need bigger changes and those should be done when we update tutorial to 1.2. BREAKING CHANGE: applications that use $route will now need to load angular-route.js file and define dependency on ngRoute module. Before: ``` ... <script src="angular.js"></script> ... var myApp = angular.module('myApp', ['someOtherModule']); ... ``` After: ``` ... <script src="angular.js"></script> <script src="angular-route.js"></script> ... var myApp = angular.module('myApp', ['ngRoute', 'someOtherModule']); ... ``` Closes #2804
2013-05-22style(docs/template): add in missing semicolonsEddie Monge
Add semicolons where they were missing in the docs section per Google code styling guide. Closes #2736
2013-05-16feat(ngdocs): Add FullText search to replace Google search in docsMatias Niemelä
2012-12-11feat(docs): Add angularjs tag to plunks and make privateggoodman
This is a minor edit to allow Plunks created by way of the docs.angularjs.org site to be appropriately tagged as `angularjs`. Also, make these generated Plunks private by default.
2012-11-29fix(docs): add missing </div> tag to sourceEdit directive templateJohannes Hansen
2012-10-31fix(docs): correctly generate filenames for plunkr/fiddleIgor Minar
previously examples like $http where broken because we would strip part of the filename (http-hello.html -> http) we really want to strip only the id suffix that we append to disambiguate common filenames (like index.html) which appear in many examples.
2012-10-31feat(docs): add plunkr supportShyam Seshadri
Add option to edit source in Angular Docs in Plunkr in addition to JsFiddle
2012-10-18docs(tutorial): replace JsTD with Testacular + drop snapshotsIgor Minar
JsTD references have been replaced with Testacular stuff. snapshots are PITA to maintain so I'm dropping them, everyone loves the Git version anyway.
2012-09-06fix(*): name all anonymous watch functions in AngularShyam Seshadri
This will allow us to see function names in Batarang and debugger. Closes #1119
2012-08-30docs(tutorial): correct typos and clarify a few sectionsFernando Correia
2012-06-12fix(docs): migrate from $defer to $timeoutIgor Minar
2012-06-12docs(*): simplify doc urlsIgor Minar
we now have two types of namespaces: - true namespace: angular.* - used for all global apis - virtual namespace: ng.*, ngMock.*, ... - used for all DI modules the virual namespaces have services under the second namespace level (e.g. ng.) and filters and directives prefixed with filter: and directive: respectively (e.g. ng.filter:orderBy, ng.directive:ngRepeat) this simplifies urls and makes them a lot shorter while still avoiding name collisions
2012-06-02doc(app): switch to use $last on ng-repeatMisko Hevery
2012-05-24chore(docs): remove generated fileMisko Hevery
2012-05-24chore(docs): remove unused doc_widget.js fileMisko Hevery
2012-05-24chore(docs): correct spacingsMisko Hevery