Open C-Entropy opened 3 years ago
See this:
(list ... :path-info (quri:url-decode (uri-path quri) :lenient t) ... )
:path-info will be "/calculator/3/2" for "http://www.franz.com/calculator/3%2f2" But what I want is ("calculator" "3/2"). See this for more info. How do I get ("calculator" "3/2") in this case?
"/calculator/3/2"
"http://www.franz.com/calculator/3%2f2"
("calculator" "3/2")
See this:
:path-info will be
"/calculator/3/2"
for"http://www.franz.com/calculator/3%2f2"
But what I want is("calculator" "3/2")
. See this for more info. How do I get("calculator" "3/2")
in this case?