<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js, branch v1.2.3</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>chore(release): cut 1.2.3 unicorn-zapper release</title>
<updated>2013-11-27T10:04:59+00:00</updated>
<author>
<name>Peter Bacon Darwin</name>
</author>
<published>2013-11-27T10:04:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=38fb542838324dc0e66b2f5eced70a4b5e682abc'/>
<id>38fb542838324dc0e66b2f5eced70a4b5e682abc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(CHANGELOG): add v1.2.3 changes</title>
<updated>2013-11-27T09:58:59+00:00</updated>
<author>
<name>Peter Bacon Darwin</name>
</author>
<published>2013-11-27T09:58:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=7ab5098c14ee4f195dbfe2681e402fe2dfeacd78'/>
<id>7ab5098c14ee4f195dbfe2681e402fe2dfeacd78</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat($attrs): add $attrs.$attr to externs so that it isn't renamed</title>
<updated>2013-11-27T02:34:11+00:00</updated>
<author>
<name>Jeff Cross</name>
</author>
<published>2013-11-27T00:58:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=bcca80548dde85ffe3838c943ba8e5c2deb1c721'/>
<id>bcca80548dde85ffe3838c943ba8e5c2deb1c721</id>
<content type='text'>
This fixes the issue that any usage of $attr is broken after js compilation.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This fixes the issue that any usage of $attr is broken after js compilation.
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor($location): move file://+win path fix to $location</title>
<updated>2013-11-27T02:31:27+00:00</updated>
<author>
<name>Jeff Cross</name>
</author>
<published>2013-11-26T19:36:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=736c8fbbae57a209f4ba570e38cc3bd0745a9569'/>
<id>736c8fbbae57a209f4ba570e38cc3bd0745a9569</id>
<content type='text'>
The urlResolve method was fixed to automatically remove the
volume label from path names to fix issues with the file
protocol on windows where $location.path() was returning
paths where the first segment would be the volume name,
such as "/C:/mypath". See #4942 and #4928

However, the solution was specific to the $location non-
HTML5 mode, and was implemented at a lower level of
abstraction than it should have been. This refactor moves
the fix to inside of the LocationHashBangUrl $$parse method.

Closes #5041
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The urlResolve method was fixed to automatically remove the
volume label from path names to fix issues with the file
protocol on windows where $location.path() was returning
paths where the first segment would be the volume name,
such as "/C:/mypath". See #4942 and #4928

However, the solution was specific to the $location non-
HTML5 mode, and was implemented at a lower level of
abstraction than it should have been. This refactor moves
the fix to inside of the LocationHashBangUrl $$parse method.

Closes #5041
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(release): fix cdn version in package.json</title>
<updated>2013-11-27T01:38:23+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2013-11-27T01:37:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=947562220d7d1c851f138a816f7530738b97e7b6'/>
<id>947562220d7d1c851f138a816f7530738b97e7b6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($sanitize): Use same whitelist mechanism as $compile does.</title>
<updated>2013-11-26T22:29:38+00:00</updated>
<author>
<name>Tobias Bosch</name>
</author>
<published>2013-11-25T23:40:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=333523483f3ce6dd3177b697a5e5a7177ca364c8'/>
<id>333523483f3ce6dd3177b697a5e5a7177ca364c8</id>
<content type='text'>
`$sanitize` now uses the same mechanism as `$compile` to validate uris.
By this, the validation in `$sanitize` is more general and can be
configured in the same way as the one in `$compile`.

Changes
- Creates the new private service `$$sanitizeUri`.
- Moves related specs from `compileSpec.js` into `sanitizeUriSpec.js`.
- Refactors the `linky` filter to be less dependent on `$sanitize`
  internal functions.

Fixes #3748.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
`$sanitize` now uses the same mechanism as `$compile` to validate uris.
By this, the validation in `$sanitize` is more general and can be
configured in the same way as the one in `$compile`.

Changes
- Creates the new private service `$$sanitizeUri`.
- Moves related specs from `compileSpec.js` into `sanitizeUriSpec.js`.
- Refactors the `linky` filter to be less dependent on `$sanitize`
  internal functions.

Fixes #3748.
</pre>
</div>
</content>
</entry>
<entry>
<title>chore($httpBackend): preserve original non-zero http status code for file:// apps</title>
<updated>2013-11-26T20:36:41+00:00</updated>
<author>
<name>corrupt</name>
</author>
<published>2013-10-18T12:42:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=68ceb17272bdd2ebc838565070973d93704f4427'/>
<id>68ceb17272bdd2ebc838565070973d93704f4427</id>
<content type='text'>
Previously if an app was running from file:// origin we would always return either
http 200 or 404 depending on whether the response was present.

This changes the behavior so that we do this only if the protocol of the request
(not the origin) is file:// and only if the status code is 0.

Closes #4436
Closes #4587
Closes #4514
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously if an app was running from file:// origin we would always return either
http 200 or 404 depending on whether the response was present.

This changes the behavior so that we do this only if the protocol of the request
(not the origin) is file:// and only if the status code is 0.

Closes #4436
Closes #4587
Closes #4514
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(mocks): wrap angular-mocks.js in closure</title>
<updated>2013-11-26T13:22:29+00:00</updated>
<author>
<name>David Mosher</name>
</author>
<published>2013-11-22T00:50:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=5bd6596856c9f88c0ce3d96ff1ed4daa082cbe29'/>
<id>5bd6596856c9f88c0ce3d96ff1ed4daa082cbe29</id>
<content type='text'>
Closes #5080
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #5080
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(changelog): remove tmp file</title>
<updated>2013-11-26T09:36:13+00:00</updated>
<author>
<name>Peter Bacon Darwin</name>
</author>
<published>2013-11-26T09:36:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=b3f2a208322c84886a19dcf2faa8c6ecc5e7f1bb'/>
<id>b3f2a208322c84886a19dcf2faa8c6ecc5e7f1bb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(compile): fix typo</title>
<updated>2013-11-26T06:56:38+00:00</updated>
<author>
<name>adam77</name>
</author>
<published>2013-11-25T22:44:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=e8d8c7a8d773ec662c3d005bc434f356f96fd807'/>
<id>e8d8c7a8d773ec662c3d005bc434f356f96fd807</id>
<content type='text'>
Closes #5133
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #5133
</pre>
</div>
</content>
</entry>
</feed>
