mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 15:46:18 +00:00
33eef0202d
* call self.displayError
* Revert "call self.displayError"
This reverts commit 5d599aa979
.
* fixes decodeURI & decodeURIComponent
29 lines
572 B
JavaScript
29 lines
572 B
JavaScript
/*\
|
|
title: $:/core/modules/server/routes/delete-tiddler.js
|
|
type: application/javascript
|
|
module-type: route
|
|
|
|
DELETE /recipes/default/tiddlers/:title
|
|
|
|
\*/
|
|
(function() {
|
|
|
|
/*jslint node: true, browser: true */
|
|
/*global $tw: false */
|
|
"use strict";
|
|
|
|
exports.method = "DELETE";
|
|
|
|
exports.path = /^\/bags\/default\/tiddlers\/(.+)$/;
|
|
|
|
exports.handler = function(request,response,state) {
|
|
var title = $tw.utils.decodeURIComponentSafe(state.params[0]);
|
|
state.wiki.deleteTiddler(title);
|
|
response.writeHead(204, "OK", {
|
|
"Content-Type": "text/plain"
|
|
});
|
|
response.end();
|
|
};
|
|
|
|
}());
|