racket/collects/handin-client/info.ss
Eli Barzilay 761c816280 Renamed tool.ss tp client-gui.ss -- the handin client is very useful
as part of a course package, so a less generic name is better.

svn: r996
2005-10-06 06:37:40 +00:00

21 lines
849 B
Scheme

(module info (lib "infotab.ss" "setup")
;; Modify these definitions to customize the tool.
;; Also replace the "icon.png" and "server-cert.pem" files.
;; Instead of uncommenting the definition of server:port, you
;; can set the PLT_HANDIN_SERVER_PORT environment variable.
(define name "Course")
(define collection "handin-client")
;(define server:port "localhost:7979")
;; The following are optional. Uncomment and fill in
;; the values to add a menu item under "Help" to open
;; the specified web page (using the user's chosen web
;; browser.)
;(define web-menu-name "Course Homepage")
;(define web-address "http://www.university.edu/course/")
(define tool-icons (list (list "icon.png" collection)))
(define tools '(("client-gui.ss")))
(define tool-names (list name))
(define requires '(("mred") ("openssl"))))