render non-installaction-scoped package docs with an indirection
The indirection uses a "local-redirect.js" script to rewrite the document links to local links within the browser. This mechanism is a step towards distributing compiled packages that include already-built documentation, where paths to other documentation can be different than in the build environment. If the links are not rewritten, they are queries to "pkg-docs.racket-lang.org", with the idea tha such a server will exist for reading all package documentation online. Also, a package's documentation that refer to documentation for uninstalled packages, in which case the corresponding links will not get rewritten and will continue to point to the server. Rendering the "local-redirect.js" script spends a lot of time just converting among different path formats. Various library changes in this commit are aimed at speed up those conversions, but the big improvement came from a `path->url-string' that shortcuts conversion os simple Unix paths. original commit: 9361b1e709bc7a75822c7da68530cbe0fef4ae28
This commit is contained in:
parent
76a79e3536
commit
fff0344f4e
|
@ -177,7 +177,7 @@
|
||||||
(extract-style-style-files (compound-paragraph-style p) ht pred extract)
|
(extract-style-style-files (compound-paragraph-style p) ht pred extract)
|
||||||
(extract-flow-style-files (compound-paragraph-blocks p) d ri ht pred extract)]
|
(extract-flow-style-files (compound-paragraph-blocks p) d ri ht pred extract)]
|
||||||
[(delayed-block? p)
|
[(delayed-block? p)
|
||||||
(let ([v ((delayed-block-resolve p) this d ri)])
|
(let ([v (delayed-block-blocks p ri)])
|
||||||
(extract-block-style-files v d ri ht pred extract))]
|
(extract-block-style-files v d ri ht pred extract))]
|
||||||
[(traverse-block? p)
|
[(traverse-block? p)
|
||||||
(extract-block-style-files (traverse-block-block p ri) d ri ht pred extract)]
|
(extract-block-style-files (traverse-block-block p ri) d ri ht pred extract)]
|
||||||
|
|
|
@ -726,8 +726,9 @@
|
||||||
|
|
||||||
(provide/contract
|
(provide/contract
|
||||||
[table-of-contents (-> delayed-block?)]
|
[table-of-contents (-> delayed-block?)]
|
||||||
; XXX Should have a style/c contract
|
[local-table-of-contents (()
|
||||||
[local-table-of-contents (() (#:style any/c) . ->* . delayed-block?)])
|
(#:style (or/c style? string? symbol? (listof symbol?) #f))
|
||||||
|
. ->* . delayed-block?)])
|
||||||
|
|
||||||
(define (table-of-contents)
|
(define (table-of-contents)
|
||||||
(make-delayed-block
|
(make-delayed-block
|
||||||
|
|
|
@ -76,7 +76,12 @@
|
||||||
(resolve-get* part ri key search-key))
|
(resolve-get* part ri key search-key))
|
||||||
|
|
||||||
(define (resolve-get-keys part ri key-pred)
|
(define (resolve-get-keys part ri key-pred)
|
||||||
(for/list ([k (in-hash-keys (collected-info-info (part-collected-info part ri)))]
|
(for/list ([k (in-hash-keys (if part
|
||||||
|
(collected-info-info (part-collected-info part ri))
|
||||||
|
(let ([ci (resolve-info-ci ri)])
|
||||||
|
;; Force all xref info:
|
||||||
|
((collect-info-ext-demand ci) #f ci)
|
||||||
|
(collect-info-ext-ht ci))))]
|
||||||
#:when (key-pred k))
|
#:when (key-pred k))
|
||||||
k))
|
k))
|
||||||
|
|
||||||
|
|
|
@ -131,9 +131,10 @@
|
||||||
(if (< v 16) (string-append "0" s) s)))
|
(if (< v 16) (string-append "0" s) s)))
|
||||||
c))))
|
c))))
|
||||||
|
|
||||||
(define (style->attribs style)
|
(define (style->attribs style [extras null])
|
||||||
(let ([a (apply
|
(let ([a (apply
|
||||||
append
|
append
|
||||||
|
extras
|
||||||
(map (lambda (v)
|
(map (lambda (v)
|
||||||
(cond
|
(cond
|
||||||
[(attributes? v)
|
[(attributes? v)
|
||||||
|
@ -350,6 +351,10 @@
|
||||||
(define/public (set-external-root-url p)
|
(define/public (set-external-root-url p)
|
||||||
(set! external-root-url p))
|
(set! external-root-url p))
|
||||||
|
|
||||||
|
(define extra-script-files null)
|
||||||
|
(define/public (add-extra-script-file s)
|
||||||
|
(set! extra-script-files (cons s extra-script-files)))
|
||||||
|
|
||||||
(define (try-relative-to-external-root dest)
|
(define (try-relative-to-external-root dest)
|
||||||
(cond
|
(cond
|
||||||
[(let ([rel (find-relative-path
|
[(let ([rel (find-relative-path
|
||||||
|
@ -385,6 +390,22 @@
|
||||||
(and (not (dest-page? dest))
|
(and (not (dest-page? dest))
|
||||||
(anchor-name (dest-anchor dest))))])))
|
(anchor-name (dest-anchor dest))))])))
|
||||||
|
|
||||||
|
(define/public (tag->url-string ri tag #:absolute? [abs? #f])
|
||||||
|
;; Called externally; not used internally
|
||||||
|
(let-values ([(dest ext?) (resolve-get/ext? #f ri tag)])
|
||||||
|
(cond [(not dest) ""]
|
||||||
|
[else (dest->url dest abs?)])))
|
||||||
|
|
||||||
|
(define/public (tag->query-string tag)
|
||||||
|
(define (simple? s)
|
||||||
|
(or (symbol? s)
|
||||||
|
(string? s)
|
||||||
|
(number? s)
|
||||||
|
(and (list? s) (andmap simple? s))))
|
||||||
|
(anchor-name (format "~s" (if (simple? tag)
|
||||||
|
tag
|
||||||
|
(serialize tag)))))
|
||||||
|
|
||||||
;; ----------------------------------------
|
;; ----------------------------------------
|
||||||
|
|
||||||
(define/private (reveal-subparts? p) ;!!! need to use this
|
(define/private (reveal-subparts? p) ;!!! need to use this
|
||||||
|
@ -393,13 +414,15 @@
|
||||||
(define/public (toc-wrap table)
|
(define/public (toc-wrap table)
|
||||||
null)
|
null)
|
||||||
|
|
||||||
(define/private (dest->url dest)
|
(define/private (dest->url dest [abs? #f])
|
||||||
(if dest
|
(if dest
|
||||||
(format "~a~a~a"
|
(format "~a~a~a"
|
||||||
(let ([p (relative->path (dest-path dest))])
|
(let ([p (relative->path (dest-path dest))])
|
||||||
(if (equal? p (current-output-file))
|
(if abs?
|
||||||
""
|
(path->url-string (path->complete-path p))
|
||||||
(from-root p (get-dest-directory))))
|
(if (equal? p (current-output-file))
|
||||||
|
""
|
||||||
|
(from-root p (get-dest-directory)))))
|
||||||
(if (dest-page? dest) "" "#")
|
(if (dest-page? dest) "" "#")
|
||||||
(if (dest-page? dest)
|
(if (dest-page? dest)
|
||||||
""
|
""
|
||||||
|
@ -711,12 +734,14 @@
|
||||||
(let ([p (lookup-path script-file alt-paths)])
|
(let ([p (lookup-path script-file alt-paths)])
|
||||||
(unless p (install-file script-file))
|
(unless p (install-file script-file))
|
||||||
(scribble-js-contents script-file p))))
|
(scribble-js-contents script-file p))))
|
||||||
(extract-part-style-files
|
(append
|
||||||
d
|
(extract-part-style-files
|
||||||
ri
|
d
|
||||||
(lambda (p) (part-whole-page? p ri))
|
ri
|
||||||
js-addition?
|
(lambda (p) (part-whole-page? p ri))
|
||||||
js-addition-path))
|
js-addition?
|
||||||
|
js-addition-path)
|
||||||
|
(reverse extra-script-files)))
|
||||||
,(xml:comment "[if IE 6]><style type=\"text/css\">.SIEHidden { overflow: hidden; }</style><![endif]")
|
,(xml:comment "[if IE 6]><style type=\"text/css\">.SIEHidden { overflow: hidden; }</style><![endif]")
|
||||||
,@(for/list ([p (style-properties (part-style d))]
|
,@(for/list ([p (style-properties (part-style d))]
|
||||||
#:when (head-extra? p))
|
#:when (head-extra? p))
|
||||||
|
@ -1017,14 +1042,14 @@
|
||||||
[(multiarg-element? e) (multiarg-element-style e)]
|
[(multiarg-element? e) (multiarg-element-style e)]
|
||||||
[else #f]))
|
[else #f]))
|
||||||
|
|
||||||
(define/private (content-attribs e)
|
(define/private (content-attribs e [extras null])
|
||||||
(let ([s (content-style e)])
|
(let ([s (content-style e)])
|
||||||
(if (style? s)
|
(if (style? s)
|
||||||
(element-style->attribs (style-name s) s)
|
(element-style->attribs (style-name s) s extras)
|
||||||
(element-style->attribs s #f))))
|
(element-style->attribs s #f extras))))
|
||||||
|
|
||||||
(define/override (render-content e part ri)
|
(define/override (render-content e part ri)
|
||||||
(define (attribs) (content-attribs e))
|
(define (attribs [extras null]) (content-attribs e extras))
|
||||||
(cond
|
(cond
|
||||||
[(string? e) (super render-content e part ri)] ; short-cut for common case
|
[(string? e) (super render-content e part ri)] ; short-cut for common case
|
||||||
[(list? e) (super render-content e part ri)] ; also a short-cut
|
[(list? e) (super render-content e part ri)] ; also a short-cut
|
||||||
|
@ -1157,17 +1182,14 @@
|
||||||
url
|
url
|
||||||
u
|
u
|
||||||
[query
|
[query
|
||||||
(cons (cons 'tag
|
(cons (cons 'tag (tag->query-string (link-element-tag e)))
|
||||||
(bytes->string/utf-8
|
|
||||||
(base64-encode
|
|
||||||
(string->bytes/utf-8
|
|
||||||
(format "~s" (serialize
|
|
||||||
(link-element-tag e)))))))
|
|
||||||
(url-query u))])))]
|
(url-query u))])))]
|
||||||
[else
|
[else
|
||||||
;; Normal link:
|
;; Normal link:
|
||||||
(dest->url dest)]))
|
(dest->url dest)]))
|
||||||
,@(attribs)
|
,@(attribs (if (and ext? external-tag-path)
|
||||||
|
'((class "Sq"))
|
||||||
|
null))
|
||||||
[data-pltdoc "x"]]
|
[data-pltdoc "x"]]
|
||||||
,@(if (empty-content? (element-content e))
|
,@(if (empty-content? (element-content e))
|
||||||
(render-content (strip-aux (dest-title dest)) part ri)
|
(render-content (strip-aux (dest-title dest)) part ri)
|
||||||
|
@ -1253,7 +1275,7 @@
|
||||||
,attribs
|
,attribs
|
||||||
,@content))))))
|
,@content))))))
|
||||||
|
|
||||||
(define/private (element-style->attribs name style)
|
(define/private (element-style->attribs name style [extras null])
|
||||||
(combine-class
|
(combine-class
|
||||||
(cond
|
(cond
|
||||||
[(symbol? name)
|
[(symbol? name)
|
||||||
|
@ -1274,8 +1296,10 @@
|
||||||
[(string? name) (if style null `([class ,name]))]
|
[(string? name) (if style null `([class ,name]))]
|
||||||
[else null])
|
[else null])
|
||||||
(if style
|
(if style
|
||||||
(style->attribs style)
|
(style->attribs style extras)
|
||||||
null)))
|
(if (pair? extras)
|
||||||
|
(style->attribs (make-style #f null) extras)
|
||||||
|
null))))
|
||||||
|
|
||||||
(define/override (render-table t part ri starting-item?)
|
(define/override (render-table t part ri starting-item?)
|
||||||
(define (make-row flows column-styles)
|
(define (make-row flows column-styles)
|
||||||
|
@ -1627,39 +1651,22 @@
|
||||||
;; ----------------------------------------
|
;; ----------------------------------------
|
||||||
;; utils
|
;; utils
|
||||||
|
|
||||||
(define (explode p)
|
(define (explode p) (explode-path p))
|
||||||
(reverse (let loop ([p p])
|
|
||||||
(let-values ([(base name dir?) (split-path p)])
|
|
||||||
(let ([name (if base
|
|
||||||
(if (path? name)
|
|
||||||
(path-element->string name)
|
|
||||||
name)
|
|
||||||
name)])
|
|
||||||
(if (path? base)
|
|
||||||
(cons name (loop base))
|
|
||||||
(list name)))))))
|
|
||||||
|
|
||||||
(define in-plt?
|
(define in-plt?
|
||||||
(let ([roots (map explode (filter values (list (find-doc-dir) (find-collects-dir))))])
|
(let ([roots (map explode (filter values (list (find-doc-dir) (find-collects-dir))))])
|
||||||
(lambda (path)
|
(lambda (path)
|
||||||
(ormap (lambda (root)
|
(for/or ([root (in-list roots)])
|
||||||
(let loop ([path path] [root root])
|
(let loop ([path path] [root root])
|
||||||
(or (null? root)
|
(or (null? root)
|
||||||
(and (pair? path)
|
(and (pair? path)
|
||||||
(equal? (car path) (car root))
|
(equal? (car path) (car root))
|
||||||
(loop (cdr path) (cdr root))))))
|
(loop (cdr path) (cdr root)))))))))
|
||||||
roots))))
|
|
||||||
|
|
||||||
(define exploded (make-weak-hash))
|
|
||||||
(define (explode/cache p)
|
|
||||||
(or (hash-ref exploded p #f)
|
|
||||||
(let ([v (explode p)])
|
|
||||||
(hash-set! exploded p v)
|
|
||||||
v)))
|
|
||||||
|
|
||||||
(define (from-root p d)
|
(define (from-root p d)
|
||||||
(define e-p (explode/cache (path->complete-path p (current-directory))))
|
(define c-p (path->complete-path p))
|
||||||
(define e-d (and d (explode/cache (path->complete-path d (current-directory)))))
|
(define e-p (explode c-p))
|
||||||
|
(define e-d (and d (explode (path->complete-path d))))
|
||||||
(define p-in? (in-plt? e-p))
|
(define p-in? (in-plt? e-p))
|
||||||
(define d-in? (and d (in-plt? e-d)))
|
(define d-in? (and d (in-plt? e-d)))
|
||||||
;; use an absolute link if the link is from outside the plt tree
|
;; use an absolute link if the link is from outside the plt tree
|
||||||
|
@ -1670,19 +1677,27 @@
|
||||||
"got a link from the PLT tree going out; ~e"
|
"got a link from the PLT tree going out; ~e"
|
||||||
p)]
|
p)]
|
||||||
[else #f])))
|
[else #f])))
|
||||||
(url->string (path->url (path->complete-path p)))
|
(path->url-string c-p)
|
||||||
(let loop ([e-d e-d] [e-p e-p])
|
(let loop ([e-d e-d] [e-p e-p])
|
||||||
(cond
|
(cond
|
||||||
[(null? e-d)
|
[(null? e-d)
|
||||||
(string-append*
|
(string-append*
|
||||||
(let loop ([e-p e-p])
|
(let loop ([e-p e-p])
|
||||||
(cond [(null? e-p) '("/")]
|
(cond [(null? e-p) '("/")]
|
||||||
[(null? (cdr e-p)) (list (car e-p))]
|
[(null? (cdr e-p)) (list (path->string (car e-p)))]
|
||||||
[(eq? 'same (car e-p)) (loop (cdr e-p))]
|
[(eq? 'same (car e-p)) (loop (cdr e-p))]
|
||||||
[(eq? 'up (car e-p)) (cons "../" (loop (cdr e-p)))]
|
[(eq? 'up (car e-p)) (cons "../" (loop (cdr e-p)))]
|
||||||
[else (cons (car e-p) (cons "/" (loop (cdr e-p))))])))]
|
[else (cons (path->string (car e-p)) (cons "/" (loop (cdr e-p))))])))]
|
||||||
[(equal? (car e-d) (car e-p)) (loop (cdr e-d) (cdr e-p))]
|
[(equal? (car e-d) (car e-p)) (loop (cdr e-d) (cdr e-p))]
|
||||||
[(eq? 'same (car e-d)) (loop (cdr e-d) e-p)]
|
[(eq? 'same (car e-d)) (loop (cdr e-d) e-p)]
|
||||||
[(eq? 'same (car e-p)) (loop e-d (cdr e-p))]
|
[(eq? 'same (car e-p)) (loop e-d (cdr e-p))]
|
||||||
[else (string-append (string-append* (map (lambda (x) "../") e-d))
|
[else (string-append (string-append* (map (lambda (x) "../") e-d))
|
||||||
(loop null e-p))]))))
|
(loop null e-p))]))))
|
||||||
|
|
||||||
|
(define (path->url-string p)
|
||||||
|
(if (eq? 'unix (path-convention-type p))
|
||||||
|
(let ([p (simplify-path p #f)])
|
||||||
|
(if (regexp-match? #rx#"^[-a-zA-Z0-9_/.]*$" (path->bytes p))
|
||||||
|
(string-append "file://" (path->string p))
|
||||||
|
(url->string (path->url p))))
|
||||||
|
(url->string (path->url p))))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user