aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2011-02-03added more cookbook: work in progressMisko Hevery
2011-02-03Fixed notifyWhenNoOutstandingRequests() when using JSONPMisko Hevery
2011-02-03changed order of auto test runner so that JS errors show up lastMisko Hevery
2011-02-03addded cookbookMisko Hevery
2011-02-03fixed population of value attribute on optionMisko Hevery
The value attribute must be populated manually, since different browsers default to different value of option when not explicitly defined.
2011-02-03corrected typo in the dump function which was preventig serialization of objectsMisko Hevery
2011-02-01changed the documentation @example to use <doc:example>Misko Hevery
2011-02-01Developer guide documentationMisko Hevery
2011-02-01add support for $route.reload()Igor Minar
Closes 254
2011-02-01add $route.parent for setting parentScopeIgor Minar
2011-02-01add redirection support to $routeIgor Minar
Closes #217
2011-02-01fix $location to handle updates to empty hash wellIgor Minar
2011-02-01$browser poller should notify $location only once per url changeIgor Minar
2011-02-01fix docs for $window serviceIgor Minar
2011-02-01upgrading jstd to r845Igor Minar
2011-02-01fixing $exceptionHandler docsIgor Minar
2011-02-01add support for 404 handling via $route.otherwiseIgor Minar
Closes #217
2011-02-01adding spec for controller-less $route definitionsIgor Minar
2011-02-01fixing $route docsIgor Minar
2011-02-01fix older release notesIgor Minar
2011-01-31upgrading jstd to r844 2011-01-31Igor Minar
2011-01-30jqlite should not generate exceptions when accessing attributes on DocumentIgor Minar
2011-01-30fixing angular.Scope. docsIgor Minar
2011-01-30preparing the 0.9.11 snow-maker iterationIgor Minar
2011-01-27corrected sitemap.xml formatMisko Hevery
2011-01-26cutting the 0.9.10 flea-whisperer releasev0.9.10Igor Minar
2011-01-26validator doc example should not be escapedIgor Minar
2011-01-26updating release notes for the 0.9.10 releaseIgor Minar
2011-01-26Added part of guide documentation and supporting changes to doc generatorMisko Hevery
2011-01-26fix for stupid IE handling of named functions in mocksIgor Minar
2011-01-26add missing test/mocks.jsIgor Minar
2011-01-26split mocks and create $log and $exceptionHandler mocksIgor Minar
- 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
2011-01-26fix deprication typo in the doc generatorIgor Minar
2011-01-26adding jsdoc for angular namespaceIgor Minar
2011-01-25compile but don't bind option elements nested in a nameless selectIgor Minar
otherwise an exception is thrown unexpectidly
2011-01-25Scope should retrieve $log and $exceptionHandler via $serviceIgor Minar
- fix $log and $exceptionHandler retrieval - remove reference to non-existent `error` handler - update tests
2011-01-24added any edit perf to make sure no trailing whitespaceMisko Hevery
2011-01-24add @this and @exampleDescription tagsMisko Hevery
(also removed markdownNoP, now done through CSS)
2011-01-24enable docs testsMisko Hevery
2011-01-24Added SiteMap generation to the documentationMisko Hevery
2011-01-24fixed example rendering, add tests for it.Misko Hevery
2011-01-24remove trailing whitespaceMisko Hevery
2011-01-24add @this and @exampleDescription tagsMisko Hevery
(also removed markdownNoP, now done through CSS)
2011-01-24updated doc styling for methods/propertiesMisko Hevery
2011-01-24remove jasmine stack traces from the test outputMisko Hevery
2011-01-24ng:view should propagate evals to the current child scopeIgor Minar
- this change is needed because of previously reverted $route changes that used to propagate evals automatically. - also added docs to highlight how the eval propagation works
2011-01-24Revert "$route should create child scope via $new"Igor Minar
This reverts commit a5eb3ed107034cce5b7de3ec3f8a43ff3a379fa1. See 9ca2facb for reasoning.
2011-01-24Revert "fix ng:include issue introduced by a5eb3ed1"Igor Minar
This reverts commit 17ee0f031ac4a37bf9a1dc8c87ffac4bd164d1cc. this and a5eb3ed1 introduced scope leakage that can't be resolved until we fix up scope relationships and eval propagation. I'm reverting both this and a5eb3ed1 until we can properly address the issue.
2011-01-24fix for infinite loop in retrieveScope with jQuery + specsIgor Minar
- retrieveScope run into infinite loop if called on DOM tree that doesn't contain scope reference (happens only with jQuery) - added missing specs for retrieveScope function
2011-01-24improve angular.Scope.$eval docsIgor Minar