<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/src/ng, branch v1.0.0rc11</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>fix($compile): correctly merge class attr for replace directives</title>
<updated>2012-06-08T23:07:15+00:00</updated>
<author>
<name>Max Martinsson</name>
</author>
<published>2012-06-06T14:23:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=fb99b539b4d851773b43f1564f7032adb157c0db'/>
<id>fb99b539b4d851773b43f1564f7032adb157c0db</id>
<content type='text'>
Merging of interpolated class attribute from directive template with replace:true works

Closes #1006
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Merging of interpolated class attribute from directive template with replace:true works

Closes #1006
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($http): add utf-8 to default Content-Type header (post/put)</title>
<updated>2012-06-08T23:07:15+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2012-06-08T00:10:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=10f80d7d2918f98262090b425ecc294d9518aa7e'/>
<id>10f80d7d2918f98262090b425ecc294d9518aa7e</id>
<content type='text'>
This fixes special characters issue with MongoLab.

https://groups.google.com/d/topic/angular/1T6h7bfZ7Rs/discussion
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This fixes special characters issue with MongoLab.

https://groups.google.com/d/topic/angular/1T6h7bfZ7Rs/discussion
</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>refactor($compile): always call attr.$observe</title>
<updated>2012-06-08T22:27:03+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2012-06-04T22:06:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=9be82d942fc6ab2772197c84a35a4c374c604cbc'/>
<id>9be82d942fc6ab2772197c84a35a4c374c604cbc</id>
<content type='text'>
attr.$observe used to call function only if there was interpolation
on that attribute. We now call the observation function all the time
but we only save the reference to it if interpolation is present.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
attr.$observe used to call function only if there was interpolation
on that attribute. We now call the observation function all the time
but we only save the reference to it if interpolation is present.
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(jqLite): performance reordering</title>
<updated>2012-06-08T22:27:02+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2012-06-05T04:11:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=bcc3a021ebbdc33f826cc668e40de360ee6a6b23'/>
<id>bcc3a021ebbdc33f826cc668e40de360ee6a6b23</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($timeout): allow calling $timeout.cancel() with undefined</title>
<updated>2012-06-05T00:43:14+00:00</updated>
<author>
<name>Ali Mills</name>
</author>
<published>2012-06-01T21:50:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=1904596e0c2330299e92f092bd7a6ceca8e97c30'/>
<id>1904596e0c2330299e92f092bd7a6ceca8e97c30</id>
<content type='text'>
This is how it worked in rc9, before refactoring $defer into $timeout.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is how it worked in rc9, before refactoring $defer into $timeout.</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>
<entry>
<title>doc(guide): clean up broken links</title>
<updated>2012-06-02T23:02:08+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2012-05-24T21:49:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=0532aabcf97a08badd6ed67ad40453d37da89556'/>
<id>0532aabcf97a08badd6ed67ad40453d37da89556</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>doc(ngdoc): clean up doc generation and add missing documentation links</title>
<updated>2012-06-02T23:02:08+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2012-03-01T19:28:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=f0be543614d5c2c3f492e1ed73ec964bd8a3d381'/>
<id>f0be543614d5c2c3f492e1ed73ec964bd8a3d381</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(expression): rewrite</title>
<updated>2012-06-02T23:02:08+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2012-02-28T22:29:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=41d26db32c1c013dd33faa03df85e38681a9ebb1'/>
<id>41d26db32c1c013dd33faa03df85e38681a9ebb1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
