aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2012-08-31docs(changelog): release notes for 1.0.2 and 1.1.0 releasesIgor Minar
2012-08-30fix(docs): Making sure gen_docs.sh looks for a globally installed copy of ↵Jonathan Zacsh
jasmine-node as well as local.
2012-08-30docs(tutorial): correct typos and clarify a few sectionsFernando Correia
2012-08-30fix(docs): indicate support for passing a string as the `controller` ↵Brice Burgess
property on $routeProvider's route object
2012-08-30doc(misc) Mention how attribute names map to directive names.brettcannon
2012-08-30test(locationSpec): fix broken tests after vojta's commitIgor Minar
2012-08-30doc(module) changed simpleApp to myApp in the Module page guide for consistencySahat Yalkabov
2012-08-30doc(devguide) - Fix typos and small grammatical errors in the developer guide.Steve Nicolai
2012-08-30chore(docs): ask GAE to serve docs-keywords.jsIgor Minar
2012-08-30Loading from Google CDNUri 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-30docs(typos): fix typos in dev guideTyson Benson
2012-08-30fix(scenario): Adding meta tag to avoid cache issuesGerman Galvis
2012-08-30docs(api): fix typo on home pagephil
Refference -> Reference
2012-08-30Update docs/content/guide/overview.ngdoccsugden
Corrects video information
2012-08-30fix(docs): Fix typos and improve grammar.Jamie Krug
2012-08-30fix(docs): Fix bad links.Jamie Krug
2012-08-30docs(module) fix typoColin Frei
2012-08-30fix(ng-repeat) to work with primitive typesZhenbo Zhang
2012-08-30fix(mocks): free up memory after every specVojta Jina
2012-08-30test(bootstrap): test exception siling during bootstrapIgor Minar
Closes #1018
2012-08-30test(ngApp): add missing test for [ng-app] bootstrapIgor Minar
2012-08-30feat($interpolate): provide contextual error messagesBrian Ford
if an exception occurs during interpolation of a string (e.g. name() in "Hello, {{name()}}!" throws an exception) we now print an error message with the expression that was being evaluated when the exception was thrown.
2012-08-30fix(jqLite): better support for xhtmlIgor 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-30chore(docs): correctly link docs imagesIgor Minar
2012-08-29chore(Rakefile): fix the default taskIgor Minar
2012-08-29chore(Rakefile): remove bogus symlink from buildIgor Minar
2012-08-28chore(docs): use symlinks to build docsIgor 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-28chore(Rakefile): various build script changesIgor 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-27doc($log): correct non-working exampleMisko Hevery
2012-08-27doc(guide): add conceptsMisko Hevery
2012-08-27fix(ngdoc): failing testMisko Hevery
2012-08-27doc(directive) correct typosColin Frei
2012-08-27fix(docs) typoMisko Hevery
2012-08-27fix(ng-list): remove data bound flickerMisko Hevery
2012-08-27doc(misc) updated getting started to reflect the new homepageMisko Hevery
2012-08-27doc(guide) simplify the guide home pageMisko Hevery
2012-08-27chore(Rakefile): rewrite version numbers in all index filesIgor Minar
2012-08-25chore(docs): support _escaped_fragment_ hack for crawlerIgor Minar
2012-08-24chore(docs): use GAE and Google CDN for docsIgor 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-24docs(a): expose hidden docsIgor Minar
It seems that docs for these directive were previously hidden by accident
2012-08-23docs(ngRoute): fix typojohnlindquist
aftre -> after
2012-08-23docs(tutorial): fix typo in step_00phil
Just removed an extra comma. No big deal.
2012-08-16fix(docs): update docs top menu linksIgor Minar
2012-08-13fix($compile): denormalize directive templatesIgor 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-13refactor($compile): code cleanupIgor Minar
2012-08-13fix(ngPluralize): fixes ng-pluralize when using non-standard start/end symbolsBrian Ford
Closes #1134
2012-08-13style(ngPluralizeSpec): fix indentationIgor Minar
2012-08-13feat($interpolate): expose start/end symbols in run phaseIgor Minar
previously the startSymbol() and endSymbol() getters were exposed only via provider in the config phase
2012-08-13docs($interpolateProvider): fixing docsIgor Minar
2012-08-13fix($interpolate): $interpolateProvider.endSymbol() returns startSymbolIgor Minar
I also added missing tests.