aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2011-01-07Revert "Issue #51: Update extensionMap()"Igor Minar
This reverts commit 00ca67e4befffed00ecee81bd1ce903fe01f542a. Now that we don't have published services, we don't need to worryi about this any more and in fact this behavior is confusing because to override a service that has dependencies with a services with no dependencies one must specify $inject:[] or else the old dependencies will be injected. Conflicts: src/Angular.js test/AngularSpec.js
2011-01-07rename nodeName due to conflicts with jqueryIgor Minar
2011-01-07add global namespace clobbering check to angular-bootstrapIgor Minar
2011-01-07remove unused jquery ui libIgor Minar
2011-01-06removed dissabled tests which are now outdatedMisko Hevery
2011-01-06converted last of tests to specsMisko Hevery
2011-01-06upgrade to latest jasmine adapterMisko Hevery
2011-01-04avoid namespace conflicts between jqLite and window when running in ↵Igor Minar
bootstrap mode
2011-01-04fixing up personalLog appIgor Minar
2011-01-04rename scope.$inject to scope.$serviceIgor Minar
see changelog diff for more info
2011-01-04renaming service property $creation to $eagerIgor Minar
see changelog diff for more info
2011-01-04removing support for 'eager-published' servicesIgor Minar
2011-01-04Remove many eager-publish services, lazy pollingMisko Hevery
- Browser now starts the poller on first call to addPollFn() - Many services ($location, $cookies, $router) are no longer eager-publish. The result is that unless someone needs the $cookies, they will not cause the Browser to start polling for them.
2011-01-04Added an extra security check to make sure that the parser can not execute ↵Misko Hevery
anything while evaluting JSON.
2010-12-28upgrading JSTD to r788Igor Minar
2010-12-23preparing the 0.9.9 time-shift iterationIgor Minar
2010-12-23cutting the 0.9.8 astral-projection releaseIgor Minar
2010-12-23release notes for the 0.9.8 releaseIgor Minar
2010-12-23fixing invalid json strings in ResourceSpecIgor Minar
2010-12-22fromJson delegation to native JSON parser if availableIgor Minar
- native parser delegation - $xhr change to use native parser
2010-12-22simple perf testing harness with JSON parsing testsIgor Minar
- all tests should be under perf/ - all payloads should be under perf/data - run tests with ./server.sh + ./test-perf.sh We still lack a way to compare results against a baseline, but this is better than nothing.
2010-12-22Revert "Refactor lexer to use regular expressions"Igor Minar
We came across a major performance regression due to this change. I'm reverting it until we find a better solution. This reverts commit 23fc73081feb640164615930b36ef185c23a3526.
2010-12-11Stricter JSON parsing, for securityMisko Hevery
2010-12-11Closes #153: input widgets without name are ignoredMisko Hevery
2010-12-11Fire $eval only if the value has actually changed on inputMisko Hevery
2010-12-10preparing the 0.9.8 astral-projection iterationIgor Minar
2010-12-10cutting the 0.9.7 sonic-scream releasev0.9.7Igor Minar
2010-12-10fixing release notesIgor Minar
2010-12-10improve doc app scrollbarsIgor Minar
2010-12-10updating release notesIgor Minar
2010-12-10$defer service should always call $eval after callback finishedIgor Minar
Closes #189
2010-12-08Refactor lexer to use regular expressionsMisko Hevery
2010-12-08Remove RegExp parserMisko Hevery
- RegExp parser is rearly used, feature, and one should not have RegExps in views anyways, so we are removing it BACKWARD INCOMPATIBLE CHANGE!!!
2010-12-08Fixed failed assignments of form abj[0].name=valueMisko Hevery
Closes #169
2010-12-07make the docs angular 'logo' link filename agnosticIgor Minar
2010-12-07@returns tag should allow the content to be split into multiple linesIgor Minar
2010-12-07improving $resource docsIgor Minar
2010-12-06preparations for the 0.9.7 sonic-scream iterationIgor Minar
2010-12-06cutting the 0.9.6 night-vision releasev0.9.6Igor Minar
2010-12-06fixing release notesIgor Minar
2010-12-06fixing closure compiler warningsIgor Minar
2010-12-06fix the angular.Array.orderBy example + add docsIgor Minar
2010-12-06updating release notes for the 0.9.6 releaseIgor Minar
2010-12-06fixing lint warnings in older codeIgor Minar
2010-12-06add $browser.defer and $defer service and fix async xhr cache issueIgor Minar
- Closes #152 ($resource().query() sometimes calls callback before returning, and it shouldn't) - add $browser.defer method - add $defer service - integrate $browser.defer with outstandingRequests counter in $browser - fix all old tests that relied on buggy behavior
2010-12-06allow documentation to be in external fileMisko Hevery
* Load templates once instead of per request * show timing information * load files ending in .ngdoc and process them
2010-12-03Fix sanitization issues as suggested by evnMisko Hevery
2010-12-02Closes #170. Corrected the behavior of select when options are ng:repeatedMisko Hevery
- Delete $postEval method, as it was a hack
2010-11-29Fixed sanitizationMisko Hevery
* explicitly require full URLs (ftp|https?://...) * list the URI attributes * remove a lot of unneeded attributes
2010-11-29fix typo in searchbox placeholderIgor Minar