зеркало из https://github.com/mozilla/pjs.git
7 строки
203 B
Plaintext
7 строки
203 B
Plaintext
|
function handleRequest(request, response)
|
||
|
{
|
||
|
response.setStatusLine("1.1", 302, "Found");
|
||
|
response.setHeader("Location", "red.png", false);
|
||
|
response.setHeader("Cache-Control", "no-cache", false);
|
||
|
}
|