summaryrefslogtreecommitdiff
path: root/src/manual
Commit message (Collapse)AuthorAgeFilesLines
* Update man pages for scala and scalac.Antoine Gourlay2014-01-082-55/+136
| | | | | They had fallen quite a bit behind the output of "scalac -X" and "scalac -Xshow-phases".
* Fix a typo in the `scala` man pageTrent Ogren2013-11-181-1/+1
|
* Removing unused code.Paul Phillips2013-10-022-1/+3
| | | | | | | Most of this was revealed via -Xlint with a flag which assumes closed world. I can't see how to check the assumes-closed-world code in without it being an ordeal. I'll leave it in a branch in case anyone wants to finish the long slog to the merge.
* Merge branch '2.10.x'Adriaan Moors2013-01-161-2/+2
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/compiler/scala/tools/nsc/doc/Settings.scala src/compiler/scala/tools/nsc/interpreter/CompletionOutput.scala src/compiler/scala/tools/nsc/matching/Patterns.scala src/compiler/scala/tools/nsc/transform/UnCurry.scala src/compiler/scala/tools/nsc/typechecker/Infer.scala src/compiler/scala/tools/nsc/typechecker/PatternMatching.scala src/compiler/scala/tools/nsc/typechecker/Typers.scala src/reflect/scala/reflect/internal/settings/MutableSettings.scala src/reflect/scala/reflect/runtime/Settings.scala src/swing/scala/swing/SwingActor.scala src/swing/scala/swing/SwingWorker.scala test/files/run/t6955.scala
| * SI-6803: do not use java.net.URI, even more so incorrectly.Eugene Vigdorchik2013-01-061-2/+2
| |
* | Updated copyright to 2013Carlo Dapor2013-01-021-2/+2
| |
* | Expunged the .net backend.Paul Phillips2012-12-051-24/+0
|/ | | | | | | | It lives on in a branch born from this commit's parent. It's abrupt; no attempt is made to offer a "smooth transition" for the serious msil userbase, population zero. If anyone feels very strongly that such a transition is necessary, I will be happy to talk you into feeling differently.
* Merge branch '2.10.0-wip' into merge-2.10.0Josh Suereth2012-11-0510-11/+11
|\
| * Brings copyrights in Scaladoc footer and manpage up-to-date, from 2011/12 to ↵Heather Miller2012-11-021-1/+1
| | | | | | | | 2013
| * Brings all copyrights (in comments) up-to-date, from 2011/12 to 2013Heather Miller2012-11-0210-10/+10
| |
* | Scaladoc knows the package structure of the libraries,Eugene Vigdorchik2012-10-111-1/+4
|/ | | | so don't include them in external documentation setting.
* update and normalize copyright noticeAdriaan Moors2012-08-0711-11/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These are the regexp replacements performed: Sxcala -> Scala Copyright (\d*) LAMP/EPFL -> Copyright $1-2012 LAMP/EPFL Copyright (\d*)-(\d*)(,?) LAMP/EPFL -> Copyright $1-2012 LAMP/EPFL Copyright (\d*)-(\d*) Scala Solutions and LAMP/EPFL -> Copyright $1-2012 Scala Solutions and LAMP/EPFL \(C\) (\d*)-(\d*) LAMP/EPFL -> (C) $1-2012 LAMP/EPFL Copyright \(c\) (\d*)-(\d*)(.*?)EPFL -> Copyright (c) $1-2012$3EPFL The last one was needed for two HTML-ified copyright notices. Here's the summarized diff: Created using ``` git diff -w | grep ^- | sort | uniq | mate git diff -w | grep ^+ | sort | uniq | mate ``` ``` - <div id="footer">Scala programming documentation. Copyright (c) 2003-2011 <a href="http://www.epfl.ch" target="_top">EPFL</a>, with contributions from <a href="http://typesafe.com" target="_top">Typesafe</a>.</div> - copyright.string=Copyright 2002-2011, LAMP/EPFL - <meta name="Copyright" content="(C) 2002-2011 LAMP/EPFL"/> - * Copyright 2002-2011 LAMP/EPFL - * Copyright 2004-2011 LAMP/EPFL - * Copyright 2005 LAMP/EPFL - * Copyright 2005-2011 LAMP/EPFL - * Copyright 2006-2011 LAMP/EPFL - * Copyright 2007 LAMP/EPFL - * Copyright 2007-2011 LAMP/EPFL - * Copyright 2009-2011 Scala Solutions and LAMP/EPFL - * Copyright 2009-2011 Scxala Solutions and LAMP/EPFL - * Copyright 2010-2011 LAMP/EPFL - * Copyright 2012 LAMP/EPFL -# Copyright 2002-2011, LAMP/EPFL -* Copyright 2005-2011 LAMP/EPFL -/* NSC -- new Scala compiler -- Copyright 2007-2011 LAMP/EPFL */ -rem # Copyright 2002-2011, LAMP/EPFL ``` ``` + <div id="footer">Scala programming documentation. Copyright (c) 2003-2012 <a href="http://www.epfl.ch" target="_top">EPFL</a>, with contributions from <a href="http://typesafe.com" target="_top">Typesafe</a>.</div> + copyright.string=Copyright 2002-2012 LAMP/EPFL + <meta name="Copyright" content="(C) 2002-2012 LAMP/EPFL"/> + * Copyright 2002-2012 LAMP/EPFL + * Copyright 2004-2012 LAMP/EPFL + * Copyright 2005-2012 LAMP/EPFL + * Copyright 2006-2012 LAMP/EPFL + * Copyright 2007-2012 LAMP/EPFL + * Copyright 2009-2012 Scala Solutions and LAMP/EPFL + * Copyright 2010-2012 LAMP/EPFL + * Copyright 2011-2012 LAMP/EPFL +# Copyright 2002-2012 LAMP/EPFL +* Copyright 2005-2012 LAMP/EPFL +/* NSC -- new Scala compiler -- Copyright 2007-2012 LAMP/EPFL */ +rem # Copyright 2002-2012 LAMP/EPFL ```
* Remove sbaz and references from master repository.Josh Suereth2012-03-277-231/+8
|
* Whitespace commit.Paul Phillips2012-02-291-1/+1
| | | | | | | Removed all the trailing whitespace to make eugene happier. Will try to keep it that way by protecting at the merge level. Left the tabs in place because they can't be uniformly changed to spaces, some are 2, some are 4, some are 8, whee.
* Fixed Emit*Page to write to file.Josh Suereth2011-12-092-153/+17
| | | | | | | | The EmitHtmlPage and EmitManPage utilities now write to a file if there is more than one argument on the command line. This allows the SBT build to fork them and still generate a file without having to capture the output stream.
* updated man pages, fixed svn props, did some cl...michelou2011-09-257-100/+200
| | | | | updated man pages, fixed svn props, did some cleanup
* cleanups (scaladoc 2, deprecation warnings, tra...michelou2011-07-135-131/+150
| | | | | cleanups (scaladoc 2, deprecation warnings, trailing blanks)
* Minor fixes to Scaladoc man page.Kato Kazuyoshi2011-07-061-2/+2
|
* We migrated the Scala wiki from Trac to Conflue...Kato Kazuyoshi2011-06-121-1/+1
| | | | | We migrated the Scala wiki from Trac to Confluence. Review by rytz.
* We rename Trac and start using JIRA as the issu...Kato Kazuyoshi2011-06-122-2/+2
| | | | | We rename Trac and start using JIRA as the issue tracking system.
* Updated copyright notices to 2011Antonio Cunei2011-01-2010-12/+12
|
* Unreverting r23174. No review.Paul Phillips2010-10-061-3/+0
|
* Reverts r23174, which I believe will bring the ...Paul Phillips2010-10-041-0/+3
| | | | | | Reverts r23174, which I believe will bring the build back to life. It only chokes under -optimise. No review.
* Work on the pattern matcher.Paul Phillips2010-10-031-3/+0
| | | | | | | | | | | | | | | | | | | | | | | | patches for #3887 and #3888, but I determined that I could achieve the same effect by deleting a bunch of code, so I did. This left only a few lines in TransMatch, so I eliminated it, which led me to remember that many places still reference non-existent phase transmatch, so those were updated. Notes: * This swaps equality tests on stable identifier patterns. They have never conformed to the spec (as noted long ago in ticket #785) which says "The pattern matches any value v such that r == v" whereas until now the test being performed was v == r. * An issue was introduced with specialization in that the implementation of "isTupleType" in Definitions relied upon sym == TupleClass(elems.length). This test is untrue for specialized tuples, causing mysterious behavior because only some tuples are specialized. There is now "isTupleTypeOrSubtype" although it seems likely the former implementation is unnecessary. The issue is sidestepped if one uses "getProductArgs" to retrieve the element types because it sifts through the base types for the Product symbol. Closes #3887 and #3888, review by dmharrah.
* Little type in documentation; closes #3386.Antonio Cunei2010-09-161-1/+1
|
* [scaladoc] Fixed typo in Scaladoc man page (tha...Gilles Dubochet2010-06-031-9/+12
| | | | | | [scaladoc] Fixed typo in Scaladoc man page (thanks Stéphane). No review.
* [scaladoc] Updated man page for Scaladoc 2.Gilles Dubochet2010-06-021-61/+66
|
* Removed more than 3400 svn '$Id' keywords and r...Antonio Cunei2010-05-1210-10/+0
| | | | | Removed more than 3400 svn '$Id' keywords and related junk.
* Updated copyright notices to 2010Antonio Cunei2009-12-0711-13/+13
|
* [no content change] Fixed all SVN properties: m...Gilles Dubochet2009-09-242-0/+0
| | | | | | | | [no content change] Fixed all SVN properties: mimes, EOL, executable. Id expansion is consistently enabled for Scala/Java/C# sources in 'src/' and consistently disabled and removed from everywhere else: there should not be any dead Id tags anymore.
* Riffing off the removal of the cldc library, re...Paul Phillips2009-05-291-1/+1
| | | | | | Riffing off the removal of the cldc library, removed forCLDC and its special cases. Not as much fun as removing inIDE, but still fun.
* In "Iterable" and in all its subclasses, "itera...Gilles Dubochet2009-05-271-1/+1
| | | | | | In "Iterable" and in all its subclasses, "iterator" replaces "elements" (and assorted changes).
* 1.4-related cleanup and reorganization.Antonio Cunei2009-05-151-1/+1
| | | | | | | Removed a bunch of now useless 1.4 code, merged back jvm5-specific partest tests into the general jvm tests, documentation updates.
* map page updatedilyas2009-02-101-3/+3
| | | | | scalap flags adjusted according to man page
* added build scripts for scalapLukas Rytz2009-02-097-9/+135
|
* Updated (all) copyright notices to 2009Antonio Cunei2009-01-138-9/+9
|
* Updated copyright notices to 2009Antonio Cunei2009-01-093-3/+3
|
* fix for #1603Lukas Rytz2009-01-051-1/+1
|
* applied fix for #1206Lukas Rytz2008-09-041-7/+7
|
* fixing urllorch2008-09-011-1/+1
|
* removed scalap man pageLukas Rytz2008-08-227-132/+6
|
* int -> Int, etc.michelou2008-08-192-13/+18
|
* Fixed (most of) the varargs warnings in the com...Miles Sabin2008-07-012-6/+4
| | | | | | | Fixed (most of) the varargs warnings in the compiler and libraries. Fixing the remaining ones in scala.tools.nsc.ObjectRunner will have to wait on a fix to #1003.
* Scripts should use JAVA_HOME to find java execu...stepancheg2008-06-143-0/+12
| | | | | Scripts should use JAVA_HOME to find java executable (#995)
* let supersabbus genarte man pages.Lukas Rytz2008-06-093-0/+62
|
* applied path for #325, update scalac man pagesmichelou2008-01-221-6/+13
|
* Corrected uses of g:lines to g:line.Geoffrey Washburn2008-01-091-2/+2
|
* fixes to make dual mode build passMartin Odersky2007-12-192-2/+4
|
* added scaladoc option '-access'michelou2007-11-162-13/+17
|
* updated man pages with new scala optionsmichelou2007-10-101-1/+10
|