aboutsummaryrefslogtreecommitdiffstats
path: root/docs
AgeCommit message (Collapse)Author
2012-08-27doc(guide): add conceptsMisko Hevery
2012-08-27fix(ngdoc): failing testMisko Hevery
2012-08-27doc(directive) correct typosColin Frei
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-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-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-12docs: fix broken links to $compileProvider.directive()Vojta Jina
2012-08-10chore(ngDoc): add support for custom @usage metadataBrian Ford
2012-08-10fix(docs): added note about using JSON3 as a polyfill for IE7Brian Ford
2012-08-10fix(docs): added note about needing JSON shim for IE7 and earlierBrian Ford
2012-08-07docs(faq): update faq docsIgor Minar
2012-08-06docs(styles): fix the cog icon alignmentIgor Minar
2012-07-30docs(guide): hide scenario for directive exampleVojta Jina
scenario test for this example would be tricky, we need to teach the runner how to inject mocks first.
2012-07-30docs: fix iconsVojta Jina
Copy fontawesome during build
2012-07-20fix(docs): "in depth" -> "in-depth"brettcannon
2012-07-19fix(docs): Capitalize Angular.brettcannon
2012-07-19fix(docs): Fix a spelling mistake by replacing the noun with "it"brettcannon
2012-07-19fix(docs): "were" -> "where"brettcannon
2012-07-19fix(docs): Capitalize "URL".brettcannon
2012-07-19fix(docs): Fixed defer to timeout change in timer directive exampleChris Dawson
2012-07-19fix(docs): Spelling errorsChris Dawson
2012-07-19fic(docs): Consistently use __bold__ for things that must be done when ↵brettcannon
moving the ng-controller declaration.
2012-07-19fix(docs): Tweak some grammar and add some links relating to DI.brettcannon
2012-07-19fix(docs): Capitalize "APIs"brettcannon
2012-07-19fix(docs): Capitalize "Angular".brettcannon
2012-07-19fix(docs): Capitalize Angular.brettcannon
2012-07-19fix(docs): Add a missing "the".brettcannon
2012-07-19fix(docs): ngRepeater isn't a thing, ngRepeat isbrettcannon
2012-07-19fix(docs): Remove a redundant "in".brettcannon
2012-07-18fix(docs): Grammatical fixbrettcannon
2012-07-18fix(docs): Fixed some awkward wordingbrettcannon
2012-07-18fix(docs): Tweak formatting and wording of a listbrettcannon
2012-07-18fix(docs): Don't want the present participle of "is"brettcannon
2012-07-18fix(docs): Adjectve accidentally made into an adverbbrettcannon
2012-07-18fix(docs): Minor grammatical fixbrettcannon
2012-07-16fix(docs): Fixed typo: changed `ngRepeate` to `ngRepeat`.Rishabh Rao
2012-07-16fix(docs): Fix spelling, punctuation and grammatical errors on dev guide ↵Jamie Krug
bootstrap page.
2012-07-16fix(docs): Fix spelling, punctuation and grammatical errors on dev guide ↵Jamie Krug
compiler page.
2012-07-16fix(docs): Fix spelling, punctuation and grammatical errors on dev guide ↵Jamie Krug
overview page.
2012-07-16fix(docs): correct typoKevin Old
2012-07-02fix(docs): correctly generate sitemapIgor Minar
2012-07-02fix(docs): fix broken ng-docs specsIgor Minar
2012-06-15fix(doc) firefox icon renderingMisko Hevery
2012-06-12fix($defer): remove deprecated $defer serviceIgor Minar
2012-06-12fix(docs): migrate from $defer to $timeoutIgor Minar
2012-06-12docs(*): simplify doc urlsIgor Minar
we now have two types of namespaces: - true namespace: angular.* - used for all global apis - virtual namespace: ng.*, ngMock.*, ... - used for all DI modules the virual namespaces have services under the second namespace level (e.g. ng.) and filters and directives prefixed with filter: and directive: respectively (e.g. ng.filter:orderBy, ng.directive:ngRepeat) this simplifies urls and makes them a lot shorter while still avoiding name collisions
2012-06-10docs(*): fix various outdated docs and examplesIgor Minar
Closes #1030