forked from cadence/breezewiki
'
This commit is contained in:
parent
881b95bde3
commit
85e23c803a
1 changed files with 5 additions and 5 deletions
|
@ -32,14 +32,14 @@
|
||||||
(log-outgoing image-url)
|
(log-outgoing image-url)
|
||||||
(define dest-res (easy:head image-url #:timeouts timeouts))
|
(define dest-res (easy:head image-url #:timeouts timeouts))
|
||||||
(define content-type (easy:response-headers-ref dest-res 'Content-Type))
|
(define content-type (easy:response-headers-ref dest-res 'Content-Type))
|
||||||
`(cond
|
(cond
|
||||||
[(eq? content-type #f) ""]
|
[(eq? content-type #f) ""]
|
||||||
[(regexp-match? #rx"^image/" content-type)
|
[(regexp-match? #rx"^image/" content-type)
|
||||||
(img (@ (src ,(u-proxy-url image-url))))]
|
'(img (@ (src ,(u-proxy-url image-url))))]
|
||||||
[(regexp-match? #rx"^audio/" content-type)
|
[(regexp-match? #rx"^audio/" content-type)
|
||||||
(audio (@ (src ,(u-proxy-url image-url)) (controls)))]
|
'(audio (@ (src ,(u-proxy-url image-url)) (controls)))]
|
||||||
[(regexp-match? #rx"^video/" content-type)
|
[(regexp-match? #rx"^video/" content-type)
|
||||||
(video (@ (src ,(u-proxy-url image-url)) (controls)))]
|
'(video (@ (src ,(u-proxy-url image-url)) (controls)))]
|
||||||
[else ""]))
|
[else ""]))
|
||||||
|
|
||||||
(define (generate-results-page
|
(define (generate-results-page
|
||||||
|
@ -67,7 +67,7 @@
|
||||||
`(div
|
`(div
|
||||||
,(if (non-empty-string? video-embed-code)
|
,(if (non-empty-string? video-embed-code)
|
||||||
(update-tree-wiki (html->xexp (preprocess-html-wiki video-embed-code)) wikiname)
|
(update-tree-wiki (html->xexp (preprocess-html-wiki video-embed-code)) wikiname)
|
||||||
(html-from-url image-url))
|
`(html-from-url image-url))
|
||||||
(p
|
(p
|
||||||
,(if (non-empty-string? video-embed-code)
|
,(if (non-empty-string? video-embed-code)
|
||||||
`""
|
`""
|
||||||
|
|
Loading…
Reference in a new issue