<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/src/ngResource, branch g3_v1_0</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>docs($resource): improve installation section</title>
<updated>2013-04-04T15:57:14+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2013-04-04T15:57:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=03bbe9aab1cec0b0a8fe6ddd7320dd28fd3795bc'/>
<id>03bbe9aab1cec0b0a8fe6ddd7320dd28fd3795bc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs($resource): Added an installation section.</title>
<updated>2013-04-04T15:54:45+00:00</updated>
<author>
<name>Ciro Nunes</name>
</author>
<published>2013-03-05T03:04:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=0ef9d54ccd3643b95f8ffee6641fb0b552af127f'/>
<id>0ef9d54ccd3643b95f8ffee6641fb0b552af127f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($http): don't encode URL query substring "null" to "+"</title>
<updated>2013-02-27T01:29:08+00:00</updated>
<author>
<name>Andrew McLeod</name>
</author>
<published>2013-02-26T05:25:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=b13da18e11d5f67696906d1ecd2fc9e753d50da4'/>
<id>b13da18e11d5f67696906d1ecd2fc9e753d50da4</id>
<content type='text'>
Fixes issue in encodeUriQuery used by $http and $resource that
treats null as a string and replaces the characters "null" with "+".
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes issue in encodeUriQuery used by $http and $resource that
treats null as a string and replaces the characters "null" with "+".
</pre>
</div>
</content>
</entry>
<entry>
<title>docs($resource): fix bad indentation producing a code block</title>
<updated>2013-02-14T23:45:37+00:00</updated>
<author>
<name>Cedric Soulas</name>
</author>
<published>2013-02-10T19:42:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=14fd064a62999a804bcce1050c81f603510fad95'/>
<id>14fd064a62999a804bcce1050c81f603510fad95</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(resource): Update RegExp to allow urlParams with out leading slash</title>
<updated>2013-02-14T22:43:31+00:00</updated>
<author>
<name>Fredrik Bonander</name>
</author>
<published>2013-01-23T09:53:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=6194e002e2f8860218076a7a5ecf945b0d981843'/>
<id>6194e002e2f8860218076a7a5ecf945b0d981843</id>
<content type='text'>
Will allow reoucese to be loaded from a relative path
Example:
var R = $resource(':path');
R.get({ path : 'data.json' });

Example usage:
Load resources in applications not using webserver, ie local webapp in
on a tablet.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Will allow reoucese to be loaded from a relative path
Example:
var R = $resource(':path');
R.get({ path : 'data.json' });

Example usage:
Load resources in applications not using webserver, ie local webapp in
on a tablet.
</pre>
</div>
</content>
</entry>
<entry>
<title>docs($resource): fix missing punctuation</title>
<updated>2013-02-14T20:14:13+00:00</updated>
<author>
<name>Cedric Soulas</name>
</author>
<published>2013-02-10T19:40:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=fb132732f1791632ca1a93b9bbace83563047b83'/>
<id>fb132732f1791632ca1a93b9bbace83563047b83</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ngResource): correct leading slash removal.</title>
<updated>2013-01-22T19:32:27+00:00</updated>
<author>
<name>pavelgj</name>
</author>
<published>2013-01-08T22:19:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=4439e393198d6a1657c02c098e1b13212c3f1db6'/>
<id>4439e393198d6a1657c02c098e1b13212c3f1db6</id>
<content type='text'>
Fixed an issues with ngResource param substitution where it was incorrectly removing leading slash when param was followed by a non-slash character.
Ex:
'/:foo/:bar.baz/:aux'

params = {
  foo: 'aaa',
  bar: undefined,
  aux: undefined
}

The above params were incorrectly producing '/aaa.baz' but now it results in '/aaa/.baz'.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixed an issues with ngResource param substitution where it was incorrectly removing leading slash when param was followed by a non-slash character.
Ex:
'/:foo/:bar.baz/:aux'

params = {
  foo: 'aaa',
  bar: undefined,
  aux: undefined
}

The above params were incorrectly producing '/aaa.baz' but now it results in '/aaa/.baz'.
</pre>
</div>
</content>
</entry>
<entry>
<title>docs($resource): document port number escaping and fix typo</title>
<updated>2012-12-09T16:49:42+00:00</updated>
<author>
<name>Juha Syrjälä</name>
</author>
<published>2012-12-07T18:09:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=0a61dcb486c4a97c1f9ff4f669faaa857fa626bd'/>
<id>0a61dcb486c4a97c1f9ff4f669faaa857fa626bd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($resource): HTTP method should be case-insensitive</title>
<updated>2012-11-30T22:23:34+00:00</updated>
<author>
<name>Sudhir Jonathan</name>
</author>
<published>2012-11-27T06:24:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=0c3500f532c1c2d7fb455206822c8a42561c962c'/>
<id>0c3500f532c1c2d7fb455206822c8a42561c962c</id>
<content type='text'>
Perform call `angular.uppercase` on all given action methods.

Closes #1403
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Perform call `angular.uppercase` on all given action methods.

Closes #1403
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor($resource): fix indentation and move a method definition</title>
<updated>2012-11-30T21:47:25+00:00</updated>
<author>
<name>Cezar Berea</name>
</author>
<published>2012-11-25T15:10:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=c12f525df4c45de206f5949ea8c54e081417c83c'/>
<id>c12f525df4c45de206f5949ea8c54e081417c83c</id>
<content type='text'>
Moved Resource.bind out of the actions forEach
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Moved Resource.bind out of the actions forEach
</pre>
</div>
</content>
</entry>
</feed>
