<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/docs, branch v1.0.0rc3</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>fix(docs): update the example widget regexp for detecting angular.js url</title>
<updated>2012-03-29T23:10:40+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-03-29T23:10:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=fc52b81d5288897b351397cd5a21aa98a54cca70'/>
<id>fc52b81d5288897b351397cd5a21aa98a54cca70</id>
<content type='text'>
so that we don't show angular-cookies instead of angular.js
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
so that we don't show angular-cookies instead of angular.js
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(docs): properly rewrite urls in doc examples at docs-next</title>
<updated>2012-03-29T23:10:40+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-03-29T22:38:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=423242017e56c103b07b7f576dbd52a5a38c331a'/>
<id>423242017e56c103b07b7f576dbd52a5a38c331a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(ngCookies): moved to module</title>
<updated>2012-03-28T18:16:36+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2012-03-26T23:22:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=7b22d59b4a16d5c50c2eee054178ba17f8038880'/>
<id>7b22d59b4a16d5c50c2eee054178ba17f8038880</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(resource): moved to module</title>
<updated>2012-03-28T18:16:36+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2012-03-27T04:45:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=798bca62c6f64775b85deda3713e7b6bcc7a4b4d'/>
<id>798bca62c6f64775b85deda3713e7b6bcc7a4b4d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Updated manual bootstrap document</title>
<updated>2012-03-28T01:06:00+00:00</updated>
<author>
<name>Brad Green</name>
</author>
<published>2012-03-28T01:06:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=944098a4e0f753f06b40c73ca3e79991cec6c2e2'/>
<id>944098a4e0f753f06b40c73ca3e79991cec6c2e2</id>
<content type='text'>
Explained why you'd want to manually bootstrap, added contrasting
example for automatic vs manual methods.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Explained why you'd want to manually bootstrap, added contrasting
example for automatic vs manual methods.
</pre>
</div>
</content>
</entry>
<entry>
<title>Rewrite of Automatic Initialization doc</title>
<updated>2012-03-27T15:28:34+00:00</updated>
<author>
<name>Brad Green</name>
</author>
<published>2012-03-27T15:27:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=2ce0485e6f21c77e84fd4fc07a9b15adc90a7fd8'/>
<id>2ce0485e6f21c77e84fd4fc07a9b15adc90a7fd8</id>
<content type='text'>
Added examples, explained the reasons why you initialize the whole app
or parts of the page.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Added examples, explained the reasons why you initialize the whole app
or parts of the page.
</pre>
</div>
</content>
</entry>
<entry>
<title>feat($compile): do not interpolate boolean attributes, rather evaluate them</title>
<updated>2012-03-27T04:14:09+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2012-03-23T22:53:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=a08cbc02e78e789a66e9af771c410e8ad1646e25'/>
<id>a08cbc02e78e789a66e9af771c410e8ad1646e25</id>
<content type='text'>
So that we can have non string values, e.g. ng-value="true" for radio inputs

Breaks boolean attrs are evaluated rather than interpolated

To migrate your code, change: &lt;input ng-disabled="{{someBooleanVariable}}"&gt;
to: &lt;input ng-disabled="someBooleanVariabla"&gt;


Affected directives:

* ng-multiple
* ng-selected
* ng-checked
* ng-disabled
* ng-readonly
* ng-required
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
So that we can have non string values, e.g. ng-value="true" for radio inputs

Breaks boolean attrs are evaluated rather than interpolated

To migrate your code, change: &lt;input ng-disabled="{{someBooleanVariable}}"&gt;
to: &lt;input ng-disabled="someBooleanVariabla"&gt;


Affected directives:

* ng-multiple
* ng-selected
* ng-checked
* ng-disabled
* ng-readonly
* ng-required
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(guide/module): fix syntax error and expectation in test example</title>
<updated>2012-03-26T23:06:46+00:00</updated>
<author>
<name>Mykhailo Kotsur</name>
</author>
<published>2012-03-22T19:38:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=5c5b1183c82a28841b3e1e246ee341262e91d743'/>
<id>5c5b1183c82a28841b3e1e246ee341262e91d743</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(guide/unit-testing): fixed typo in code example</title>
<updated>2012-03-26T23:06:16+00:00</updated>
<author>
<name>Mykhailo Kotsur</name>
</author>
<published>2012-03-22T19:38:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=f04142ea281c16182132ca4f307f24e97a19cfdc'/>
<id>f04142ea281c16182132ca4f307f24e97a19cfdc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>doc(guide/module): fix typo</title>
<updated>2012-03-23T23:57:24+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-03-23T23:57:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=74c84501ed72782b2e46492d1ded30f51ab31176'/>
<id>74c84501ed72782b2e46492d1ded30f51ab31176</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
