<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/docs/src/templates, branch v1.0.7</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>docs(tutorial): fix the float issue with the improve docs button</title>
<updated>2013-05-21T13:09:42+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2013-05-20T21:16:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=5e1ed9d5d2169954399bbfe1f3bb8153684eb3c9'/>
<id>5e1ed9d5d2169954399bbfe1f3bb8153684eb3c9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(package.json): kill version.yaml in favor of package.json</title>
<updated>2013-05-20T23:48:21+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2013-05-20T23:37:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=f81431dd724f54290ee9a8c7e23650bc59e0c739'/>
<id>f81431dd724f54290ee9a8c7e23650bc59e0c739</id>
<content type='text'>
all versioning info is now in package.json and that's where the build scripts read it from
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
all versioning info is now in package.json and that's where the build scripts read it from
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(docs): Add Improve this doc link in each doc page, which links to the edit mode of that file in github</title>
<updated>2013-03-16T03:56:22+00:00</updated>
<author>
<name>Shyam Seshadri</name>
</author>
<published>2013-03-15T16:47:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=70cf0a389f7ed60edc248e302a5201b283c0a213'/>
<id>70cf0a389f7ed60edc248e302a5201b283c0a213</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(Grunt): switch from Rake to Grunt</title>
<updated>2013-03-06T07:35:13+00:00</updated>
<author>
<name>Dave Geddes</name>
</author>
<published>2012-10-21T06:37:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=7a77fdae4f6a1a03734374aacc7264ebd6dbe94d'/>
<id>7a77fdae4f6a1a03734374aacc7264ebd6dbe94d</id>
<content type='text'>
Migrates the Angular project from Rake to Grunt.

Benefits:
- Drops Ruby dependency
- Lowers barrier to entry for contributions from JavaScript ninjas
- Simplifies the Angular project setup and build process
- Adopts industry-standard tools specific to JavaScript projects
- Support building angular.js on Windows platform (really?!? why?!?)

BREAKING CHANGE: Rake is completely replaced by Grunt. Below are the deprecated Rake tasks and their Grunt equivalents:

rake --&gt; grunt
rake package --&gt; grunt package
rake init --&gt; N/A
rake clean --&gt; grunt clean
rake concat_scenario --&gt; grunt build:scenario
rake concat --&gt; grunt build
rake concat_scenario --&gt; grunt build:scenario
rake minify --&gt; grunt minify
rake version --&gt; grunt write:version
rake docs --&gt; grunt docs
rake webserver --&gt; grunt webserver
rake test --&gt; grunt test
rake test:unit --&gt; grunt test:unit
rake test:&lt;jqlite|jquery|modules|e2e&gt; --&gt; grunt test:&lt;jqlite|jquery|modules|end2end|e2e&gt;
rake test[Firefox+Safari] --&gt; grunt test --browsers Firefox,Safari
rake test[Safari] --&gt; grunt test --browsers Safari
rake autotest --&gt; grunt autotest

NOTES:
* For convenience grunt test:e2e starts a webserver for you, while grunt test:end2end doesn't.
  Use grunt test:end2end if you already have the webserver running.
* Removes duplicate entry for Describe.js in the angularScenario section of angularFiles.js
* Updates docs/src/gen-docs.js to use #done intead of the deprecated #end
* Uses grunt-contrib-connect instead of lib/nodeserver (removed)
* Removes nodeserver.sh, travis now uses grunt webserver
* Built and minified files are identical to Rake's output, with the exception of one less
  character for git revisions (using --short) and a couple minor whitespace differences

Closes #199

Conflicts:

	Rakefile
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Migrates the Angular project from Rake to Grunt.

Benefits:
- Drops Ruby dependency
- Lowers barrier to entry for contributions from JavaScript ninjas
- Simplifies the Angular project setup and build process
- Adopts industry-standard tools specific to JavaScript projects
- Support building angular.js on Windows platform (really?!? why?!?)

BREAKING CHANGE: Rake is completely replaced by Grunt. Below are the deprecated Rake tasks and their Grunt equivalents:

