mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
13 lines
439 B
Plaintext
13 lines
439 B
Plaintext
|
function handleRequest(request, response)
|
||
|
{
|
||
|
var self = Components.classes["@mozilla.org/file/local;1"]
|
||
|
.createInstance(Components.interfaces.nsILocalFile);
|
||
|
self.initWithPath(getState("__LOCATION__"));
|
||
|
var dest = self.parent;
|
||
|
dest.append("\u263a.ico");
|
||
|
if (dest.exists())
|
||
|
dest.remove(false);
|
||
|
response.setStatusLine(request.httpVersion, 200, "OK");
|
||
|
response.setHeader("Content-Type", "text/html");
|
||
|
}
|