mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-25 18:07:31 +09:00
12 lines
336 B
Text
12 lines
336 B
Text
|
|
function handleRequest(request, response) {
|
||
|
|
response.setHeader("Content-Type", "application/xslt+xml", false);
|
||
|
|
response.setHeader("Access-Control-Allow-Origin", "*");
|
||
|
|
|
||
|
|
var body = request.queryString;
|
||
|
|
if (!body) {
|
||
|
|
response.setStatusLine(null, 500, "Invalid querystring");
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
response.write(unescape(body));
|
||
|
|
}
|