gecko/mobile/android/base/tests/robocop_dynamic.sjs
2013-11-15 22:59:17 -08:00

19 lines
614 B
JavaScript

/**
* Dynamically generated page whose title matches the given id.
*/
function handleRequest(request, response) {
let id = request.queryString.match(/^id=(.*)$/)[1];
let key = "dynamic." + id;
response.setStatusLine(request.httpVersion, 200, null);
response.setHeader("Content-Type", "text/html", false);
response.setHeader("Cache-Control", "no-cache", false);
response.write('<html>');
response.write('<head><title>' + id + '</title><meta charset="utf-8"></head>');
response.write('<body>');
response.write('<h1>' + id + '</h1>');
response.write('</body>');
response.write('</html>');
}