rake --&gt; grunt
rake package --&gt; grunt package
rake init --&gt; N/A
rake clean --&gt; grunt clean
rake concat_scenario --&gt; grunt build:scenario
rake concat --&gt; grunt build
rake concat_scenario --&gt; grunt build:scenario
rake minify --&gt; grunt minify
rake version --&gt; grunt write:version
rake docs --&gt; grunt docs
rake webserver --&gt; grunt webserver
rake test --&gt; grunt test
rake test:unit --&gt; grunt test:unit
rake test:&lt;jqlite|jquery|modules|e2e&gt; --&gt; grunt test:&lt;jqlite|jquery|modules|end2end|e2e&gt;
rake test[Firefox+Safari] --&gt; grunt test --browsers Firefox,Safari
rake test[Safari] --&gt; grunt test --browsers Safari
rake autotest --&gt; grunt autotest

NOTES:
* For convenience grunt test:e2e starts a webserver for you, while grunt test:end2end doesn't.
  Use grunt test:end2end if you already have the webserver running.
* Removes duplicate entry for Describe.js in the angularScenario section of angularFiles.js
* Updates docs/src/gen-docs.js to use #done intead of the deprecated #end
* Uses grunt-contrib-connect instead of lib/nodeserver (removed)
* Removes nodeserver.sh, travis now uses grunt webserver
* Built and minified files are identical to Rake's output, with the exception of one less
  character for git revisions (using --short) and a couple minor whitespace differences

Closes #199

Conflicts:

	Rakefile
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(docs): Add angularjs tag to plunks and make private</title>
<updated>2012-12-12T21:00:41+00:00</updated>
<author>
<name>ggoodman</name>
</author>
<published>2012-12-11T16:42:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=741a37b3389e2c129ddb807f10ccc7b69b4140be'/>
<id>741a37b3389e2c129ddb807f10ccc7b69b4140be</id>
<content type='text'>
This is a minor edit to allow Plunks created by way of the docs.angularjs.org site to be appropriately tagged as `angularjs`.
Also, make these generated Plunks private by default.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is a minor edit to allow Plunks created by way of the docs.angularjs.org site to be appropriately tagged as `angularjs`.
Also, make these generated Plunks private by default.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(docs): add missing &lt;/div&gt; tag to sourceEdit directive template</title>
<updated>2012-11-29T19:22:40+00:00</updated>
<author>
<name>Johannes Hansen</name>
</author>
<published>2012-11-21T08:45:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=ed90f3b7ea11ffdb55a5d834e8ff69c77d673db0'/>
<id>ed90f3b7ea11ffdb55a5d834e8ff69c77d673db0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(menu): fix the navbar drop down links</title>
<updated>2012-11-28T22:56:21+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-11-28T22:55:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=14b19ecf5ec5b9c267cc0b85ffe318547006110a'/>
<id>14b19ecf5ec5b9c267cc0b85ffe318547006110a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs: load angular from CDN only on production</title>
<updated>2012-11-26T20:33:45+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2012-09-17T23:55:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=c9199ee6634af6b960524d91bdae706860a49d0c'/>
<id>c9199ee6634af6b960524d91bdae706860a49d0c</id>
<content type='text'>
So that when running the docs locally, eg. during e2e testing, we use the latest build version of angular, rather than the stable one from CDN.

This fixes e2e tests running with Testacular.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
So that when running the docs locally, eg. during e2e testing, we use the latest build version of angular, rather than the stable one from CDN.

This fixes e2e tests running with Testacular.
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(docs): fix docs-scenario.html</title>
<updated>2012-11-08T21:18:34+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-11-08T21:15:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=51bed363706d68e89f51b8782794fc92512d011a'/>
<id>51bed363706d68e89f51b8782794fc92512d011a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(docs): remove obsolete gae files</title>
<updated>2012-11-08T21:18:34+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-11-08T21:15:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=6d940213ac7ad12b5c64799fe740b74cee13676d'/>
<id>6d940213ac7ad12b5c64799fe740b74cee13676d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
