| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-08-30 | doc(module) changed simpleApp to myApp in the Module page guide for consistency | Sahat Yalkabov | |
| 2012-08-30 | doc(devguide) - Fix typos and small grammatical errors in the developer guide. | Steve Nicolai | |
| 2012-08-30 | Loading from Google CDN | Uri Goldshtein | |
| As you guys had mansion, we can and need to do it through Google CDN for better performance, so i've updated it accordingly | |||
| 2012-08-30 | docs(typos): fix typos in dev guide | Tyson Benson | |
| 2012-08-30 | fix(scenario): Adding meta tag to avoid cache issues | German Galvis | |
| 2012-08-30 | docs(api): fix typo on home page | phil | |
| Refference -> Reference | |||
| 2012-08-30 | Update docs/content/guide/overview.ngdoc | csugden | |
| Corrects video information | |||
| 2012-08-30 | fix(docs): Fix typos and improve grammar. | Jamie Krug | |
| 2012-08-30 | fix(docs): Fix bad links. | Jamie Krug | |
| 2012-08-30 | docs(module) fix typo | Colin Frei | |
| 2012-08-30 | fix(ng-repeat) to work with primitive types | Zhenbo Zhang | |
| 2012-08-30 | test(locationSpec): fix broken tests after vojta's commit | Igor Minar | |
| 2012-08-30 | fix(mocks): free up memory after every spec | Vojta Jina | |
| 2012-08-30 | chore(docs): ask GAE to serve docs-keywords.js | Igor Minar | |
| 2012-08-30 | test(bootstrap): test exception siling during bootstrap | Igor Minar | |
| Closes #1018 | |||
| 2012-08-30 | test(ngApp): add missing test for [ng-app] bootstrap | Igor Minar | |
| 2012-08-30 | fix(jqLite): better support for xhtml | Igor Minar | |
| it turns out that some stuff doesn't work in xhtml as it does in html. for example can't be innerHTML-ed and auto-closing of elements doesn't work. the reporter of the referenced issue claimed that innerHTML vs text on script made a difference but that doesn't appear to be true in my testing. I'm not including test for this because testacular doesn't currently run tests in xhtml yet. Closes #1301 | |||
| 2012-08-30 | chore(docs): correctly link docs images | Igor Minar | |
| 2012-08-30 | chore(Rakefile): fix the default task | Igor Minar | |
| 2012-08-30 | chore(Rakefile): remove bogus symlink from build | Igor Minar | |
| 2012-08-28 | chore(docs): use symlinks to build docs | Igor Minar | |
| so that we can just edit source files without rebuilding docs. this works for all docs files, except for those that are generated or rewritten during build. | |||
| 2012-08-28 | chore(Rakefile): various build script changes | Igor Minar | |
| - restructure rake tasks this splits up the concatination and minification into two tasks so that we can just build angular.js quickly without wasting time with minification which is often not needed when just debugging some issue on 3rd party site. - use symlinks when creating final zip file - switch from btar to zip - get rid of version numbers from filenames - rewrite version numbers in all index files Closes #1226 | |||
| 2012-08-27 | doc($log): correct non-working example | Misko Hevery | |
| 2012-08-27 | doc(guide): add concepts | Misko Hevery | |
| 2012-08-27 | fix(ngdoc): failing test | Misko Hevery | |
| 2012-08-27 | doc(directive) correct typos | Colin Frei | |
| 2012-08-27 | fix(docs) typo | Misko Hevery | |
| 2012-08-27 | fix(ng-list): remove data bound flicker | Misko Hevery | |
| 2012-08-27 | doc(misc) updated getting started to reflect the new homepage | Misko Hevery | |
| 2012-08-27 | doc(guide) simplify the guide home page | Misko Hevery | |
| 2012-08-27 | chore(Rakefile): rewrite version numbers in all index files | Igor Minar | |
| 2012-08-25 | chore(docs): support _escaped_fragment_ hack for crawler | Igor Minar | |
| 2012-08-24 | chore(docs): use GAE and Google CDN for docs | Igor Minar | |
| Short summary: if you use local node server everything should work as before, if you use GAE, everything should work now as well, but we pull assets from CDN. - GAE doesn't support ':' in filenames, so I had to replace it with '_' but only in the filename, all servers were reconfigured to rewrite the urls from : to _ when doing file lookup - We now pull angular assets from google CDN when deployed on GAE (locally or in production). When running on a non GAE server we pull assets from ../ directory as before - Since only certain versions of Angular are available on CDN and we want to be able to autodeploy docs, I had to pin down the Angular files to a "stable" version when running on GAE | |||
| 2012-08-24 | docs(a): expose hidden docs | Igor Minar | |
| It seems that docs for these directive were previously hidden by accident | |||
| 2012-08-24 | docs(ngRoute): fix typo | johnlindquist | |
| aftre -> after | |||
| 2012-08-24 | docs(tutorial): fix typo in step_00 | phil | |
| Just removed an extra comma. No big deal. | |||
| 2012-08-13 | fix($compile): denormalize directive templates | Igor Minar | |
| Since developers are allowed to customize start/end interpolation strings, but third-party directive creators don't know about these customizations, we should standardize on {{ }} in templates of reusable (third-party) directives. During the compilation, these templates are then denormalized to use whatever the custom start/end symbol is, effectively translating the template into the syntax of the runtime environment. This addresses an issue raised at http://goo.gl/e8VPV Existing code should not be affected by this change since project that do use custom interpolation markers are not expected to use {{ }} in existing directive templates. | |||
| 2012-08-13 | refactor($compile): code cleanup | Igor Minar | |
| 2012-08-13 | fix(ngPluralize): fixes ng-pluralize when using non-standard start/end symbols | Brian Ford | |
| Closes #1134 | |||
| 2012-08-13 | style(ngPluralizeSpec): fix indentation | Igor Minar | |
| 2012-08-13 | feat($interpolate): expose start/end symbols in run phase | Igor Minar | |
| previously the startSymbol() and endSymbol() getters were exposed only via provider in the config phase | |||
| 2012-08-13 | docs($interpolateProvider): fixing docs | Igor Minar | |
| 2012-08-13 | fix($interpolate): $interpolateProvider.endSymbol() returns startSymbol | Igor Minar | |
| I also added missing tests. | |||
| 2012-08-13 | docs($interpolate): fix typo in description | Igor Minar | |
| 2012-08-12 | docs($compileProvider): remove duplicate of .directive() | Vojta Jina | |
| 2012-08-12 | docs: fix broken links to $compileProvider.directive() | Vojta Jina | |
| 2012-08-10 | fix(docs): fixed documentation for using linky | Brian Ford | |
| 2012-08-10 | chore(ngDoc): add support for custom @usage metadata | Brian Ford | |
| 2012-08-10 | fix(docs): added note about using JSON3 as a polyfill for IE7 | Brian Ford | |
| 2012-08-10 | fix(docs): added note about needing JSON shim for IE7 and earlier | Brian Ford | |
