<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js, branch v0.9.0</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>cutting the 0.9.0 release</title>
<updated>2010-10-20T22:51:36+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2010-10-20T21:49:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=2a9579a0ea72be0d03296eca08d481acbc9d55c5'/>
<id>2a9579a0ea72be0d03296eca08d481acbc9d55c5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Angular should look for angular-ie-compat file at the right location</title>
<updated>2010-10-20T21:48:35+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2010-10-20T04:53:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=6f3a757a37cf26f358220c52ff7db2ae56f31642'/>
<id>6f3a757a37cf26f358220c52ff7db2ae56f31642</id>
<content type='text'>
The location should be based on the base path of the angular script
and the version identifier of the angular script.

ex: angular.js -&gt; angular-ie-compat.js
    js/angular-0.9.0.min.js -&gt; js/angular-ie-compat-0.9.0.js
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The location should be based on the base path of the angular script
and the version identifier of the angular script.

ex: angular.js -&gt; angular-ie-compat.js
    js/angular-0.9.0.min.js -&gt; js/angular-ie-compat-0.9.0.js
</pre>
</div>
</content>
</entry>
<entry>
<title>Add support for version numbers in the Rakefile</title>
<updated>2010-10-20T21:48:35+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2010-10-20T04:19:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=2e687ee56fb81e96c0f45b2655a1a723331e2d20'/>
<id>2e687ee56fb81e96c0f45b2655a1a723331e2d20</id>
<content type='text'>
* version number is stored in version.yaml
  - work in progress is marked with version number that ends with '-snapshot'
* all compiled files are stored in the './build/' directory without version numbers
* :package task creates a tarball in the build directory
  - if version number contains '-snapshot', this substring is replaced with sha of the head
  - tarball contains version number in the filename
  - all js files contain version number in the filename
* .gitignore was updated to reflect all these changes
* the .map file is not created by the closure compiler any more
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* version number is stored in version.yaml
  - work in progress is marked with version number that ends with '-snapshot'
* all compiled files are stored in the './build/' directory without version numbers
* :package task creates a tarball in the build directory
  - if version number contains '-snapshot', this substring is replaced with sha of the head
  - tarball contains version number in the filename
  - all js files contain version number in the filename
* .gitignore was updated to reflect all these changes
* the .map file is not created by the closure compiler any more
</pre>
</div>
</content>
</entry>
<entry>
<title>add missing spec for angularJsConfig</title>
<updated>2010-10-20T21:48:35+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2010-10-20T00:08:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=7530eea7035e26a0bcc358c8ef94c79debabddf4'/>
<id>7530eea7035e26a0bcc358c8ef94c79debabddf4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>extract and test regexp that identifies angular script tag</title>
<updated>2010-10-20T21:48:35+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2010-10-20T00:07:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=644c8514c54518e350b0c2a0e17a9af09ed340f9'/>
<id>644c8514c54518e350b0c2a0e17a9af09ed340f9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Lots of stability and performance updates and UI polish too.</title>
<updated>2010-10-20T21:38:00+00:00</updated>
<author>
<name>Elliott Sprehn</name>
</author>
<published>2010-10-19T20:17:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=2115db69035c5993533fe7a3825e64cf6e9068ad'/>
<id>2115db69035c5993533fe7a3825e64cf6e9068ad</id>
<content type='text'>
Polish the Scenario Runner UI to include:
- a scroll pane that steps appear in since the list can be very long
- Collapse successful tests
- Show the line where the DSL statements were when there's an error (Chrome, Firefox)

Also:
- Remove lots angular.bind calls to reduce the amount of stack space used.
- Use setTimeout(...,0) to schedule the next future to let the browser breathe and have it repaint the steps. Also prevents overflowing the stack when an it() creates many futures.
- Run afterEach() handlers even if the it() block fails.
- Make navigateTo() take a function as the second argument so you can compute a URL in the future.
- Add wait() DSL statement to allow interactive debugging of tests.
- Allow custom jQuery selectors with element(...).query(fn) DSL statement.

Known Issues:
- All afterEach() handlers run even if a beforeEach() handler fails. Only after handlers for the same level as the failure and above should run.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Polish the Scenario Runner UI to include:
- a scroll pane that steps appear in since the list can be very long
- Collapse successful tests
- Show the line where the DSL statements were when there's an error (Chrome, Firefox)

Also:
- Remove lots angular.bind calls to reduce the amount of stack space used.
- Use setTimeout(...,0) to schedule the next future to let the browser breathe and have it repaint the steps. Also prevents overflowing the stack when an it() creates many futures.
- Run afterEach() handlers even if the it() block fails.
- Make navigateTo() take a function as the second argument so you can compute a URL in the future.
- Add wait() DSL statement to allow interactive debugging of tests.
- Allow custom jQuery selectors with element(...).query(fn) DSL statement.

Known Issues:
- All afterEach() handlers run even if a beforeEach() handler fails. Only after handlers for the same level as the failure and above should run.
</pre>
</div>
</content>
</entry>
<entry>
<title>fixed negative numbers in Json</title>
<updated>2010-10-20T14:22:15+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2010-10-20T14:22:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=9c8b1800b90e14b643bab6ada8e96f8f850e84a6'/>
<id>9c8b1800b90e14b643bab6ada8e96f8f850e84a6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Added tests for URL_MATCH and fixed issue with empty path</title>
<updated>2010-10-20T04:58:01+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2010-10-18T19:35:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=a27198d52e61adb9cedde04e51bbec74e66089da'/>
<id>a27198d52e61adb9cedde04e51bbec74e66089da</id>
<content type='text'>
This commit was produced by a combination of 4 commits:
- Added URL_MATCH test for basic url
- Moved two tests from $location to URL_MATCH, as they should be here
- Added test for host without "/" ending and fix the regexp to pass the test
- Added another test for matching empty abs path ("/") and fix the regexp
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This commit was produced by a combination of 4 commits:
- Added URL_MATCH test for basic url
- Moved two tests from $location to URL_MATCH, as they should be here
- Added test for host without "/" ending and fix the regexp to pass the test
- Added another test for matching empty abs path ("/") and fix the regexp
</pre>
</div>
</content>
</entry>
<entry>
<title>fix issue where script calls back before callback registered.</title>
<updated>2010-10-20T04:03:34+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2010-10-20T04:03:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=286d1fe434687a1c0e3ddc6cf7214896704d97b3'/>
<id>286d1fe434687a1c0e3ddc6cf7214896704d97b3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix date filter to igrone falsy input</title>
<updated>2010-10-20T03:38:49+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2010-10-20T03:38:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=c5cfe2b3936f3175a97c7ac3f4b5f47632f197f4'/>
<id>c5cfe2b3936f3175a97c7ac3f4b5f47632f197f4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
