summaryrefslogtreecommitdiff
path: root/test/scaladoc
Commit message (Collapse)AuthorAgeFilesLines
* Disabling some scaladoc tests.Paul Phillips2012-01-111-17/+17
| | | | | | | | | | | These tests are WAY too difficult to work with. I don't have a clue what these failures are telling me, except they are telling me to disable them. Actual output: [partest] Check failed: [partest] HTML: SI_5054_q1classSI_5054_q1extendsAnyRefLinearSupertypesAnyRef,AnyOrderingAlphabeticByinheritanceInheritedHideAllShowallSI_5054_q1AnyRefAnyVisibilityPublicAllInstanceConstructorsnewSI_5054_q1()ValueMembersfinaldef!=(arg0:AnyRef):BooleanDefinitionClassesAnyReffinaldef!=(arg0:Any):BooleanDefinitionClassesAnyfinaldef##():IntDefinitionClassesAnyRefAnyfinaldef==(arg0:AnyRef):BooleanDefinitionClassesAnyReffinaldef==(arg0:Any):BooleanDefinitionClassesAnyfinaldefasInstanceOf[T0]:T0DefinitionClassesAnydefclone():AnyRefAttributesprotected[lang]DefinitionClassesAnyRefAnnotations@throws()finaldefeq(arg0:AnyRef):BooleanDefinitionClassesAnyRefdefequals(arg0:Any):BooleanDefinitionClassesAnyRefAnydeffinalize():UnitAttributesprotected[lang]DefinitionClassesAnyRefAnnotations@throws()finaldefgetClass():Class[_]DefinitionClassesAnyRefAnydefhashCode():IntDefinitionClassesAnyRefAnyfinaldefisInstanceOf[T0]:BooleanDefinitionClassesAnyfinaldefne(arg0:AnyRef):BooleanDefinitionClassesAnyReffinaldefnotify():UnitDefinitionClassesAnyReffinaldefnotifyAll():UnitDefinitionClassesAnyReffinaldefsynchronized[T0](arg0:⇒T0):T0DefinitionClassesAnyRefdeftest():Int[usecase]deftoString():StringDefinitionClassesAnyRefAnyfinaldefwait():UnitDefinitionClassesAnyRefAnnotations@throws()finaldefwait(arg0:Long,arg1:Int):UnitDefinitionClassesAnyRefAnnotations@throws()finaldefwait(arg0:Long):UnitDefinitionClassesAnyRefAnnotations@throws()InheritedfromAnyRefInheritedfromAny
* Fixed "Definition Classes" in bug #5287Vlad Ureche2011-12-165-106/+104
|
* Fixed #5054, #5287Vlad Ureche2011-12-089-14/+173
| | | | | | | | | | | | | | | | | | | | | | | | | | The documents with use cases should be restructured like: /** * The full definition, either used with an implicit value or with an explicit one. * * Some more explanation on implicits... * * @param lost a lost parameter * @return some integer * * @usecase def test(): Int * * This takes the implicit value in scope. * * Example: `test()` * * @usecase def test(explicit: Int): Int * * This takes the explicit value passed. * * Example: `test(3)` */ def test(implicit lost: Int): Int
* Fixes the annoying spaces between name, type params and params in ScalaDoc.Simon Ochsenreither2011-12-061-7/+7
|
* Changed the way use cases are handled in scaladoc.Vlad Ureche2011-11-223-0/+34
| | | | | | | | | | If use cases are present, the original member disappears from the list. References SI-5054, but needs more work on the html part. If use cases are present along with links, scaladoc doesn't crash anymore. Closes SI-4898. Review by kzys.
* Make partest work with spaces in the path (from...Stefan Zeiger2011-11-223-8/+8
| | | | | | | | | | | | | | Make partest work with spaces in the path (from batch script and ant task). - The 'partest' ant task gets a new 'compilerargs' element for scalac - options (like in scalacfork and javac). Fixed argument list handling - in partest task. Further improvements to argument list handling for - all ant tasks. Fixed argument list handling in DirectTest (used by - partest shell scripts) Fixed path handling in several test cases. Closes SI-622. Review by phaller.
* Begone t1737...Hubert Plociniczak2011-11-022-5/+5
|
* Reverting r25787 (caused test.scaladoc failures...Antonio Cunei2011-10-171-19/+2
| | | | | Reverting r25787 (caused test.scaladoc failures on certain systems)
* Add "Google tokens for Scala" for symbolic name...Kato Kazuyoshi2011-10-062-2/+15
| | | | | | | | | | | | | Add "Google tokens for Scala" for symbolic names on Scaladoc. Review by ureche. We can't use Scala's symbolic names on Google. Instead of waiting Google, we'll introduce mapping from the names to equivalent searchable representations. This idea proposed by Grzegorz Kossakowski. https://groups.google.com/group/scala-internals/browse_thread/thread/413 dbc691542f76f
* Add a small "template engine" and separete HTML...Kato Kazuyoshi2011-10-041-2/+19
| | | | | | Add a small "template engine" and separete HTML from Scaladoc's source code. Review by ureche.
* Add some basic tests for Scaladoc.Kato Kazuyoshi2011-10-042-0/+51
|
* Fixes SI-4507.Kato Kazuyoshi2011-08-112-0/+27
|
* Some "synthetic" code don't have RangePosition.Kato Kazuyoshi2011-08-062-0/+17
|
* 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.