<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/test/ng, branch v1.0.0rc3</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>fix(ngValue): bind properly inside ng-repeat</title>
<updated>2012-03-29T21:05:19+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2012-03-29T20:50:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=95c5df5958f6d42d08846fa40c10cb279ce76ee9'/>
<id>95c5df5958f6d42d08846fa40c10cb279ce76ee9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor($compile): move methods of attr object into prototype</title>
<updated>2012-03-29T14:30:32+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2012-03-28T23:03:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=6da355c3e1571b9a104fca2796df77a4194a28a2'/>
<id>6da355c3e1571b9a104fca2796df77a4194a28a2</id>
<content type='text'>
We have many instances of this object and we clone them as well (e.g. ng-repeat).
This should save some memory and performance as well.

Double prefixed private properties of attr object:
attr.$element -&gt; attr.$$element
attr.$observers -&gt; attr.$$observers

Update shallowCopy to not copy $$ properties and allow passing optional destination object.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We have many instances of this object and we clone them as well (e.g. ng-repeat).
This should save some memory and performance as well.

Double prefixed private properties of attr object:
attr.$element -&gt; attr.$$element
attr.$observers -&gt; attr.$$observers

Update shallowCopy to not copy $$ properties and allow passing optional destination object.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($compile): properly clone attr.$observers in ng-repeat</title>
<updated>2012-03-29T14:30:32+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2012-03-28T20:47:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=f2106692b1ebf00aa5f8b2accd75f014b6cd4faa'/>
<id>f2106692b1ebf00aa5f8b2accd75f014b6cd4faa</id>
<content type='text'>
The `attr` object was only shallow copied which caused all observers to be shared.
Fixing similar issue in ng-* boolean attributes as well as ng-src and ng-href.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The `attr` object was only shallow copied which caused all observers to be shared.
Fixing similar issue in ng-* boolean attributes as well as ng-src and ng-href.
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor(fromJson/date filter): move date string logic to date filter</title>
<updated>2012-03-28T23:30:30+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-03-27T06:38:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=ac4318a2fa5c6d306dbc19466246292a81767fca'/>
<id>ac4318a2fa5c6d306dbc19466246292a81767fca</id>
<content type='text'>
Breaks angular.fromJson which doesn't deserialize date strings into date objects.

This was done to make fromJson compatible with JSON.parse.

If you do require the old behavior - if at all neeeded then because of
json deserialization of XHR responses - then please create a custom
$http transform:

$httpProvider.defaults.transformResponse.push(function(data) {
  // recursively parse dates from data object here
  // see code removed in this diff for hints
});

Closes #202
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Breaks angular.fromJson which doesn't deserialize date strings into date objects.

This was done to make fromJson compatible with JSON.parse.

If you do require the old behavior - if at all neeeded then because of
json deserialization of XHR responses - then please create a custom
$http transform:

$httpProvider.defaults.transformResponse.push(function(data) {
  // recursively parse dates from data object here
  // see code removed in this diff for hints
});

Closes #202
</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(Rakefile): get ready for modules</title>
<updated>2012-03-28T18:16:36+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2012-03-27T04:18:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=8218c4b60b82927234cf545253266f288fa936c2'/>
<id>8218c4b60b82927234cf545253266f288fa936c2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(module): move files around in preparation for more modules</title>
<updated>2012-03-28T18:16:35+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2012-03-23T21:03:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=2430f52bb97fa9d682e5f028c977c5bf94c5ec38'/>
<id>2430f52bb97fa9d682e5f028c977c5bf94c5ec38</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
