aboutsummaryrefslogtreecommitdiffstats
path: root/docs/src
AgeCommit message (Collapse)Author
2012-09-06fix(*): name all anonymous watch functions in AngularShyam Seshadri
This will allow us to see function names in Batarang and debugger. Closes #1119
2012-09-04fix(docs): broken url to angular-bootstrapMisko Hevery
2012-09-04chore(docs): don't rewrite colons in doc filenamesIgor Minar
2012-08-30docs(tutorial): correct typos and clarify a few sectionsFernando Correia
2012-08-30chore(docs): ask GAE to serve docs-keywords.jsIgor Minar
2012-08-30chore(docs): correctly link docs imagesIgor 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-27doc(guide): add conceptsMisko Hevery
2012-08-27fix(ngdoc): failing testMisko 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-16fix(docs): update docs top menu linksIgor Minar
2012-08-10chore(ngDoc): add support for custom @usage metadataBrian Ford
2012-08-06docs(styles): fix the cog icon alignmentIgor Minar
2012-07-30docs: fix iconsVojta Jina
Copy fontawesome during build
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(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-02doc(app): switch to use $last on ng-repeatMisko Hevery
2012-06-02doc(app): remove un-needed fileMisko Hevery
2012-06-02doc(ngdoc): clean up doc generation and add missing documentation linksMisko Hevery
2012-06-02docs(ngdocs): cleaned up directive titlesMisko Hevery
2012-06-02docs(overview): updated overview guideMisko Hevery
2012-06-02doc(ngdoc): proper label for source and demo sectionMisko Hevery
2012-06-02fix(docs): include short words in keywordsMisko Hevery
Short words like $q are now searchable. Closes #967
2012-05-24fix(docs): accept return in addition to returnsMisko Hevery
documentation used @return but parser expected @returns, which made the generated documentation incomplete.
2012-05-24chore(docs): remove generated fileMisko Hevery
2012-05-24chore(docs): remove unused doc_widget.js fileMisko Hevery
2012-05-24chore(docs): correct spacingsMisko Hevery
2012-05-07bug(ie8 docs): docs now work on ie8Misko Hevery
2012-05-04chore(docs): re-skin main documentationMisko Hevery
2012-04-12style(docs-scenario.html): rename <angular/> to AngularJS in the titleIgor Minar
2012-04-11chore(ngSanitize): extract $sanitize, ngBindHtml, linkyFilter into a moduleVojta Jina
Create build for other modules as well (ngResource, ngCookies): - wrap into a function - add license - add version Breaks `$sanitize` service, `ngBindHtml` directive and `linky` filter were moved to the `ngSanitize` module. Apps that depend on any of these will need to load `angular-sanitize.js` and include `ngSanitize` in their dependency list: `var myApp = angular.module('myApp', ['ngSanitize']);`
2012-04-09fix(docs): change all directive references to use the normalized namesIgor Minar
2012-04-05chore(docs): add nonminified jquery debug version of docsIgor Minar
2012-04-04docs(tutorial): update tutorial intro + steps 0-3Igor Minar
also contains all kinds of fixes that I had to make in the docs app to get the tutorial to render correctly
2012-04-04fix(docs): remove ngModelInstant from all examplesIgor Minar
just fixing leftover code after the removal of ngModelInstant
2012-03-29fix(docs): update the example widget regexp for detecting angular.js urlIgor Minar
so that we don't show angular-cookies instead of angular.js
2012-03-29fix(docs): properly rewrite urls in doc examples at docs-nextIgor Minar
2012-03-28chore(ngCookies): moved to moduleMisko Hevery
2012-03-28chore(resource): moved to moduleMisko Hevery
2012-03-23doc(guide): order topic list in guide sidebar in accordance with overviewManuel Woelker
Closes #405
2012-03-21chore(docs): switch disqus id from angularjs to angularjs-nextIgor Minar
2012-03-13docs(links): corrected borken linksMisko Hevery
2012-03-13fix(docs): properly close the optional ] in directive signaturesIgor Minar
2012-03-13doc(search): include method names in corpusMisko Hevery
2012-03-12docs(guide.forms): Update forms guideVojta Jina
2012-03-11doc(fixes): to better support ng-directive notationMisko Hevery