<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/src/ngResource, branch v1.1.4</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>docs(*): fixed typos</title>
<updated>2013-03-29T22:14:55+00:00</updated>
<author>
<name>Pascal Borreli</name>
</author>
<published>2013-03-21T19:09:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=9480136d9f062ec4b8df0a35914b48c0d61e0002'/>
<id>9480136d9f062ec4b8df0a35914b48c0d61e0002</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-03-08T19:04:32+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=cb5ce981fb824970cc5bdd68ecb685e9aba3c268'/>
<id>cb5ce981fb824970cc5bdd68ecb685e9aba3c268</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): ability to override url in resource actions</title>
<updated>2013-02-27T18:52:30+00:00</updated>
<author>
<name>zeflasher</name>
</author>
<published>2013-02-22T02:49:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=60f1f099fc7e5197808cd6acb7407cdc40f50a3f'/>
<id>60f1f099fc7e5197808cd6acb7407cdc40f50a3f</id>
<content type='text'>
Resources now can defined per action url override. The url is treated
as a template rather than a literal string, so fancy interpolations
are possible.

See attached tests for example usage.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Resources now can defined per action url override. The url is treated
as a template rather than a literal string, so fancy interpolations
are possible.

See attached tests for example usage.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($http): don't encode URL query substring "null" to "+"</title>
<updated>2013-02-27T01:25:15+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=86d191ed4aea9015adc71b852223475c5c762c34'/>
<id>86d191ed4aea9015adc71b852223475c5c762c34</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:47:16+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=37bdcc984a0240cf0ac125613acee12f1cee389d'/>
<id>37bdcc984a0240cf0ac125613acee12f1cee389d</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): params should expand array values properly</title>
<updated>2013-02-14T22:52:46+00:00</updated>
<author>
<name>Mark Nadig</name>
</author>
<published>2013-01-30T15:41:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=2a2123441c2b749b8f316a24c3ca3f77a9132a01'/>
<id>2a2123441c2b749b8f316a24c3ca3f77a9132a01</id>
<content type='text'>
Today, calling e.g. var R = $resource('/Path/:a'); R.get({a: 'foo', bar: ['baz1', 'baz2']}); results in a query
string like "/Path/doh?bar=baz1,baz2" which is undesirable. This commit enhances resource to use
$http to encode any non-url parameters resulting in a query string like "/Path/doh?bar=baz1&amp;bar=baz2".

BREAKING CHANGE: if the server relied on the buggy behavior then either the
backend should be fixed or a simple serialization of the array should be done
on the client before calling the resource service.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Today, calling e.g. var R = $resource('/Path/:a'); R.get({a: 'foo', bar: ['baz1', 'baz2']}); results in a query
string like "/Path/doh?bar=baz1,baz2" which is undesirable. This commit enhances resource to use
$http to encode any non-url parameters resulting in a query string like "/Path/doh?bar=baz1&amp;bar=baz2".

BREAKING CHANGE: if the server relied on the buggy behavior then either the
backend should be fixed or a simple serialization of the array should be done
on the client before calling the resource service.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(resource): Update RegExp to allow urlParams with out leading slash</title>
<updated>2013-02-14T22:43:55+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=b7e1fb0515798e1b4f3f2426f6b050951bee2617'/>
<id>b7e1fb0515798e1b4f3f2426f6b050951bee2617</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-14T19:57:33+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=e47f8d2b9660527d7a62eb3e56a3e4f7f1c272f1'/>
<id>e47f8d2b9660527d7a62eb3e56a3e4f7f1c272f1</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): expose promise based api via $then and $resolved</title>
<updated>2013-02-12T06:24:21+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2013-02-12T05:43:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=dba6bc73e802fdae685a9f351d3e23c7efa8568a'/>
<id>dba6bc73e802fdae685a9f351d3e23c7efa8568a</id>
<content type='text'>
Expose $then and $resolved properties on resource action return values which
allow checking if a promise has been resolved already as well as registering
listeners at any time of the resource object life-cycle.

This commit replaces unreleased commit f3bff27460afb3be208a05959d5b84233d34b7eb
which exposed unintuitive $q api instead and didn't expose important stuff
like http headers.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Expose $then and $resolved properties on resource action return values which
allow checking if a promise has been resolved already as well as registering
listeners at any time of the resource object life-cycle.

This commit replaces unreleased commit f3bff27460afb3be208a05959d5b84233d34b7eb
which exposed unintuitive $q api instead and didn't expose important stuff
like http headers.
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(resource): add $q/$resorved property to Resource</title>
<updated>2013-01-24T04:57:26+00:00</updated>
<author>
<name>Partap Davis</name>
</author>
<published>2013-01-17T22:21:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=f3bff27460afb3be208a05959d5b84233d34b7eb'/>
<id>f3bff27460afb3be208a05959d5b84233d34b7eb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
