1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-29 23:40:45 +00:00

Add warning when serving a non-existent wiki folder

The warning will be yellow to make it noticeable
This commit is contained in:
Jermolene 2014-10-21 19:31:29 +01:00
parent 5d600ce31b
commit e62e38d66c

View File

@ -17,7 +17,7 @@ if(!$tw.browser) {
fs = require("fs"), fs = require("fs"),
url = require("url"), url = require("url"),
path = require("path"), path = require("path"),
http = require("http"); http = require("http");
} }
exports.info = { exports.info = {
@ -278,6 +278,9 @@ var Command = function(params,commander,callback) {
}; };
Command.prototype.execute = function() { Command.prototype.execute = function() {
if(!$tw.boot.wikiTiddlersPath) {
$tw.utils.warning("Warning: Wiki folder '" + $tw.boot.wikiPath + "' does not exist");
}
var port = this.params[0] || "8080", var port = this.params[0] || "8080",
rootTiddler = this.params[1] || "$:/core/save/all", rootTiddler = this.params[1] || "$:/core/save/all",
renderType = this.params[2] || "text/plain", renderType = this.params[2] || "text/plain",