| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2011-02-18 | Auto create $inject property form the argument names. Any arg starting with ↵ | Misko Hevery | |
| $ or _ will be injected | |||
| 2011-02-17 | resources should not over-encode chars in url path | Igor Minar | |
| - added encodeUriSegment that properly encodes only those chars that URI RFC requires us to encode - modified Resource to use encodeUriSegment | |||
| 2011-02-17 | make all built-in services lazy | Igor Minar | |
| now that we require DI everywhere, we don't need any of these services to be eager - they get initialized when and only when they are requested. | |||
| 2011-02-16 | Changed the angular.compile(element)(scope[, cloneAttachNode]) | Misko Hevery | |
| 2011-02-16 | reformated multiline trinary expressions to have a leading ?/:. | Misko Hevery | |
| 2011-02-16 | rewrite of JQuery lite implementation, which now better supports selected sets | Misko Hevery | |
| 2011-02-16 | Change API angular.compile(element)([scope], [element/true]) | Misko Hevery | |
| 2011-02-16 | refactored quickClone to cloneNode and exposed it on jQuery | Misko Hevery | |
| 2011-02-16 | remove $init on scope from applying compilation template | Misko Hevery | |
| Closes #40 | |||
| 2011-02-16 | remove dom manipulation API from compiler | Misko Hevery | |
| 2011-02-16 | Add public API to retrieve scope from element. | Misko Hevery | |
| 2011-02-16 | allow jquery to be declared after angular in the script loading order | Misko Hevery | |
| 2011-02-16 | added missing semicolons | Misko Hevery | |
| 2011-02-16 | improving the $document docs | Igor Minar | |
| Closes #276 | |||
| 2011-02-16 | Small spelling and grammar fixes in documentation. | Anthony Lieuallen | |
| 2011-02-15 | split up services into individual files | Igor Minar | |
| - split up services into files under src/service - split up specs into files under test/service - rewrite all specs so that they don't depend on one global forEach - get rid of obsolete code and tests in ng:switch - rename mock $log spec from "$log" to "$log mock" | |||
| 2011-02-14 | docs - adding cross links from directives to guide.expression | Igor Minar | |
| 2011-02-10 | $resource should encode url params with encodeURIComponent | Igor Minar | |
| 2011-02-07 | add support for hashSearch redirection and custom redirection functions | Igor Minar | |
| 2011-02-07 | $route redirection should interpolate variables | Igor Minar | |
| 2011-02-07 | $location.updateHash should not preserve hashSearch when hashSearch is undefined | Igor Minar | |
| 2011-02-07 | add description for ng:controller example | Igor Minar | |
| 2011-02-07 | $resource service docs | Igor Minar | |
| 2011-02-07 | docs for $xhr, $xhr.error and $xhr.cache | Igor Minar | |
| 2011-02-07 | adding docs for angular.markup and angular.attrMarkup | Igor Minar | |
| 2011-02-06 | fix how redirection is handled and tested | Igor Minar | |
| 2011-02-04 | fix typo in $browser mock | Igor Minar | |
| Closes #260 | |||
| 2011-02-04 | mock $log: fixed bug, added some tests | Vojta Jina | |
| I extracted mock $log factory into stand alone function, so we can access it and test, because this service is rewritten by real service during testing, so we can't access it through angular.$service('$log')... | |||
| 2011-02-04 | ng:view should be nestable in ng:include | Igor Minar | |
| 2011-02-04 | $route.onChange should return the registered fn | Igor Minar | |
| 2011-02-04 | mock's .xhr.flush() should throw exception when there is nothing to flush | Igor Minar | |
| 2011-02-04 | smarter normalization of value on option, and htmlParser fixes | Misko Hevery | |
| 2011-02-03 | Added remainder of the cookbook | Misko Hevery | |
| 2011-02-03 | added more cookbook: work in progress | Misko Hevery | |
| 2011-02-03 | Fixed notifyWhenNoOutstandingRequests() when using JSONP | Misko Hevery | |
| 2011-02-03 | fixed population of value attribute on option | Misko Hevery | |
| The value attribute must be populated manually, since different browsers default to different value of option when not explicitly defined. | |||
| 2011-02-01 | changed the documentation @example to use <doc:example> | Misko Hevery | |
| 2011-02-01 | add support for $route.reload() | Igor Minar | |
| Closes 254 | |||
| 2011-02-01 | add $route.parent for setting parentScope | Igor Minar | |
| 2011-02-01 | add redirection support to $route | Igor Minar | |
| Closes #217 | |||
| 2011-02-01 | fix $location to handle updates to empty hash well | Igor Minar | |
| 2011-02-01 | $browser poller should notify $location only once per url change | Igor Minar | |
| 2011-02-01 | fix docs for $window service | Igor Minar | |
| 2011-02-01 | fixing $exceptionHandler docs | Igor Minar | |
| 2011-02-01 | add support for 404 handling via $route.otherwise | Igor Minar | |
| Closes #217 | |||
| 2011-02-01 | fixing $route docs | Igor Minar | |
| 2011-01-30 | jqlite should not generate exceptions when accessing attributes on Document | Igor Minar | |
| 2011-01-30 | fixing angular.Scope. docs | Igor Minar | |
| 2011-01-26 | fix for stupid IE handling of named functions in mocks | Igor Minar | |
| 2011-01-26 | split mocks and create $log and $exceptionHandler mocks | Igor 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 | |||
