<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/test, branch v0.9.13</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>Remove the script tag after successful JSONP request</title>
<updated>2011-03-11T22:16:53+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2011-03-10T22:46:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=0084cb5ca4bc9acda54d304147b0b0fe8e1980f3'/>
<id>0084cb5ca4bc9acda54d304147b0b0fe8e1980f3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Added XSRF prevention logic to $xhr service</title>
<updated>2011-03-11T22:16:53+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2011-03-10T21:50:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=c578f8c3ed0ca23b03ccde146cb13cfaf24f17cd'/>
<id>c578f8c3ed0ca23b03ccde146cb13cfaf24f17cd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Changed the $browser.xhr parameter post from optional to required</title>
<updated>2011-03-11T22:16:52+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2011-03-10T05:19:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=d19c0ac6d32319200f0d94df9b07f63a39aecf70'/>
<id>d19c0ac6d32319200f0d94df9b07f63a39aecf70</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Consider all 2xx responses as OK, not just 200</title>
<updated>2011-03-11T22:16:52+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2011-03-10T05:12:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=5343deb3da0e667599fe66d8efa3566b4e337a24'/>
<id>5343deb3da0e667599fe66d8efa3566b4e337a24</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed cookies which contained unescaped '=' would not show up in cookie service.</title>
<updated>2011-03-11T22:16:52+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2011-03-10T05:03:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=26bad2bf878e54fa78ff26518d1275a7e0b5b39c'/>
<id>26bad2bf878e54fa78ff26518d1275a7e0b5b39c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix failing autobind test on IE</title>
<updated>2011-03-11T17:30:53+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-03-11T17:30:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=d304b0c3df41b3b1e67c2b9d56c02dc95194512d'/>
<id>d304b0c3df41b3b1e67c2b9d56c02dc95194512d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>ng:autobind now optionally takes element id</title>
<updated>2011-03-11T16:45:43+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-03-10T22:26:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=9d5c53379180a110e427a01a1446eada3f0fc3d6'/>
<id>9d5c53379180a110e427a01a1446eada3f0fc3d6</id>
<content type='text'>
so it is possible to easily compile just a part of a document.

e.g.:

&lt;html&gt;
  &lt;head&gt;
    &lt;title&gt;partially compiled doc&lt;/title&gt;
    &lt;script src="angular.js" ng:autobind="compileThis"&gt;&lt;/script&gt;
  &lt;/head&gt;
  &lt;body&gt;
    this part won't be compiled: {{1+2}}
    &lt;div id="compileThis" ng:init="i=0" ng:click="i = i+1"&gt;
      Click count: {{i}}
    &lt;/div&gt;
  &lt;/body&gt;
&lt;/html&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
so it is possible to easily compile just a part of a document.

e.g.:

&lt;html&gt;
  &lt;head&gt;
    &lt;title&gt;partially compiled doc&lt;/title&gt;
    &lt;script src="angular.js" ng:autobind="compileThis"&gt;&lt;/script&gt;
  &lt;/head&gt;
  &lt;body&gt;
    this part won't be compiled: {{1+2}}
    &lt;div id="compileThis" ng:init="i=0" ng:click="i = i+1"&gt;
      Click count: {{i}}
    &lt;/div&gt;
  &lt;/body&gt;
&lt;/html&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>angularJsConfig now allows ng:autobind and #autobind value to be passed in</title>
<updated>2011-03-11T16:45:16+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-03-07T07:42:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=7414e7b53302863911c734c8586b76767d2ded6b'/>
<id>7414e7b53302863911c734c8586b76767d2ded6b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>$xhr service now autodetects and strips )]}',\n</title>
<updated>2011-03-03T06:56:14+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-03-03T01:29:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=cd139f57678b98c82387d5b0034f653043b7165a'/>
<id>cd139f57678b98c82387d5b0034f653043b7165a</id>
<content type='text'>
")]}\',\n" is a commonly used security prefix added to json http
responses iat google and elsewhere in order to prevent certain
cross-site attacks

$xhr service now autodetects the prefix and strips it before
deserializing the json.

the implementation should be more flexible to allow for wider range
of prefixes, but we need this one right now and can address other
usecases later.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
")]}\',\n" is a commonly used security prefix added to json http
responses iat google and elsewhere in order to prevent certain
cross-site attacks

$xhr service now autodetects the prefix and strips it before
deserializing the json.

the implementation should be more flexible to allow for wider range
of prefixes, but we need this one right now and can address other
usecases later.
</pre>
</div>
</content>
</entry>
<entry>
<title>linking function should return bound scope</title>
<updated>2011-03-02T01:09:25+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-02-25T22:03:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=945056b1667a69ecc4d557cc0f03894597250ced'/>
<id>945056b1667a69ecc4d557cc0f03894597250ced</id>
<content type='text'>
angular.compile()() returns {scope:scope, view:view},
this isn't useful at all and only makes tests more verbose.
Instead, this change makes the linking function return scope directly
and if anyone needs the linked dom there are two ways to do it
documented in angular.compile.

other changes:
- moved angular.compile docs to the compiler so that they are closer to
  the compiler
- fixed some typos and updated angular.compile docs with the new return
  value
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
angular.compile()() returns {scope:scope, view:view},
this isn't useful at all and only makes tests more verbose.
Instead, this change makes the linking function return scope directly
and if anyone needs the linked dom there are two ways to do it
documented in angular.compile.

other changes:
- moved angular.compile docs to the compiler so that they are closer to
  the compiler
- fixed some typos and updated angular.compile docs with the new return
  value
</pre>
</div>
</content>
</entry>
</feed>
