<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/docs/content/cookbook, branch g3-v1.0.0rc1</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>docs(input): Fix some broken links, add missing $, use ng- in examples</title>
<updated>2012-03-13T20:52:57+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2012-03-13T20:52:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=63be222326f3badbb76371f82d49fed5ab9e3e65'/>
<id>63be222326f3badbb76371f82d49fed5ab9e3e65</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(forms): prefix all form and control properties with $</title>
<updated>2012-03-13T06:04:11+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-03-13T04:12:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=f59e4b11f11261c234a821db67088f0de88a2852'/>
<id>f59e4b11f11261c234a821db67088f0de88a2852</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor($route): remove .parent(); ng:view scope creation</title>
<updated>2012-02-29T01:46:58+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2012-02-16T05:49:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=e31d1c287d972d633bdaf9c385d3012192f64918'/>
<id>e31d1c287d972d633bdaf9c385d3012192f64918</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor(forms): Even better forms</title>
<updated>2012-02-29T01:46:58+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2012-02-16T01:16:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=21c725f1a12d1de758cab6e4c4fafc5c420eb565'/>
<id>21c725f1a12d1de758cab6e4c4fafc5c420eb565</id>
<content type='text'>
- remove $formFactory completely
- remove parallel scope hierarchy (forms, widgets)
- use new compiler features (widgets, forms are controllers)
- any directive can add formatter/parser (validators, convertors)

Breaks no custom input types
Breaks removed integer input type
Breaks remove list input type (ng-list directive instead)
Breaks inputs bind only blur event by default (added ng:bind-change directive)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- remove $formFactory completely
- remove parallel scope hierarchy (forms, widgets)
- use new compiler features (widgets, forms are controllers)
- any directive can add formatter/parser (validators, convertors)

Breaks no custom input types
Breaks removed integer input type
Breaks remove list input type (ng-list directive instead)
Breaks inputs bind only blur event by default (added ng:bind-change directive)
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(compiler): update the compiler docs</title>
<updated>2012-01-25T19:53:59+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2011-12-14T01:55:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=4804c83b7db5770d5d02eea9eea4cc012b4aa524'/>
<id>4804c83b7db5770d5d02eea9eea4cc012b4aa524</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor(scope.$watch): rearrange arguments passed into watcher (newValue, oldValue, scope)</title>
<updated>2012-01-23T19:11:27+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2011-11-30T20:23:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=0196411dbe179afe24f4faa6d6503ff3f69472da'/>
<id>0196411dbe179afe24f4faa6d6503ff3f69472da</id>
<content type='text'>
As scopes are injected into controllers now, you have the reference anyway, so having scope as first argument makes no sense…

Breaks $watcher gets arguments in different order (newValue, oldValue, scope)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
As scopes are injected into controllers now, you have the reference anyway, so having scope as first argument makes no sense…

Breaks $watcher gets arguments in different order (newValue, oldValue, scope)</pre>
</div>
</content>
</entry>
<entry>
<title>refactor(scope): separate controller from scope</title>
<updated>2012-01-23T19:05:36+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2011-11-30T05:51:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=992c790f0786fa45c1cc3710f29bf49c7c322ba7'/>
<id>992c790f0786fa45c1cc3710f29bf49c7c322ba7</id>
<content type='text'>
Controller is standalone object, created using "new" operator, not messed up with scope anymore.
Instead, related scope is injected as $scope.

See design proposal: https://docs.google.com/document/pub?id=1SsgVj17ec6tnZEX3ugsvg0rVVR11wTso5Md-RdEmC0k

Closes #321
Closes #425

Breaks controller methods are not exported to scope automatically
Breaks Scope#$new() does not take controller as argument anymore</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Controller is standalone object, created using "new" operator, not messed up with scope anymore.
Instead, related scope is injected as $scope.

See design proposal: https://docs.google.com/document/pub?id=1SsgVj17ec6tnZEX3ugsvg0rVVR11wTso5Md-RdEmC0k

Closes #321
Closes #425

Breaks controller methods are not exported to scope automatically
Breaks Scope#$new() does not take controller as argument anymore</pre>
</div>
</content>
</entry>
<entry>
<title>fix($browser.xhr): change method "JSON" to "JSONP"</title>
<updated>2011-11-30T16:03:41+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2011-08-10T13:59:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=45f47ff6cd264dcd347e6df92c9ef39b0ae8aaba'/>
<id>45f47ff6cd264dcd347e6df92c9ef39b0ae8aaba</id>
<content type='text'>
Breaks "JSON" xhr method is now called "JSONP"
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Breaks "JSON" xhr method is now called "JSONP"
</pre>
</div>
</content>
</entry>
<entry>
<title>style(docs): make jslint happy - fix some warnings</title>
<updated>2011-11-15T04:31:19+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2011-11-12T01:15:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=acbd7cdf320f0570fcc1952c8680d4c78bc8fa2c'/>
<id>acbd7cdf320f0570fcc1952c8680d4c78bc8fa2c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(doc) cleanup all api doc link warnings</title>
<updated>2011-11-15T04:31:18+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2011-11-11T02:47:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=b09595a3c12ba761772084b94767b635c5bbfaf2'/>
<id>b09595a3c12ba761772084b94767b635c5bbfaf2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
