| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-04-30 | chore(release): cut 1.0.0rc7 rc-generation releasev1.0.0rc7 | Igor Minar | |
| 2012-04-30 | docs(changelog): release notes for 1.0.0rc7 rc-generation | Igor Minar | |
| 2012-04-30 | docs(ngCsp): make the CSP docs publicly visible | Igor Minar | |
| 2012-04-30 | docs(ngSanitize): fix directive links | Igor Minar | |
| 2012-04-30 | docs(tutorial): update all the remaining steps | Igor Minar | |
| I made some diagrams and portions of the text that are stil stale invisible. We'll fix these in the next relese. | |||
| 2012-04-27 | feat($parse): CSP compatibility | Igor Minar | |
| CSP (content security policy) forbids apps to use eval or Function(string) generated functions (among other things). For us to be compatible, we just need to implement the "getterFn" in $parse without violating any of these restrictions. We currently use Function(string) generated functions as a speed optimization. With this change, it will be possible to opt into the CSP compatible mode using the ngCsp directive. When this mode is on Angular will evaluate all expressions up to 30% slower than in non-CSP mode, but no security violations will be raised. In order to use this feature put ngCsp directive on the root element of the application. For example: <!doctype html> <html ng-app ng-csp> ... ... </html> Closes #893 | |||
| 2012-04-27 | chore(server.js): Add CSP support | Igor Minar | |
| The support is disabled by default, uncomment relevant lines to enable it. | |||
| 2012-04-23 | chore(check-size): add a script to check gziped size | Igor Minar | |
| this is useful to quickly check the resulting size during development | |||
| 2012-04-23 | chore(release): start 1.0.0rc7 rc-generation iteration | Igor Minar | |
| 2012-04-21 | docs(directive): fix transclusion examples | Vojta Jina | |
| 2012-04-20 | fix(events): include ie8 in extra event property reset | Misko Hevery | |
| 2012-04-20 | fix(bootstrap): rewritten to $script | Misko Hevery | |
| 2012-04-20 | fix(mouseenter): FF no longer throws exceptions | Misko Hevery | |
| 2012-04-20 | chore(release): cutting the 1.0.0rc6 runny-nose releasev1.0.0rc6 | Igor Minar | |
| 2012-04-20 | docs(changelog): release notes for 1.0.0rc6 runny-nose | Igor Minar | |
| 2012-04-20 | fix(select): properly handle empty & unknown options without ngOptions | Igor Minar | |
| Previously only when ngOptions was used, we correctly handled situations when model was set to an unknown value. With this change, we'll add/remove extra unknown option or reuse an existing empty option (option with value set to "") when model is undefined. | |||
| 2012-04-20 | test(selectSpec): clean up and simplify specs | Igor Minar | |
| 2012-04-20 | feat(jquery): jquery 1.7.2 support | Igor Minar | |
| 2012-04-20 | feat($resource): support HTTP PATCH method | simpulton | |
| Properly serialize data into request body instead of url. Closes #887 | |||
| 2012-04-20 | chore(license): update to google | Misko Hevery | |
| 2012-04-20 | fix(compiler): reading comment throws error in ie | Misko Hevery | |
| Unders some circumstances reading the comment's text throws error. | |||
| 2012-04-20 | fix(script): Incorrectly reading script text on ie | Misko Hevery | |
| IE deals with script tags in special way and .text() does not work. Reading the .text property directly fixes the issue. | |||
| 2012-04-20 | chore(logo): added angular shield logo | Misko Hevery | |
| 2012-04-20 | fix(document): accidental clobbering of document.getAttribute | Misko Hevery | |
| Closes #877 | |||
| 2012-04-20 | docs(guide/controllers): update w/ controller scope separation | Chris Dawson | |
| 2012-04-20 | docs(guide/e2e): fix a link to e2e dsl | pkozlowski-opensource | |
| 2012-04-20 | docs(ngBind): "angular.module.ng.$sanitize" -> ↵ | johnlindquist | |
| "angular.module.ngSanitize.$sanitize" | |||
| 2012-04-20 | docs($compile) "updateh"->"updated" | johnlindquist | |
| 2012-04-20 | docs(ngBind): "makes make" -> "makes" | johnlindquist | |
| 2012-04-15 | docs($resource): fix the example | Vojta Jina | |
| 2012-04-12 | chore(release): starting the 1.0.0rc6 runny-nose iteration | Igor Minar | |
| 2012-04-12 | chore(release): cutting the 1.0.0rc5 reality-distortion releasev1.0.0rc5 | Igor Minar | |
| 2012-04-12 | docs(changelog): release notes for 1.0.0rc5 reality-distortion | Igor Minar | |
| 2012-04-12 | docs(tutorial): update step-04 to v1.0 | Igor Minar | |
| 2012-04-12 | style(docs-scenario.html): rename <angular/> to AngularJS in the title | Igor Minar | |
| 2012-04-12 | fix($location): properly rewrite urls in html5 mode with base url set | Igor Minar | |
| previously we were doing all kinds of checks to see if we should rewrite the url or not and we were missing many scenarios. not any more. with this change, we rewrite the url unless: - the href is not set - link has target attribute - the absolute url of the link doesn't match the absolute prefix for all urls in our app This also means that ng-ext-link attribute which we previously used to distinguish external links from app links is not necessary any more. apps can just set target=_self to prevent rewriting. BREAKING CHANGE: ng-ext-link directive was removed because it's unnecessary apps that relied on ng-ext-link should simply replace it with target=_self | |||
| 2012-04-12 | fix(e2eRunner): $browser.location should delegate to apps $location | Igor Minar | |
| previously it would create a new instance which wasn't configured as the one in the app, which resulted in incorrect values being returned in html5 mode with base url set | |||
| 2012-04-11 | docs($compile): fixed typo | simpulton | |
| 2012-04-11 | test(ngView): fix failing e2e tests | Igor Minar | |
| 2012-04-11 | docs($http): fix return types | Igor Minar | |
| 2012-04-11 | feat($http): expose the defaults config as $http.defaults | Igor Minar | |
| Often it is impossible to set the http defaults during the config phase, because the config info is not available at this time. A good example is authentication - often the app needs to bootstrap, allow user to enter credentials and only then it gains access to session token which then should be sent to the server with every request. Without having the ability to set the defaults at runtime, the developer either has to resort to hacks, or has to set the session token header with every request made by the app. | |||
| 2012-04-11 | fix($location): don't rewrite links to different base paths | Thibault Leruitte | |
| links to different base paths should not be left untouched | |||
| 2012-04-11 | chore(release scripts): group changelog only if more than 1 entry | Vojta Jina | |
| 2012-04-11 | fix(input.radio): support 2-way binding in a repeater | Vojta Jina | |
| Closes #869 | |||
| 2012-04-11 | chore(ngSanitize): extract $sanitize, ngBindHtml, linkyFilter into a module | Vojta Jina | |
| Create build for other modules as well (ngResource, ngCookies): - wrap into a function - add license - add version Breaks `$sanitize` service, `ngBindHtml` directive and `linky` filter were moved to the `ngSanitize` module. Apps that depend on any of these will need to load `angular-sanitize.js` and include `ngSanitize` in their dependency list: `var myApp = angular.module('myApp', ['ngSanitize']);` | |||
| 2012-04-11 | docs($compile): fix typo in the docs templateURL -> templateUrl | Igor Minar | |
| 2012-04-10 | chore(*): remove dead code and fix code style issues | Igor Minar | |
| 2012-04-10 | docs(guide.forms): fix the forms dev guide to use ng-disabled | Vojta Jina | |
| 2012-04-10 | docs(angular.bootstrap): fix typos and errors | Igor Minar | |
| 2012-04-10 | docs(tutorial): fix typos in steps 2 and 3 | Igor Minar | |
