<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/src/ngResource, branch v1.2.0</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>docs($resource): fix typo</title>
<updated>2013-10-27T21:51:53+00:00</updated>
<author>
<name>Jarrett Harris</name>
</author>
<published>2013-10-27T05:46:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=c9a1df3ae92183fc5074b02389fff524c508b731'/>
<id>c9a1df3ae92183fc5074b02389fff524c508b731</id>
<content type='text'>
Closes #4670
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #4670
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(docs): fix jsHint errors with long lines</title>
<updated>2013-10-23T21:44:37+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2013-10-23T21:44:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=269bc7e51f0ae4e4230308e43db934a9fff48756'/>
<id>269bc7e51f0ae4e4230308e43db934a9fff48756</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(docs): provide index pages for each angular module</title>
<updated>2013-10-23T21:00:12+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2013-10-17T02:48:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=a7e12b7959212f2fa88fe17d5a045cc9d8b22922'/>
<id>a7e12b7959212f2fa88fe17d5a045cc9d8b22922</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>style: make jshint happy</title>
<updated>2013-10-22T22:32:41+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2013-10-22T21:41:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=f2fab498303e00d199cb3d19a008670e214d5c10'/>
<id>f2fab498303e00d199cb3d19a008670e214d5c10</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(grunt): add jshint tasks</title>
<updated>2013-10-22T22:32:40+00:00</updated>
<author>
<name>Pete Bacon Darwin</name>
</author>
<published>2013-10-21T08:06:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=934a95d3ef3f72dfc37b0b564624cb4a1286d4f4'/>
<id>934a95d3ef3f72dfc37b0b564624cb4a1286d4f4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs: correct broken links</title>
<updated>2013-10-18T22:35:41+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2013-10-18T02:25:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=14438058da39c3e523f420549074934ca5881b09'/>
<id>14438058da39c3e523f420549074934ca5881b09</id>
<content type='text'>
This also contains some whitespace corrections by my editor.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This also contains some whitespace corrections by my editor.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(*): protect calls to hasOwnProperty in public API</title>
<updated>2013-10-07T16:01:13+00:00</updated>
<author>
<name>Peter Bacon Darwin</name>
</author>
<published>2013-10-05T09:49:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=7a586e5c19f3d1ecc3fefef084ce992072ee7f60'/>
<id>7a586e5c19f3d1ecc3fefef084ce992072ee7f60</id>
<content type='text'>
Objects received from outside AngularJS may have had their `hasOwnProperty`
method overridden with something else. In cases where we can do this without
incurring a performance penalty we call directly on Object.prototype.hasOwnProperty
to ensure that we use the correct method.

Also, we have some internal hash objects, where the keys for the map are provided
from outside AngularJS. In such cases we either prevent `hasOwnProperty` from
being used as a key or provide some other way of preventing our objects from
having their `hasOwnProperty` overridden.

BREAKING CHANGE: Inputs with name equal to "hasOwnProperty" are not allowed inside
form or ngForm directives.

Before, inputs whose name was "hasOwnProperty" were quietly ignored and not added
to the scope.  Now a badname exception is thrown.

Using "hasOwnProperty" for an input name would be very unusual and bad practice.
Either do not include such an input in a `form` or `ngForm` directive or change
the name of the input.

Closes #3331</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Objects received from outside AngularJS may have had their `hasOwnProperty`
method overridden with something else. In cases where we can do this without
incurring a performance penalty we call directly on Object.prototype.hasOwnProperty
to ensure that we use the correct method.

Also, we have some internal hash objects, where the keys for the map are provided
from outside AngularJS. In such cases we either prevent `hasOwnProperty` from
being used as a key or provide some other way of preventing our objects from
having their `hasOwnProperty` overridden.

BREAKING CHANGE: Inputs with name equal to "hasOwnProperty" are not allowed inside
form or ngForm directives.

Before, inputs whose name was "hasOwnProperty" were quietly ignored and not added
to the scope.  Now a badname exception is thrown.

Using "hasOwnProperty" for an input name would be very unusual and bad practice.
Either do not include such an input in a `form` or `ngForm` directive or change
the name of the input.

Closes #3331</pre>
</div>
</content>
</entry>
<entry>
<title>docs($resource): remove extra "to" from $resource docs</title>
<updated>2013-10-05T16:51:21+00:00</updated>
<author>
<name>David Barker</name>
</author>
<published>2013-10-05T11:14:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=e8a139c6d42eff05f5303ac1529bd2b41e14ba3e'/>
<id>e8a139c6d42eff05f5303ac1529bd2b41e14ba3e</id>
<content type='text'>
Closes #4287
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #4287
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ngResource): Remove request body from $delete</title>
<updated>2013-10-04T23:50:08+00:00</updated>
<author>
<name>Jen Bourey</name>
</author>
<published>2013-10-04T19:02:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=8336b3a286f8469d4cd7c412c41ca8c1a31fecf0'/>
<id>8336b3a286f8469d4cd7c412c41ca8c1a31fecf0</id>
<content type='text'>
Prevent the  obj.$delete instance method from sending the resource as the request body.  This commit uses the existing hasBody boolean to only set httpConfig.data for methods which should have a request body.

Closes #4280
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Prevent the  obj.$delete instance method from sending the resource as the request body.  This commit uses the existing hasBody boolean to only set httpConfig.data for methods which should have a request body.

Closes #4280
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($resource): pass transformed value to both callbacks and promises</title>
<updated>2013-10-03T00:03:53+00:00</updated>
<author>
<name>jankuca</name>
</author>
<published>2013-08-30T23:19:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=e36e28ebd4a6c144e47d11fba8e211d8d5a9d03e'/>
<id>e36e28ebd4a6c144e47d11fba8e211d8d5a9d03e</id>
<content type='text'>
Closes #3817
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #3817
</pre>
</div>
</content>
</entry>
</feed>
