Support GET and HEAD.

pull/449/head
Chad Weider 2012-01-29 12:57:49 -08:00
parent a09e208b0a
commit a5365f2547
2 changed files with 12 additions and 4 deletions

View File

@ -155,7 +155,7 @@ async.waterfall([
});
//serve minified files
app.get('/minified/:filename', minify.minifyJS);
app.all('/minified/:filename', minify.minifyJS);
//checks for padAccess
function hasPadAccess(req, res, callback)

View File

@ -85,10 +85,18 @@ function _handle(req, res, jsFilename, jsFiles) {
res.writeHead(304, {});
res.end();
} else {
if (settings.minify) {
respondMinified();
if (req.method == 'HEAD') {
res.writeHead(200, {});
res.end();
} else if (req.method == 'GET') {
if (settings.minify) {
respondMinified();
} else {
respondRaw();
}
} else {
respondRaw();
res.writeHead(405, {'allow': 'HEAD, GET'});
res.end();
}
}
});