<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js, branch v0.9.10</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>cutting the 0.9.10 flea-whisperer release</title>
<updated>2011-01-27T07:51:06+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-01-27T07:51:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=9f947e5b8b7a6a792176615be9a91fa520052b44'/>
<id>9f947e5b8b7a6a792176615be9a91fa520052b44</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>validator doc example should not be escaped</title>
<updated>2011-01-27T07:44:21+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-01-27T07:44:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=75de7395bb9558485005a55f9ade7411507bcf94'/>
<id>75de7395bb9558485005a55f9ade7411507bcf94</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>updating release notes for the 0.9.10 release</title>
<updated>2011-01-27T07:36:41+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-01-27T07:35:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=9f73b1f290375672f02cb673992749f0a5dafbe4'/>
<id>9f73b1f290375672f02cb673992749f0a5dafbe4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Added part of guide documentation and supporting changes to doc generator</title>
<updated>2011-01-27T07:31:15+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2011-01-26T05:55:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=bd33f60276a0fa37acffbad7a0cdcff92db594c8'/>
<id>bd33f60276a0fa37acffbad7a0cdcff92db594c8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix for stupid IE handling of named functions in mocks</title>
<updated>2011-01-27T06:30:09+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-01-27T06:29:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=8682befc7284a3c0b35cd5d85d4f42b1484ec71a'/>
<id>8682befc7284a3c0b35cd5d85d4f42b1484ec71a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add missing test/mocks.js</title>
<updated>2011-01-27T04:12:23+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-01-27T04:12:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=3f0a37f380e262fa86689f06c0801ae54d8a0983'/>
<id>3f0a37f380e262fa86689f06c0801ae54d8a0983</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>split mocks and create $log and $exceptionHandler mocks</title>
<updated>2011-01-26T23:46:05+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-01-26T04:44:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=f5d08963b0c836b10133a94d03a81254242661eb'/>
<id>f5d08963b0c836b10133a94d03a81254242661eb</id>
<content type='text'>
- split mocks between angular-mocks.js and mocks.js
- src/angular-mocks.js now contains only mocks that we want to ship
- test/mocks.js contains mocks that we use internally for testing
  angular
- created angular.mock namespace
- created public $exceptionHandler mock rethrows errors
- created public $log mock stores all logs messages in an array that can
  be accessed to make assertions
- internally we now have factory to create $exceptionHandler
  that we can assert on
- internally we also keep track of all messages logged and
  fail tests if messages were not expected and cleaned up (checked
  via global beforeEach and afterEach)
- updated RakeFile and docs reader.js to point to the new
  angular-mocks.js location
- made real $exceptionHandler and $log factories accessible from tests
  and simplified their specs
- fixed typos in several spec descriptions
- added log assertions throughout the test suite
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- split mocks between angular-mocks.js and mocks.js
- src/angular-mocks.js now contains only mocks that we want to ship
- test/mocks.js contains mocks that we use internally for testing
  angular
- created angular.mock namespace
- created public $exceptionHandler mock rethrows errors
- created public $log mock stores all logs messages in an array that can
  be accessed to make assertions
- internally we now have factory to create $exceptionHandler
  that we can assert on
- internally we also keep track of all messages logged and
  fail tests if messages were not expected and cleaned up (checked
  via global beforeEach and afterEach)
- updated RakeFile and docs reader.js to point to the new
  angular-mocks.js location
- made real $exceptionHandler and $log factories accessible from tests
  and simplified their specs
- fixed typos in several spec descriptions
- added log assertions throughout the test suite
</pre>
</div>
</content>
</entry>
<entry>
<title>fix deprication typo in the doc generator</title>
<updated>2011-01-26T23:37:22+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-01-26T06:54:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=7a48ee6aa949e8d4338033de8a0c6a079ceb17a3'/>
<id>7a48ee6aa949e8d4338033de8a0c6a079ceb17a3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>adding jsdoc for angular namespace</title>
<updated>2011-01-26T23:37:22+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-01-26T05:03:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=6512a736acc8fe092ef81254e5aa744d6392d1ea'/>
<id>6512a736acc8fe092ef81254e5aa744d6392d1ea</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>compile but don't bind option elements  nested in a nameless select</title>
<updated>2011-01-26T04:49:25+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-01-26T01:51:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=9e0fa5b7c829fcc58a21ab9c3f0cf6492cf793af'/>
<id>9e0fa5b7c829fcc58a21ab9c3f0cf6492cf793af</id>
<content type='text'>
otherwise an exception is thrown unexpectidly
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
otherwise an exception is thrown unexpectidly
</pre>
</div>
</content>
</entry>
</feed>
