removed scalap man page
git-svn-id: http://lampsvn.epfl.ch/svn-repos/scala/scala/trunk@15895 5e8d7ff9-d8ef-0310-90f0-a4852d11357a
This commit is contained in:
parent
0ed0f58007
commit
614e43c791
|
@ -910,7 +910,7 @@ DOCUMENTATION
|
|||
<taskdef name="genman"
|
||||
classname="scala.tools.docutil.ManMaker"
|
||||
classpathref="manual.classpath"/>
|
||||
<genman command="fsc, sbaz, scala, scalac, scaladoc, scalap"
|
||||
<genman command="fsc, sbaz, scala, scalac, scaladoc"
|
||||
htmlout="${build-docs.dir}/manual/html"
|
||||
manout="${build-docs.dir}/manual/man"/>
|
||||
<fixcrlf srcdir="${build-docs.dir}/manual" eol="unix" includes="**/*.1"/>
|
||||
|
|
|
@ -142,8 +142,7 @@ object fsc extends Command {
|
|||
Link(Bold("sbaz") & "(1)", "sbaz.html") & ", " &
|
||||
Link(Bold("scala") & "(1)", "scala.html") & ", " &
|
||||
Link(Bold("scalac") & "(1)", "scalac.html") & ", " &
|
||||
Link(Bold("scaladoc") & "(1)", "scaladoc.html") & ", " &
|
||||
Link(Bold("scalap") & "(1)", "scalap.html"))
|
||||
Link(Bold("scaladoc") & "(1)", "scaladoc.html"))
|
||||
|
||||
def manpage = new Document {
|
||||
title = command
|
||||
|
|
|
@ -182,8 +182,7 @@ object sbaz extends Command {
|
|||
Link(Bold("fsc") & "(1)", "fsc.html") & ", " &
|
||||
Link(Bold("scala") & "(1)", "scala.html") & ", " &
|
||||
Link(Bold("scalac") & "(1)", "scalac.html") & ", " &
|
||||
Link(Bold("scaladoc") & "(1)", "scaladoc.html") & ", " &
|
||||
Link(Bold("scalap") & "(1)", "scalap.html"))
|
||||
Link(Bold("scaladoc") & "(1)", "scaladoc.html"))
|
||||
|
||||
def manpage = new Document {
|
||||
title = command
|
||||
|
|
|
@ -249,8 +249,7 @@ object scala extends Command {
|
|||
Link(Bold("fsc") & "(1)", "fsc.html") & ", " &
|
||||
Link(Bold("sbaz") & "(1)", "sbaz.html") & ", " &
|
||||
Link(Bold("scalac") & "(1)", "scalac.html") & ", " &
|
||||
Link(Bold("scaladoc") & "(1)", "scaladoc.html") & ", " &
|
||||
Link(Bold("scalap") & "(1)", "scalap.html"))
|
||||
Link(Bold("scaladoc") & "(1)", "scaladoc.html"))
|
||||
|
||||
def manpage = new Document {
|
||||
title = command
|
||||
|
|
|
@ -351,8 +351,7 @@ object scalac extends Command {
|
|||
Link(Bold("fsc") & "(1)", "fsc.html") & ", " &
|
||||
Link(Bold("sbaz") & "(1)", "sbaz.html") & ", " &
|
||||
Link(Bold("scala") & "(1)", "scala.html") & ", " &
|
||||
Link(Bold("scaladoc") & "(1)", "scaladoc.html") & ", " &
|
||||
Link(Bold("scalap") & "(1)", "scalap.html"))
|
||||
Link(Bold("scaladoc") & "(1)", "scaladoc.html"))
|
||||
|
||||
def manpage = new Document {
|
||||
title = command
|
||||
|
|
|
@ -126,8 +126,7 @@ object scaladoc extends Command {
|
|||
Link(Bold("fsc") & "(1)", "fsc.html") & ", " &
|
||||
Link(Bold("sbaz") & "(1)", "sbaz.html") & ", " &
|
||||
Link(Bold("scala") & "(1)", "scala.html") & ", " &
|
||||
Link(Bold("scalac") & "(1)", "scalac.html") & ", " &
|
||||
Link(Bold("scalap") & "(1)", "scalap.html"))
|
||||
Link(Bold("scalac") & "(1)", "scalac.html"))
|
||||
|
||||
def manpage = new Document {
|
||||
title = command
|
||||
|
|
|
@ -1,109 +0,0 @@
|
|||
/* NSC -- new Scala compiler
|
||||
* Copyright 2005-2007 LAMP/EPFL
|
||||
* @author Stephane Micheloud
|
||||
*/
|
||||
//$Id$
|
||||
|
||||
package scala.man1
|
||||
|
||||
object scalap extends Command {
|
||||
import _root_.scala.tools.docutil.ManPage._
|
||||
|
||||
protected def cn = new Error().getStackTrace()(0).getClassName()
|
||||
|
||||
val name = Section("NAME",
|
||||
|
||||
MBold(command) & " " & NDash & " Scala class file decoder for the " &
|
||||
Link("Scala 2", "http://scala-lang.org/") & " language")
|
||||
|
||||
val synopsis = Section("SYNOPSIS",
|
||||
|
||||
CmdLine(" [ " & Argument("options") & " ] " & Argument("source file")))
|
||||
|
||||
val parameters = Section("PARAMETERS",
|
||||
|
||||
DefinitionList(
|
||||
Definition(
|
||||
Mono(Argument("options")),
|
||||
"Command line options. See " & Link(Bold("OPTIONS"), "#options") &
|
||||
" below."),
|
||||
Definition(
|
||||
Mono(Argument("source file")),
|
||||
"One class file to be decoded (such as " &
|
||||
Mono("hello.HelloWorld") & ").")))
|
||||
|
||||
val description = Section("DESCRIPTION",
|
||||
|
||||
"The " & MBold(command) & " tool reads a class file generated by the" &
|
||||
"Scala compiler, and displays object and class definitions.",
|
||||
|
||||
"By default, " & MBold(command) & " looks for the given class file " &
|
||||
"in the current directory. You can specify a separate classpath with " &
|
||||
CmdOption("classpath") & "(see " & Link(Bold("OPTIONS"), "#options") & ", below).")
|
||||
|
||||
val options = Section("OPTIONS",
|
||||
|
||||
"The decoder has a set of standard options that are supported on the " &
|
||||
"current development environment and will be supported in future releases.",
|
||||
|
||||
Section("Standard Options",
|
||||
DefinitionList(
|
||||
Definition(
|
||||
CmdOption("help"),
|
||||
"Display this usage message."),
|
||||
Definition(
|
||||
CmdOption("private"),
|
||||
"Print private definitions."),
|
||||
Definition(
|
||||
CmdOption("verbose"),
|
||||
"Print out additional information."),
|
||||
Definition(
|
||||
CmdOption("version"),
|
||||
"Print product version and exit."),
|
||||
Definition(
|
||||
CmdOption("cp") & "| " & CmdOption("classpath"),
|
||||
"Specify where to find user class files."))))
|
||||
|
||||
val examples = Section("EXAMPLES",
|
||||
|
||||
DefinitionList(
|
||||
Definition(
|
||||
"Display definitions for a generated class file",
|
||||
CmdLine("hello.HelloWorld"))))
|
||||
|
||||
val exitStatus = Section("EXIT STATUS",
|
||||
|
||||
MBold(command) & " returns a zero exist status if it succeeds to process " &
|
||||
"the specified input files. Non zero is returned in case of failure.")
|
||||
|
||||
override val authors = Section("AUTHOR",
|
||||
|
||||
"Written by Matthias Zenger.")
|
||||
|
||||
val seeAlso = Section("SEE ALSO",
|
||||
|
||||
Link(Bold("fsc") & "(1)", "fsc.html") & ", " &
|
||||
Link(Bold("sbaz") & "(1)", "sbaz.html") & ", " &
|
||||
Link(Bold("scala") & "(1)", "scala.html") & ", " &
|
||||
Link(Bold("scalac") & "(1)", "scalac.html") & ", " &
|
||||
Link(Bold("scaladoc") & "(1)", "scaladoc.html"))
|
||||
|
||||
def manpage = new Document {
|
||||
title = command
|
||||
date = "June 8, 2006"
|
||||
author = "Stephane Micheloud"
|
||||
version = "0.2"
|
||||
sections = List(
|
||||
name,
|
||||
synopsis,
|
||||
parameters,
|
||||
description,
|
||||
options,
|
||||
examples,
|
||||
exitStatus,
|
||||
authors,
|
||||
bugs,
|
||||
copyright,
|
||||
seeAlso)
|
||||
}
|
||||
}
|
|
@ -45,8 +45,7 @@
|
|||
<ul class="ContentList">
|
||||
<li>
|
||||
<a href="#basic"><b class="SansSerif">Basic Tools</b></a> (<code>sbaz</code>,
|
||||
<code>fsc</code>, <code>scala</code>, <code>scalac</code>, <code>scaladoc</code>,
|
||||
<code>scalap</code>)
|
||||
<code>fsc</code>, <code>scala</code>, <code>scalac</code>, <code>scaladoc</code>)
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
@ -175,17 +174,6 @@
|
|||
[<a href="scaladoc.html">Solaris, Linux and Windows</a>]
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="13%" valign="top">
|
||||
<span class="tool">scalap</span>
|
||||
</td>
|
||||
<td width="70%" valign="top">
|
||||
The Scala class file decoder.
|
||||
</td>
|
||||
<td width="17%" valign="top">
|
||||
[<a href="scalap.html">Solaris, Linux and Windows</a>]
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<hr/>
|
||||
|
|
Loading…
Reference in New Issue