1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-10-01 16:30:46 +00:00

Fixed handling of deleting tiddlers over HTTP

This commit is contained in:
Jeremy Ruston 2013-03-11 10:04:44 +00:00
parent bf2fb9cdad
commit 6b78352764

View File

@ -74,10 +74,16 @@ console.log("PUT tiddler",title,fields)
}); });
break; break;
case "DELETE": case "DELETE":
console.log("DELETE tiddler",requestPath.substr(1)) var prefix = "/tiddlers/";
// self.commander.wiki.deleteTiddler(decodeURIComponent(requestPath.substr(1))); if(requestPath.indexOf(prefix) === 0) {
response.writeHead(204, "OK"); console.log("DELETE tiddler",requestPath.substr(prefix.length))
response.end(); // self.commander.wiki.deleteTiddler(decodeURIComponent(requestPath.substr(prefix.length)));
response.writeHead(204, "OK");
response.end();
} else {
response.writeHead(404);
response.end();
}
break; break;
case "GET": case "GET":
if(requestPath === "/") { if(requestPath === "/") {