<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/src/ng, branch v1.0.4</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>docs(q): added testing information</title>
<updated>2013-01-22T19:32:27+00:00</updated>
<author>
<name>Miško Hevery</name>
</author>
<published>2012-12-14T13:49:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=b49c3a1a1efc85b31053481eea450c7be407957c'/>
<id>b49c3a1a1efc85b31053481eea450c7be407957c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ngSwitch): don't leak when destroyed while not attached</title>
<updated>2013-01-18T08:03:42+00:00</updated>
<author>
<name>danilsomsikov</name>
</author>
<published>2013-01-11T17:21:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=89303fd2dccb780bea594b16b8ec85d9f3bd8f92'/>
<id>89303fd2dccb780bea594b16b8ec85d9f3bd8f92</id>
<content type='text'>
The leak can occur when ngSwich is used inside ngRepeat or any other
directive which is destroyed while its transcluded content (which
includes ngSwitch) is not attached to the DOM.

Refactor ngSwitch to use controller instead of storing data on compile
node. This means that we don't need to clean up the jq data cache.
Controller reference is released when the linking fn is released.

Closes #1621
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The leak can occur when ngSwich is used inside ngRepeat or any other
directive which is destroyed while its transcluded content (which
includes ngSwitch) is not attached to the DOM.

Refactor ngSwitch to use controller instead of storing data on compile
node. This means that we don't need to clean up the jq data cache.
Controller reference is released when the linking fn is released.

Closes #1621
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(exceptionHandler): document testing</title>
<updated>2013-01-18T07:11:02+00:00</updated>
<author>
<name>Fred Sauer</name>
</author>
<published>2013-01-17T02:01:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=1f8be1ca66b312fdc396403f01ee8aae9371577a'/>
<id>1f8be1ca66b312fdc396403f01ee8aae9371577a</id>
<content type='text'>
Update src/ng/exceptionHandler.js

Here's an iniitla attempt at documenting how one might write a
test using $exceptionHandlerProvider. The key take-away is the use
of this pattern:

it(...

 module(...
   $exceptionHandlerProvider.mode('log');
 });

 inject(...
 );

});
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Update src/ng/exceptionHandler.js

Here's an iniitla attempt at documenting how one might write a
test using $exceptionHandlerProvider. The key take-away is the use
of this pattern:

it(...

 module(...
   $exceptionHandlerProvider.mode('log');
 });

 inject(...
 );

});
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(rootScope): correct code examples</title>
<updated>2013-01-18T07:11:02+00:00</updated>
<author>
<name>Matthew Browne</name>
</author>
<published>2013-01-15T16:49:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=cbc2024092b326cc7e46d4defc4bf2248bbeb835'/>
<id>cbc2024092b326cc7e46d4defc4bf2248bbeb835</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat($compile): support modifying the DOM structure in postlink fn</title>
<updated>2013-01-17T20:57:36+00:00</updated>
<author>
<name>Martin Probst</name>
</author>
<published>2013-01-08T19:11:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=66f051386e153f10bd2751a7cafb61404799adee'/>
<id>66f051386e153f10bd2751a7cafb61404799adee</id>
<content type='text'>
Support modifying the DOM structure in the post link function of a directive
by creating a defensive copy of the node list, as opposed to a live DOM list.
This is useful for directives to actually replace their entire DOM fragment,
e.g. with the HTML fragment generated by a 3rd party component (Closure, Bootstrap ...).
Fix the indentation of the compileNodes function (was one too little).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Support modifying the DOM structure in the post link function of a directive
by creating a defensive copy of the node list, as opposed to a live DOM list.
This is useful for directives to actually replace their entire DOM fragment,
e.g. with the HTML fragment generated by a 3rd party component (Closure, Bootstrap ...).
Fix the indentation of the compileNodes function (was one too little).
</pre>
</div>
</content>
</entry>
<entry>
<title>style($compile): fix indentation</title>
<updated>2013-01-17T20:55:21+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2013-01-10T00:54:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=8b3f9684e06f9c1fac8e3eccf48a03225e9f4d0a'/>
<id>8b3f9684e06f9c1fac8e3eccf48a03225e9f4d0a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($compile): do not wrap empty root text nodes in spans</title>
<updated>2013-01-17T08:28:56+00:00</updated>
<author>
<name>Pete Bacon Darwin</name>
</author>
<published>2013-01-09T22:23:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=0d8e19c26f941004b0472fe56b2601dc86887668'/>
<id>0d8e19c26f941004b0472fe56b2601dc86887668</id>
<content type='text'>
Closes #1059
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #1059
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ngRepeat): correctly apply $last if repeating over object</title>
<updated>2013-01-17T08:25:07+00:00</updated>
<author>
<name>Pete Bacon Darwin</name>
</author>
<published>2013-01-11T12:47:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=ed2fd2d0caad4e4b45f79bb39fd2a8b03fea8faa'/>
<id>ed2fd2d0caad4e4b45f79bb39fd2a8b03fea8faa</id>
<content type='text'>
If the $last property is calculated from the original collectionLength
on an object and properties starting with $ were filtered out, then $last
is never applied and $middle is applied erroniously.

Closes #1789
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If the $last property is calculated from the original collectionLength
on an object and properties starting with $ were filtered out, then $last
is never applied and $middle is applied erroniously.

Closes #1789
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($route): support route params not separated with slashes.</title>
<updated>2013-01-16T17:42:35+00:00</updated>
<author>
<name>Martin Probst</name>
</author>
<published>2013-01-14T19:01:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=d575e1f613642953fde2d7fdd7123d48f526d42a'/>
<id>d575e1f613642953fde2d7fdd7123d48f526d42a</id>
<content type='text'>
Commit 773ac4a broke support for route parameters that are not seperated
from other route parts by slashes, which this change fixes. It also adds
some documentation about path parameters to the when() method and
escapes all regular expression special characters in the URL, not just
some.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Commit 773ac4a broke support for route parameters that are not seperated
from other route parts by slashes, which this change fixes. It also adds
some documentation about path parameters to the when() method and
escapes all regular expression special characters in the URL, not just
some.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($compile): safely create transclude comment nodes</title>
<updated>2013-01-15T05:59:23+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2013-01-10T06:07:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=2ba458387d19543b45c3bfdbe8db719d2c0f1f15'/>
<id>2ba458387d19543b45c3bfdbe8db719d2c0f1f15</id>
<content type='text'>
Closes #1740
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #1740
</pre>
</div>
</content>
</entry>
</feed>
