| Age | Commit message (Collapse) | Author | 
 | 
Modify the documentation for $http to correspond to what Angular
considers a success status code.
Closes #1693
 | 
 | 
added verifyNoPendingTasks method, which throws error if not all
deferred tasks have been flushed
Closes #1245
 | 
 | 
 | 
 | 
This allows strings to be filtered by limitTo, using the same methods
Closes #653
 | 
 | 
New directives for binding to keydown and keyup events.
Closes #1035
 | 
 | 
Closes #1715
 | 
 | 
 | 
 | 
Routes like '/bar/foovalue/barvalue' matching '/bar/:foo/:bar'
now are well mapped in $routeParams to:
{bar:'barvalue', foo:'foovalue'}
Closes: #1501
Signed-off-by: Gonzalo Ruiz de Villa <gonzaloruizdevilla@gmail.com>
 | 
 | 
Closes #1243
 | 
 | 
 | 
 | 
Should be $httpBackend instead of $httpBacked
Closes #1516
 | 
 | 
Clarify how to use `$exceptionHandlerProvider.mode('log')` in tests
 | 
 | 
 | 
 | 
Closes #1599
 | 
 | 
Closes #1553
 | 
 | 
 | 
 | 
`injector.instantiate` is now called for arrays too, instead of only for functions.
Closes #1452
 | 
 | 
Perform call `angular.uppercase` on all given action methods.
Closes #1403
 | 
 | 
Moved Resource.bind out of the actions forEach
 | 
 | 
Due to bd524fc4 calling $destroy() on a scope mupltiple times cases NPE.
Closes #1627
 | 
 | 
Default resource params can now be calculated at runtime if defined
via a function.
 | 
 | 
This is needed to prevent CORS preflight checks. The XSFR token
is quite useless for CORS requests anyway.
BREAKING CHANGE: X-XSFR-TOKEN is no longer send for cross domain
requests. This shouldn't affect any known production service.
Closes #1096
 | 
 | 
X-Requested-With header is rarely used in practice and by using
it all the time we are triggering preflight checks for crossdomain
requests.
We could try detecting if we are doing CORS requests or not, but
it doesn't look like it's worth the trouble.
BREAKING CHANGE: X-Requested-With header is not set by $http service
any more. If anyone actually uses this header it's quite easy to add
it back via:
```
myAppModule.config(['$httpProvider', function($httpProvider) {
    $httpProvider.defaults.headers.common["X-Requested-With"] = 'XMLHttpRequest';
}]);
```
Closes #1004
 | 
 | 
Closes #1111
 | 
 | 
We need to watch $index in addition to cssClasses because only then
we can correctly respond to shrinking or reordered repeaters.
Closes #1076
 | 
 | 
selector => cssClasses
 | 
 | 
I'm reverting changes that were originally done to ngRepeat to fix #933,
because these are now not necessary after the previous changes to keep
ngModel always synced with the DOM.
 | 
 | 
In cases when we reuse elements in a repeater but associate
them with a new scope (see #933 - repeating over array of
primitives) it's possible for the internal ngModel state and
the scope state to get out of sync. This change ensure that
the two are always sync-ed up even in cases where we
reassociate an element with a different (but similar) scope.
In the case of repeating over array of primitives it's still
possible to run into issue if we iterate over primitives and
use form controls or similar widgets without ngModel - oh well,
we'd likely need a special repeater for primitives to deal
with this properly, even then there might be cornercases.
Closes #933
 | 
 | 
I'm keeping this in for future reference. The issue with this solution
is that if we shift() the first item in the array, the whole repeater
DOM will be rebuilt from scratch, we need to do better than that.
 | 
 | 
Retting a form to pristine state will cause all of the nested
form and form controls to be recursively reset as well.
Closes #856
 | 
 | 
previously jquery didn't support append on this node type, now it does
(since 1.8.x) so I'm adding this to jqlite as well.
 | 
 | 
in jQuery 1.8.x the data() data structure is changed and events are
not accessible via data().events. Since all we need is to trigger
all event handlers, we can do so via triggerHandler() api instead of
mocking with the internal jQuery data structures.
This fix was originally proposed by PeteAppleton via PR #1512.
Closes #1512
 | 
 | 
we need triggerHandler() to become jQuery 1.8.x compatible.
this is not fully featured triggerHandler() implementation - it doesn't
bother creating new DOM events and passing them into the event handlers.
this is intentional, we don't need access to the native DOM event for our
own purposes and creating these event objects is really tricky.
 | 
 | 
 | 
 | 
Closes #1202
 | 
 | 
This allows common programming patterns to be expressed with more
concise code.
See #1583 for code examples.
 | 
 | 
Today, calling e.g. $http(url, { params: { a: [1,2,3] } }) results in a query
string like "?a=%5B1%2C2%2C3%5D" which is undesirable. This commit enhances
buildURL to createa query string like "?a=1&a=2&a=3".
BREAKING CHANGE: if the server relied on the buggy behavior then either the
backend should be fixed or a simple serialization of the array should be done
on the client before calling the $http service.
Closes #1363
 | 
 | 
Closes #1443
 | 
 | 
Instead of throwning an exception, remove should return undefined when
cache entry to be removed doesn't exist.
Closes #1497
 | 
 | 
Having a $resource defined as:
var R = $resource('/Path', {}, {
  get: {method: 'GET', params: {objId: '1'}},
  perform: {method: 'GET'}
});
was causing both actions to call the same URI (if called in this order):
R.get({}); // => /Path?objId=1
R.perform({}); // => /Path?objId=1
 | 
 | 
 | 
 | 
 | 
 | 
window.SecurityPolicy.isActive() is now window.securityPolicy.isActive
since this is available only in Chrome Canary which has already been
updated, we can safely make this change without worrying about
backwards compatilibty.
Closes #1577
 | 
 | 
Under certain circumstances chrome fails to GC scopes
because of buggy optimizations and caching. Nulling out
references to (not from!) other scopes helps Chrome to
realize that this object should be GC-ed.
This is really just a workaround as the real problem needs
to be fixed in Chrome.
See discusstion at:
https://github.com/angular/angular.js/issues/1313#issuecomment-10378451
And chrome bug at:
https://code.google.com/p/v8/issues/detail?id=2073
Closes #1313
 | 
 | 
 | 
 | 
The cancel function accepts a Promise, but the timeout function
fails to specify returning a Promise.
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
Per http://www.ietf.org/rfc/rfc3966.txt support tel: links
 |