Skip to content

Commit

Permalink
Merge pull request ether#541 from cweider/fix-minify
Browse files Browse the repository at this point in the history
Fix minify
  • Loading branch information
cweider committed Mar 11, 2012
2 parents 667df3f + 2954824 commit 6fe4034
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion node/utils/Minify.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,10 @@ function getAceFile(callback) {
var request = require('request');

var baseURI = 'http://localhost:' + settings.port
var resourceURI = baseURI + path.normalize(path.join('/static/', filename));
resourceURI = resourceURI.replace(/\\/g, '/'); // Windows (safe generally?)

request(baseURI + path.normalize(path.join('/static/', filename)), function (error, response, body) {
request(resourceURI, function (error, response, body) {
if (!error && response.statusCode == 200) {
data += 'Ace2Editor.EMBEDED[' + JSON.stringify(filename) + '] = '
+ JSON.stringify(body || '') + ';\n';
Expand Down
4 changes: 2 additions & 2 deletions node/utils/caching_middleware.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ CachingMiddleware.prototype = new function () {
var modifiedSince = (req.headers['if-modified-since']
&& new Date(req.headers['if-modified-since']));
var lastModifiedCache = !error && stats.mtime;
if (lastModifiedCache) {
if (lastModifiedCache && responseCache[cacheKey]) {
req.headers['if-modified-since'] = lastModifiedCache.toUTCString();
} else {
delete req.headers['if-modified-since'];
Expand Down Expand Up @@ -83,7 +83,7 @@ CachingMiddleware.prototype = new function () {
&& new Date(res.getHeader('last-modified')));

res.writeHead = old_res.writeHead;
if (status == 200 || status == 404) {
if (status == 200) {
// Update cache
var buffer = '';

Expand Down

0 comments on commit 6fe4034

Please sign in to comment.