aboutsummaryrefslogtreecommitdiff
path: root/doc-tool/src
Commit message (Collapse)AuthorAgeFilesLines
* Generalize PolyType to TypeLambda in dotty-docMartin Odersky2017-04-061-3/+3
|
* Fix dotty-doc to take account of refactoringsMartin Odersky2017-04-061-4/+4
|
* Fix dottydoc parameter printingMartin Odersky2017-04-061-4/+1
|
* Fix exception caused by attempting to serialize NonEntity valuesValthor Halldorsson2017-03-191-21/+28
| | | | - Added explicit checking for NonEntity when serializing DefaultParams
* address feedback on #2074Valthor Halldorsson2017-03-141-55/+69
| | | | | | | | - Added tests to ensure that the results of serialization match their pre-serialization values. - Removed unused parameter `extras` from Entity.asJava() implicit methods. - Removed _root_ imports - Fixed several code style issues
* consolidate entity serialization into single classValthor Halldorsson2017-03-101-166/+83
| | | | | | - refactored JavaEntity to be DRY with respect to repeating the serialization of fields shared by many types of entities - added tests
* Message rendering: colorize positional splice, then splitFelix Mulder2017-03-011-1/+2
|
* Fix top sidebar entities not being renderedFelix Mulder2017-02-241-0/+1
|
* Add type params to type aliasesFelix Mulder2017-02-246-16/+21
|
* Add some basic stats to ddocFelix Mulder2017-02-228-16/+259
|
* Fix hiding of `[+]` (find issue nbr)Felix Mulder2017-02-222-0/+11
|
* fix #1940 - broken .md linksFelix Mulder2017-02-031-4/+4
|
* Add constructors to docsFelix Mulder2017-02-031-0/+2
|
* Make sure `TypeAlias`es get proper docstrings and linked aliasesFelix Mulder2017-02-032-0/+12
|
* Add supertypes and annotations to entity titleFelix Mulder2017-02-031-0/+1
|
* Add position based error reporting to dottydocFelix Mulder2017-02-0110-141/+294
|
* Refactor templates and pages to deal with `SourceFile`Felix Mulder2017-02-015-81/+151
| | | | | This commit is the first step towards having reportable errors in the template files
* Make sure overriden members w/o docstring inherit by defaultFelix Mulder2017-02-011-1/+15
|
* Make naked codeblocks default to ScalaFelix Mulder2017-01-313-1/+21
|
* Refactor Wiki/Markdown commentFelix Mulder2017-01-313-101/+101
|
* Fix `setParent` for `TypeAlias` and only recurse from rootFelix Mulder2017-01-314-28/+36
| | | | | | Previously all packages would be iterated through on `setParent`. With this change, only the root packages will be mutated. This gives about 30% speedup for doc compile on Dotty
* Rename `java.scala` -> `JavaConverters.scala`Felix Mulder2017-01-315-7/+9
|
* Remove JSON, already provided by JacksonFelix Mulder2017-01-312-110/+1
|
* Remove faulty dottydoc APIFelix Mulder2017-01-312-87/+0
|
* Fix javadoc indentation style parsingFelix Mulder2017-01-316-41/+41
|
* Document dottydoc capabilities, add anchored headersFelix Mulder2017-01-312-5/+12
|
* Allow links in static site to reference API entitiesFelix Mulder2017-01-314-10/+35
|
* Fix codeblocks in shortened markdownFelix Mulder2017-01-311-6/+9
|
* Add `{% docstring "scala.collection.Seq" %}` supportFelix Mulder2017-01-314-2/+42
|
* Generalize table of contents for dottydocFelix Mulder2017-01-315-3/+111
|
* Add `first` filter for to allow for first in both array and stringFelix Mulder2017-01-312-0/+17
|
* Fix insertion of package nodes in doc ASTFelix Mulder2017-01-319-82/+187
|
* Link companions in doc ASTFelix Mulder2017-01-317-17/+90
|
* Fix removal of trailing ordered list and toc children instead of membersFelix Mulder2017-01-313-4/+16
|
* Harmonize package objects and packages in Doc ASTFelix Mulder2017-01-317-1/+43
|
* Add ability to remove nodes from tree in AST traversalFelix Mulder2017-01-312-14/+32
|
* Rewire `MemberLookup` to return `Option[Entity]`Felix Mulder2017-01-319-146/+169
| | | | | | | This allows for the rendering engine to supply the base url for the site and thus being able to simplify the entity links. They now simply become `Entity#path + .html` instead of a convoluted rendering in the html renderers.
* Fix singleton types in return values of doctoolFelix Mulder2017-01-311-7/+4
|
* Add `genDocs` command to sbt in order to generate docsFelix Mulder2017-01-317-27/+33
|
* Implement remainder of type membersFelix Mulder2017-01-317-27/+75
|
* Don't collect param accessors in `DocASTPhase`Felix Mulder2017-01-312-3/+6
|
* Allow custom project nameFelix Mulder2017-01-313-6/+7
|
* Fix trailing bullet listsFelix Mulder2017-01-311-0/+12
|
* Hide private & protected members by defaultFelix Mulder2017-01-312-11/+26
|
* Add distinction between `var` and `val`Felix Mulder2017-01-314-8/+7
|
* Improve member lookupFelix Mulder2017-01-313-59/+75
|
* Add new Dotty logoFelix Mulder2017-01-311-1/+1
|
* Add `TypeAlias` to docsFelix Mulder2017-01-314-7/+41
|
* Re-implement template expansion of references as filterFelix Mulder2017-01-315-23/+154
| | | | | | | The original implementation used the template engine to recursively expand references. This was very error-prone and with no typesafety and proper stack traces it was very hard to diagnose. As such, these two expansions (links and references) have been re-implemented as filters.
* Add proper materialization of referencesFelix Mulder2017-01-313-8/+6
|