; *** Warning: does not currently urlencode args, so if need to do
; that replace v with (urlencode v).
(def reassemble-args (req)
(aif (req 'args)
(apply string "?" (intersperse '&
(map (fn ((k v))
(string k '= v))
it)))
""))
From srv.arc
©