File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
http-easy-test/net/http-easy/private Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 108
108
(loop (cdr path-components)))))
109
109
(unless (null? query)
110
110
(write-char #\? out)
111
- (for ([pair (in-list query)])
111
+ (for ([(pair idx) (in-indexed (in-list query))])
112
+ (unless (zero? idx)
113
+ (write-char #\& out))
112
114
(match-define (cons (app symbol->string name) value) pair)
113
115
(write-string (maybe-percent-encode name form-urlencoded-encode) out)
114
116
(when value
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
+ (define version "0.8.1 " )
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 66
66
("http://example.com/a/b/c " . "http://example.com/a/b/c " )
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%2Be " )
69
+ ("http://example.com/a%2Bb.mp3?c=d+e&f&g=h " . "http://example.com/a%2Bb.mp3?c=d%2Be&f&g=h " )
69
70
("a/b/c " . "a/b/c " )
70
71
("/a/b/c " . "/a/b/c " )
71
72
("/a;b;c " . "/a;b;c " )))
You can’t perform that action at this time.
0 commit comments