original commit: 6d07ed1794a7fd5213cfded1968599770289235b
This commit is contained in:
Robby Findler 2004-03-27 16:39:14 +00:00
parent fbbd4dc9c4
commit 491406fe7c

View File

@ -76,7 +76,7 @@
txt-doc-names))) txt-doc-names)))
(set! doc-kinds (append (map (lambda (x) 'html) std-docs) (map (lambda (x) 'text) txt-docs))) (set! doc-kinds (append (map (lambda (x) 'html) std-docs) (map (lambda (x) 'text) txt-docs)))
(with-handlers ([not-break-exn? (lambda (x) (set! doc-collection-date 'none))]) (with-handlers ([exn:fail:filesystem? (lambda (x) (set! doc-collection-date 'none))])
(set! doc-collection-date (set! doc-collection-date
(file-or-directory-modify-seconds (file-or-directory-modify-seconds
(collection-path "doc"))))) (collection-path "doc")))))
@ -123,7 +123,8 @@
html-keywords html-keywords
doc doc
(lambda () (lambda ()
(with-handlers ([not-break-exn? (lambda (x) null)]) (with-handlers ([exn:fail:read? (lambda (x) null)]
[exn:fail:filesystem? (lambda (x) null)])
(transform-keywords (transform-keywords
(with-input-from-file (build-path doc "keywords") (with-input-from-file (build-path doc "keywords")
read)))))) read))))))
@ -134,7 +135,8 @@
html-indices html-indices
doc doc
(lambda () (lambda ()
(with-handlers ([not-break-exn? (lambda (x) null)]) (with-handlers ([exn:fail:read? (lambda (x) null)]
[exn:fail:filesystem? (lambda (x) null)])
(transform-hdindex (transform-hdindex
(with-input-from-file (build-path doc "hdindex") (with-input-from-file (build-path doc "hdindex")
read)))))) read))))))
@ -185,8 +187,7 @@
ht ht
doc doc
(lambda () (lambda ()
(with-handlers (with-handlers ([exn:fail:filesystem? (lambda (x) null)])
([not-break-exn? (lambda (x) null)])
(with-input-from-file doc (with-input-from-file doc
(lambda () (lambda ()
(let loop ([start 0]) (let loop ([start 0])
@ -211,7 +212,7 @@
(let/ec k (let/ec k
(let* ([p (open-input-string (substring r 1 (string-length r)))] (let* ([p (open-input-string (substring r 1 (string-length r)))]
[entry (parameterize ([read-accept-bar-quote #f]) [entry (parameterize ([read-accept-bar-quote #f])
(with-handlers ([not-break-exn? (with-handlers ([exn:fail:read?
(lambda (x) (lambda (x)
(k null))]) (k null))])
(read p)))] (read p)))]
@ -224,7 +225,7 @@
(loop (car entry)))] (loop (car entry)))]
[else (error "bad entry")]))] [else (error "bad entry")]))]
[content (if (symbol? entry) [content (if (symbol? entry)
(with-handlers ([not-break-exn? (lambda (x) #f)]) (with-handlers ([exn:fail:read? (lambda (x) #f)])
(let ([s (read p)]) (let ([s (read p)])
(if (eq? s '::) (if (eq? s '::)
(read p) (read p)
@ -463,7 +464,7 @@
; Content Search ; Content Search
(unless (or (< search-level 2) exact? (null? finds)) (unless (or (< search-level 2) exact? (null? finds))
(let ([files (case doc-kind (let ([files (case doc-kind
[(html) (with-handlers ([not-break-exn? (lambda (x) null)]) [(html) (with-handlers ([exn:fail:filesystem? (lambda (x) null)])
(map (lambda (x) (build-path doc x)) (map (lambda (x) (build-path doc x))
(filter (filter
(lambda (x) (file-exists? (build-path doc x))) (lambda (x) (file-exists? (build-path doc x)))
@ -472,7 +473,7 @@
[else null])]) [else null])])
(for-each (for-each
(lambda (f) (lambda (f)
(with-handlers ([not-break-exn? (lambda (x) #f)]) (with-handlers ([exn:fail:filesystem? (lambda (x) #f)])
(with-input-from-file f (with-input-from-file f
(lambda () (lambda ()
(let loop () (let loop ()