Factored out MrEd deps
original commit: ce0919821999ded657ad5338db774b52ea328119
This commit is contained in:
parent
6086973b8b
commit
6e18cdd287
|
@ -1,11 +1,7 @@
|
|||
(module help mzscheme
|
||||
(require (lib "web-server.ss" "web-server")
|
||||
(lib "util.ss" "web-server")
|
||||
(lib "class.ss")
|
||||
(require (lib "class.ss")
|
||||
(lib "mred.ss" "mred")
|
||||
(lib "cmdline.ss")
|
||||
(lib "configuration.ss" "web-server")
|
||||
(lib "configuration-structures.ss" "web-server")
|
||||
"private/server.ss"
|
||||
"private/browser.ss")
|
||||
|
||||
|
@ -40,14 +36,7 @@
|
|||
(define help-desk-port (hd-cookie->port hd-cookie))
|
||||
|
||||
; allow server startup time
|
||||
(let loop ()
|
||||
(with-handlers
|
||||
([void (lambda _ (sleep 1) (loop))])
|
||||
(let-values
|
||||
([(iport oport) (tcp-connect "127.0.0.1" help-desk-port)])
|
||||
(sleep 1)
|
||||
(close-output-port oport)
|
||||
(close-input-port iport))))
|
||||
(wait-for-connection help-desk-port)
|
||||
|
||||
(when launch-browser?
|
||||
(help-desk-browser hd-cookie)
|
||||
|
@ -77,13 +66,15 @@
|
|||
[sd-button (instantiate button% ()
|
||||
(label "Shutdown")
|
||||
(parent hpanel)
|
||||
(callback (lambda (b ev)
|
||||
(callback
|
||||
(lambda (b ev)
|
||||
(send cb-frame show #f)
|
||||
(send this show #f))))]
|
||||
[no-sd-button (instantiate button% ()
|
||||
(label "Cancel")
|
||||
(parent hpanel)
|
||||
(callback (lambda (b ev)
|
||||
(callback
|
||||
(lambda (b ev)
|
||||
(send main-sd-button
|
||||
enable #t)
|
||||
(send cb-frame show #f))))])
|
||||
|
@ -135,3 +126,4 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -3,40 +3,12 @@
|
|||
"docpos.ss"
|
||||
"colldocs.ss"
|
||||
"server.ss"
|
||||
"browser.ss"
|
||||
(lib "list.ss")
|
||||
(lib "util.ss" "help" "servlets" "private")
|
||||
(lib "specs.ss" "framework"))
|
||||
(lib "util.ss" "help" "servlets" "private"))
|
||||
|
||||
(provide do-search
|
||||
doc-collections-changed)
|
||||
|
||||
(provide/contract
|
||||
(search-for-docs
|
||||
(hd-cookie? string?
|
||||
(lambda (s)
|
||||
(member s
|
||||
'("keyword" "keyword-index" "keyword-index-text")))
|
||||
(lambda (s)
|
||||
(member s
|
||||
'("exact-match" "containing-match" "regexp-match")))
|
||||
any?
|
||||
. -> . any?)))
|
||||
|
||||
; hd-cookie string string string any -> void
|
||||
; shows search result in default browser
|
||||
(define (search-for-docs cookie search-string search-type match-type lucky?)
|
||||
(let* ([port (hd-cookie->port cookie)]
|
||||
[url (format
|
||||
(string-append "http://127.0.0.1:~a/servlets/index.ss?"
|
||||
"search-string=~a&"
|
||||
"search-type=~a&"
|
||||
"match-type=~a&"
|
||||
"lucky=~a")
|
||||
port (hexify-string search-string) search-type match-type
|
||||
(if lucky? "true" "false"))])
|
||||
(help-desk-navigate url)))
|
||||
|
||||
(define (html-doc-position x)
|
||||
(or (user-defined-doc-position x)
|
||||
(standard-html-doc-position x)))
|
||||
|
|
Loading…
Reference in New Issue
Block a user