<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/src/ng, branch v1.1.1</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>fix($http): only set X-XSFR-TOKEN header for same-domain request</title>
<updated>2012-11-26T22:58:59+00:00</updated>
<author>
<name>Rado Kirov</name>
</author>
<published>2012-09-28T22:43:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=fce100a46c5681562253c3a856d67bbd35fbc2f2'/>
<id>fce100a46c5681562253c3a856d67bbd35fbc2f2</id>
<content type='text'>
This is needed to prevent CORS preflight checks. The XSFR token
is quite useless for CORS requests anyway.

BREAKING CHANGE: X-XSFR-TOKEN is no longer send for cross domain
requests. This shouldn't affect any known production service.

Closes #1096
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is needed to prevent CORS preflight checks. The XSFR token
is quite useless for CORS requests anyway.

BREAKING CHANGE: X-XSFR-TOKEN is no longer send for cross domain
requests. This shouldn't affect any known production service.

Closes #1096
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($http): remove 'X-Requested-With' from header defaults</title>
<updated>2012-11-26T22:36:40+00:00</updated>
<author>
<name>Rado Kirov</name>
</author>
<published>2012-10-12T19:41:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=3a75b1124d062f64093a90b26630938558909e8d'/>
<id>3a75b1124d062f64093a90b26630938558909e8d</id>
<content type='text'>
X-Requested-With header is rarely used in practice and by using
it all the time we are triggering preflight checks for crossdomain
requests.

We could try detecting if we are doing CORS requests or not, but
it doesn't look like it's worth the trouble.

BREAKING CHANGE: X-Requested-With header is not set by $http service
any more. If anyone actually uses this header it's quite easy to add
it back via:

```
myAppModule.config(['$httpProvider', function($httpProvider) {
    $httpProvider.defaults.headers.common["X-Requested-With"] = 'XMLHttpRequest';
}]);
```

Closes #1004
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
X-Requested-With header is rarely used in practice and by using
it all the time we are triggering preflight checks for crossdomain
requests.

We could try detecting if we are doing CORS requests or not, but
it doesn't look like it's worth the trouble.

BREAKING CHANGE: X-Requested-With header is not set by $http service
any more. If anyone actually uses this header it's quite easy to add
it back via:

```
myAppModule.config(['$httpProvider', function($httpProvider) {
    $httpProvider.defaults.headers.common["X-Requested-With"] = 'XMLHttpRequest';
}]);
```

Closes #1004
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($location): reset $location.$$replace with every watch call</title>
<updated>2012-11-26T22:21:02+00:00</updated>
<author>
<name>Rado Kirov</name>
</author>
<published>2012-09-22T01:57:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=a32bc40fd75ca46e3581ad7a6e3a24a31df6e266'/>
<id>a32bc40fd75ca46e3581ad7a6e3a24a31df6e266</id>
<content type='text'>
Closes #1111
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #1111
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ngClassOdd/ngClassEven): support shrinking/reordering in repeaters</title>
<updated>2012-11-26T19:36:53+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-11-23T21:46:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=d859dcecea654d1d858cd756c6efb8435a453197'/>
<id>d859dcecea654d1d858cd756c6efb8435a453197</id>
<content type='text'>
We need to watch $index in addition to cssClasses because only then
we can correctly respond to shrinking or reordered repeaters.

Closes #1076
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We need to watch $index in addition to cssClasses because only then
we can correctly respond to shrinking or reordered repeaters.

Closes #1076
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ngRepeat): support mostly-stable repeating for primitives</title>
<updated>2012-11-26T19:36:53+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-11-23T21:43:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=1b17dfa693c36607ea86c7129a8612f7771c2f22'/>
<id>1b17dfa693c36607ea86c7129a8612f7771c2f22</id>
<content type='text'>
I'm reverting changes that were originally done to ngRepeat to fix #933,
because these are now not necessary after the previous changes to keep
ngModel always synced with the DOM.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
I'm reverting changes that were originally done to ngRepeat to fix #933,
because these are now not necessary after the previous changes to keep
ngModel always synced with the DOM.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ngModel): sync ngModel state with scope state</title>
<updated>2012-11-26T19:36:53+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-11-23T21:40:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=e6d9bea4f3b2eb28851298d3dc3a30d46062d58a'/>
<id>e6d9bea4f3b2eb28851298d3dc3a30d46062d58a</id>
<content type='text'>
In cases when we reuse elements in a repeater but associate
them with a new scope (see #933 - repeating over array of
primitives) it's possible for the internal ngModel state and
the scope state to get out of sync. This change ensure that
the two are always sync-ed up even in cases where we
reassociate an element with a different (but similar) scope.

In the case of repeating over array of primitives it's still
possible to run into issue if we iterate over primitives and
use form controls or similar widgets without ngModel - oh well,
we'd likely need a special repeater for primitives to deal
with this properly, even then there might be cornercases.

Closes #933
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In cases when we reuse elements in a repeater but associate
them with a new scope (see #933 - repeating over array of
primitives) it's possible for the internal ngModel state and
the scope state to get out of sync. This change ensure that
the two are always sync-ed up even in cases where we
reassociate an element with a different (but similar) scope.

In the case of repeating over array of primitives it's still
possible to run into issue if we iterate over primitives and
use form controls or similar widgets without ngModel - oh well,
we'd likely need a special repeater for primitives to deal
with this properly, even then there might be cornercases.

Closes #933
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ngRepeat): attempt to simplify and improve existing fix for #933</title>
<updated>2012-11-26T19:31:54+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-11-26T19:25:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=d644dcfa52cba0cee3c6fa8d03e1654cdb654e53'/>
<id>d644dcfa52cba0cee3c6fa8d03e1654cdb654e53</id>
<content type='text'>
I'm keeping this in for future reference. The issue with this solution
is that if we shift() the first item in the array, the whole repeater
DOM will be rebuilt from scratch, we need to do better than that.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
I'm keeping this in for future reference. The issue with this solution
is that if we shift() the first item in the array, the whole repeater
DOM will be rebuilt from scratch, we need to do better than that.
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(form): add ability to reset a form to pristine state</title>
<updated>2012-11-26T15:44:34+00:00</updated>
<author>
<name>Pawel Kozlowski</name>
</author>
<published>2012-07-07T17:02:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=733a97adf87bf8f7ec6be22b37c4676cf7b5fc2b'/>
<id>733a97adf87bf8f7ec6be22b37c4676cf7b5fc2b</id>
<content type='text'>
Retting a form to pristine state will cause all of the nested
form and form controls to be recursively reset as well.

Closes #856
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Retting a form to pristine state will cause all of the nested
form and form controls to be recursively reset as well.

Closes #856
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(Scope): allow removing a listener during event</title>
<updated>2012-11-25T10:39:54+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2012-09-25T08:09:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=e6966e05f508d1d2633b9ff327fea912b12555ac'/>
<id>e6966e05f508d1d2633b9ff327fea912b12555ac</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(api): add ngRequired to input/select/textarea directives</title>
<updated>2012-11-25T00:18:10+00:00</updated>
<author>
<name>Dean Sofer</name>
</author>
<published>2012-11-09T00:15:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=c8fd7fd0e2c77cc3d22382367ed5a1537383bee6'/>
<id>c8fd7fd0e2c77cc3d22382367ed5a1537383bee6</id>
<content type='text'>
Closes #1202
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #1202
</pre>
</div>
</content>
</entry>
</feed>
