<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/docs/src/templates, branch v1.1.4</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>docs: add animations into docs and directive examples</title>
<updated>2013-04-04T00:40:15+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2013-04-02T23:41:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=19f1801379104bc1f74fbb9d288f71034ba829c9'/>
<id>19f1801379104bc1f74fbb9d288f71034ba829c9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</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:13+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=f197e391c1148398825bfd1af8d000d351821c97'/>
<id>f197e391c1148398825bfd1af8d000d351821c97</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): add angular-mobile.js to index.html</title>
<updated>2013-03-14T06:01:16+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2013-03-13T05:51:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=9428338e97da954b471e96a8d8ceedb7e4a65ab0'/>
<id>9428338e97da954b471e96a8d8ceedb7e4a65ab0</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:00:33+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=79b51d5b578927bd510123c81953e7cc8c72f211'/>
<id>79b51d5b578927bd510123c81953e7cc8c72f211</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
</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
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(docs): Add angularjs tag to plunks and make private</title>
<updated>2012-12-11T19:04:46+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=25e1ad9a9443de6b7ebb40409af72021cc4e7b20'/>
<id>25e1ad9a9443de6b7ebb40409af72021cc4e7b20</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-29T18:40:30+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=cf4ed8a14588e99f8871a1593f2825128e641c77'/>
<id>cf4ed8a14588e99f8871a1593f2825128e641c77</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:09+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=d1e48fcbf39166d4d6cb5b06957f9a8a93260d57'/>
<id>d1e48fcbf39166d4d6cb5b06957f9a8a93260d57</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): fix docs-scenario.html</title>
<updated>2012-11-11T09:31:27+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=8650843603be6f6f17aa3f90fb9991420669cb53'/>
<id>8650843603be6f6f17aa3f90fb9991420669cb53</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-11T09:31:27+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=e034fa08a8e92241fa9c46bed735b977b5c29290'/>
<id>e034fa08a8e92241fa9c46bed735b977b5c29290</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(docs): correctly generate filenames for plunkr/fiddle</title>
<updated>2012-10-31T20:03:50+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-10-31T19:56:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=090e5426ac3ed48470dea07df9950bdac4c03384'/>
<id>090e5426ac3ed48470dea07df9950bdac4c03384</id>
<content type='text'>
previously examples like $http where broken because we would strip part of the
filename (http-hello.html -&gt; http)

we really want to strip only the id suffix that we append to disambiguate
common filenames (like index.html) which appear in many examples.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
previously examples like $http where broken because we would strip part of the
filename (http-hello.html -&gt; http)

we really want to strip only the id suffix that we append to disambiguate
common filenames (like index.html) which appear in many examples.
</pre>
</div>
</content>
</entry>
</feed>
