aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2011-07-27test(filter.date): fix e2e test to pass on different time zonesVojta Jina
2011-07-26feat(docs): add full offline supportDi Peng
2011-07-26feat(docs): add a changelog link to the footerDi Peng
2011-07-26fix(ng:show/ng:hide): use jqLite.show/jqLite.hideDi Peng
The previous implementation didn't handle situation when in css something was hidden with a cascaded display:none rule and then we wanted to show it. Unfortunatelly our test doesn't test this scenario because it's too complicated. :-/
2011-07-26doc(tutorial): fix navigation widget to work without jQueryVojta Jina
jqLite doesn't support class selectors, can find only by tag name...
2011-07-26feat(number/currency filter): format numbers and currency using patternDi Peng
both numbers and currency need to be formatted using a generic pattern which can be replaced for a different pattern when angular is working in a non en-US locale for now only en-US locale is supported, but that will change in the future
2011-07-26style(ng:options): fix style and some docsIgor Minar
2011-07-26fix(ng:options): add support for option groupsMisko Hevery
Closes# 450
2011-07-26fix(directive): ng:options to support ng:changeMisko Hevery
Closes #463
2011-07-26fix(directive): ng:options to support iterating over objectsMisko Hevery
Closes #448
2011-07-26fix(directive): ng:options incorrectly re-grew options on datasource changeMisko Hevery
Closes #464
2011-07-26fix(directive): ng:options now support binding to expressionMisko Hevery
Closes #449
2011-07-26style(warnings): prevent the browser from making bogus GET requests during testsMisko Hevery
2011-07-26style(warnings): added missing semi colonsMisko Hevery
2011-07-26chore(jqlite): clean up dead codeMisko Hevery
2011-07-26doc(ng:view): fix broken template links in docs; add scenario test.Misko Hevery
2011-07-22chore(license): update license headers + add version numIgor Minar
- fixed copyright overnship - updated copyright years - added @license tag so that closure compiler preserves the header - added version number into headers (finally!)
2011-07-22feat(angular.version): add angular.versionDi Peng
- placeholders are replaced with actual angular versions when doing rake compile
2011-07-20refactor(gen-docs): use q, qq, q-fs (node modules) to write gen-docsDi Peng
- re-write gendocs.js, reader.js and writer.js - all calls are asynchronous
2011-07-20feat(gen-docs): enable caching the whole siteDi Peng
Generate a manifest file automatically by reading the directories.
2011-07-20feat(filter.date): add support for default datetime formats in enDi Peng
- add support for full,long, medium, short datetime formats in en Breaks MMMMM. now we don't support MMMMM anymore as old implementation differs from Unicode Locale Data format we are following. - removed support for fullDateTime and fullTime as it means too much trouble with full timeZone names - added docs for the new features
2011-07-20feat(TzDate): add mock "toString" method to TzDate.Di Peng
- If the third param of TzDate constructor is defined, toStirng will just return this third parameter. Otherwise, toString will still be treated as unimplemented method
2011-07-19chore(docs/.htaccess): bundle .htaccess with docsIgor Minar
2011-07-19Revert "fix(ng:class): preserve classes added post compilation"Igor Minar
This reverts commit 2428907259fa80ec3b1b4bfd85ea20028a9f4fa5. We decided to revert this because it is not bullet proof. The issue is that we can't reliably have both angular and non-angular code in charge of the DOM. We could work around some issues here and there, but we can't do it reliably, so it's better not to support DOM manipulation that happens outside of angular. There is a good chance that once we integrate with MDVs our possition will change, but until then our position is that only angular or angular widgets/directives can change change DOM that was compiled.
2011-07-19doc(.defer.cancel): temporarily disable the docIgor Minar
2011-07-18feat($browser.$defer.cancel): support canceling defered tasksIgor Minar
2011-07-18fix($browser.setUrl): make browser.setUrl more efficientIgor Minar
- browser should remember the last value retrieved via browser.getUrl - browser should update window.location only if the new value is different from the current window.location value
2011-07-18feat(strict mode): adding strict mode flag to all js filesIgor Minar
the flag must be in all src and test files so that we get the benefit of running in the strict mode even in jstd the following script was used to modify all files: for file in `find src test -name "*.js"`; do echo -e "'use strict';\n" > temp.txt cat $file >> temp.txt mv temp.txt $file done
2011-07-18feat(strict mode): turn on ECMAScript 5 strict modeIgor Minar
- add 'use strict'; statement to the prefix file - configure closure compiler to use the ES5 strict mode - strip all file-specific strict mode flags after concatination Closes #223
2011-07-18fix(strict mode): fix all issues discovered by strict mode and unit/e2e testsIgor Minar
2011-07-18chore(closure-compiler): upgrading to v20110615Igor Minar
2011-07-18doc(angular.annotate): properly disable doc snippet to avoid compiler warningsIgor Minar
2011-07-18doc(misc): fixing typos in docsIgor Minar
2011-07-18refactor($browser): hide startPoll and poll methodsDiPeng
Breaks $browser.poll() method is moved inline to $browser.startpoll() Breaks $browser.startpoll() method is made private Refactor tests to reflect updated browser API Closes #387
2011-07-17refactor(docs): run e2e tests with and without jqueryDi Peng
- e2e tests will run index.html (without jquery) and with index-jq.html(with jquery). - many small changes to make e2e tests work withough JQuery as we discover problems that were previously hidden by using real JQuery.
2011-07-17style(jqLiteSpec): add spaceDi Peng
2011-07-17feat(jqlite): added show(),hide() and eq() methods to jqliteDi Peng
- add those three methods to jqlite
2011-07-18style(injector): remove extra semicolonIgor Minar
2011-07-16doc(ng:include): improve the doc example to avoid confusionIgor Minar
2011-07-16fix(doc): fix all broken linksIgor Minar
2011-07-16doc(css): add '#content-list .level-4' cssIgor Minar
2011-07-16doc(ngdoc): add 'this' and 'returns' section for methodsIgor Minar
2011-07-16doc(ngdoc): fix usage format for functions bolted onto servicesIgor Minar
2011-07-16test(ngdoc): add test for @ngdoc functionIgor Minar
2011-07-16test(ngdoc): fix a typo in the @deprecated specIgor Minar
2011-07-16test(ngdoc): fix failing testsIgor Minar
2011-07-16doc(angular.mock.service.$browser): add xhr docsDi Peng
2011-07-14chore(configs): Add missing files to jstd configVojta Jina
Add jstd-scenario-adapter files into jstd configs (jquery, coverage). Remove angular.prefix, sufifix from exclude, as they don't have to be there. They are not included, because of *.js mask.
2011-07-14chore(scripts): add test-jquery.sh for running unit tests with jQueryVojta Jina
2011-07-13fix(ng:class): preserve classes added post compilationDi Peng
- make sure ng:class preserve classes added after compilation Closes #355