aboutsummaryrefslogtreecommitdiffstats
path: root/docs/spec/ngdocSpec.js
AgeCommit message (Collapse)Author
2013-08-07chore(ngdoc): wrap all pages inside of a container tag for easy stylingMatias Niemelä
2013-02-11chore(docs): improve docs parser typeIgor Minar
previously we barfed on function type definition with optional arguments like {function(number=)} this fixes it I also added a bunch of code that helps to debug incorrectly parsed docs.
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-05-04chore(docs): re-skin main documentationMisko Hevery
2012-03-16fix(ngDocSpec): fix broken testsIgor Minar
2012-03-13docs(links): corrected borken linksMisko Hevery
2012-02-22docs(scope): show which directives create scopesMisko Hevery
2012-02-21fix(ngdoc): extract keywords from properties/methods.Misko Hevery
2012-01-25docs(compiler): update the compiler docsMisko Hevery
2011-11-14style(docs): make jslint happy - fix some warningsVojta Jina
2011-11-14fix(doc) cleanup all api doc link warningsMisko Hevery
2011-11-14doc($filter): added $filter documentationMisko Hevery
2011-11-14doc(AUTO, NG_MOCK): Documenting the AUTO and NG_MOCK moduleMisko Hevery
2011-11-13feat(docs): allow custom attributes on <doc:source>Vojta Jina
Allow any attributes, not only jsfiddle...
2011-10-18fix(gen-docs): require files without touching PATHVojta Jina
So that it works on latest revision of node... New version of Node (v0.5.x) does not support require.paths.push().
2011-10-11chore(formating): clean code to be function() {Misko Hevery
2011-10-11feat(forms): new and improved formsMisko Hevery
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-31feat(docs): add support for eventsMisko Hevery
2011-08-19fix(sample): Fix for jsFiddle integrationDi Peng
2011-07-16test(ngdoc): add test for @ngdoc functionIgor Minar
2011-07-16test(ngdoc): fix a typo in the @deprecated specIgor Minar
2011-07-16test(ngdoc): fix failing testsIgor Minar
2011-06-08Added support for properties in documentationMisko Hevery
2011-06-07fix ngdocSpec testsIgor 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-06Remove trailing wsVojta Jina
2011-06-06Bit of refactoringVojta Jina
2011-06-06Fixed couple of failing tests in docsVojta Jina
These tests were failing because of rewriting urls into new 'section' format, i.e. angular.scope -> api.angular.scope
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-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-07@property should require type and description should be markdownifiedIgor Minar
2011-02-03Added remainder of the 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-24add @this and @exampleDescription tagsMisko Hevery
(also removed markdownNoP, now done through CSS)
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-18verify that issue# 162 was fixed with doc rewriteMisko Hevery
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