remove unused help-desk-message fields

svn: r8525
This commit is contained in:
Eli Barzilay 2008-02-04 17:09:09 +00:00
parent 5a08a34f73
commit 3d0d7637f9
9 changed files with 4 additions and 29 deletions

View File

@ -365,12 +365,3 @@ xml documentation for information on the xexpr datatype) that correspond to
the html that help desk can parse. If a collection's info.ss file returns
such a list, the blurb is inserted into the ``installed components'' page
of the help desk documentation.
The _'help-desk-message field_ of the _info.ss_ file
- - - - - - - - - - - - - - - - - - - - - - - - - -
This field must be a string that is displayed at the top of the Help Desk
results window, in green, when the doc.txt file of this collection is displayed.
It should be a single line, describing how to load the library with a prefix
specifying the applicable language levels.

View File

@ -2,7 +2,5 @@
(define name "Launcher")
(define blurb
(list "Lets you run your program as a stand-alone program, "
"with out starting up DrScheme first."))
(define help-desk-message
"Mz/Mr: (require (lib \"launcher.ss\" \"launcher\"))"))
"with out starting up DrScheme first.")))

View File

@ -3,7 +3,6 @@
(module info setup/infotab
(define name "MysterX")
(define doc.txt "doc.txt")
(define help-desk-message "Mz/Mr: (require (lib \"mysterx.ss\" \"mysterx\"))")
(define blurb
(list
"MysterX is an extension that lets you use Scheme to script "

View File

@ -2,8 +2,6 @@
(define name "Net")
(define doc.txt "doc.txt")
(define help-desk-message
"Mz/Mr: See the \"To load\" section of each collection for the command to load it.")
(define blurb
(list
"The net collection provides a suite of libraries to handle standard "

View File

@ -7,8 +7,6 @@
;(define tools (list (list "slatex-lang.ss")))
;(define tool-names (list "SLaTeX Language"))
(define help-desk-message
"Mz/Mr: (require (lib \"slatex-wrapper.ss\" \"slatex\"))")
(define blurb
(list "SLaTeX is a pre-processor for LaTeX that formats Scheme code. "
"For more information, see "

View File

@ -6,11 +6,6 @@
(module info setup/infotab
(define name "SrPersist")
(define doc.txt "doc.txt")
(define help-desk-message
"Mz/Mr: (require (lib \"srpersist.ss\" \"srpersist\"))")
(define compile-omit-files
'("info.ss"
"srpersist.ss"))
(define compile-omit-files '("info.ss" "srpersist.ss"))
(define blurb
(list
"SrPersist is an extension for using ODBC databases from Scheme.")))
'("SrPersist is an extension for using ODBC databases from Scheme.")))

View File

@ -4,7 +4,6 @@
;;
(define name "Swindle")
(define blurb '("Swindle extensions for MzScheme -- CLOS and more."))
(define help-desk-message "Mz/Mr: (require (lib \"swindle.ss\" \"swindle\"))")
(define mzscheme-launcher-names '("swindle"))
(define mzscheme-launcher-flags '(("-li" "swindle")))
;;

View File

@ -1,5 +1,3 @@
(module info setup/infotab
(define name "Texpict")
(define doc.txt "doc.txt")
(define help-desk-message
"Mz/Mr: `(require (lib \"texpict.ss\" \"texpict\"))"))
(define doc.txt "doc.txt"))

View File

@ -3,7 +3,6 @@
(define doc.txt "doc.txt")
;; the XML tool has been moved to the stepper collection, so that
;; the stepper can create xml snips. See collects/stepper/tool.ss for (a bit) more information
(define help-desk-message "Mz/Mr: (require (lib \"xml.ss\" \"xml\"))")
(define blurb
`("The XML collection provides functions for reading, writing, and manipulating XML documents."))
(define tools '(("text-box-tool.ss")))