<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/docs, branch v1.0.0rc12</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>fix($defer): remove deprecated $defer service</title>
<updated>2012-06-12T08:09:07+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-06-12T07:35:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=9af7a9198e2d30608ea6c40eedde03e44a6ef569'/>
<id>9af7a9198e2d30608ea6c40eedde03e44a6ef569</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(docs): migrate from $defer to $timeout</title>
<updated>2012-06-12T07:11:04+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-06-12T07:11:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=d9ff5fd432314d2b5f5e6766240c918f10d3b83d'/>
<id>d9ff5fd432314d2b5f5e6766240c918f10d3b83d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(*): simplify doc urls</title>
<updated>2012-06-12T07:10:18+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-06-12T06:49:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=f16150d5f1b20b3d633b4402095ea89baa4be042'/>
<id>f16150d5f1b20b3d633b4402095ea89baa4be042</id>
<content type='text'>
we now have two types of namespaces:

- true namespace: angular.* - used for all global apis
- virtual namespace: ng.*, ngMock.*, ... - used for all DI modules

the virual namespaces have services under the second namespace level (e.g. ng.)
and filters and directives prefixed with filter: and directive: respectively
(e.g. ng.filter:orderBy, ng.directive:ngRepeat)

this simplifies urls and makes them a lot shorter while still avoiding name collisions
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
we now have two types of namespaces:

- true namespace: angular.* - used for all global apis
- virtual namespace: ng.*, ngMock.*, ... - used for all DI modules

the virual namespaces have services under the second namespace level (e.g. ng.)
and filters and directives prefixed with filter: and directive: respectively
(e.g. ng.filter:orderBy, ng.directive:ngRepeat)

this simplifies urls and makes them a lot shorter while still avoiding name collisions
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(*): fix various outdated docs and examples</title>
<updated>2012-06-10T16:01:42+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-06-10T16:01:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=5d70e4a89cd9b3d430bb81f438cf03e956d9a9d2'/>
<id>5d70e4a89cd9b3d430bb81f438cf03e956d9a9d2</id>
<content type='text'>
Closes #1030
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #1030
</pre>
</div>
</content>
</entry>
<entry>
<title>docs($location): clarify the two-way data-binding note</title>
<updated>2012-06-09T13:57:55+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-06-09T13:57:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=b5bba65a9353ca9dc03b8d0c3c9b06d9c4cdacdf'/>
<id>b5bba65a9353ca9dc03b8d0c3c9b06d9c4cdacdf</id>
<content type='text'>
Closes #1030
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #1030
</pre>
</div>
</content>
</entry>
<entry>
<title>feat($compile): simplify isolate scope bindings</title>
<updated>2012-06-08T22:50:13+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2012-06-06T20:58:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=c3a41ff9fefe894663c4d4f40a83794521deb14f'/>
<id>c3a41ff9fefe894663c4d4f40a83794521deb14f</id>
<content type='text'>
Changed the isolate scope binding options to:
  - @attr - attribute binding (including interpolation)
  - =model - by-directional model binding
  - &amp;expr - expression execution binding

This change simplifies the terminology as well as
number of choices available to the developer. It
also supports local name aliasing from the parent.

BREAKING CHANGE: isolate scope bindings definition has changed and
the inject option for the directive controller injection was removed.

To migrate the code follow the example below:

Before:

scope: {
  myAttr: 'attribute',
  myBind: 'bind',
  myExpression: 'expression',
  myEval: 'evaluate',
  myAccessor: 'accessor'
}

After:

scope: {
  myAttr: '@',
  myBind: '@',
  myExpression: '&amp;',
  // myEval - usually not useful, but in cases where the expression is assignable, you can use '='
  myAccessor: '=' // in directive's template change myAccessor() to myAccessor
}

The removed `inject` wasn't generaly useful for directives so there should be no code using it.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Changed the isolate scope binding options to:
  - @attr - attribute binding (including interpolation)
  - =model - by-directional model binding
  - &amp;expr - expression execution binding

This change simplifies the terminology as well as
number of choices available to the developer. It
also supports local name aliasing from the parent.

BREAKING CHANGE: isolate scope bindings definition has changed and
the inject option for the directive controller injection was removed.

To migrate the code follow the example below:

Before:

scope: {
  myAttr: 'attribute',
  myBind: 'bind',
  myExpression: 'expression',
  myEval: 'evaluate',
  myAccessor: 'accessor'
}

After:

scope: {
  myAttr: '@',
  myBind: '@',
  myExpression: '&amp;',
  // myEval - usually not useful, but in cases where the expression is assignable, you can use '='
  myAccessor: '=' // in directive's template change myAccessor() to myAccessor
}

The removed `inject` wasn't generaly useful for directives so there should be no code using it.
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(guide): correct couple of typos</title>
<updated>2012-06-05T01:46:09+00:00</updated>
<author>
<name>unknown</name>
</author>
<published>2012-04-25T17:33:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=a57141fd1d24962982e512c65e0e16d9b5edefe4'/>
<id>a57141fd1d24962982e512c65e0e16d9b5edefe4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>doc(app): switch to use $last on ng-repeat</title>
<updated>2012-06-02T23:02:09+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2012-05-25T22:52:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=ddefb424455912e2b5f2d92bbf2d61ddf55470c4'/>
<id>ddefb424455912e2b5f2d92bbf2d61ddf55470c4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>doc(app): remove un-needed file</title>
<updated>2012-06-02T23:02:09+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2012-05-25T22:52:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=676d6e0040c14589f19f36dc4e9ccaa9410f2312'/>
<id>676d6e0040c14589f19f36dc4e9ccaa9410f2312</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>doc(NgModelController) add example and $render documentation</title>
<updated>2012-06-02T23:02:09+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2012-05-25T17:29:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=8024a5742c46a42ef204988ff7362a4fc14b7a2d'/>
<id>8024a5742c46a42ef204988ff7362a4fc14b7a2d</id>
<content type='text'>
Closes#930
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes#930
</pre>
</div>
</content>
</entry>
</feed>
