<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/src/service, branch v0.10.1</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>fix($location): Use encodeUriQuery instead of escape</title>
<updated>2011-09-08T21:00:59+00:00</updated>
<author>
<name>Kai Groner</name>
</author>
<published>2011-09-02T20:28:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=7e1f364177111ba6cceac82f6c6bcc254448292b'/>
<id>7e1f364177111ba6cceac82f6c6bcc254448292b</id>
<content type='text'>
Closes #492
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #492
</pre>
</div>
</content>
</entry>
<entry>
<title>style: fix some missing semi-colons and spaces, typos</title>
<updated>2011-09-08T21:00:59+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2011-09-01T14:16:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=4b4292edb86d34067a2babb9f572a3641dd1d2a7'/>
<id>4b4292edb86d34067a2babb9f572a3641dd1d2a7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor($route): remove some odd code and rename allowReload to forceReload</title>
<updated>2011-09-08T21:00:59+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2011-09-01T14:04:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=292d5d1421108c239d3270c22c49a9ccd1eea571'/>
<id>292d5d1421108c239d3270c22c49a9ccd1eea571</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($route): update $route to reflect $location changes</title>
<updated>2011-09-08T21:00:59+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2011-07-12T00:18:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=22cb600280cecabf719ba1878719c907aa01ba18'/>
<id>22cb600280cecabf719ba1878719c907aa01ba18</id>
<content type='text'>
* update $route to reflect new $location
* add some more unit tests to $route
* fix some other failing unit tests
* redirect overrides the url now

Breaks $route custom redirect fn has only 3 params now
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* update $route to reflect new $location
* add some more unit tests to $route
* fix some other failing unit tests
* redirect overrides the url now

Breaks $route custom redirect fn has only 3 params now
</pre>
</div>
</content>
</entry>
<entry>
<title>feat($location): $location service with html5 history api support</title>
<updated>2011-09-08T21:00:49+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2011-06-29T16:30:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=5ba227c7cd3ddfcd3bffc3fd15daf8d6ec9b8713'/>
<id>5ba227c7cd3ddfcd3bffc3fd15daf8d6ec9b8713</id>
<content type='text'>
See documentation of $location for more info

Breaks $location has no properties, only get/set methods

Closes #168
Closes #146
Closes #281
Closes #234
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
See documentation of $location for more info

Breaks $location has no properties, only get/set methods

Closes #168
Closes #146
Closes #281
Closes #234
</pre>
</div>
</content>
</entry>
<entry>
<title>feat($sniffer): basic implementation of browser feature testing</title>
<updated>2011-09-08T18:37:28+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2011-06-23T18:01:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=d0f459c56fdb3dae692c359a2915acb2fd063c79'/>
<id>d0f459c56fdb3dae692c359a2915acb2fd063c79</id>
<content type='text'>
This only extracts our 'hashchange' event and html5 history api detection from
$browser.

Closes #400
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This only extracts our 'hashchange' event and html5 history api detection from
$browser.

Closes #400
</pre>
</div>
</content>
</entry>
<entry>
<title>feat($browser): jQuery style url method, onUrlChange event</title>
<updated>2011-09-08T18:36:33+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2011-06-22T17:57:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=988ed451b508b9d7ea4690b150993ec62d8a3743'/>
<id>988ed451b508b9d7ea4690b150993ec62d8a3743</id>
<content type='text'>
This is just basic implementation of $browser.url, $browser.onUrlChange methods:

$browser.url() - returns current location.href

$browser.url('/new') - set url to /new
If supported, history.pushState is used, location.href property otherwise.

$browser.url('/new', true) - replace current url with /new
If supported, history.replaceState is used, location.replace otherwise.

$browser.onUrlChange is only fired when url is changed from the browser:
- user types into address bar
- user clicks on back/forward button
- user clicks on link

It's not fired when url is changed using $browser.url()

Breaks Removed $browser.setUrl(), $browser.getUrl(), use $browser.url()
Breaks Removed $browser.onHashChange(), use $browser.onUrlChange()
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is just basic implementation of $browser.url, $browser.onUrlChange methods:

$browser.url() - returns current location.href

$browser.url('/new') - set url to /new
If supported, history.pushState is used, location.href property otherwise.

$browser.url('/new', true) - replace current url with /new
If supported, history.replaceState is used, location.replace otherwise.

$browser.onUrlChange is only fired when url is changed from the browser:
- user types into address bar
- user clicks on back/forward button
- user clicks on link

It's not fired when url is changed using $browser.url()

Breaks Removed $browser.setUrl(), $browser.getUrl(), use $browser.url()
Breaks Removed $browser.onHashChange(), use $browser.onUrlChange()
</pre>
</div>
</content>
</entry>
<entry>
<title>test(jsonp): fixing jsonp e2e tests</title>
<updated>2011-09-02T23:17:05+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-09-02T22:53:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=7f0b97e02c61183a30d39f7ce81d11220ac64cca'/>
<id>7f0b97e02c61183a30d39f7ce81d11220ac64cca</id>
<content type='text'>
- buzz api keeps on throttling our requests which makes our build fail
  so I'm disabling the buzz demo e2e test
- the $xhr service jsonp test was modified to use jsonp on angularjs.org
  instead of buzz api for the same reason as mentioned above
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- buzz api keeps on throttling our requests which makes our build fail
  so I'm disabling the buzz demo e2e test
- the $xhr service jsonp test was modified to use jsonp on angularjs.org
  instead of buzz api for the same reason as mentioned above
</pre>
</div>
</content>
</entry>
<entry>
<title>style(docs): improve the formatting of events in docs</title>
<updated>2011-08-31T21:34:56+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2011-08-31T19:21:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=3c80cf3df607464ea95acc6595c521d8fd32de2c'/>
<id>3c80cf3df607464ea95acc6595c521d8fd32de2c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat($route): add events before/after route change</title>
<updated>2011-08-31T21:31:23+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2011-08-24T05:30:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=ad3cc16eef0a13844e6e05abcb18c46a370f0814'/>
<id>ad3cc16eef0a13844e6e05abcb18c46a370f0814</id>
<content type='text'>
BREAKING CHANGE
* removing `onChange`

FEATURE
* adding three events: $beforeRouteChange, $afterRouteChange, $routeReload
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
BREAKING CHANGE
* removing `onChange`

FEATURE
* adding three events: $beforeRouteChange, $afterRouteChange, $routeReload
</pre>
</div>
</content>
</entry>
</feed>
