<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/test, branch v1.3.0-beta.2</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>fix($http): don't covert 0 status codes to 404 for non-file protocols</title>
<updated>2014-03-14T20:44:56+00:00</updated>
<author>
<name>Pawel Kozlowski</name>
</author>
<published>2014-03-01T11:49:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=56e73ea355c851fdfd574d6d2a9e2fcb75677945'/>
<id>56e73ea355c851fdfd574d6d2a9e2fcb75677945</id>
<content type='text'>
PR #5547 introduced conversion of all 0 status codes to 404 for cases
where no response was recieved (previously this was done for the
file:// protocol only). But this mechanism is too eager and
masks legitimate cases where status 0 should be returned. This commits
reverts to the previous mechanism of handling 0 status code for the
file:// protocol (converting 0 to 404) while retaining the returned
status code 0 for all the protocols other than file://

Fixes #6074
Fixes #6155
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
PR #5547 introduced conversion of all 0 status codes to 404 for cases
where no response was recieved (previously this was done for the
file:// protocol only). But this mechanism is too eager and
masks legitimate cases where status 0 should be returned. This commits
reverts to the previous mechanism of handling 0 status code for the
file:// protocol (converting 0 to 404) while retaining the returned
status code 0 for all the protocols other than file://

Fixes #6074
Fixes #6155
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($$rAF): always fallback to a $timeout incase native rAF isn't supported</title>
<updated>2014-03-14T16:42:07+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2014-03-14T16:01:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=7b5e019981f352add88be2984de68e553d1bfa93'/>
<id>7b5e019981f352add88be2984de68e553d1bfa93</id>
<content type='text'>
Closes #6654
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #6654
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ngAnimate): setting classNameFilter disables animation inside ng-if</title>
<updated>2014-03-14T16:40:40+00:00</updated>
<author>
<name>Tomer Chachamu</name>
</author>
<published>2014-03-04T15:29:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=129e2e021ab1d773874428cd1fb329eae72797c4'/>
<id>129e2e021ab1d773874428cd1fb329eae72797c4</id>
<content type='text'>
Closes #6539
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #6539
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(): whitelist blob urls for sanitization of data-bound image urls</title>
<updated>2014-03-10T08:39:15+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2014-03-10T08:39:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=47ab8df455df1f1391b760e1fbcc5c21645512b8'/>
<id>47ab8df455df1f1391b760e1fbcc5c21645512b8</id>
<content type='text'>
Closes #4623
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #4623
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($compile): support templates with thead and tfoot root elements</title>
<updated>2014-03-07T18:06:12+00:00</updated>
<author>
<name>Lucas Galfasó</name>
</author>
<published>2014-02-17T12:02:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=53ec5e13e5955830b6751019eef232bd2125c0b6'/>
<id>53ec5e13e5955830b6751019eef232bd2125c0b6</id>
<content type='text'>
If the first element in a template is a &lt;thead&gt; or a &lt;tfoot&gt;, then
use the existing logic to handle table elements compilation.

Closes #6289
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If the first element in a template is a &lt;thead&gt; or a &lt;tfoot&gt;, then
use the existing logic to handle table elements compilation.

Closes #6289
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(input): support types date, time, datetime-local, month, week</title>
<updated>2014-03-06T20:21:15+00:00</updated>
<author>
<name>Ben Lesh</name>
</author>
<published>2013-12-04T04:27:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=46bd6dc88de252886d75426efc2ce8107a5134e9'/>
<id>46bd6dc88de252886d75426efc2ce8107a5134e9</id>
<content type='text'>
On older browser that don't support the new HTML5 inputs
and display a text input instead, the user is required to enter
the data in the corresponding ISO format. The value in `ng-model`
will always be a date.

E2e tests contain a workaround to a bug in webdriver,
see https://github.com/angular/protractor/issues/562.

Also adds weeks as format to the `dateFilter`.

Related to #757.
Closes #5864.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
On older browser that don't support the new HTML5 inputs
and display a text input instead, the user is required to enter
the data in the corresponding ISO format. The value in `ng-model`
will always be a date.

E2e tests contain a workaround to a bug in webdriver,
see https://github.com/angular/protractor/issues/562.

Also adds weeks as format to the `dateFilter`.

Related to #757.
Closes #5864.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(style): expressions in style tags</title>
<updated>2014-03-06T10:19:30+00:00</updated>
<author>
<name>Sekib Omazic</name>
</author>
<published>2014-02-28T11:39:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=0609453e1f9ae074f8d786df903096a6eadb6aa0'/>
<id>0609453e1f9ae074f8d786df903096a6eadb6aa0</id>
<content type='text'>
Enable data-binding for style tags.

Note: this feature does not work on IE8.

Closes #2387
Closes #6492
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Enable data-binding for style tags.

Note: this feature does not work on IE8.

Closes #2387
Closes #6492
</pre>
</div>
</content>
</entry>
<entry>
<title>style: enable jscs requireLeftStickedOperators rule</title>
<updated>2014-03-06T00:30:51+00:00</updated>
<author>
<name>Timothée Jeannin</name>
</author>
<published>2014-03-04T19:39:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=933537860247de35c21db060ae9ae1f87bb30d53'/>
<id>933537860247de35c21db060ae9ae1f87bb30d53</id>
<content type='text'>
Closed #6544.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closed #6544.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($animate): delegate down to addClass/removeClass if setClass is not found</title>
<updated>2014-02-28T06:34:57+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2014-02-27T03:37:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=18c41af065006a804a3d38eecca7ae184103ece9'/>
<id>18c41af065006a804a3d38eecca7ae184103ece9</id>
<content type='text'>
Closes #6463
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #6463
</pre>
</div>
</content>
</entry>
<entry>
<title>feat($animate): animate dirty, pristine, valid, invalid for form/fields</title>
<updated>2014-02-28T06:01:34+00:00</updated>
<author>
<name>Yves Brissaud</name>
</author>
<published>2013-12-10T20:49:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=33443966c8e8cac85a863bb181d4a4aff00baab4'/>
<id>33443966c8e8cac85a863bb181d4a4aff00baab4</id>
<content type='text'>
Add css animations when form or field status change to/from dirty,
pristine, valid or invalid. This works like animation system present
with ngClass, ngShow, etc.

Closes #5378
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add css animations when form or field status change to/from dirty,
pristine, valid or invalid. This works like animation system present
with ngClass, ngShow, etc.

Closes #5378
</pre>
</div>
</content>
</entry>
</feed>
