<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/test/ngResource, branch g3_v1_0</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<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>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>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>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>fix($resource): prevent default params to be shared between actions</title>
<updated>2012-11-24T20:29:16+00:00</updated>
<author>
<name>Adrian Gheorghe</name>
</author>
<published>2012-09-22T23:53:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=c0de8fb737d5d381e1ca5efc58c9ce5fcd860dd9'/>
<id>c0de8fb737d5d381e1ca5efc58c9ce5fcd860dd9</id>
<content type='text'>
Having a $resource defined as:

var R = $resource('/Path', {}, {
  get: {method: 'GET', params: {objId: '1'}},
  perform: {method: 'GET'}
});

was causing both actions to call the same URI (if called in this order):

R.get({}); // =&gt; /Path?objId=1
R.perform({}); // =&gt; /Path?objId=1
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Having a $resource defined as:

var R = $resource('/Path', {}, {
  get: {method: 'GET', params: {objId: '1'}},
  perform: {method: 'GET'}
});

was causing both actions to call the same URI (if called in this order):

R.get({}); // =&gt; /Path?objId=1
R.perform({}); // =&gt; /Path?objId=1
</pre>
</div>
</content>
</entry>
<entry>
<title>revert($resource): support custom headers per action</title>
<updated>2012-11-11T11:07:26+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-11-11T11:07:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=29541e735d3c01acc2ff18e371858e9eba14fc0c'/>
<id>29541e735d3c01acc2ff18e371858e9eba14fc0c</id>
<content type='text'>
This reverts commit b936e52874fe0173c6d4ba0a84f45deac67518ac.

This commit introduces a feature and should haven't been merged
into the stable branch.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit b936e52874fe0173c6d4ba0a84f45deac67518ac.

This commit introduces a feature and should haven't been merged
into the stable branch.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($resource): allow falsy values in URL parameters</title>
<updated>2012-09-06T22:49:49+00:00</updated>
<author>
<name>Benjamín Eidelman</name>
</author>
<published>2012-08-20T22:47:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=125573602f420a4f3c94cba762f03bff1b936f0c'/>
<id>125573602f420a4f3c94cba762f03bff1b936f0c</id>
<content type='text'>
Close #1212

when a param value was 0 (or false) it was ignored and removed from url.
after this fix that only happens if the value is undefined or null.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Close #1212

when a param value was 0 (or false) it was ignored and removed from url.
after this fix that only happens if the value is undefined or null.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($resource): ignore undefined parameters</title>
<updated>2012-09-06T22:49:49+00:00</updated>
<author>
<name>petrovalex</name>
</author>
<published>2012-05-11T20:14:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=d2e52b2376962cf9bd029f18039140c2284c77fc'/>
<id>d2e52b2376962cf9bd029f18039140c2284c77fc</id>
<content type='text'>
- $resource should handle multiple params with same name
- ignore slashes of undefined parameters
- fix default parameters issue, mentioned in #875

Closes #875
Closes #782
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- $resource should handle multiple params with same name
- ignore slashes of undefined parameters
- fix default parameters issue, mentioned in #875

Closes #875
Closes #782
</pre>
</div>
</content>
</entry>
<entry>
<title>feat($resource): support custom headers per action</title>
<updated>2012-09-06T22:49:48+00:00</updated>
<author>
<name>Max Martinsson</name>
</author>
<published>2012-05-17T15:11:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=b936e52874fe0173c6d4ba0a84f45deac67518ac'/>
<id>b936e52874fe0173c6d4ba0a84f45deac67518ac</id>
<content type='text'>
Closes #736
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #736
</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>
</feed>
