<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/test, branch v1.0.0rc6</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>fix(select): properly handle empty &amp; unknown options without ngOptions</title>
<updated>2012-04-20T21:29:37+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-04-18T07:48:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=904b69c745ea4afc1d6ecd2a5f3138c6f947b157'/>
<id>904b69c745ea4afc1d6ecd2a5f3138c6f947b157</id>
<content type='text'>
Previously only when ngOptions was used, we correctly handled situations
when model was set to an unknown value. With this change, we'll add/remove
extra unknown option or reuse an existing empty option (option with value
set to "") when model is undefined.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously only when ngOptions was used, we correctly handled situations
when model was set to an unknown value. With this change, we'll add/remove
extra unknown option or reuse an existing empty option (option with value
set to "") when model is undefined.
</pre>
</div>
</content>
</entry>
<entry>
<title>test(selectSpec): clean up and simplify specs</title>
<updated>2012-04-20T21:29:36+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-04-17T22:12:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=c65c34ebfe0f70c83a45f283654c8558802752cf'/>
<id>c65c34ebfe0f70c83a45f283654c8558802752cf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat($resource): support HTTP PATCH method</title>
<updated>2012-04-20T19:32:33+00:00</updated>
<author>
<name>simpulton</name>
</author>
<published>2012-04-20T08:31:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=e61fd1b43a55496c11c63da7ca2fc05b88d44043'/>
<id>e61fd1b43a55496c11c63da7ca2fc05b88d44043</id>
<content type='text'>
Properly serialize data into request body instead of url.

Closes #887
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Properly serialize data into request body instead of url.

Closes #887
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(script): Incorrectly reading script text on ie</title>
<updated>2012-04-20T18:29:34+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2012-04-17T20:55:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=94dd68570952f6f31abfa351b1159afcd3588a57'/>
<id>94dd68570952f6f31abfa351b1159afcd3588a57</id>
<content type='text'>
IE deals with script tags in special way and .text() does not work. Reading the .text property directly fixes the issue.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
IE deals with script tags in special way and .text() does not work. Reading the .text property directly fixes the issue.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($location): properly rewrite urls in html5 mode with base url set</title>
<updated>2012-04-12T09:36:03+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-04-12T06:46:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=6d7e7fdea6c3d6551ff40c150aa42e1375d2cb5f'/>
<id>6d7e7fdea6c3d6551ff40c150aa42e1375d2cb5f</id>
<content type='text'>
previously we were doing all kinds of checks to see if we should rewrite the url or not and we
were missing many scenarios. not any more.

with this change, we rewrite the url unless:
- the href is not set
- link has target attribute
- the absolute url of the link doesn't match the absolute prefix for all urls in our app

This also means that ng-ext-link attribute which we previously used to distinguish external
links from app links is not necessary any more. apps can just set target=_self to prevent
rewriting.

BREAKING CHANGE: ng-ext-link directive was removed because it's unnecessary

apps that relied on ng-ext-link should simply replace it with target=_self
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
previously we were doing all kinds of checks to see if we should rewrite the url or not and we
were missing many scenarios. not any more.

with this change, we rewrite the url unless:
- the href is not set
- link has target attribute
- the absolute url of the link doesn't match the absolute prefix for all urls in our app

This also means that ng-ext-link attribute which we previously used to distinguish external
links from app links is not necessary any more. apps can just set target=_self to prevent
rewriting.

BREAKING CHANGE: ng-ext-link directive was removed because it's unnecessary

apps that relied on ng-ext-link should simply replace it with target=_self
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(e2eRunner): $browser.location should delegate to apps $location</title>
<updated>2012-04-12T09:36:03+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-04-12T09:15:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=df72852f3496d7640bb4f70837338e464b7ed69f'/>
<id>df72852f3496d7640bb4f70837338e464b7ed69f</id>
<content type='text'>
previously it would create a new instance which wasn't configured as the one in the app,
which resulted in incorrect values being returned in html5 mode with base url set
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
previously it would create a new instance which wasn't configured as the one in the app,
which resulted in incorrect values being returned in html5 mode with base url set
</pre>
</div>
</content>
</entry>
<entry>
<title>feat($http): expose the defaults config as $http.defaults</title>
<updated>2012-04-12T00:29:16+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-04-11T06:20:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=dceafd32ee140c8af5c7a0ca6cb808395fffeed3'/>
<id>dceafd32ee140c8af5c7a0ca6cb808395fffeed3</id>
<content type='text'>
Often it is impossible to set the http defaults during the config phase,
because the config info is not available at this time.

A good example is authentication - often the app needs to bootstrap,
allow user to enter credentials and only then it gains access to
session token which then should be sent to the server with every request.
Without having the ability to set the defaults at runtime, the developer
either has to resort to hacks, or has to set the session token header
with every request made by the app.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Often it is impossible to set the http defaults during the config phase,
because the config info is not available at this time.

A good example is authentication - often the app needs to bootstrap,
allow user to enter credentials and only then it gains access to
session token which then should be sent to the server with every request.
Without having the ability to set the defaults at runtime, the developer
either has to resort to hacks, or has to set the session token header
with every request made by the app.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($location): don't rewrite links to different base paths</title>
<updated>2012-04-12T00:27:32+00:00</updated>
<author>
<name>Thibault Leruitte</name>
</author>
<published>2012-04-04T14:41:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=0a5050eb3c1f1ed84134f23a44b97a7261114060'/>
<id>0a5050eb3c1f1ed84134f23a44b97a7261114060</id>
<content type='text'>
links to different base paths should not be left untouched
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
links to different base paths should not be left untouched
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(input.radio): support 2-way binding in a repeater</title>
<updated>2012-04-11T22:50:52+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2012-04-10T20:41:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=93d62860e988a09fb64e594f50f6cd55a1fc5748'/>
<id>93d62860e988a09fb64e594f50f6cd55a1fc5748</id>
<content type='text'>
Closes #869
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #869
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(ngSanitize): extract $sanitize, ngBindHtml, linkyFilter into a module</title>
<updated>2012-04-11T22:50:47+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2012-04-10T23:50:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=5bcd7198664dca2bf85ddf8b3a89f417cd4e4796'/>
<id>5bcd7198664dca2bf85ddf8b3a89f417cd4e4796</id>
<content type='text'>
Create build for other modules as well (ngResource, ngCookies):
- wrap into a function
- add license
- add version

Breaks `$sanitize` service, `ngBindHtml` directive and `linky` filter were moved to the `ngSanitize` module. Apps that depend on any of these will need to load `angular-sanitize.js` and include `ngSanitize` in their dependency list: `var myApp = angular.module('myApp', ['ngSanitize']);`
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Create build for other modules as well (ngResource, ngCookies):
- wrap into a function
- add license
- add version

Breaks `$sanitize` service, `ngBindHtml` directive and `linky` filter were moved to the `ngSanitize` module. Apps that depend on any of these will need to load `angular-sanitize.js` and include `ngSanitize` in their dependency list: `var myApp = angular.module('myApp', ['ngSanitize']);`
</pre>
</div>
</content>
</entry>
</feed>
