<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/src/ngRoute, branch v1.2.0-rc.2</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>fix(ngView): ensure ngClass works with together with ngView's transclusion behavior</title>
<updated>2013-09-04T00:06:49+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2013-08-30T13:39:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=40c0220c47c620070b30aec6ec4552c68a8689eb'/>
<id>40c0220c47c620070b30aec6ec4552c68a8689eb</id>
<content type='text'>
Closes: #3727
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes: #3727
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(module): improve the installation instructions for optional modules</title>
<updated>2013-08-22T23:55:54+00:00</updated>
<author>
<name>Brian Ford</name>
</author>
<published>2013-08-22T19:32:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=57c43dd3762ea665125bff7e4727bce06a225b32'/>
<id>57c43dd3762ea665125bff7e4727bce06a225b32</id>
<content type='text'>
Currently, the documentation does a bad job of explaining the distinction between the services that it provides,
and the module itself. Furthermore, the instructions for using optional modules are inconsistent or missing.
This commit addresses the problem by ading a new `{@installModule foo}` annotation to the docs generator that
inlines the appropriate instructions based on the name of the module.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Currently, the documentation does a bad job of explaining the distinction between the services that it provides,
and the module itself. Furthermore, the instructions for using optional modules are inconsistent or missing.
This commit addresses the problem by ading a new `{@installModule foo}` annotation to the docs generator that
inlines the appropriate instructions based on the name of the module.
</pre>
</div>
</content>
</entry>
<entry>
<title>revert(ngView): remove ngView manual transclusion system</title>
<updated>2013-08-19T21:55:19+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2013-08-17T15:48:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=b7a54497b51061d0f5d9ae74b74f5dd7c8eae51d'/>
<id>b7a54497b51061d0f5d9ae74b74f5dd7c8eae51d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>style($route): make some jshint recommended changes</title>
<updated>2013-08-15T17:40:49+00:00</updated>
<author>
<name>Josh Taylor</name>
</author>
<published>2013-08-13T16:49:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=8a000a586dd22b3d522ae060a4716184006d7d9e'/>
<id>8a000a586dd22b3d522ae060a4716184006d7d9e</id>
<content type='text'>
Syntax changes:
- ternary indentation
- remove unused variable, N
- use triple equals instead of double

Closes #3559
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Syntax changes:
- ternary indentation
- remove unused variable, N
- use triple equals instead of double

Closes #3559
</pre>
</div>
</content>
</entry>
<entry>
<title>docs($route): add hint for ngRoute module inclusion</title>
<updated>2013-08-15T17:34:23+00:00</updated>
<author>
<name>Reto Aebersold</name>
</author>
<published>2013-08-14T12:18:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=dba5e16269c1db9f69e385b5828cab72c8ac53ba'/>
<id>dba5e16269c1db9f69e385b5828cab72c8ac53ba</id>
<content type='text'>
Closes #3583
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #3583
</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(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>
<entry>
<title>docs(ngRoute): make config block for the routeProvider example explicit</title>
<updated>2013-08-07T19:59:01+00:00</updated>
<author>
<name>David Mosher</name>
</author>
<published>2013-07-30T16:20:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=6d7ee1ad3b548fa0e3ebf13e008d7024b664813f'/>
<id>6d7ee1ad3b548fa0e3ebf13e008d7024b664813f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(ngdocs): all animation-supported directives working with docs examples and jsFiddle/Plunkr pages</title>
<updated>2013-07-30T04:22:05+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2013-07-29T23:45:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=e1fe2ac2691e319473ed2bbca501fc6b641024e5'/>
<id>e1fe2ac2691e319473ed2bbca501fc6b641024e5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(ngdocs): fixed jsFiddle/Plunkr examples to include ngAnimate and use a default App the module is not set</title>
<updated>2013-07-30T04:22:05+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2013-07-28T18:02:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=419ed040b6004909a22e96bfe1bc95c5aa0f38db'/>
<id>419ed040b6004909a22e96bfe1bc95c5aa0f38db</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
