aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-01-12generate signature-based anchors for overloads; use signature instead of ↵Dmitry Jemerov
name as an anchor for in-page links
2016-01-12fix compilation after mergeDmitry Jemerov
2016-01-12Merge remote-tracking branch 'origin/master'Dmitry Jemerov
# Conflicts: # dokka-gradle-plugin/src/main/kotlin/main.kt
2016-01-12Merge pull request #48 from ingokegel/masterDmitry Jemerov
@Suppress("NOT_DOCUMENTED"), fix for linking to targets with underscores, gradle plugin improvements
2016-01-12allow specifying JDK version to use for JDK linksDmitry Jemerov
2016-01-08link to JDK classes (KT-10452)Dmitry Jemerov
2016-01-08line breaks between parametersDmitry Jemerov
2016-01-08move some more logic into PageBuilder classDmitry Jemerov
2016-01-08support for formatting text into existing StringBuilderDmitry Jemerov
2016-01-08don't generate "Extensions for external classes" pages for classes which are ↵Dmitry Jemerov
part of the documented module but reside in another package
2016-01-08delete a bit of dead codeDmitry Jemerov
2016-01-08include extension function in the list of extensions for a class if the ↵Dmitry Jemerov
class is an upper bound of the receiver type parameter
2016-01-08rewrite propagation of extension functions to subclasses to handle shadowing ↵Dmitry Jemerov
and applicability more correctly
2016-01-06gradle plugin: up-to-date status did not consider include and sample filesingo
2016-01-06gradle plugin: The "includes" and "samples" properties now accept relative ↵ingo
file names and the list-typed properties are now more robust.
2016-01-06Linking to a target with underscores did not workingo
For example, in a link like [MY_VALUE], the link would only try to resolve the text "MY" until the first underscore. Since the markdown parser parses the link label as [TEXT:MY, EMPH:_, TEXT:VALUE], using the first TEXT child node is not sufficient.
2016-01-06Annotating functions or classes `@Suppress("NOT_DOCUMENTED")` will suppress ↵ingo
warnings about missing documentation
2016-01-06mavenLocal() in dependencies can mess up generated gradle libraries in ↵ingo
IntelliJ project
2016-01-05distinguish inherited companion object membersDmitry Jemerov
2016-01-05don't include companion object members inherited from Any in class documentationDmitry Jemerov
2016-01-05render multiple type parameter constraints according to current Kotlin syntaxDmitry Jemerov
2016-01-05always include type parameters in the signature of a typeDmitry Jemerov
2016-01-04separate groups for annotations and exceptions in the members listDmitry Jemerov
2016-01-04StructuredFormatService restructured so that it makes more sense: we're ↵Dmitry Jemerov
either generating a doc for a group of overloads (which have no members) or for a single node (where a list of members can be displayed)
2016-01-04cleanup: DocumentationNode.Kind -> NodeKind, DocumentationReference.Kind -> ↵Dmitry Jemerov
RefKind
2016-01-04kotlin-for-upsource 1.0-beta-5179; update the FQ name of annotation used to ↵Dmitry Jemerov
mark extension function types
2016-01-04Gradle libraries updatedDmitry Jemerov
2016-01-04cleanup: remove redundant 'public' modifiersDmitry Jemerov
2016-01-04Merge pull request #43 from ingokegel/masterDmitry Jemerov
Embedded underscores and stars were removed in the output
2016-01-04Embedded underscores in words like word_with_underscores or single embedded ↵Ingo Kegel
stars like embedded*star were removed in the output.
2016-01-04Merge pull request #40 from ingokegel/masterDmitry Jemerov
Allow multiple dokka tasks for one project, up-to-date check
2016-01-03dokka gradle tasks now know when they are up-to-date.ingo
2016-01-03Allow multiple dokka tasks for one project.ingo
For example, if multiple formats should be generated, adding more tasks like task dokkaJavadoc(type: org.jetbrains.dokka.gradle.DokkaTask) { outputFormat = 'javadoc' outputDirectory = "$buildDir/javadoc" } is now possible.
2015-12-28separate Gradle task to prepare Maven plugin uploadDmitry Jemerov
2015-12-28update for Kotlin beta 4Dmitry Jemerov
2015-12-040.9.3Dmitry Jemerov
2015-12-03overload group formatting fixesDmitry Jemerov
2015-12-03fix "all tests" configurationDmitry Jemerov
2015-12-03fix module name in shared run configurationsDmitry Jemerov
2015-12-03allow each format service to provide its own support filesDmitry Jemerov
2015-12-03configure Ant dependency so that it's visible in IntelliJDmitry Jemerov
2015-12-03remove references to Ant from READMEDmitry Jemerov
2015-12-03restructure Dokka build to use Gradle for everything except for the Maven pluginDmitry Jemerov
2015-12-03Merge pull request #38 from mikehearn/style-cssDmitry Jemerov
Enable browsing of the output HTML with CSS
2015-12-02a ScriptDescriptor is a ClassDescriptor nowDmitry Jemerov
2015-12-02update kotlin-for-upsource.jar to beta 3Dmitry 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-23Use Java 8 Path API to relativize paths instead of rolling a custom version.Mike Hearn
Fixes various IOExceptions thrown during generation.
2015-11-17fix link extensions in kotlin-website formatDmitry Jemerov
2015-11-16advance versionsDmitry Jemerov