rename plt-help GUI app

This commit is contained in:
Matthew Flatt 2010-05-05 11:07:25 -06:00
parent 0b9370bc5e
commit f3a20562cf
2 changed files with 7 additions and 5 deletions

View File

@ -1,8 +1,9 @@
#lang scheme/base #lang scheme/base
;; Builds different kinds of executables for different platforms. ;; Builds different kinds of executables for different platforms.
;; The `plt-help' executable is for backward compatibity.
;; proposed changes below -robby. ;; The `Racket Documentation' executable is to help Windows and
;; Mac users who are completely lost and need something to click.
(provide post-installer) (provide post-installer)
(require launcher) (require launcher)
@ -23,11 +24,11 @@
make-mzscheme-launcher make-mzscheme-launcher
mzscheme-program-launcher-path mzscheme-program-launcher-path
'()))) '())))
(for ([variant (variants)]) (for ([variant (remove* '(script-3m script-cgc) (variants))])
(parameterize ([current-launcher-variant variant]) (parameterize ([current-launcher-variant variant])
(mk-launcher '("-l-" "help/help") (mk-launcher '("-l-" "help/help")
(mk-path "plt-help") ;; change to "Racket Docs" (mk-path (if mr? "Racket Documentation" "plt-help"))
`([exe-name . "plt-help"] ;; get rid of this (in favor of 'raco docs') `([exe-name . ,(if mr? "Racket Documentation" "plt-help")]
[relative? . #t] [relative? . #t]
[framework-root . #f] [framework-root . #f]
[dll-dir . #f] [dll-dir . #f]

View File

@ -10,6 +10,7 @@
@margin-note{ @margin-note{
@not-on-the-web{ @not-on-the-web{
This is an installation-specific listing. Running @exec{raco docs} This is an installation-specific listing. Running @exec{raco docs}
(or @exec{Racket Documentation} under Windows or Mac OS X)
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.}}