<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/src/ng, branch v1.0.0rc5</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<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>test(ngView): fix failing e2e tests</title>
<updated>2012-04-12T04:27:55+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-04-12T04:12:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=0c49bbdc38d228c7612bbda0420e4f17ba501528'/>
<id>0c49bbdc38d228c7612bbda0420e4f17ba501528</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs($http): fix return types</title>
<updated>2012-04-12T00:29:16+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-04-11T06:30:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=7d074a377542028f1c2c184c51971f16ca0e6238'/>
<id>7d074a377542028f1c2c184c51971f16ca0e6238</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</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>
<entry>
<title>chore(*): remove dead code and fix code style issues</title>
<updated>2012-04-10T23:52:12+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-04-10T21:29:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=52ee1ab5eb0f3197453b26c60a70239ac3fffea7'/>
<id>52ee1ab5eb0f3197453b26c60a70239ac3fffea7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>chore($browser): remove the addJs method</title>
<updated>2012-04-10T00:59:47+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-04-09T21:27:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=fbaa1968b7c596ccb63ea8b4be1d3bd92eda50d8'/>
<id>fbaa1968b7c596ccb63ea8b4be1d3bd92eda50d8</id>
<content type='text'>
this was never meant to be a public api used by apps. I refactored
the code to hide the functionality.

BREAKING CHANGE: $browser.addJs method was removed

apps that depended on this functionality should either use many of the
existing script loaders or create a simple helper method specific to the
app.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
this was never meant to be a public api used by apps. I refactored
the code to hide the functionality.

BREAKING CHANGE: $browser.addJs method was removed

apps that depended on this functionality should either use many of the
existing script loaders or create a simple helper method specific to the
app.
</pre>
</div>
</content>
</entry>
<entry>
<title>chore($browser): remove the addCss method</title>
<updated>2012-04-09T22:21:46+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-04-09T18:53:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=13d5528a5f5a2f0feee5c742788a914d2371841e'/>
<id>13d5528a5f5a2f0feee5c742788a914d2371841e</id>
<content type='text'>
this api was never supposed to be public. nobody should be relying
on it.

I'm removing it since angular doesn't need it.

BREAKING CHANGE: $browser.addCss was removed

apps the depend on this functionality should write a simple utility
function specific to the app (see this diff for hints).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
this api was never supposed to be public. nobody should be relying
on it.

I'm removing it since angular doesn't need it.

BREAKING CHANGE: $browser.addCss was removed

apps the depend on this functionality should write a simple utility
function specific to the app (see this diff for hints).
</pre>
</div>
</content>
</entry>
</feed>
