summaryrefslogtreecommitdiff
path: root/test/scaladoc
Commit message (Collapse)AuthorAgeFilesLines
* Scaladoc shouldn't drop type arguments to alias...Kato Kazuyoshi2011-07-282-0/+13
| | | | | | Scaladoc shouldn't drop type arguments to aliased tuple. Related to SI-4676. Review by pedrofurla.
* Scaladoc should decode symbolic type alias name.Kato Kazuyoshi2011-07-252-0/+17
|
* Should not set the parameter name's width on CSS.Kato Kazuyoshi2011-07-222-0/+22
|
* scaladoc fixes and improvementsmichelou2011-07-151-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changes to scaladoc include: - fixed transformation of Code(text) into HTML tag <code> - added tool tips for deprecated entities (classes, methods) using the 'title' attribute - added syntax highlighting of Scala source code in generated <pre> blocks (CSS colors are defined in lib/template.css) Here are several examples of highlighted Scala code: scala.App scala.Application scala.Enumeration scala.Function1 scala.Function2 scala.native scala.Option scala.Proxy scala.specialized scala.throws scala.unchecked scala.actors.Actor scala.annotation.deprecatedName scala.annotation.elidable scala.annotation.switch scala.collection.DefaultMap scala.collection.JavaConversions scala.collection.JavaConverters scala.collection.LinearSeqLike scala.collection.MapLike scala.collection.SetLike scala.collection.TraversableLike scala.collection.immutable.NumericRange scala.collection.immutable.Range scala.collection.immutable.Stream scala.collection.mutable.BufferLike scala.concurrent.pilib scala.io.Position scala.reflect.BeanProperty scala.reflect.Manifest scala.testing.Benchmark scala.util.DynamicVariable scala.util.control.Breaks scala.util.control.ControlThrowable scala.util.control.Exception scala.util.control.TailCalls scala.util.logging.Logged scala.util.parsing.combinator.testing.Tester scala.util.parsing.json.JSON scala.util.regexp.WordExp scala.xml.factory.LoggedNodeFactory scala.xml.parsing.ConstructingParser
* Add a test for #4421 and clean up a little.Kato Kazuyoshi2011-07-062-0/+17
|
* Separete index.js to parallelize downloads.Kato Kazuyoshi2011-06-202-20/+52
|
* The '#' sign may easily to lead to problems, So...Kato Kazuyoshi2011-06-122-0/+10
| | | | | | The '#' sign may easily to lead to problems, So we use '_' instead of '#'. Closes #4641.
* [scaladoc] kindFilter should switch show/hide a...Kato Kazuyoshi2011-04-203-0/+53
| | | | | | [scaladoc] kindFilter should switch show/hide anchor of package. Closes #4463. Review by malayeri.
* [scaladoc] Strike-through for deprecated symbol...Kato Kazuyoshi2011-04-152-0/+41
| | | | | | [scaladoc] Strike-through for deprecated symbols on the reference index. Closes #4471. Review by dubochet.
* [scaladoc] Closes #4452 again. Review by malayeri.Kato Kazuyoshi2011-04-122-5/+24
|
* [scaladoc] Forget to add test case at r24732.Kato Kazuyoshi2011-04-111-0/+11
|
* [scaladoc] Closes #4452. Review by malayeri.Kato Kazuyoshi2011-04-111-0/+8
|
* [scaladoc] Fix failing test. No review.Donna Malayeri2011-04-051-4/+4
|
* Every tag element (even @define and @usecase) e...Kato Kazuyoshi2011-04-042-0/+23
| | | | | | Every tag element (even @define and @usecase) end before the next recognised tag. Closes #4409. Review by extempore.
* Put "\n" between superclass's comment and subcl...Kato Kazuyoshi2011-04-012-0/+26
| | | | | | Put "\n" between superclass's comment and subclass's. Closes #4289. Review by pedrofurla.
* Fix for parsing bug in scaladoc closes #4420, n...Paul Phillips2011-04-012-0/+26
| | | | | Fix for parsing bug in scaladoc closes #4420, no review.
* Printing refinement types in scaladoc.Paul Phillips2011-03-312-0/+39
| | | | | | one-member refinements, for bigger ones printing the number of members. Should be improved. Closes #484, no review.
* [scaladoc] Don't link to syntetic companion.Kato Kazuyoshi2011-03-312-0/+38
|
* [scaladoc] Scaladoc should expand macros recurs...Kato Kazuyoshi2011-03-302-0/+51
| | | | | | [scaladoc] Scaladoc should expand macros recursively. Closes #3484. Review by dubochet.
* [scaladoc] Don't create broken link to private ...Kato Kazuyoshi2011-03-292-0/+29
| | | | | | [scaladoc] Don't create broken link to private companion object. Closes #4374. Review by pedrofurla.
* [scaladoc] Cleanup code. No review.Kato Kazuyoshi2011-03-293-7/+12
|
* [scaladoc] Add a test of colon and parentheses ...Kato Kazuyoshi2011-03-292-0/+17
| | | | | [scaladoc] Add a test of colon and parentheses (#4372). No review.
* [scaladoc] Cleanup tests. No review.Kato Kazuyoshi2011-03-261-71/+35
|
* [scaladoc] Add a test for #4180. No review.Kato Kazuyoshi2011-03-252-0/+9
|
* [scaladoc] Stop wiki syntax parsing inside HTML.Kato Kazuyoshi2011-03-253-8/+63
|
* [scaladoc] Closes #4366. Review by pedrofurla.Kato Kazuyoshi2011-03-223-0/+64
|
* [scaladoc] Add a test for #4306.Kato Kazuyoshi2011-03-212-10/+19
|
* [scaladoc] Add a test for #4361.Kato Kazuyoshi2011-03-211-0/+22
|
* [scaladoc] Add HtmlFactoryTest and reorganize d...Kato Kazuyoshi2011-03-214-0/+108
| | | | | | [scaladoc] Add HtmlFactoryTest and reorganize directory structure. Reviewed by pedrofurla.
* [scaladoc] Likely fix for broken build.Gilles Dubochet2011-02-041-2/+9
|
* [scaladoc] Fixed failing test.Gilles Dubochet2011-01-241-0/+102
|
* Disabled failing test, no review.Paul Phillips2011-01-231-107/+0
|
* Added more complete output if tests fail.Aleksandar Pokopec2010-10-082-0/+2
| | | | | | | | | Log file is printed now right away if: - test fails due to an exception thrown in the a test - test fails due to a ScalaCheck test fail - test fails due to compiler errors in ScalaCheck tests Review by extempore.
* Fixed a failing test. No reviewAleksandar Pokopec2010-10-061-9/+19
|
* Added back a failing test. No review.Aleksandar Pokopec2010-10-051-0/+96
|
* Disabled a failing scaladoc test. No review.Aleksandar Pokopec2010-10-051-96/+0
|
* [scaladoc] JavaScript template search uses a st...Gilles Dubochet2010-09-301-0/+96
| | | | | | | [scaladoc] JavaScript template search uses a statically built index to considerably increase performance. Contributed by Kato Kazuyoshi. Review by dubochet.
* [scaladoc] Adds some simple tests for Scaladoc ...Gilles Dubochet2010-09-211-0/+68
[scaladoc] Adds some simple tests for Scaladoc (using Scalacheck). Contributed by Kato Kazuyosh. No review.