#anchor
(define (finddoc-page-anchor manual index-key)
(finddoc-page-help manual index-key #t))
;; returns either a string (failure) or
;; (list docdir index-key filename anchor title)
(define finddoc-ht (make-hash-table))
(define (finddoc-lookup manual index-key label)
(let ([key (string->symbol manual)]
[docdir (find-doc-directory (string->path manual))])
(unless docdir
(error 'finddoc-lookup "manual ~s not found" manual))
(let ([l (hash-table-get
finddoc-ht
key
(lambda ()
(let ([f (build-path docdir "hdindex")])
(if (file-exists? f)
(let ([l (with-input-from-file f read)])
(hash-table-put! finddoc-ht key l)
l)
(error 'finddoc "manual index ~s not installed" manual)))))])
(let ([m (assoc index-key l)])
(if m
(cons docdir m)
(error 'finddoc "index key ~s not found in manual ~s" index-key manual))))))
; manual is doc collection subdirectory, e.g. "mred"
(define (main-manual-page manual)
(let* ([entry (assoc manual known-docs)]
[name (or (and entry (cdr entry))
manual)]
[href (string-append "/doc/" manual "/")])
`(A ((HREF ,href)) ,name)))
; string string string -> xexpr
; man is manual name
; ndx is index into the manual
; txt is the link text
;; warning: if the index file isn't present, this page
(define (manual-entry man ndx txt)
(with-handlers ([exn:fail?
(lambda (x)
`(font ((color "red"))
,txt
" ["
,(exn-message x)
"]"))])
`(A ((HREF ,(finddoc-page man ndx))) ,txt)))
(define (find-doc-names)
(let* ([dirs (find-doc-directories)]
[installed
(map (lambda (dir)
(let-values ([(base name dir?) (split-path dir)])
name))
dirs)]
[uninstalled
(filter (lambda (x) (not (member (car x) installed)))
known-docs)])
(append
(map (lambda (short-name long-name) (cons short-name (get-doc-name long-name)))
installed
dirs)
uninstalled)))
;; find-doc-directories : -> (listof path)
;; constructs a list of directories where documentation may reside.
(define (find-doc-directories)
(append (find-info.ss-doc-directories)
(find-doc-directories-in-doc-collection)))
(define (find-info.ss-doc-directories)
(let ([dirs (find-relevant-directories '(html-docs) 'all-available)])
(let loop ([dirs dirs])
(cond
[(null? dirs) null]
[else (let* ([dir (car dirs)]
[info (get-info/full dir)])
(cond
[info
(let ([html-doc-paths (info 'html-docs (lambda () #f))])
(cond
[(and (list? html-doc-paths)
(andmap path-string? html-doc-paths))
(append (map (lambda (x) (build-path dir x)) html-doc-paths)
(loop (cdr dirs)))]
[else
(loop (cdr dirs))]))]
[else (loop (cdr dirs))]))]))))
(define (find-doc-directories-in-doc-collection)
(let loop ([paths (current-library-collection-paths)]
[acc null])
(cond
[(null? paths) acc]
[else (let* ([path (car paths)]
[doc-path (build-path path "doc")])
(if (directory-exists? doc-path)
(let dloop ([doc-contents (directory-list doc-path)]
[acc acc])
(cond
[(null? doc-contents) (loop (cdr paths) acc)]
[else
(let ([candidate (build-path doc-path (car doc-contents))])
(if (directory-exists? candidate)
(dloop (cdr doc-contents) (cons candidate acc))
(dloop (cdr doc-contents) acc)))]))
(loop (cdr paths) acc)))])))
;; finds the full path of the doc directory, if one exists
;; input is just the short name of the directory (as a path)
(define (find-doc-directory doc)
(let loop ([dirs (find-doc-directories-in-doc-collection)])
(cond
[(null? dirs) #f]
[else (let ([dir (car dirs)])
(let-values ([(base name dir?) (split-path dir)])
(if (equal? name doc)
dir
(loop (cdr dirs)))))])))
(define re:title (regexp "<[tT][iI][tT][lL][eE]>(.*)[tT][iI][tT][lL][eE]>"))
(define (find-manuals)
(let* ([sys-type (system-type)]
[docs (let loop ([l (find-doc-directories)])
(cond
[(null? l) null]
[(get-index-file (car l))
(cons (car l) (loop (cdr l)))]
[else (loop (cdr l))]))]
[compare-docs (lambda (a b)
(let-values ([(_1 a-short _2) (split-path a)]
[(_3 b-short _4) (split-path b)])
(let ([ap (standard-html-doc-position a-short)]
[bp (standard-html-doc-position b-short)])
(cond
[(= ap bp) (string (path->string a) (path->string b))]
[else (< ap bp)]))))]
[docs (quicksort docs compare-docs)]
[names (map get-doc-name docs)]
[names+paths (map cons names docs)])
(let-values ([(collections-doc-files collection-names) (colldocs)])
(apply
string-append
""
(xexpr->string
`(HEAD
,hd-css
,@hd-links
(TITLE "PLT Manuals")))
""
(append
(list "Installed Manuals
")
(if (repos-or-nightly-build?)
(list
"Subversion: "
(string-constant plt:hd:refresh-all-manuals)
" "
(format "flush index and keyword cache
" flush-manuals-url))
'())
(build-known-manuals names+paths)
(list "Doc.txt
")
(map
(lambda (collection-doc-file name)
(format "- ~a collection"
; escape colons and other junk
(hexify-string
(path->string
(build-path (car collection-doc-file)
(cadr collection-doc-file))))
name
name
name))
collections-doc-files
collection-names)
(list "
")
(let ([uninstalled (get-uninstalled docs)])
(cond
[(null? uninstalled)
(list "")]
[else
(list*
"Uninstalled Manuals
"
""
(append
(map
(lambda (doc-pair)
(let* ([manual (car doc-pair)]
[name (cdr doc-pair)]
[manual-path (find-doc-directory manual)])
(string-append
"- Download and install path ,(path->bytes manual))
,name))))
(format "\">~a~a"
name
(if (and manual-path
(or (file-exists? (build-path manual-path "hdindex"))
(file-exists? (build-path manual-path "keywords"))))
" (index installed)"
"")))))
uninstalled)
(list "
")))]))
(list ""))))))
;; break-between : regexp
;; (listof (union string (cons string string)))
;; -> (listof (union string (cons string string)))
;; adds the para-mark string into the list at the first place
;; that the regexp fails to match (not counting other para-marks
;; in the list)
(define (break-between re l)
(let ([para-mark ""])
(let loop ([l l])
(cond
[(null? l) null]
[else
(let ([fst (car l)])
(cond
[(pair? fst)
(let ([name (car fst)])
(if (regexp-match re name)
(cons para-mark l)
(cons fst (loop (cdr l)))))]
[else (cons fst (loop (cdr l)))]))]))))
;; build-known-manuals : (listof (cons string[title] string[path])) -> (listof string)
(define (build-known-manuals names+paths)
(let loop ([sections sections]
[manuals names+paths])
(cond
[(null? sections) null]
[else
(let* ([section (car sections)]
[in (filter (lambda (x) (regexp-match (sec-reg section)
(car x)))
manuals)]
[out (filter (lambda (x) (not (regexp-match (sec-reg section)
(car x))))
manuals)])
(cons (build-known-section section in)
(loop (cdr sections) out)))])))
;; build-known-section : sec (listof (cons string[title] string[path]))) -> string
(define (build-known-section sec names+paths)
(if (null? names+paths)
""
(string-append
"
" (sec-name sec) "
"
""
(apply
string-append
(map (lambda (x)
(if (string? x)
x
(mk-link (cdr x) (car x))))
(let loop ([breaks (sec-seps sec)]
[names+paths names+paths])
(cond
[(null? breaks) names+paths]
[else
(let ([break (car breaks)])
(loop (cdr breaks)
(break-between (car breaks) names+paths)))]))))
"
")))
;; mk-link : string string -> string
(define (mk-link doc-path name)
(let* ([manual-name (let-values ([(base manual-name dir?) (split-path doc-path)])
manual-name)]
[index-file (get-index-file doc-path)])
(format " ~a~a"
#;manual-name
#;(path->string index-file)
(get-help-url (build-path doc-path index-file))
name
(if (and (repos-or-nightly-build?)
(file-exists? (build-path doc-path index-file)))
(string-append
"
"
""
(if (is-known-doc? doc-path)
(string-append
(format
"[~a]"
(to-string/escape-quotes
`((dynamic-require '(lib "refresh-manuals.ss" "help") 'refresh-manuals)
(list (cons (bytes->path ,(path->bytes manual-name))
,name))))
(string-constant plt:hd:refresh))
" ")
"")
(format (string-constant plt:hd:manual-installed-date)
(date->string
(seconds->date
(file-or-directory-modify-seconds
(build-path doc-path index-file)))))
"")
""))))
(define (to-string/escape-quotes exp)
(regexp-replace* #rx"\""
(format "~s" exp)
"|"))
;; get-doc-name : path -> string
(define cached-doc-names (make-hash-table 'equal))
(define (get-doc-name doc-dir)
(hash-table-get
cached-doc-names
doc-dir
(lambda ()
(let ([res (compute-doc-name doc-dir)])
(hash-table-put! cached-doc-names doc-dir res)
res))))
;; compute-doc-name : path -> string[title of manual]
;; gets the title either from the known docs list, by parsing the
;; html, or if both those fail, by using the name of the directory
;; Special-cases the help collection. It's not a known doc directory
;; per se, so it won't appear in known-docs, but it's name is always
;; the same.
(define (compute-doc-name doc-dir)
(let-values ([(_1 doc-short-dir-name _2) (split-path doc-dir)])
(if (equal? (string->path "help") doc-short-dir-name)
"PLT Help Desk"
(or (get-known-doc-name doc-dir)
(let ([main-file (get-index-file doc-dir)])
(if main-file
(with-input-from-file (build-path doc-dir main-file)
(lambda ()
(let loop ()
(let ([r (read-line)])
(cond
[(eof-object? r) doc-short-dir-name]
[(regexp-match re:title r) => cadr]
[(regexp-match #rx"<[tT][iI][tT][lL][eE]>(.*)$" r)
;; Append lines until we find it
(let aloop ([r r])
(let ([a (read-line)])
(cond
[(eof-object? a) (loop)] ; give up
[else (let ([r (string-append r a)])
(cond
[(regexp-match re:title r) => cadr]
[else (aloop r)]))])))]
[else (loop)])))))
(path->string doc-short-dir-name)))))))
;; is-known-doc? : string[path] -> boolean
(define (is-known-doc? doc-path)
(let-values ([(base name dir?) (split-path doc-path)])
(if (assoc name known-docs)
#t
#f)))
;; get-known-doc-name : string[full-path] -> (union string #f)
(define (get-known-doc-name doc-path)
(let-values ([(base name dir?) (split-path doc-path)])
(let ([ass (assoc name known-docs)])
(if ass
(cdr ass)
#f))))
;; get-uninstalled : (listof path) -> (listof (cons path string[docs-name]))
(define (get-uninstalled docs)
(let ([ht (make-hash-table 'equal)])
(for-each (lambda (known-doc)
(hash-table-put! ht
(car known-doc)
(cdr known-doc)))
known-docs)
(for-each (lambda (doc)
(let-values ([(base name dir?) (split-path doc)])
(hash-table-remove! ht name)))
docs)
(hash-table-map ht cons)))
;; get-index-file : path -> (union #f path)
;; returns the name of the main file, if one can be found
(define (get-index-file doc-dir)
(cond
[(file-exists? (build-path doc-dir "index.htm"))
(build-path "index.htm")]
[(file-exists? (build-path doc-dir "index.html"))
(build-path "index.html")]
[(tex2page-detected doc-dir)
=>
(lambda (x) x)]
[else #f]))
;; tex2page-detected : string -> (union #f string)
(define (tex2page-detected dir)
(let loop ([contents (directory-list dir)])
(cond
[(null? contents) #f]
[else (let* ([file (car contents)]
[m (regexp-match #rx#"(.*)-Z-H-1.html" (path->bytes file))])
(or (and m
(file-exists? (build-path dir file))
(let ([index-file (bytes->path (bytes-append (cadr m) #".html"))])
(if (file-exists? (build-path dir index-file))
index-file
#f)))
(loop (cdr contents))))]))))