mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
89b24f0880
--HG-- extra : rebase_source : ca2f34980d2bbdbbd34a6d389d766ec948a6b273
16 lines
552 B
JavaScript
16 lines
552 B
JavaScript
function handleRequest(request, response)
|
|
{
|
|
var auth = "";
|
|
try {
|
|
auth = request.getHeader("Authorization");
|
|
} catch(e) {}
|
|
|
|
if (auth == "Basic aHR0cHVzZXI6aHR0cHBhc3M=") {
|
|
response.setStatusLine("1.1", 200, "OK");
|
|
response.write("<html><head><title>http auth success</title></head><html>");
|
|
} else {
|
|
response.setStatusLine("1.1", 401, "Http authentication required");
|
|
response.setHeader("WWW-Authenticate", "Basic realm=\"http_realm\"");
|
|
response.write("<html><head><title>http auth failed</title></head><html>");
|
|
}
|
|
} |