aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2011-06-30feat:$xhr: provide access to $xhr header defaultsIgor Minar
$xhr header defaults are now exposed as $xhr.defaults.headers.common and $xhr.default.headers.<httpmethod>. This allows applications to configure their defaults as needed. This commit doesn't allow headers to be set per request, only per application. Per request change would require api change, which I tried to avoid *for now*.
2011-06-27fix:tests: replace angular.annotate with annotateIgor Minar
forgot to fix tests in 6aee2938a71c99fdd35639725c6900347999f658
2011-06-27test:ng#class: added a better unit test for ng:classDi Peng
2011-06-27fix:testabilityPatch: remove annotate since it's not publicIgor Minar
2011-06-27docs:release notes: prepare for notes for 0.9.17 releaseIgor Minar
2011-06-27fix:docs: css lint fixesIgor Minar
2011-06-27fix:$browser: Use document.createElement to create JSONP script tagVojta Jina
Creating <script> tags would require a lot of extra work if we want all browsers to load and execute these scripts. We decided to not implement that in jqLite. See #369 for more information. Closes #369
2011-06-25fix:docs: Fix sitemap generator to use doc.id instead of doc.nameDi Peng
doc.id should be used instead of doc.name, otherwise links are wrongly generated
2011-06-23fix:repeat: fix ending comment tagIgor Minar
2011-06-23feat:filter.date: add day/month string format supportDi Peng
Support new date format, specifically day of week/Month of year in string e.g. {{ someDate | data:"EEE, MMM d, yyyy" }} -> "Wed, Jul 10, 2011" Closes #396
2011-06-23fix:ng:repeater - fix $position when collection size changesMisko Hevery
2011-06-23style:ApiSpecs - clean up test names to match jasmine conventionsMisko Hevery
2011-06-23fix:$orderBy - return unsorted array if no predicateMisko Hevery
Closes #399
2011-06-23fix:scope - reintroduce support for eager servicesDi Peng
8cad231 broke $eager services Problem is that the injector.eager function is not invoked when a new scope is created. Added a test to make sure service is eagerly instantiated. Closes #403
2011-06-23test:angular.service - add tests for $injectDi Peng
2011-06-21Update fixed docs content (guide)Vojta Jina
Couple of typos fixed: * indentation * batchLogbatchLog -> batchLog * start periodic checking * missing brace
2011-06-17Fix failing unit tests in IE7 (Binder, select widget)Vojta Jina
The fix does not change any production code, we only need to ignore couple of attributes that IE7 should not display: * value attribute for LI * selected attribut for SELECT Simplified condition in compiler test, this should have been part of f9f0905f4ad7b1d0bb9b606a6d25fb1f88354a78
2011-06-17Fix compiler test for IE9Vojta Jina
Older IEs serialize html uppercased, but IE9 does not... Would be better to expect case insensitive, unfortuntaly jasmine does not allow to user regexps for throw expectations. Closes #392
2011-06-17Remove obsolete scenario folderVojta Jina
* moved scenario e2e tests in test/scenario/e2e folder * remove $location test
2011-06-16Added ng:disabled, ng:checked, ng:multiple, ng:readonly, ng:selected to ↵Di Peng
markup.js. Also added coresponding descriptions live examples and tests for each directive to be displayed on the website. Closes #351
2011-06-16Update docs from googledocsVojta Jina
* fixed typo in tutorial step-10 * revert cookbook/buzz example to use googlebuzz user
2011-06-15Fix test for scenario.Application - should remove old iframeVojta Jina
This behavior was changed by e83465c362c53ac7451183a775456f3112262f6e So this commit should have been part of e83465c362c53ac7451183a775456f3112262f6e Also removed hiding and navigating to about:blank as it makes no sense now...
2011-06-15docs - various doc fixesIgor Minar
2011-06-15docs - stripping extra new linesIgor Minar
2011-06-15Replaced double line break with single when text is fetched from Google DocsDi Peng
Closes #384
2011-06-15Updated docs/cookbook/buzz from gdocsDi Peng
With couple of fixes: * indentation + code formatting * use ng:href, ng:src * change UserId to misko.hevery so it will work now
2011-06-15Fix scenario runner on IE7, IE8Misko Hevery
* add ng:disabled, ng:checked, ng:multiple, ng:readonly, ng:selected * fetch fixed cookbook/advancedform (use ng:disabled) * fire keydown instead of change on input * remove frame when test finishes
2011-06-10Fix small typo in docs widget (tutorial instructions)Vojta Jina
2011-06-08Fix changelog url (angularjs.com -> angularjs.org)Vojta Jina
2011-06-08Should have replaced all instances of element('input[name=something]').val() ↵Di Peng
with input('name').val() Closes #376
2011-06-08remove ng:format=indexMisko Hevery
2011-06-08Added ng:options directiveMisko Hevery
Closes #301
2011-06-08Added prepend() to jqLiteMisko Hevery
2011-06-08Added support for deferring callbacks in timeMisko Hevery
2011-06-08Fixed indentation errorMisko Hevery
2011-06-08Throw error when compiling multiple rootsMisko Hevery
Closes #338
2011-06-08Added support for properties in documentationMisko Hevery
2011-06-08Refactor injector to have invoke method for speed reasonsMisko Hevery
2011-06-08Cleanup parser code to expose smaller APIMisko Hevery
2011-06-08Added HashMapMisko Hevery
2011-06-08Added nextUid() function for unified way of generating IDs in angularMisko Hevery
2011-06-08performance improvement of single statement in parserMisko Hevery
2011-06-08Proper handling of special attributes in jqliteMisko Hevery
2011-06-08removed jqLite warningMisko Hevery
2011-06-08fix JSON to match native browser behaviorMisko Hevery
2011-06-08cleanup old closure directivesMisko Hevery
2011-06-08better error reporting for exceptionsMisko Hevery
2011-06-08code cleanup: missing ; and indentationMisko Hevery
2011-06-08Created a performance test harness and reporterMisko Hevery
2011-06-08Number filter would return incorrect value when fractional part had leading ↵Misko Hevery
zeros.