<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/src/service, branch v0.9.18</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>feat($xhr): add custom error callback to $xhr, $xhr.cache, $xhr.bulk, $resource</title>
<updated>2011-07-27T22:21:31+00:00</updated>
<author>
<name>Karl Seamon</name>
</author>
<published>2011-07-22T19:56:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=b5594a773a6f07dcba914aa385f92d3305285b24'/>
<id>b5594a773a6f07dcba914aa385f92d3305285b24</id>
<content type='text'>
Closes #408
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #408
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(strict mode): adding strict mode flag to all js files</title>
<updated>2011-07-18T19:12:55+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-07-17T08:05:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=fe5240732d0a80b8717be77b31d51dc3c4d737fd'/>
<id>fe5240732d0a80b8717be77b31d51dc3c4d737fd</id>
<content type='text'>
the flag must be in all src and test files so that we get the benefit of
running in the strict mode even in jstd

the following script was used to modify all files:

for file in `find src test -name "*.js"`; do
  echo -e "'use strict';\n" &gt; temp.txt
  cat $file &gt;&gt; temp.txt
  mv temp.txt $file
done
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
the flag must be in all src and test files so that we get the benefit of
running in the strict mode even in jstd

the following script was used to modify all files:

for file in `find src test -name "*.js"`; do
  echo -e "'use strict';\n" &gt; temp.txt
  cat $file &gt;&gt; temp.txt
  mv temp.txt $file
done
</pre>
</div>
</content>
</entry>
<entry>
<title>doc($route): fix $route example and couple of typos</title>
<updated>2011-07-13T09:49:16+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2011-07-01T23:38:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=7e2e7b07b6a79a64891f3f2408fb6c325a499e51'/>
<id>7e2e7b07b6a79a64891f3f2408fb6c325a499e51</id>
<content type='text'>
Rewrite $route example a bit, as it required $location and $route services
to be eager published in the root scope.

Fix small typos in formatter and ng:options docs.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Rewrite $route example a bit, as it required $location and $route services
to be eager published in the root scope.

Fix small typos in formatter and ng:options docs.
</pre>
</div>
</content>
</entry>
<entry>
<title>feat:$xhr: provide access to $xhr header defaults</title>
<updated>2011-06-30T07:34:50+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-06-29T07:25:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=c5f3a413bc00acf9ac1046fb15b454096a8890c6'/>
<id>c5f3a413bc00acf9ac1046fb15b454096a8890c6</id>
<content type='text'>
$xhr header defaults are now exposed as $xhr.defaults.headers.common and
$xhr.default.headers.&lt;httpmethod&gt;. This allows applications to configure
their defaults as needed.

This commit doesn't allow headers to be set per request, only per
application. Per request change would require api change, which I tried
to avoid *for now*.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
$xhr header defaults are now exposed as $xhr.defaults.headers.common and
$xhr.default.headers.&lt;httpmethod&gt;. This allows applications to configure
their defaults as needed.

This commit doesn't allow headers to be set per request, only per
application. Per request change would require api change, which I tried
to avoid *for now*.
</pre>
</div>
</content>
</entry>
<entry>
<title>Should have replaced all instances of element('input[name=something]').val() with input('name').val()</title>
<updated>2011-06-08T22:54:57+00:00</updated>
<author>
<name>Di Peng</name>
</author>
<published>2011-06-08T18:18:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=e4a00626d85de82cf7825111bbce89784ea4cbc8'/>
<id>e4a00626d85de82cf7825111bbce89784ea4cbc8</id>
<content type='text'>
Closes #376
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #376
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix couple of failing e2e tests</title>
<updated>2011-06-07T21:56:56+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2011-06-07T20:53:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=517ada2662019aae99af4bffb0e7fc673bbe9ebd'/>
<id>517ada2662019aae99af4bffb0e7fc673bbe9ebd</id>
<content type='text'>
The reason was recent change in docs url
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The reason was recent change in docs url
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix links in docs</title>
<updated>2011-06-07T05:52:00+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2011-05-18T12:16:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=e21a868524758f1fd53ea4e6f6344910874dc0eb'/>
<id>e21a868524758f1fd53ea4e6f6344910874dc0eb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix broken link $xhr docs</title>
<updated>2011-05-03T04:20:36+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-05-03T04:20:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=cc5dfaf0ab4c0ce580a292e54ae64508ef7ee114'/>
<id>cc5dfaf0ab4c0ce580a292e54ae64508ef7ee114</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix $location service docs and examples</title>
<updated>2011-04-08T17:03:06+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-04-08T16:54:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=1d7adac7a5546603fd42c1e581c696cb88324b8f'/>
<id>1d7adac7a5546603fd42c1e581c696cb88324b8f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>make xhr.cache optionally synchronous</title>
<updated>2011-03-30T22:22:22+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-03-30T16:35:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=c06c5a36b108c6ad20776923d75eb6f32ace591b'/>
<id>c06c5a36b108c6ad20776923d75eb6f32ace591b</id>
<content type='text'>
- add `sync` flag xhr.cache
- change ng:include to use the sync flag
- change ng:view to use the sync flag

The end result is that there are fewer repaints in the browser,
which means less "blinking" that user sees.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- add `sync` flag xhr.cache
- change ng:include to use the sync flag
- change ng:view to use the sync flag

The end result is that there are fewer repaints in the browser,
which means less "blinking" that user sees.
</pre>
</div>
</content>
</entry>
</feed>
