rackty start page
This commit is contained in:
parent
cd01c7138d
commit
5d6ae2b4b9
|
@ -10,7 +10,7 @@
|
||||||
(define (get-general-acks)
|
(define (get-general-acks)
|
||||||
(string-append
|
(string-append
|
||||||
"The following individuals contributed to the implementation"
|
"The following individuals contributed to the implementation"
|
||||||
" and documentation of PLT Scheme: "
|
" and documentation of Racket: "
|
||||||
"Yavuz Arkun, "
|
"Yavuz Arkun, "
|
||||||
"Ian Barland, "
|
"Ian Barland, "
|
||||||
"Eli Barzilay, "
|
"Eli Barzilay, "
|
||||||
|
@ -84,4 +84,4 @@
|
||||||
"ChongKai Zhu, "
|
"ChongKai Zhu, "
|
||||||
"and "
|
"and "
|
||||||
"Paolo Zoppetti "
|
"Paolo Zoppetti "
|
||||||
"for their help translating DrScheme's GUI to other languages."))
|
"for their help translating DrRacket's GUI to other languages."))
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
;; user-specific pages using cookies). (Note: the subpath must match
|
;; user-specific pages using cookies). (Note: the subpath must match
|
||||||
;; where the corresponding document is generated, this is a hack.)
|
;; where the corresponding document is generated, this is a hack.)
|
||||||
(define links
|
(define links
|
||||||
`((start "PLT Scheme" user "index.html")
|
`((start "Racket" user "index.html")
|
||||||
(search "Search Manuals" user "search/index.html")
|
(search "Search Manuals" user "search/index.html")
|
||||||
---
|
---
|
||||||
(license "License" plt "license/index.html")
|
(license "License" plt "license/index.html")
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#lang scribble/doc
|
#lang scribble/doc
|
||||||
@(require scribble/manual)
|
@(require scribble/manual)
|
||||||
|
|
||||||
@title{Getting Started with PLT Scheme}
|
@title{Getting Started with Racket}
|
||||||
|
|
||||||
If you are new to programming or if you have the patience to work
|
If you are new to programming or if you have the patience to work
|
||||||
through a textbook:
|
through a textbook:
|
||||||
|
@ -15,7 +15,7 @@ through a textbook:
|
||||||
introduces you to the Module language and building web applications.}
|
introduces you to the Module language and building web applications.}
|
||||||
|
|
||||||
@item{@other-manual['(lib "scribblings/guide/guide.scrbl")] describes
|
@item{@other-manual['(lib "scribblings/guide/guide.scrbl")] describes
|
||||||
the rest of the PLT Scheme language, which is much bigger than
|
the rest of the Racket language, which is much bigger than
|
||||||
the learning-oriented languages of the textbook. Since you
|
the learning-oriented languages of the textbook. Since you
|
||||||
learned functional programming from the textbook, you'll be
|
learned functional programming from the textbook, you'll be
|
||||||
able to skim chapters 1 and 2 of the Guide.}
|
able to skim chapters 1 and 2 of the Guide.}
|
||||||
|
@ -28,15 +28,15 @@ If you're already a programmer and you're in more of a hurry:
|
||||||
@itemize[
|
@itemize[
|
||||||
|
|
||||||
@item{@other-manual['(lib "scribblings/quick/quick.scrbl")] gives you
|
@item{@other-manual['(lib "scribblings/quick/quick.scrbl")] gives you
|
||||||
a taste of PLT Scheme.}
|
a taste of Racket.}
|
||||||
|
|
||||||
@item{@other-manual['(lib "scribblings/more/more.scrbl")] dives much
|
@item{@other-manual['(lib "scribblings/more/more.scrbl")] dives much
|
||||||
deeper and much faster. If it's too much, just skip to the
|
deeper and much faster. If it's too much, just skip to the
|
||||||
Guide.}
|
Guide.}
|
||||||
|
|
||||||
@item{@other-manual['(lib "scribblings/guide/guide.scrbl")] starts
|
@item{@other-manual['(lib "scribblings/guide/guide.scrbl")] starts
|
||||||
with a tutorial on Scheme based, and then it describes the rest
|
with a tutorial on Racket basics, and then it describes the rest
|
||||||
of the PLT Scheme language.}
|
of the Racket language.}
|
||||||
|
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
|
@ -6,32 +6,32 @@
|
||||||
|
|
||||||
@main-page['license]
|
@main-page['license]
|
||||||
|
|
||||||
PLT software and documentation is distributed under the GNU Lesser
|
Racket software and documentation is distributed under the GNU Lesser
|
||||||
General Public License (LGPL). This means
|
General Public License (LGPL). This means
|
||||||
|
|
||||||
@itemize[
|
@itemize[
|
||||||
|
|
||||||
@item{You can link PLT software (such as MzScheme or MrEd) into
|
@item{You can link Racket software (such as Racket) into
|
||||||
proprietary applications, provided you follow the specific
|
proprietary applications, provided you follow the specific
|
||||||
rules stated in the LGPL.}
|
rules stated in the LGPL.}
|
||||||
|
|
||||||
@item{You can modify PLT software. If you distribute a modified
|
@item{You can modify Racket software. If you distribute a modified
|
||||||
version, you must distribute it under the terms of the LGPL,
|
version, you must distribute it under the terms of the LGPL,
|
||||||
which in particular means that you must release the source code
|
which in particular means that you must release the source code
|
||||||
for the modified software.}
|
for the modified software.}
|
||||||
|
|
||||||
]
|
]
|
||||||
|
|
||||||
See @filepath{doc/release-notes/COPYING.LIB} in your PLT installation
|
See @filepath{doc/release-notes/COPYING.LIB} in your Racket installation
|
||||||
for more information.
|
for more information.
|
||||||
|
|
||||||
@copyright{
|
@copyright{
|
||||||
PLT Scheme
|
Racket
|
||||||
Copyright (c) 1995-2003 PLT
|
Copyright (c) 1995-2003 PLT
|
||||||
Copyright (c) 2004-2010 PLT Scheme Inc.
|
Copyright (c) 2004-2010 PLT Scheme Inc.
|
||||||
}
|
}
|
||||||
|
|
||||||
PLT software includes or extends the following copyrighted material:
|
Racket software includes or extends the following copyrighted material:
|
||||||
|
|
||||||
@copyright{
|
@copyright{
|
||||||
DrScheme
|
DrScheme
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
@margin-note{
|
@margin-note{
|
||||||
@not-on-the-web{
|
@not-on-the-web{
|
||||||
This is an installation-specific listing. Running @exec{plt-help}
|
This is an installation-specific listing. Running @exec{racket-tool docs}
|
||||||
may open a different page with local and user-specific
|
may open a different page with local and user-specific
|
||||||
documentation, including documentation for installed
|
documentation, including documentation for installed
|
||||||
@link["http://planet.plt-scheme.org/"]{@|PLaneT|} packages.}}
|
@link["http://planet.plt-scheme.org/"]{@|PLaneT|} packages.}}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user