1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-11-23 18:17:20 +00:00

Fixes for upload saver

This commit is contained in:
Jeremy Ruston 2012-07-13 13:53:51 +01:00
parent 3b86f76bab
commit 85068ab0b3

View File

@ -26,6 +26,11 @@ UploadSaver.prototype.save = function(text) {
password = $tw.utils.getPassword("upload"),
uploadDir = ".",
url = this.wiki.getTextReference("$:/UploadURL");
// Bail out if we don't have the bits we need
if(!userName || userName.toString().trim() === "" || !password || password.toString().trim() === "") {
return false;
}
// Construct the url if not provided
if(!url) {
url = "http://" + userName + ".tiddlyspot.com/store.cgi";
}
@ -68,7 +73,7 @@ UploadSaver.prototype.info = {
Static method that returns true if this saver is capable of working
*/
exports.canSave = function(wiki) {
return wiki.tiddlerExists("$:/UploadName");
return true;
};
/*