Login
Artifact [2a13124755]
Login

Artifact 2a131247552be3f84b501df414143f1ebbfa7793:


const CGI = api.cgi

CGI.isLocalServer || throw api.Exception(Fossil.rc.ACCESS, "This page only runs in local server mode.")
const R = CGI.request
const rc = object{
  ENV: R.ENV,
  GET: R.GET,
  POST: R.POST,
  COOKIES: R.COOKIES
}


rc.ENV.sortProperties()
Fossil.sorter(rc.COOKIES)
$out {<div class='code'>}
$out [CGI.htmlEscape [CGI.toJSONString rc]]
$out {</div>}