summaryrefslogtreecommitdiff
path: root/test/scaladoc/scalacheck/IndexTest.scala
Commit message (Collapse)AuthorAgeFilesLines
* Remove unused classes from ScaladocFelix Mulder2016-03-141-89/+0
| | | | | | | | | | | | Several elements of the old Scaladoc are not in use anymore. To help with any reverting, the removal of these is done in a single commit (this one). The removal includes: - Old `Index`, the old top "index.html" - The letter index (with "_" and "deprecated") - The old `Template` which is superceded by `Entity`
* Scaladoc: Add new search, featuring entity and member searchFelix Mulder2016-02-171-9/+3
| | | | | | | | | | | | | | | | | | | | | | | This commit adds a revamped search function for the scaladoc tool. It also contains a number of small fixes for HTML-layout and JavaScript issues. The search is implemented by enhancing the scheduler and using JavaScript promises. List of changes/additions: * Revamped search functionality - Search members as well as entities - Preserve keyboard navigation - Scroll to selected entity if outside of viewport - Non-blocking, cancelable * Display of library name (top left) * Refactored scheduler * Cleanup of HTML layout - Remove left pane - Better mobile layout, no need for dynamic offsets - Remove unused element classes - Remove iframe structure - Better layout for kinds
* SI-4476 add an index of deprecated members to scaladocAntoine Gourlay2015-04-221-1/+7
| | | | | | | | | | | | | | | | The deprecated list is only emitted if there actually are deprecated members; same for the link in the left sidebar. We just build on the existing index support, with an additional method to avoid having to go through the whole index if we won't generate the page anyway. The deprecated list page itself is completely identical to the normal index pages, except we don't strike through any entry (there are *all* deprecated already). There is just about enough space in the left sidebar for the deprecated link, see [1], and [2] for when there are no deprecated members. [1]: http://static.gourlaysama.net/img/scaladoc-deprecated.png [2]: http://static.gourlaysama.net/img/scaladoc-deprecated-empty.png
* SI-7349 Partest supports test-interfaceSom Snytt2013-04-301-6/+6
| | | | | | | | Partest uses test-interface API to invoke ScalaCheck. This obviates ad hoc output checking for result status. The context class loader is set to a loader that the scaladoc scalacheck tests can use.
* Moved scaladoc sources into separate directory.Paul Phillips2013-03-091-3/+3
| | | | | | | | This change is not externally visible. It moves the scaladoc sources into src/scaladoc and adds an ant target for building them. The compilation products are still packaged into scala-compiler.jar as before, but with a small change to build.xml a separate jar can be created instead.
* SI-5558 Package object members indexingVlad Ureche2012-07-161-3/+10
| | | | This bug was fixed by the model upgrade in c11427c1. Test case confirmation.
* Fixes SI-5373Vlad Ureche2012-03-271-0/+82
And adds basic support for scaladoc model tests (class partest.ScaladocModelTest)