<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/Rakefile, branch v1.0.2</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>chore(Rakefile): zip only the build dir</title>
<updated>2012-09-04T18:08:40+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-08-31T20:49:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=dc3d11ad194edf56c57b16e964146188c49244a0'/>
<id>dc3d11ad194edf56c57b16e964146188c49244a0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(Rakefile): fix the default task</title>
<updated>2012-08-30T15:58:51+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-08-29T23:56:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=ade7127c79fc047f3ed1dbf538e4131c1f68799b'/>
<id>ade7127c79fc047f3ed1dbf538e4131c1f68799b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(Rakefile): remove bogus symlink from build</title>
<updated>2012-08-30T15:58:39+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-08-29T08:22:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=d341483f1f7770c1a5f684e95b4908045abe5179'/>
<id>d341483f1f7770c1a5f684e95b4908045abe5179</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(Rakefile): various build script changes</title>
<updated>2012-08-28T23:07:47+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-08-28T19:38:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=a4fea38b94da3012798b69dd2e785cf9c3be5e1f'/>
<id>a4fea38b94da3012798b69dd2e785cf9c3be5e1f</id>
<content type='text'>
- restructure rake tasks

  this splits up the concatination and minification into two
  tasks so that we can just build angular.js quickly without wasting
  time with minification which is often not needed when just debugging
  some issue on 3rd party site.

- use symlinks when creating final zip file

- switch from btar to zip

- get rid of version numbers from filenames

- rewrite version numbers in all index files

Closes #1226
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- restructure rake tasks

  this splits up the concatination and minification into two
  tasks so that we can just build angular.js quickly without wasting
  time with minification which is often not needed when just debugging
  some issue on 3rd party site.

- use symlinks when creating final zip file

- switch from btar to zip

- get rid of version numbers from filenames

- rewrite version numbers in all index files

Closes #1226
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(Rakefile): rewrite version numbers in all index files</title>
<updated>2012-08-27T19:25:40+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-08-27T19:25:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=e9dad5dbf42deab2c00f6ef53a60cfa4d3fa0d67'/>
<id>e9dad5dbf42deab2c00f6ef53a60cfa4d3fa0d67</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): use GAE and Google CDN for docs</title>
<updated>2012-08-24T22:00:36+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-08-20T15:28:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=60a12b416104697d48a465bffbcfefbec35f06ea'/>
<id>60a12b416104697d48a465bffbcfefbec35f06ea</id>
<content type='text'>
Short summary: if you use local node server everything should work as before,
if you use GAE, everything should work now as well, but we pull assets from CDN.

- GAE doesn't support ':' in filenames, so I had to replace it with '_'
  but only in the filename, all servers were reconfigured to rewrite the
  urls from : to _ when doing file lookup
- We now pull angular assets from google CDN when deployed on GAE (locally
  or in production). When running on a non GAE server we pull assets from
  ../ directory as before
- Since only certain versions of Angular are available on CDN and we want
  to be able to autodeploy docs, I had to pin down the Angular files
  to a "stable" version when running on GAE
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Short summary: if you use local node server everything should work as before,
if you use GAE, everything should work now as well, but we pull assets from CDN.

- GAE doesn't support ':' in filenames, so I had to replace it with '_'
  but only in the filename, all servers were reconfigured to rewrite the
  urls from : to _ when doing file lookup
- We now pull angular assets from google CDN when deployed on GAE (locally
  or in production). When running on a non GAE server we pull assets from
  ../ directory as before
- Since only certain versions of Angular are available on CDN and we want
  to be able to autodeploy docs, I had to pin down the Angular files
  to a "stable" version when running on GAE
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(docs): re-skin main documentation</title>
<updated>2012-05-04T23:12:17+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2012-04-29T05:45:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=8e2675029f5ca404a7c649cc161df3ea642d941f'/>
<id>8e2675029f5ca404a7c649cc161df3ea642d941f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(bootstrap): support code prettify and dropdown from bootstrap</title>
<updated>2012-05-04T22:50:37+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2012-04-29T05:25:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=c4fa48725039c30349af725583f147e7f4fb69c7'/>
<id>c4fa48725039c30349af725583f147e7f4fb69c7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(ngSanitize): extract $sanitize, ngBindHtml, linkyFilter into a module</title>
<updated>2012-04-11T22:50:47+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2012-04-10T23:50:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=5bcd7198664dca2bf85ddf8b3a89f417cd4e4796'/>
<id>5bcd7198664dca2bf85ddf8b3a89f417cd4e4796</id>
<content type='text'>
Create build for other modules as well (ngResource, ngCookies):
- wrap into a function
- add license
- add version

Breaks `$sanitize` service, `ngBindHtml` directive and `linky` filter were moved to the `ngSanitize` module. Apps that depend on any of these will need to load `angular-sanitize.js` and include `ngSanitize` in their dependency list: `var myApp = angular.module('myApp', ['ngSanitize']);`
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Create build for other modules as well (ngResource, ngCookies):
- wrap into a function
- add license
- add version

Breaks `$sanitize` service, `ngBindHtml` directive and `linky` filter were moved to the `ngSanitize` module. Apps that depend on any of these will need to load `angular-sanitize.js` and include `ngSanitize` in their dependency list: `var myApp = angular.module('myApp', ['ngSanitize']);`
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(Rakefile): fix and improve file rewriting code</title>
<updated>2012-04-05T17:22:27+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-04-05T16:52:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=1bbc67ef6cba16952ed0ef23d9d62ec8ef960295'/>
<id>1bbc67ef6cba16952ed0ef23d9d62ec8ef960295</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
