aboutsummaryrefslogtreecommitdiffstats
path: root/docs/src/ngdoc.js
AgeCommit message (Collapse)Author
2011-10-11feat(forms): new and improved formsMisko Hevery
2011-09-26fix(e2e): add index-nocache.html to run e2e tests without cacheIgor Minar
using appcache while running e2e tests was causing the following problems: - Safari would occasionally reload the app (as a result of the appcache refresh) during the angular.validator.asychronous test, which would result in test failure and false positivy. - Firefox6 would run the tests very slowly, disabling the cache resolved the latency issues - Sometimes tests would run with stale code pulled from cache, which would result in flaky tests.
2011-09-26feat(docs): use html5 history api for all routing in the docs appVojta Jina
- Configure our docs app to use new $location with html5 history api! - Update simple node web server to serve index.html for all links (rewritting). - Update .htaccess file to serve index.html for all links (rewritting). - At runtime determine the base href path and attach it to the DOM. We needed the absolute URL to get all browsers to work well. - Because of the above, we also need to dynamically determine all needed js/css resources and add them to the DOM. This was needed because FF6 would eagerly fetch resources with wrong URL since the base element is added to the dom at runtime. - All content html files were moved to the partials directory, because with the new html5 urls it was impossible to tell if request for http://domain/api/angular.filter.html was an html5 url for the html filter doc page, or an xhr/appcache request for the content html file for the html filter. f
2011-08-31style(e2e tests): shorten jquery/jqlite describeIgor Minar
2011-08-31style(docs): improve the formatting of events in docsMisko Hevery
2011-08-31feat(docs): add support for eventsMisko Hevery
2011-08-19fix(sample): Fix for jsFiddle integrationDi Peng
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-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-02doc:dependencies: add /api/ prefix to dependency linksIgor Minar
2011-06-08Added support for properties in documentationMisko Hevery
2011-06-07fixing the dev guide orderingIgor Minar
2011-06-06moving the angular.mock docs down in the api listIgor Minar
2011-06-06yet another docs batchIgor Minar
2011-06-06fixing broken docs linksIgor Minar
2011-06-06fix wrapping api links into code elementIgor Minar
2011-06-06fix hashpath prefix for docs/sitemap/etcIgor Minar
2011-06-06Add doc:tutorial-instructions widgetVojta Jina
2011-06-06Allow "section/" links pointing to "section/index"Vojta Jina
2011-06-06Allow relative links in docsVojta Jina
So you can use links without section when they link within the section.
2011-06-06Change warning to log place first and then linkVojta Jina
2011-06-06Bit of refactoringVojta Jina
2011-06-06Couple of todosVojta Jina
2011-06-06Log warning for every non existing link instead of throwing exceptionVojta Jina
Guess we don't want to stop doc generating process because of non-existing link, so just log warning and continue...
2011-06-06Check whether links do exist and throw exceptionVojta Jina
2011-06-06Move documentation under individual headingsMisko Hevery
2011-06-06fix syntax highlighting on the javascriptMisko Hevery
2011-03-11@require in ngdoc now takes reason for dependencyMisko Hevery
2011-02-22fix documentation for ieMisko Hevery
2011-02-18corrected new lines in @linkMisko Hevery
2011-02-07markdown pre-processor should strip all the extra indentationIgor Minar
- split trim into trim and indent - merged my indentation code with trim - cleaned up some small issues
2011-02-07docs should print usage for services that are functionsIgor Minar
2011-02-07@property should require type and description should be markdownifiedIgor Minar
2011-02-03Added remainder of the cookbookMisko Hevery
2011-02-03addded cookbookMisko Hevery
2011-02-01changed the documentation @example to use <doc:example>Misko Hevery
2011-02-01Developer guide documentationMisko Hevery
2011-01-26Added part of guide documentation and supporting changes to doc generatorMisko Hevery
2011-01-26fix deprication typo in the doc generatorIgor Minar
2011-01-24fixed example rendering, add tests for it.Misko Hevery
2011-01-24add @this and @exampleDescription tagsMisko Hevery
(also removed markdownNoP, now done through CSS)
2011-01-19ngdoc should escape content of pre in markdownIgor Minar
2011-01-18@returns type in docs should be wrapped in curliesIgor Minar
2011-01-14fixed select with ng:formatMisko Hevery
select (one/multiple) could not chose from a list of objects, since DOM requires string ids. Solved by adding index formatter, which exposed incorrect handling of formatters in select widgets.
2011-01-10complete rewrite of documentation generationMisko Hevery
- romeved mustache.js - unified templates - improved testability of the code