remove unused help-desk-message fields
svn: r8525
This commit is contained in:
parent
5a08a34f73
commit
3d0d7637f9
|
@ -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
|
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
|
such a list, the blurb is inserted into the ``installed components'' page
|
||||||
of the help desk documentation.
|
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.
|
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,5 @@
|
||||||
(define name "Launcher")
|
(define name "Launcher")
|
||||||
(define blurb
|
(define blurb
|
||||||
(list "Lets you run your program as a stand-alone program, "
|
(list "Lets you run your program as a stand-alone program, "
|
||||||
"with out starting up DrScheme first."))
|
"with out starting up DrScheme first.")))
|
||||||
(define help-desk-message
|
|
||||||
"Mz/Mr: (require (lib \"launcher.ss\" \"launcher\"))"))
|
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
(module info setup/infotab
|
(module info setup/infotab
|
||||||
(define name "MysterX")
|
(define name "MysterX")
|
||||||
(define doc.txt "doc.txt")
|
(define doc.txt "doc.txt")
|
||||||
(define help-desk-message "Mz/Mr: (require (lib \"mysterx.ss\" \"mysterx\"))")
|
|
||||||
(define blurb
|
(define blurb
|
||||||
(list
|
(list
|
||||||
"MysterX is an extension that lets you use Scheme to script "
|
"MysterX is an extension that lets you use Scheme to script "
|
||||||
|
|
|
@ -2,8 +2,6 @@
|
||||||
(define name "Net")
|
(define name "Net")
|
||||||
(define doc.txt "doc.txt")
|
(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
|
(define blurb
|
||||||
(list
|
(list
|
||||||
"The net collection provides a suite of libraries to handle standard "
|
"The net collection provides a suite of libraries to handle standard "
|
||||||
|
|
|
@ -7,8 +7,6 @@
|
||||||
;(define tools (list (list "slatex-lang.ss")))
|
;(define tools (list (list "slatex-lang.ss")))
|
||||||
;(define tool-names (list "SLaTeX Language"))
|
;(define tool-names (list "SLaTeX Language"))
|
||||||
|
|
||||||
(define help-desk-message
|
|
||||||
"Mz/Mr: (require (lib \"slatex-wrapper.ss\" \"slatex\"))")
|
|
||||||
(define blurb
|
(define blurb
|
||||||
(list "SLaTeX is a pre-processor for LaTeX that formats Scheme code. "
|
(list "SLaTeX is a pre-processor for LaTeX that formats Scheme code. "
|
||||||
"For more information, see "
|
"For more information, see "
|
||||||
|
|
|
@ -6,11 +6,6 @@
|
||||||
(module info setup/infotab
|
(module info setup/infotab
|
||||||
(define name "SrPersist")
|
(define name "SrPersist")
|
||||||
(define doc.txt "doc.txt")
|
(define doc.txt "doc.txt")
|
||||||
(define help-desk-message
|
(define compile-omit-files '("info.ss" "srpersist.ss"))
|
||||||
"Mz/Mr: (require (lib \"srpersist.ss\" \"srpersist\"))")
|
|
||||||
(define compile-omit-files
|
|
||||||
'("info.ss"
|
|
||||||
"srpersist.ss"))
|
|
||||||
(define blurb
|
(define blurb
|
||||||
(list
|
'("SrPersist is an extension for using ODBC databases from Scheme.")))
|
||||||
"SrPersist is an extension for using ODBC databases from Scheme.")))
|
|
||||||
|
|
|
@ -4,7 +4,6 @@
|
||||||
;;
|
;;
|
||||||
(define name "Swindle")
|
(define name "Swindle")
|
||||||
(define blurb '("Swindle extensions for MzScheme -- CLOS and more."))
|
(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-names '("swindle"))
|
||||||
(define mzscheme-launcher-flags '(("-li" "swindle")))
|
(define mzscheme-launcher-flags '(("-li" "swindle")))
|
||||||
;;
|
;;
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
(module info setup/infotab
|
(module info setup/infotab
|
||||||
(define name "Texpict")
|
(define name "Texpict")
|
||||||
(define doc.txt "doc.txt")
|
(define doc.txt "doc.txt"))
|
||||||
(define help-desk-message
|
|
||||||
"Mz/Mr: `(require (lib \"texpict.ss\" \"texpict\"))"))
|
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
(define doc.txt "doc.txt")
|
(define doc.txt "doc.txt")
|
||||||
;; the XML tool has been moved to the stepper collection, so that
|
;; 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
|
;; 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
|
(define blurb
|
||||||
`("The XML collection provides functions for reading, writing, and manipulating XML documents."))
|
`("The XML collection provides functions for reading, writing, and manipulating XML documents."))
|
||||||
(define tools '(("text-box-tool.ss")))
|
(define tools '(("text-box-tool.ss")))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user