No need to change anything when using the new launcher
svn: r7170
This commit is contained in:
parent
295f53b213
commit
df22b0cbbd
|
@ -1,7 +1,7 @@
|
||||||
(module help-desk mzscheme
|
(module help-desk mzscheme
|
||||||
(require
|
(require
|
||||||
"bug-report.ss" ;; this is require'd here to get the prefs defaults setup done early.
|
"bug-report.ss" ;; this is require'd here to get the prefs defaults setup done early.
|
||||||
"servlets/private/platform.ss" ;; same reason
|
"private/platform.ss" ;; same reason
|
||||||
|
|
||||||
"private/manuals.ss"
|
"private/manuals.ss"
|
||||||
"private/buginfo.ss"
|
"private/buginfo.ss"
|
||||||
|
|
|
@ -21,16 +21,18 @@
|
||||||
(require (lib "web-server.ss" "web-server")
|
(require (lib "web-server.ss" "web-server")
|
||||||
(lib "web-config-unit.ss" "web-server")
|
(lib "web-config-unit.ss" "web-server")
|
||||||
"private/config.ss"
|
"private/config.ss"
|
||||||
"private/internal-hp.ss")
|
"private/internal-hp.ss"
|
||||||
|
"private/platform.ss")
|
||||||
|
|
||||||
|
(current-helpdesk-platform 'external-browser)
|
||||||
|
|
||||||
;; start the HelpDesk server, and store a shutdown
|
;; start the HelpDesk server, and store a shutdown
|
||||||
(define shutdown
|
(define shutdown
|
||||||
(serve/web-config@ config))
|
(serve/web-config@ config))
|
||||||
|
|
||||||
(printf "Did you remember to change `current-helpdesk-platform' in \"platform.ss\"?\n\n")
|
(printf "\nStart here: http://~a:~a/servlets/home.ss\n\n"
|
||||||
(printf "Start here: http://~a:~a/servlets/home.ss\n\n"
|
|
||||||
internal-host internal-port)
|
internal-host internal-port)
|
||||||
|
|
||||||
(format "Press enter to shutdown.\n")
|
(printf "Press enter to shutdown.\n")
|
||||||
(read-line)
|
(read-line)
|
||||||
;(shutdown)
|
;(shutdown)
|
||||||
|
|
|
@ -3,7 +3,8 @@
|
||||||
(lib "web-config-unit.ss" "web-server")
|
(lib "web-config-unit.ss" "web-server")
|
||||||
(lib "dirs.ss" "setup")
|
(lib "dirs.ss" "setup")
|
||||||
(lib "config.ss" "planet")
|
(lib "config.ss" "planet")
|
||||||
"internal-hp.ss")
|
"internal-hp.ss"
|
||||||
|
(lib "namespace.ss" "web-server" "configuration"))
|
||||||
|
|
||||||
(provide config)
|
(provide config)
|
||||||
|
|
||||||
|
@ -54,4 +55,8 @@
|
||||||
`(,virtual-host
|
`(,virtual-host
|
||||||
,(make-host-config dir)))
|
,(make-host-config dir)))
|
||||||
(cons planet-host (append doc-hosts collects-hosts))
|
(cons planet-host (append doc-hosts collects-hosts))
|
||||||
(cons (PLANET-DIR) (append doc-dirs collects-dirs)))))))))
|
(cons (PLANET-DIR) (append doc-dirs collects-dirs)))))
|
||||||
|
#:make-servlet-namespace
|
||||||
|
(make-make-servlet-namespace
|
||||||
|
#:to-be-copied-module-specs
|
||||||
|
'((lib "platform.ss" "help" "private")))))))
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
"private/url.ss"
|
"private/url.ss"
|
||||||
"private/html.ss"
|
"private/html.ss"
|
||||||
"private/split-screen.ss"
|
"private/split-screen.ss"
|
||||||
"private/platform.ss")
|
"../private/platform.ss")
|
||||||
|
|
||||||
(define copyright-year 2007)
|
(define copyright-year 2007)
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
(only (lib "misc.ss" "swindle") mappend)
|
(only (lib "misc.ss" "swindle") mappend)
|
||||||
"html.ss"
|
"html.ss"
|
||||||
"url.ss"
|
"url.ss"
|
||||||
"platform.ss")
|
"../../private/platform.ss")
|
||||||
|
|
||||||
; These items are common to all split screens
|
; These items are common to all split screens
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@ is stored in a module top-level and that's namespace-specific.
|
||||||
"private/util.ss"
|
"private/util.ss"
|
||||||
"private/search-util.ss"
|
"private/search-util.ss"
|
||||||
"private/html.ss"
|
"private/html.ss"
|
||||||
"private/platform.ss")
|
"../private/platform.ss")
|
||||||
(provide interface-version timeout start)
|
(provide interface-version timeout start)
|
||||||
(define interface-version 'v1)
|
(define interface-version 'v1)
|
||||||
(define timeout +inf.0)
|
(define timeout +inf.0)
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
(lib "port.ss")
|
(lib "port.ss")
|
||||||
"../private/standard-urls.ss"
|
"../private/standard-urls.ss"
|
||||||
"../private/docpos.ss"
|
"../private/docpos.ss"
|
||||||
"private/platform.ss"
|
"../private/platform.ss"
|
||||||
"private/html.ss")
|
"private/html.ss")
|
||||||
|
|
||||||
(provide interface-version timeout start)
|
(provide interface-version timeout start)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user