.
original commit: a3141bbc2b5a4568a59e44695b1e8d6f1ec60825
This commit is contained in:
parent
b69c0b4625
commit
fbbd4dc9c4
|
@ -5,6 +5,7 @@
|
||||||
"path.ss"
|
"path.ss"
|
||||||
"manuals.ss"
|
"manuals.ss"
|
||||||
(lib "list.ss")
|
(lib "list.ss")
|
||||||
|
(lib "plt-match.ss")
|
||||||
(lib "contract.ss"))
|
(lib "contract.ss"))
|
||||||
|
|
||||||
(provide doc-collections-changed)
|
(provide doc-collections-changed)
|
||||||
|
@ -123,8 +124,9 @@
|
||||||
doc
|
doc
|
||||||
(lambda ()
|
(lambda ()
|
||||||
(with-handlers ([not-break-exn? (lambda (x) null)])
|
(with-handlers ([not-break-exn? (lambda (x) null)])
|
||||||
(with-input-from-file (build-path doc "keywords")
|
(transform-keywords
|
||||||
read)))))
|
(with-input-from-file (build-path doc "keywords")
|
||||||
|
read))))))
|
||||||
|
|
||||||
(define html-indices (make-hash-table 'equal))
|
(define html-indices (make-hash-table 'equal))
|
||||||
(define (load-html-index doc)
|
(define (load-html-index doc)
|
||||||
|
@ -133,9 +135,51 @@
|
||||||
doc
|
doc
|
||||||
(lambda ()
|
(lambda ()
|
||||||
(with-handlers ([not-break-exn? (lambda (x) null)])
|
(with-handlers ([not-break-exn? (lambda (x) null)])
|
||||||
(with-input-from-file (build-path doc "hdindex")
|
(transform-hdindex
|
||||||
read)))))
|
(with-input-from-file (build-path doc "hdindex")
|
||||||
|
read))))))
|
||||||
|
|
||||||
|
;; transform-hdindex : any -> (listof (list string path string string)
|
||||||
|
;; makes sure the input from the file is well-formed and changes
|
||||||
|
;; the bytes to paths.
|
||||||
|
(define (transform-hdindex l)
|
||||||
|
(let/ec k
|
||||||
|
(let ([fail (lambda () (k '()))])
|
||||||
|
(unless (list? l) (fail))
|
||||||
|
(map (lambda (l)
|
||||||
|
(match l
|
||||||
|
[`(,(? string? index)
|
||||||
|
,(? bytes? file)
|
||||||
|
,(? string? label)
|
||||||
|
,(? string? title))
|
||||||
|
(list index
|
||||||
|
(bytes->path file)
|
||||||
|
label
|
||||||
|
title)]
|
||||||
|
[else (fail)]))
|
||||||
|
l))))
|
||||||
|
|
||||||
|
;; transform-keywords : any -> (listof (list string string path string string)
|
||||||
|
;; as with transform-hdindex
|
||||||
|
(define (transform-keywords l)
|
||||||
|
(let/ec k
|
||||||
|
(let ([fail (lambda () (k '()))])
|
||||||
|
(unless (list? l) (fail))
|
||||||
|
(map (lambda (l)
|
||||||
|
(match l
|
||||||
|
[`(,(? string? keyword)
|
||||||
|
,(? string? result)
|
||||||
|
,(? bytes? file)
|
||||||
|
,(? string? label)
|
||||||
|
,(? string? title))
|
||||||
|
(list keyword
|
||||||
|
result
|
||||||
|
(bytes->path file)
|
||||||
|
label
|
||||||
|
title)]
|
||||||
|
[else (fail)]))
|
||||||
|
l))))
|
||||||
|
|
||||||
(define (parse-txt-file doc ht handle-one)
|
(define (parse-txt-file doc ht handle-one)
|
||||||
(with-hash-table
|
(with-hash-table
|
||||||
ht
|
ht
|
||||||
|
|
Loading…
Reference in New Issue
Block a user