<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/src, branch v1.2.0rc1</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>chore(mocks): remove obsolte createMockWindow api</title>
<updated>2013-08-13T17:48:54+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2013-08-13T16:58:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=0dd062231a4d495133fd907eeae95c566380c6e1'/>
<id>0dd062231a4d495133fd907eeae95c566380c6e1</id>
<content type='text'>
we never released this api, so it's safe to remove
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
we never released this api, so it's safe to remove
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(minErr): add location/ipthprfx</title>
<updated>2013-08-12T21:09:09+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2013-08-12T21:08:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=ca92b6528af776e6543f14aac7e5cd7e7aa652fc'/>
<id>ca92b6528af776e6543f14aac7e5cd7e7aa652fc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(minErr): add location/isrcharg docs</title>
<updated>2013-08-12T21:09:09+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2013-08-12T20:27:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=2c64f3dc176843f4b0d31ba026736ce6f6617f59'/>
<id>2c64f3dc176843f4b0d31ba026736ce6f6617f59</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(minErr): add location/ihshprfx</title>
<updated>2013-08-12T21:09:08+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2013-08-12T19:04:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=72dc48ea4d7e97c9dd3a9f469698ed77bcbdedbe'/>
<id>72dc48ea4d7e97c9dd3a9f469698ed77bcbdedbe</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>chore($location): drop bugus error</title>
<updated>2013-08-12T21:09:08+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2013-08-12T17:56:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=544d2616b429e5059a1ff117c483102b7495b992'/>
<id>544d2616b429e5059a1ff117c483102b7495b992</id>
<content type='text'>
we can never get to this state, so dropping the error
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
we can never get to this state, so dropping the error
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($location): don't initialize hash url unnecessarily</title>
<updated>2013-08-12T21:09:08+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2013-08-12T17:34:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=d4d34aba6efbd98050235f5b264899bb788117df'/>
<id>d4d34aba6efbd98050235f5b264899bb788117df</id>
<content type='text'>
After a recent refactoring using $location in the default hashbang mode would result
in hash url being initialized unnecessarily in cases when the base url didn't end
with a slash.

for example http://localhost:8000/temp.html would get rewritten as
http://location:8000/temp.html#/temp.html by error.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
After a recent refactoring using $location in the default hashbang mode would result
in hash url being initialized unnecessarily in cases when the base url didn't end
with a slash.

for example http://localhost:8000/temp.html would get rewritten as
http://location:8000/temp.html#/temp.html by error.
</pre>
</div>
</content>
</entry>
<entry>
<title>feat($route): express style route matching</title>
<updated>2013-08-12T18:04:37+00:00</updated>
<author>
<name>joshrtay</name>
</author>
<published>2012-12-27T05:45:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=04cebcc133c8b433a3ac5f72ed19f3631778142b'/>
<id>04cebcc133c8b433a3ac5f72ed19f3631778142b</id>
<content type='text'>
Added new route matching capabilities:
  - optional param
Changed route matching syntax:
 - named wildcard

BREAKING CHANGE: the syntax for named wildcard parameters in routes
    has changed from *wildcard to :wildcard*

    To migrate the code, follow the example below.  Here, *highlight becomes
    :highlight*:

    Before:

    $routeProvider.when('/Book1/:book/Chapter/:chapter/*highlight/edit',
              {controller: noop, templateUrl: 'Chapter.html'});

    After:

    $routeProvider.when('/Book1/:book/Chapter/:chapter/:highlight*/edit',
            {controller: noop, templateUrl: 'Chapter.html'});
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Added new route matching capabilities:
  - optional param
Changed route matching syntax:
 - named wildcard

BREAKING CHANGE: the syntax for named wildcard parameters in routes
    has changed from *wildcard to :wildcard*

    To migrate the code, follow the example below.  Here, *highlight becomes
    :highlight*:

    Before:

    $routeProvider.when('/Book1/:book/Chapter/:chapter/*highlight/edit',
              {controller: noop, templateUrl: 'Chapter.html'});

    After:

    $routeProvider.when('/Book1/:book/Chapter/:chapter/:highlight*/edit',
            {controller: noop, templateUrl: 'Chapter.html'});
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($compile): correct controller instantiation for async directives</title>
<updated>2013-08-12T17:36:25+00:00</updated>
<author>
<name>Chirayu Krishnappa</name>
</author>
<published>2013-08-10T02:56:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=c173ca412878d537b18df01f39e400ea48a4b398'/>
<id>c173ca412878d537b18df01f39e400ea48a4b398</id>
<content type='text'>
This fixes regression introduced by #3514 (5c560117) - this commit is being
reverted here and a better fix is included.

The regression caused the controller to be instantiated before the isolate scope
was initialized.

Closes #3493
Closes #3482
Closes #3537
Closes #3540
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This fixes regression introduced by #3514 (5c560117) - this commit is being
reverted here and a better fix is included.

The regression caused the controller to be instantiated before the isolate scope
was initialized.

Closes #3493
Closes #3482
Closes #3537
Closes #3540
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ngAnimate): make sure that the class value passed into addClass/removeClass is the base class string value</title>
<updated>2013-08-09T21:39:58+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2013-08-06T18:15:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=2430347ece2f7a74a35d3ab0095ecc895884670e'/>
<id>2430347ece2f7a74a35d3ab0095ecc895884670e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ngView): ensure ngView is terminal and uses its own manual transclusion system</title>
<updated>2013-08-09T21:39:58+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2013-08-04T15:20:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=87405e25ae935eefd673e70ffd6144a5f455b662'/>
<id>87405e25ae935eefd673e70ffd6144a5f455b662</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
