Skip to content

Instantly share code, notes, and snippets.

@geelen
Created April 13, 2009 17:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save geelen/94550 to your computer and use it in GitHub Desktop.
Save geelen/94550 to your computer and use it in GitHub Desktop.
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Request Details</title>
</head>
<body>
<div>
{
List(("Method", method),
("URI Path", uri.path.mkString),
("URI Query String", uri.queryString map (_.mkString) getOrElse <i>N/A</i>),
("Version (major)", versionMajor.toLong),
("Version (minor)", versionMinor.toLong)) map {
case (k, v) =>
<div>{ k }</div>
<h4>{ v }</h4>
}
}
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment