Help Desk header
original commit: 4cb5111cdfef5ff8d953d06f373bc33d0bb6c0b0
This commit is contained in:
parent
30568ed2a2
commit
19230340dc
|
@ -31,9 +31,12 @@
|
||||||
; gets the standard title of the documentation, from the
|
; gets the standard title of the documentation, from the
|
||||||
; known docs list.
|
; known docs list.
|
||||||
(define (get-std-doc-title path doc)
|
(define (get-std-doc-title path doc)
|
||||||
(let ([a (assoc doc known-docs)])
|
(cond
|
||||||
(if a
|
[(string=? doc "help")
|
||||||
(cdr a)
|
"PLT Help Desk"]
|
||||||
|
[(assoc doc known-docs)
|
||||||
|
=> (lambda (a) (cdr a))]
|
||||||
|
[else
|
||||||
(let ([index-file (build-path path doc "index.htm")])
|
(let ([index-file (build-path path doc "index.htm")])
|
||||||
(if (file-exists? index-file)
|
(if (file-exists? index-file)
|
||||||
(call-with-input-file index-file
|
(call-with-input-file index-file
|
||||||
|
@ -51,7 +54,7 @@
|
||||||
(map (lambda (x) (if (char-whitespace? x) #\space x))
|
(map (lambda (x) (if (char-whitespace? x) #\space x))
|
||||||
(string->list (cadr m)))))]
|
(string->list (cadr m)))))]
|
||||||
[else (loop)])))))
|
[else (loop)])))))
|
||||||
doc)))))
|
doc))]))
|
||||||
|
|
||||||
(define (reset-doc-lists)
|
(define (reset-doc-lists)
|
||||||
; Locate standard HTML documentation
|
; Locate standard HTML documentation
|
||||||
|
|
Loading…
Reference in New Issue
Block a user