summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2006-06-08 12:46:53 +0000
committermichelou <michelou@epfl.ch>2006-06-08 12:46:53 +0000
commitf79c3b7566a6e961e5eaf1d7d3433710e0b03390 (patch)
tree2a94dc19675e3ac40daa52f53f0fc3707132ece1 /docs
parentcc71492e8b09665ce3e050d0c1ace36854739d5b (diff)
downloadscala-f79c3b7566a6e961e5eaf1d7d3433710e0b03390.tar.gz
scala-f79c3b7566a6e961e5eaf1d7d3433710e0b03390.tar.bz2
scala-f79c3b7566a6e961e5eaf1d7d3433710e0b03390.zip
added description in sbaz man page
Diffstat (limited to 'docs')
-rw-r--r--docs/man/src/man/man1/Command.scala3
-rw-r--r--docs/man/src/man/man1/sbaz.scala16
2 files changed, 14 insertions, 5 deletions
diff --git a/docs/man/src/man/man1/Command.scala b/docs/man/src/man/man1/Command.scala
index 0fdb9c02e9..b59c27d854 100644
--- a/docs/man/src/man/man1/Command.scala
+++ b/docs/man/src/man/man1/Command.scala
@@ -29,7 +29,8 @@ trait Command {
def authors = Section("AUTHOR",
- "Written by Stephane Micheloud.")
+ "Written by Martin Odersky and other members of the " &
+ Link("Scala team", "http://scala.epfl.ch/community/") & ".")
def copyright = Section("COPYRIGHT",
diff --git a/docs/man/src/man/man1/sbaz.scala b/docs/man/src/man/man1/sbaz.scala
index 73f3030a79..09bf2fcdb2 100644
--- a/docs/man/src/man/man1/sbaz.scala
+++ b/docs/man/src/man/man1/sbaz.scala
@@ -37,12 +37,15 @@ object sbaz extends Command {
val description = Section("DESCRIPTION",
- "The " & MBold(command) & " tool ...")
+ "The " & MBold(command) & " tool is a system used by Scala enthusiasts " &
+ "to share computer files with each other. In particular, it makes it " &
+ "easy to share libraries and applications.")
val options = Section("OPTIONS",
- "The " & MBold(command) & " tool has a set of standard options that are supported " &
- "on the current development environment and will be supported in future releases.",
+ "The " & MBold(command) & " tool has a set of standard options that are " &
+ "supported on the current development environment and will be supported " &
+ "in future releases.",
Section("Global Options",
DefinitionList(
@@ -58,7 +61,12 @@ object sbaz extends Command {
DefinitionList(
Definition(
MBold("available"),
- "List the available packages for installation."),
+ "List the available packages for installation; only display the " +
+ "three most recent versions of each package."),
+ Definition(
+ MBold("available") & " " & CmdOption("a"),
+ "List the available packages for installation; display all shared " +
+ "versions of each package."),
Definition(
MBold("compact"),
"Clear the download cache to save space."),