manipulate scribble --redirect option as URL instead of string

svn: r12229

original commit: 791a911198a8248255981c304c3d0b32eb606942
This commit is contained in:
Matthew Flatt 2008-11-04 11:55:51 +00:00
parent fa3a1de098
commit 1e26551bb6

View File

@ -847,12 +847,19 @@
`((a [(href
,(if (and ext? external-tag-path)
;; Redirected to search:
(format "~a;tag=~a"
external-tag-path
(base64-encode
(string->bytes/utf-8
(format "~a" (serialize
(link-element-tag e))))))
(url->string
(let ([u (string->url external-tag-path)])
(struct-copy
url
u
[query
(cons (cons 'tag
(bytes->string/utf-8
(base64-encode
(string->bytes/utf-8
(format "~a" (serialize
(link-element-tag e)))))))
(url-query u))])))
;; Normal link:
(format "~a~a~a"
(from-root (relative->path (dest-path dest))