cavespider guile setup load file
This commit is contained in:
parent
c2128a40cf
commit
337c30fd09
|
@ -43,14 +43,16 @@
|
|||
(define keyword (symbol->string (read)))
|
||||
(newline)
|
||||
|
||||
(let ((file-contents (file->string (string-append dir-filename "/" "index.html"))));;FIXME dir
|
||||
;; (do ((url-list (file-contents->url file-contents 0)
|
||||
;; (file-contents->url file-contents 0)))
|
||||
(let ((file-contents (file->string (string-append dir-filename "/" "index.html")))
|
||||
(htable (make-hash-table HASHTABLESIZE))
|
||||
(url-list (file-contents->url file-contents 0)))
|
||||
|
||||
(let ((hostname-list '())
|
||||
(keywordl '())
|
||||
(url-list (file-contents->url file-contents 0)))
|
||||
(keywordl '()))
|
||||
|
||||
(set! hostname-list (url->hostname url-list hostname-list));;FIXME url-list
|
||||
(display hostname-list)
|
||||
(file-contents->keyword file-contents keyword)
|
||||
(set! keywordl (file-contents->keyword file-contents keyword))
|
||||
(display keywordl)
|
||||
(hash-set! htable keyword file-contents)
|
||||
))
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
; (if (eq? c #\y)
|
||||
; (load "string-util-alt.scm")
|
||||
; (begin
|
||||
; (load "hash-util.scm")
|
||||
(load "hash-util.scm")
|
||||
(load "string-util.scm")
|
||||
;)))
|
||||
|
||||
|
|
Loading…
Reference in New Issue