<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/test, branch v1.0.7</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>test(parse): Test for the parsing not invoking twice to get self</title>
<updated>2013-05-21T21:41:22+00:00</updated>
<author>
<name>Lucas Galfasó</name>
</author>
<published>2013-04-29T18:07:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=4d8b0282b4e1d2de7948d3195f68c20b3c3765c2'/>
<id>4d8b0282b4e1d2de7948d3195f68c20b3c3765c2</id>
<content type='text'>
New tests to not call twice a function to get self
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
New tests to not call twice a function to get self
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($browser): should use first value for a cookie.</title>
<updated>2013-05-11T16:28:14+00:00</updated>
<author>
<name>Chirayu Krishnappa</name>
</author>
<published>2013-05-11T02:17:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=9145d5ec3e17ee1e23eda3fb1875c928c1d8f069'/>
<id>9145d5ec3e17ee1e23eda3fb1875c928c1d8f069</id>
<content type='text'>
With this change, $browser.cookies()["foo"] will behave like
docCookies.getItem("foo") where docCookies is defined at
https://developer.mozilla.org/en-US/docs/DOM/document.cookie

This fixes the issue where, if there's a value for the XSRF-TOKEN cookie
value with the path /, then that value is used for all applications in
the domain even if they set path specific values for XSRF-TOKEN.

Closes #2635
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
With this change, $browser.cookies()["foo"] will behave like
docCookies.getItem("foo") where docCookies is defined at
https://developer.mozilla.org/en-US/docs/DOM/document.cookie

This fixes the issue where, if there's a value for the XSRF-TOKEN cookie
value with the path /, then that value is used for all applications in
the domain even if they set path specific values for XSRF-TOKEN.

Closes #2635
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ngPluralize): handle the empty string as a valid override</title>
<updated>2013-05-10T19:04:59+00:00</updated>
<author>
<name>Lucas Galfasó</name>
</author>
<published>2013-05-07T12:14:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=42ce8f7f556808da3947aa0bb1c448bbe970bd36'/>
<id>42ce8f7f556808da3947aa0bb1c448bbe970bd36</id>
<content type='text'>
Fix the check for overrides so it is able to handle the empty string

Closes #2575
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix the check for overrides so it is able to handle the empty string

Closes #2575
</pre>
</div>
</content>
</entry>
<entry>
<title>test(sortedHtml): ignore bogus rowspan=1 and colspan=1 in IE</title>
<updated>2013-05-09T12:23:39+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-12-04T23:02:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=5d2bb2c1b9179a66e37ac12241e14b03d42adaba'/>
<id>5d2bb2c1b9179a66e37ac12241e14b03d42adaba</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>test(sortedHtml): fix comment support in sortedHtml helper</title>
<updated>2013-05-09T12:23:39+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-12-04T17:24:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=9039ddbb568bdbd46cfbee2729b6f781ac413041'/>
<id>9039ddbb568bdbd46cfbee2729b6f781ac413041</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(angular): do not copy $$hashKey in copy/extend functions.</title>
<updated>2013-05-08T12:04:08+00:00</updated>
<author>
<name>R. Merkert</name>
</author>
<published>2013-04-17T00:09:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=016e1e675e717ab851759eac5be640bd2f238331'/>
<id>016e1e675e717ab851759eac5be640bd2f238331</id>
<content type='text'>
Copying the $$hashKey as part of copy/extend operations makes little
sense since hashkey is used primarily as an object id, especially in
the context of the ngRepeat directive. This change maintains the
existing $$hashKey of an object that is being copied into (likewise for
extend).
It is not uncommon to take an item in a collection, copy it,
and then append it to the collection. By copying the $$hashKey, this
leads to duplicate object errors with the current ngRepeat.

