aboutsummaryrefslogtreecommitdiff
path: root/src/main.kt
AgeCommit message (Collapse)Author
2015-12-03restructure Dokka build to use Gradle for everything except for the Maven pluginDmitry Jemerov
2015-11-23Copy style.css to the output directory when doing HTML and use relative paths.Mike Hearn
Fixes the code so that the relative path to root is always available, breaking the requirement to use a local web server.
2015-11-04@Inject all the thingsDmitry Jemerov
2015-11-04streamline setup codeDmitry Jemerov
2015-11-04extract JavadocParser to a separate file; extract DeclarationLinkResolver ↵Dmitry Jemerov
out of DocumentationBuilder
2015-11-03build Kotlin documentation for Java files based on descriptorsDmitry Jemerov
2015-10-30initial support for generating javadoc from Kotlin light classesDmitry Jemerov
2015-10-30fix Kotlin warningsDmitry Jemerov
2015-10-29Use Guice injector and ServiceLocator to load implementations on the flySergey Mashkov
2015-10-29fix command line argument parsingDmitry Jemerov
2015-10-21M15 code cleanupDmitry Jemerov
2015-09-11M13 code cleanupDmitry Jemerov
2015-05-29apply code cleanup; fix couple of deprecations manuallyDmitry Jemerov
2015-05-27update to M12 compiler API; store dependency jars in VCS instead of ↵Dmitry Jemerov
depending on Kotlin plugin via path variable
2015-03-23parse included Markdown files to retrieve documentation for modules and packagesDmitry Jemerov
2015-03-19show absolute path of output directoryDmitry Jemerov
2015-03-02report number of warnings after generationDmitry Jemerov
2015-03-02option to exclude deprecated members from generated documentationDmitry Jemerov
2015-03-02report warnings for missing documentation and unresolved linksDmitry Jemerov
2015-02-26don't generate redundant links that lead to the same page with no anchor ↵Dmitry Jemerov
(e.g. receiver type in extension functions)
2015-02-26use correct extension in links for jekyll and kotlin-website docsDmitry Jemerov
2015-02-25resolve references through single map from signature to DocumentationNode ↵Dmitry Jemerov
(enables cross-language references)
2015-02-20links to supertypes in JavaDmitry Jemerov
2015-02-20pending references logic moved from DocumentationBuilder to modelDmitry Jemerov
2015-02-20resolve content links to declaration descriptors immediately during markdown ↵Dmitry Jemerov
to content tree conversion; remove separate phase for resolving links in content
2015-02-16exclude private membersDmitry Jemerov
2015-02-13extract source links to non-Kotlin-specific partDmitry Jemerov
2015-02-13initial implementation of JavaDocumentationBuilderDmitry Jemerov
2015-02-13tests use the same implementation of DocumentationModule building logic as ↵Dmitry Jemerov
production code
2015-01-30cleanup after rebaseDmitry Jemerov
2015-01-30Ant task for DokkaDmitry Jemerov
2015-01-30load sections from KDoc PSI, not through Markdown extensionsDmitry Jemerov
2015-01-22delete TextFormatService as it's too limited to be of any useDmitry Jemerov
2015-01-16refactor outline generation; generate HTML outlineDmitry Jemerov
2015-01-14use .split(); fix TestAPI compilationDmitry Jemerov
2015-01-14generate source links in the documentationDmitry Jemerov
2015-01-12Merge branch 'jet' of https://github.com/udalov/dokka into udalov-jetDmitry Jemerov
Conflicts: src/Kotlin/DocumentationBuilder.kt test/src/TestAPI.kt
2015-01-12Update to the latest Kotlin compiler APIAlexander Udalov
2015-01-09call appendFragments() method instead of duplicating its codeDmitry Jemerov
2014-12-29cleanupDmitry Jemerov
2014-12-29add command line argument for specifying output formatDmitry Jemerov
2014-12-15Migrate to non-PsiBuilder fully-featured markdown parser.Ilya Ryzhenkov
2014-10-15Ignore non-existing include file.Ilya Ryzhenkov
2014-10-14Use module.md to get package descriptors, filter sections with names of ↵Ilya Ryzhenkov
members, fix markdown for kotlin website, propagate content from parent to child with the name of section.
2014-10-13Switch back to KotlinWebSiteFormatterIlya Ryzhenkov
2014-10-13Remove BindingContext and migrate to ResolveSession, discover symbols for ↵Ilya Ryzhenkov
{code ...} directive.
2014-10-13Fixing formats and started work on inline function body.Ilya Ryzhenkov
2014-10-13Fix generation, add memory.Ilya Ryzhenkov
2014-10-12CleanupIlya Ryzhenkov
2014-10-12Convert visitors to top-down builderIlya Ryzhenkov