File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
http-easy-test/net/http-easy/private Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 56
56
[(list name value)
57
57
(cons (string->symbol name) value)]
58
58
[(list name)
59
- (cons (string->symbol name) #f )]))
59
+ (cons (string->symbol name) #f )]
60
+ [(list name value ... ) ;; noqa
61
+ (cons (string->symbol name)
62
+ (string-join value "= " ))]))
60
63
null)])
61
64
(url/literal scheme user host port abs? path query fragment)))
62
65
129
132
(or (and (> num-%-matches 0 )
130
133
(= num-%-matches (length (regexp-match* #px"%[a-fA-F0-9]{2} " s))))
131
134
(and (eq? encode form-urlencoded-encode)
132
- (regexp-match? #rx"[+] " s))))
135
+ (regexp-match? #rx"[+= ] " s))))
133
136
134
137
(define (ipv6-host? s)
135
138
(regexp-match? #rx"^[0-9a-fA-F:]*:[0-9a-fA-F:]*$ " s))
Original file line number Diff line number Diff line change 1
1
#lang info
2
2
3
3
(define license 'BSD-3-Clause )
4
- (define version "0.8.4 " )
4
+ (define version "0.8.5 " )
5
5
(define collection "net " )
6
6
(define deps
7
7
'(["base " #:version "8.1.0.4 " ]
Original file line number Diff line number Diff line change 67
67
("http://example.com/a%2Bb.mp3 " . "http://example.com/a%2Bb.mp3 " )
68
68
("http://example.com/a%2Bb.mp3?c=d+e " . "http://example.com/a%2Bb.mp3?c=d+e " )
69
69
("http://example.com/a%2Bb.mp3?c=d+e&f&g=h " . "http://example.com/a%2Bb.mp3?c=d+e&f&g=h " )
70
+ ("https://yleawsaudioipv4.akamaized.net/download/world/78-e0812afa331548619c40a31f60a2d6c3/audio-1742305456621.mp3/filename/Nyhetspodden-Alla-vill-ha-Gronland--men-vad-vill-gronlanningarna-sjalva-2025-03-19.mp3?hdnts=exp=1742456407~acl=/download/world/78-e0812afa331548619c40a31f60a2d6c3/audio-1742305456621.mp3/filename/Nyhetspodden-Alla-vill-ha-Gronland--men-vad-vill-gronlanningarna-sjalva-2025-03-19.mp3~hmac=4cf1fae52a5f2aea1a12f2d677c364668a893b311a4ed761d9d7c259b229841a "
71
+ . "https://yleawsaudioipv4.akamaized.net/download/world/78-e0812afa331548619c40a31f60a2d6c3/audio-1742305456621.mp3/filename/Nyhetspodden-Alla-vill-ha-Gronland--men-vad-vill-gronlanningarna-sjalva-2025-03-19.mp3?hdnts=exp=1742456407~acl=/download/world/78-e0812afa331548619c40a31f60a2d6c3/audio-1742305456621.mp3/filename/Nyhetspodden-Alla-vill-ha-Gronland--men-vad-vill-gronlanningarna-sjalva-2025-03-19.mp3~hmac=4cf1fae52a5f2aea1a12f2d677c364668a893b311a4ed761d9d7c259b229841a " )
70
72
("a/b/c " . "a/b/c " )
71
73
("/a/b/c " . "/a/b/c " )
72
74
("/a;b;c " . "/a;b;c " )))
You can’t perform that action at this time.
0 commit comments