<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/test/ng, branch v1.1.4</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>fix(ngAnimator): correct polyfillSetup activation and memento generation</title>
<updated>2013-04-04T01:42:17+00:00</updated>
<author>
<name>William Bagayoko</name>
</author>
<published>2013-04-04T00:34:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=308a59bf445759b32c20e9057a6dcc241042bdca'/>
<id>308a59bf445759b32c20e9057a6dcc241042bdca</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ngShow/ngHide): revert to display:'' for show</title>
<updated>2013-04-03T22:20:53+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2013-04-03T21:55:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=ecdf119a76476f2a57105a3170be4075e43765c3'/>
<id>ecdf119a76476f2a57105a3170be4075e43765c3</id>
<content type='text'>
Regression introduced by ngAnimation
SHA: 0b6f1ce5f89f47f9302ff1e8cd8f4b92f837c413</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Regression introduced by ngAnimation
SHA: 0b6f1ce5f89f47f9302ff1e8cd8f4b92f837c413</pre>
</div>
</content>
</entry>
<entry>
<title>feat(ngdocs): added functionality to import and extract contents of external files inside docs comment code</title>
<updated>2013-04-02T22:52:32+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2013-04-02T22:20:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=2845dd159087fc59eb29845a578f32c7c462e8e6'/>
<id>2845dd159087fc59eb29845a578f32c7c462e8e6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(ngAnimate): add support for animation</title>
<updated>2013-04-02T21:05:06+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2013-03-20T23:24:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=0b6f1ce5f89f47f9302ff1e8cd8f4b92f837c413'/>
<id>0b6f1ce5f89f47f9302ff1e8cd8f4b92f837c413</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(ngRepeat): add support for custom tracking of items</title>
<updated>2013-03-30T06:01:52+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2013-03-20T05:27:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=61f2767ce65562257599649d9eaf9da08f321655'/>
<id>61f2767ce65562257599649d9eaf9da08f321655</id>
<content type='text'>
BREAKING CHANGE:

It is considered an error to have two items produce
the same track by key. (This was tolerated before.)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
BREAKING CHANGE:

It is considered an error to have two items produce
the same track by key. (This was tolerated before.)
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(Scope): add $watchCollection method for observing collections</title>
<updated>2013-03-30T05:00:25+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2013-03-15T19:42:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=5eb968553a1130461ab8704535691e00eb154ac2'/>
<id>5eb968553a1130461ab8704535691e00eb154ac2</id>
<content type='text'>
The new method allows to shallow watch collections (Arrays/Maps).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The new method allows to shallow watch collections (Arrays/Maps).
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(http): support request/response promise chaining</title>
<updated>2013-03-27T20:13:59+00:00</updated>
<author>
<name>Sylvester Keil</name>
</author>
<published>2013-02-26T09:22:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=4ae46814ff4e7c0bbcdbbefc0a97277283a84065'/>
<id>4ae46814ff4e7c0bbcdbbefc0a97277283a84065</id>
<content type='text'>
myApp.factory('myAroundInterceptor', function($rootScope, $timeout) {
    return function(configPromise, responsePromise) {
        return {
            request: configPromise.then(function(config) {
                return config
            });
            response: responsePromise.then(function(response) {
                return 'ha!';
            }
        });
}

myApp.config(function($httpProvider){
    $httpProvider.aroundInterceptors.push('myAroundInterceptor');
});
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
myApp.factory('myAroundInterceptor', function($rootScope, $timeout) {
    return function(configPromise, responsePromise) {
        return {
            request: configPromise.then(function(config) {
                return config
            });
            response: responsePromise.then(function(response) {
                return 'ha!';
            }
        });
}

myApp.config(function($httpProvider){
    $httpProvider.aroundInterceptors.push('myAroundInterceptor');
});
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($location): parse FirefoxOS packaged app urls</title>
<updated>2013-03-16T04:19:31+00:00</updated>
<author>
<name>Manuel Braun</name>
</author>
<published>2013-03-07T12:36:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=3a81dd8bddbade81c4c9f734813458d0d969a4bf'/>
<id>3a81dd8bddbade81c4c9f734813458d0d969a4bf</id>
<content type='text'>
FirefoxOS uses special URLs like
app://{d0419af1-8b42-41c5-96f4-ef4179e52315}/index.html for packaged Apps.

Closes #2112</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
FirefoxOS uses special URLs like
app://{d0419af1-8b42-41c5-96f4-ef4179e52315}/index.html for packaged Apps.

Closes #2112</pre>
</div>
</content>
</entry>
<entry>
<title>fix(timezone): correct timezone date filter for 1/2 hour offsets</title>
<updated>2013-03-15T05:16:54+00:00</updated>
<author>
<name>Sujeet Pillai</name>
</author>
<published>2013-03-14T11:49:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=1c1cd4fdf6b6d7511c7b8dc61b8042011dc54830'/>
<id>1c1cd4fdf6b6d7511c7b8dc61b8042011dc54830</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix failing test in IE 10</title>
<updated>2013-03-15T05:03:37+00:00</updated>
<author>
<name>Shyam Seshadri</name>
</author>
<published>2013-03-14T16:42:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=79049b9fee5690b8370c51e0fbb82d7a16b787fc'/>
<id>79049b9fee5690b8370c51e0fbb82d7a16b787fc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
