
file. (That is, it does not require the file to have a `name' entry.) * The name shown when setup works is the directory name, followed by the `name' field from the info file when specified. * This means that many `name's are no longer needed, so I'm removing them. To see if you need a `name' entry, consider that the name will be shown like this: ... foo (<your name here>) This means that if the name is the same as the directory name, then there is no point in having it. I also removed cases where the name differed only in its capitalization for collections where the case is obvious. * Also, for subcollections, the name should clarify the name of the subcollection in context. For example "Acknowledgments" explains what scribbling/acks is, but there's no need to add the context name as in "Scribblings: Acknowledgments". * There may also be a point in keeping names for other uses. One such example was in games, where the name field was used in the PLT Games application. (This was changed to default on the directory name, so it is no longer needed in most games.) Another example is in planet packages. svn: r8629
31 lines
1.1 KiB
Scheme
31 lines
1.1 KiB
Scheme
;;; Written by Eli Barzilay: Maze is Life! (eli@barzilay.org)
|
|
#lang setup/infotab
|
|
|
|
(define mzscheme-launcher-names '("swindle"))
|
|
(define mzscheme-launcher-flags '(("-li" "swindle")))
|
|
|
|
;; This simple interface is not enough, use tool.ss instead
|
|
;; (define drscheme-language-modules
|
|
;; '(("swindle.ss" "swindle")
|
|
;; ("turbo.ss" "swindle")
|
|
;; ("html.ss" "swindle")))
|
|
;; (define drscheme-language-positions
|
|
;; '(("Swindle" "Full Swindle")
|
|
;; ("Swindle" "Swindle without CLOS")
|
|
;; ("Swindle" "HTML Swindle")))
|
|
;; (define drscheme-language-numbers
|
|
;; '((-900 0) (-900 1) (-900 2)))
|
|
;; (define drscheme-language-one-line-summaries
|
|
;; '("Scheme with Full Swindle extensions"
|
|
;; "Scheme with Swindle without the object system"
|
|
;; "Scheme with the HTML and Swindle extensions"))
|
|
;; (define drscheme-language-urls
|
|
;; '("http://www.barzilay.org/Swindle/"
|
|
;; "http://www.barzilay.org/Swindle/"
|
|
;; "http://www.barzilay.org/Swindle/"))
|
|
|
|
(define tools '(("tool.ss")))
|
|
(define tool-names '("Swindle"))
|
|
(define tool-icons '(("swindle-icon.png" "swindle")))
|
|
(define tool-urls '("http://www.barzilay.org/Swindle/"))
|