racket/collects/handin-client/info.ss
Matthew Flatt 31f4d5c9af minor handin-server doc fixes
svn: r16290
2009-10-09 15:23:06 +00:00

42 lines
1.6 KiB
Scheme

#lang setup/infotab
;; Modify these definitions to enable & customize the tool.
;; (Detailed instructions are in the handin-server collection's docs.)
;; Also replace the "server-cert.pem" files.
;; Your course name (used for menus, button label, collection name etc)
(define name "Course")
;; The handin tool is disabled by default, uncomment these three lines to
;; enable it
;(define tools `("client-gui.ss"))
;(define tool-names `(,name))
;(define tool-icons `("icon.png"))
;; Modify the provided "icon.png" file to your school/lab/etc logo.
;; You must define a server:port for the client to be functional
;(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/")
;; Auto-updater section (see handin-server/doc.txt for details)
;(define enable-auto-update #t) ; enable auto-update?
;(define version-filename "handin-version")
;(define package-filename "handin.plt")
;; Multi-file submission section (see handin-server/doc.txt for details)
;(define enable-multifile-handin #t) ; enable multi-file?
;(define selection-mode 'extended) ; mode for file choose, usually 'extended
;(define selection-default ; suffixes to auto-choose (string or string-list)
; '("*.scm;*.ss" "*.scm;*.ss;*.txt"))
;; Client configuration
;(define password-keep-minutes 5) ; client remembers entered password 5 mins
(define requires '(("mred") ("openssl")))