Closes #1875
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Copying the $$hashKey as part of copy/extend operations makes little
sense since hashkey is used primarily as an object id, especially in
the context of the ngRepeat directive. This change maintains the
existing $$hashKey of an object that is being copied into (likewise for
extend).
It is not uncommon to take an item in a collection, copy it,
and then append it to the collection. By copying the $$hashKey, this
leads to duplicate object errors with the current ngRepeat.

Closes #1875
</pre>
</div>
</content>
</entry>
<entry>
<title>feat($cookieStore): $cookieStore.get now parses blank string as blank string</title>
<updated>2013-05-08T09:07:24+00:00</updated>
<author>
<name>Illniyar</name>
</author>
<published>2013-04-20T20:33:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=1240641f765f7bcef8c6050fd04e9c4530b9e0c2'/>
<id>1240641f765f7bcef8c6050fd04e9c4530b9e0c2</id>
<content type='text'>
closes #1918
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
closes #1918
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(select): ensure empty option is not lost in IE9</title>
<updated>2013-05-07T20:29:44+00:00</updated>
<author>
<name>Chad Smith</name>
</author>
<published>2013-03-19T10:22:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=f1a34f0908cf3629da4f97b20d0c77e315e93cb5'/>
<id>f1a34f0908cf3629da4f97b20d0c77e315e93cb5</id>
<content type='text'>
Fix a check inside render for select elements with ngOptions, which
compares the selected property of an element with it's desired state.
Ensure the placeholder, if available, is explicitly selected if the model
value can not be found in the option list.
Without these fixes it's up to the browser implementation to decide which
option to choose. In most browsers, this has the effect of displaying the
first item in the list. In IE9 however, this causes the select to display
nothing.

Closes #2150, #1826
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix a check inside render for select elements with ngOptions, which
compares the selected property of an element with it's desired state.
Ensure the placeholder, if available, is explicitly selected if the model
value can not be found in the option list.
Without these fixes it's up to the browser implementation to decide which
option to choose. In most browsers, this has the effect of displaying the
first item in the list. In IE9 however, this causes the select to display
nothing.

Closes #2150, #1826
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($location): back-button should fire $locationChangeStart</title>
<updated>2013-05-01T13:51:05+00:00</updated>
<author>
<name>quazzie</name>
</author>
<published>2013-03-22T09:35:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=ac086ae61619a86ee77149f39193d264a191932a'/>
<id>ac086ae61619a86ee77149f39193d264a191932a</id>
<content type='text'>
Before $locationChangeStart event is not broadcast when pressing the back-button on the browser.

Closes #2109
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Before $locationChangeStart event is not broadcast when pressing the back-button on the browser.

Closes #2109
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(jqLite): correct implementation of mouseenter/mouseleave event</title>
<updated>2013-04-29T17:28:29+00:00</updated>
<author>
<name>gockxml</name>
</author>
<published>2013-04-29T17:14:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=b0233a33a1c56ef6c775545f36f6e086def98795'/>
<id>b0233a33a1c56ef6c775545f36f6e086def98795</id>
<content type='text'>
Implement mouseenter/mouseleave event referring to
http://www.quirksmode.org/js/events_mouse.html#link8 and jQuery source
code(not dependent on jQuery).
The old implementation is wrong. When moving mouse from a parent element
into a child element, it would trigger mouseleave event, which should not.
And the old test about mouseenter/mouseleave is wrong too. It just
triggers mouseover and mouseout events, cannot describe the process of mouse
moving from one element to another element, which is important for
mouseenter/mouseleave.

Closes #2131, #1811
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Implement mouseenter/mouseleave event referring to
http://www.quirksmode.org/js/events_mouse.html#link8 and jQuery source
code(not dependent on jQuery).
The old implementation is wrong. When moving mouse from a parent element
into a child element, it would trigger mouseleave event, which should not.
And the old test about mouseenter/mouseleave is wrong too. It just
triggers mouseover and mouseout events, cannot describe the process of mouse
moving from one element to another element, which is important for
mouseenter/mouseleave.

Closes #2131, #1811
</pre>
</div>
</content>
</entry>
</feed>
