<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/test, branch v1.0.0rc4</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>feat($http): add withCredentials config option</title>
<updated>2012-04-04T23:13:02+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2012-04-03T18:00:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=86182a9415b9209662b16c25c180b958ba7e6cf9'/>
<id>86182a9415b9209662b16c25c180b958ba7e6cf9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat($route): allow chaining of whens and otherwise</title>
<updated>2012-04-04T23:10:44+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-04-03T22:28:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=15ecc6f3668885ebc5c7130dd34e00059ddf79ae'/>
<id>15ecc6f3668885ebc5c7130dd34e00059ddf79ae</id>
<content type='text'>
Previously one had to write:

$routeProvider.when('/foo', {...});
$routeProvider.when('/bar', {...});
$routeProvider.otherwise({...});

After this change it's just:

$routeProvider.
    when('/foo', {...}).
    when('/bar', {...}).
    otherwise({...});

Breaks #when which used to return the route definition object but now
returns self. Returning the route definition object is not very useful
so its likely that nobody ever used it.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously one had to write:

$routeProvider.when('/foo', {...});
$routeProvider.when('/bar', {...});
$routeProvider.otherwise({...});

After this change it's just:

$routeProvider.
    when('/foo', {...}).
    when('/bar', {...}).
    otherwise({...});

Breaks #when which used to return the route definition object but now
returns self. Returning the route definition object is not very useful
so its likely that nobody ever used it.
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor(ngHref, ngSrc): remove duplicate tests</title>
<updated>2012-04-04T22:01:27+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2012-04-04T22:01:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=85776c0d37316c5aaecd84eedec275bac2cd0298'/>
<id>85776c0d37316c5aaecd84eedec275bac2cd0298</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(directive): correct file names for booleanAttrs</title>
<updated>2012-04-04T21:58:27+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2012-04-04T00:26:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=02cf958a076b140690ab9ea4ed00c490f52cbf91'/>
<id>02cf958a076b140690ab9ea4ed00c490f52cbf91</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor(ngInclude): correct the tests</title>
<updated>2012-04-04T21:58:07+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2012-04-04T02:01:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=8fe4295a064caa699edd902711d396164cf092f4'/>
<id>8fe4295a064caa699edd902711d396164cf092f4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(booleanAttrs): convert to boolean</title>
<updated>2012-04-04T15:26:28+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2012-04-04T15:12:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=dcb8e0767fbf0a7a55f3b0045fd01b2532ea5441'/>
<id>dcb8e0767fbf0a7a55f3b0045fd01b2532ea5441</id>
<content type='text'>
jQuery's attr() does not handle 0 as false, when it comes to boolean attrs.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
jQuery's attr() does not handle 0 as false, when it comes to boolean attrs.</pre>
</div>
</content>
</entry>
<entry>
<title>fix(form): preperly clean up when invalid widget is removed</title>
<updated>2012-04-04T06:28:05+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2012-04-04T05:05:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=21b77ad5c231ab0e05eb89f22005f7ed8d40a6c1'/>
<id>21b77ad5c231ab0e05eb89f22005f7ed8d40a6c1</id>
<content type='text'>
Removing invalid widget sometimes resulted in improper cleanup of the form state.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Removing invalid widget sometimes resulted in improper cleanup of the form state.</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ng-href): copy even if no binding</title>
<updated>2012-04-03T23:02:20+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2012-04-03T22:03:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=2f5dba488e855bcdbb9304aa809efcb9de7b43e9'/>
<id>2f5dba488e855bcdbb9304aa809efcb9de7b43e9</id>
<content type='text'>
Closes# 850

fixed an issue where ng-href would not copy its content into href if it did not contain binding.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes# 850

fixed an issue where ng-href would not copy its content into href if it did not contain binding.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($compile): relax the restriction that directives can not add siblings</title>
<updated>2012-04-03T23:02:20+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2012-04-03T21:15:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=7e86eacf301934335c22908ec6dbd1a083d88fab'/>
<id>7e86eacf301934335c22908ec6dbd1a083d88fab</id>
<content type='text'>
Relax the restriction that directives can not add siblings
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Relax the restriction that directives can not add siblings
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor(ngView): remove extra $watch, refactor one ugly test</title>
<updated>2012-04-03T17:10:44+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2012-03-30T22:03:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=15c1fe392942b70e456f10afbdfd9c3329249a43'/>
<id>15c1fe392942b70e456f10afbdfd9c3329249a43</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
