mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-04-06 18:56:56 +00:00
fix whitespace
This commit is contained in:
parent
075c31f443
commit
13ceaf3b93
@ -170,4 +170,3 @@ Commander.initCommands = function(moduleType) {
|
||||
};
|
||||
|
||||
exports.Commander = Commander;
|
||||
|
||||
|
@ -34,4 +34,3 @@ exports.htmlVoidElements = "area,base,br,col,command,embed,hr,img,input,keygen,l
|
||||
exports.htmlBlockElements = "address,article,aside,audio,blockquote,canvas,dd,details,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,hr,li,nav,ol,p,pre,section,summary,table,tfoot,ul,video".split(",");
|
||||
|
||||
exports.htmlUnsafeElements = "script".split(",");
|
||||
|
||||
|
@ -178,4 +178,3 @@ var deserializeTiddlerDiv = function(text /* [,fields] */) {
|
||||
}
|
||||
return undefined;
|
||||
};
|
||||
|
||||
|
@ -67,7 +67,7 @@ function parseFilterOperation(operators,filterString,p) {
|
||||
operator.operands = [];
|
||||
var parseOperand = function(bracketType) {
|
||||
var operand = {};
|
||||
switch(bracketType) {
|
||||
switch (bracketType) {
|
||||
case "{": // Curly brackets
|
||||
operand.indirect = true;
|
||||
nextBracketPos = filterString.indexOf("}",p);
|
||||
@ -364,4 +364,3 @@ exports.compileFilter = function(filterString) {
|
||||
this.filterCacheCount++;
|
||||
return fnMeasured;
|
||||
};
|
||||
|
||||
|
@ -380,4 +380,3 @@ KeyboardManager.prototype.handleShortcutChanges = function(changedTiddlers) {
|
||||
};
|
||||
|
||||
exports.KeyboardManager = KeyboardManager;
|
||||
|
||||
|
@ -38,4 +38,3 @@ Language.prototype.getRawString = function(title) {
|
||||
};
|
||||
|
||||
exports.Language = Language;
|
||||
|
||||
|
@ -26,4 +26,3 @@ Run the macro
|
||||
exports.run = function(filter,spaces) {
|
||||
return this.wiki.getTiddlersAsJson(filter,$tw.utils.parseInt(spaces));
|
||||
};
|
||||
|
||||
|
@ -29,4 +29,3 @@ Run the macro
|
||||
exports.run = function(text,type,_canonical_uri) {
|
||||
return $tw.utils.makeDataUri(text,type,_canonical_uri);
|
||||
};
|
||||
|
||||
|
@ -25,4 +25,3 @@ Run the macro
|
||||
exports.run = function(format) {
|
||||
return $tw.utils.formatDateString(new Date(),format || "0hh:0mm, DDth MMM YYYY");
|
||||
};
|
||||
|
||||
|
@ -25,4 +25,3 @@ Run the macro
|
||||
exports.run = function(title) {
|
||||
return title + "-" + this.getStateQualifier();
|
||||
};
|
||||
|
||||
|
@ -22,4 +22,3 @@ Run the macro
|
||||
exports.run = function(source, root) {
|
||||
return $tw.utils.resolvePath(source, root);
|
||||
};
|
||||
|
||||
|
@ -30,4 +30,3 @@ exports.run = function(baseName,separator,template,startCount) {
|
||||
// options.prefix must be a string!
|
||||
return this.wiki.generateNewTitle(baseName, {"prefix": separator, "template": template, "startCount": startCount}).trim();
|
||||
};
|
||||
|
||||
|
@ -23,4 +23,3 @@ Run the macro
|
||||
exports.run = function() {
|
||||
return $tw.version;
|
||||
};
|
||||
|
||||
|
@ -33,5 +33,3 @@ exports["audio/ogg"] = AudioParser;
|
||||
exports["audio/mpeg"] = AudioParser;
|
||||
exports["audio/mp3"] = AudioParser;
|
||||
exports["audio/mp4"] = AudioParser;
|
||||
|
||||
|
||||
|
@ -66,5 +66,3 @@ var BinaryParser = function(type,text,options) {
|
||||
};
|
||||
|
||||
exports["application/octet-stream"] = BinaryParser;
|
||||
|
||||
|
||||
|
@ -11,7 +11,7 @@ The CSV text parser processes CSV files into a table wrapped in a scrollable wid
|
||||
|
||||
var CsvParser = function(type,text,options) {
|
||||
// Special handler for tab-delimited files
|
||||
if(type === 'text/tab-delimited-values' && !options.separator) {
|
||||
if (type === 'text/tab-delimited-values' && !options.separator) {
|
||||
options.separator = "\t";
|
||||
}
|
||||
|
||||
@ -55,5 +55,3 @@ var CsvParser = function(type,text,options) {
|
||||
|
||||
exports["text/csv"] = CsvParser;
|
||||
exports["text/tab-delimited-values"] = CsvParser;
|
||||
|
||||
|
||||
|
@ -31,5 +31,3 @@ var HtmlParser = function(type,text,options) {
|
||||
};
|
||||
|
||||
exports["text/html"] = HtmlParser;
|
||||
|
||||
|
||||
|
@ -40,5 +40,3 @@ exports["image/heif"] = ImageParser;
|
||||
exports["image/avif"] = ImageParser;
|
||||
exports["image/x-icon"] = ImageParser;
|
||||
exports["image/vnd.microsoft.icon"] = ImageParser;
|
||||
|
||||
|
||||
|
@ -381,4 +381,3 @@ exports.parseAttribute = function(source,pos) {
|
||||
node.end = pos;
|
||||
return node;
|
||||
};
|
||||
|
||||
|
@ -27,5 +27,3 @@ var ImageParser = function(type,text,options) {
|
||||
};
|
||||
|
||||
exports["application/pdf"] = ImageParser;
|
||||
|
||||
|
||||
|
@ -33,4 +33,3 @@ exports["video/ogg"] = VideoParser;
|
||||
exports["video/webm"] = VideoParser;
|
||||
exports["video/mp4"] = VideoParser;
|
||||
exports["video/quicktime"] = VideoParser;
|
||||
|
||||
|
@ -53,4 +53,3 @@ exports.parse = function() {
|
||||
}
|
||||
}];
|
||||
};
|
||||
|
||||
|
@ -51,4 +51,3 @@ exports.parse = function() {
|
||||
}]
|
||||
}];
|
||||
};
|
||||
|
||||
|
@ -49,4 +49,3 @@ exports.parse = function() {
|
||||
// Don't return any elements
|
||||
return [];
|
||||
};
|
||||
|
||||
|
@ -43,4 +43,3 @@ exports.parse = function() {
|
||||
// Don't return any elements
|
||||
return [];
|
||||
};
|
||||
|
||||
|
@ -33,4 +33,3 @@ exports.parse = function() {
|
||||
entity: dash
|
||||
}];
|
||||
};
|
||||
|
||||
|
@ -43,4 +43,3 @@ exports.parse = function() {
|
||||
children: tree
|
||||
}];
|
||||
};
|
||||
|
||||
|
@ -43,4 +43,3 @@ exports.parse = function() {
|
||||
children: tree
|
||||
}];
|
||||
};
|
||||
|
||||
|
@ -33,4 +33,3 @@ exports.parse = function() {
|
||||
// Return the entity
|
||||
return [{type: "entity", entity: this.match[0]}];
|
||||
};
|
||||
|
||||
|
@ -49,4 +49,3 @@ exports.parse = function() {
|
||||
}];
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -67,4 +67,3 @@ exports.parse = function() {
|
||||
}
|
||||
return [node];
|
||||
};
|
||||
|
||||
|
@ -66,4 +66,3 @@ exports.parse = function() {
|
||||
}
|
||||
return [node];
|
||||
};
|
||||
|
||||
|
@ -89,5 +89,3 @@ exports.parse = function() {
|
||||
}
|
||||
return parseTreeNodes;
|
||||
};
|
||||
|
||||
|
@ -53,4 +53,3 @@ exports.parse = function() {
|
||||
// Return the nodes
|
||||
return tree;
|
||||
};
|
||||
|
||||
|
@ -27,4 +27,3 @@ exports.parse = function() {
|
||||
this.parser.pos = this.matchRegExp.lastIndex;
|
||||
return [{type: "element", tag: "hr"}];
|
||||
};
|
||||
|
||||
|
@ -191,4 +191,3 @@ exports.isLegalTag = function(tag) {
|
||||
return true;
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -126,4 +126,3 @@ exports.parseImage = function(source,pos) {
|
||||
node.end = pos;
|
||||
return node;
|
||||
};
|
||||
|
||||
|
@ -47,4 +47,3 @@ exports.parse = function() {
|
||||
children: []
|
||||
}];
|
||||
};
|
||||
|
||||
|
@ -149,4 +149,3 @@ exports.parse = function() {
|
||||
// Return the root element of the list
|
||||
return [listStack[0]];
|
||||
};
|
||||
|
||||
|
@ -29,7 +29,7 @@ exports.findNextMatch = function(startPos) {
|
||||
var c = this.parser.source.charAt(nextCall.end);
|
||||
// Ensure EOL after parsed macro
|
||||
// If we didn't need to support IE, we'd just use /(?:\r?\n|$)/ym
|
||||
if((c === "") || (c === "\n") || ((c === "\r") && this.parser.source.charAt(nextCall.end+1) === "\n")) {
|
||||
if ((c === "") || (c === "\n") || ((c === "\r") && this.parser.source.charAt(nextCall.end+1) === "\n")) {
|
||||
this.nextCall = nextCall;
|
||||
return nextStart;
|
||||
}
|
||||
@ -49,4 +49,3 @@ exports.parse = function() {
|
||||
this.parser.pos = call.end;
|
||||
return [call];
|
||||
};
|
||||
|
||||
|
@ -42,4 +42,3 @@ exports.parse = function() {
|
||||
this.parser.pos = call.end;
|
||||
return [call];
|
||||
};
|
||||
|
||||
|
@ -85,4 +85,3 @@ exports.parse = function() {
|
||||
$tw.utils.addAttributeToParseTreeNode(parseTreeNodes[0],"value",text);
|
||||
return parseTreeNodes;
|
||||
};
|
||||
|
||||
|
@ -53,4 +53,3 @@ exports.parse = function() {
|
||||
orderedAttributes: orderedAttributes
|
||||
}];
|
||||
};
|
||||
|
||||
|
@ -61,4 +61,3 @@ exports.parse = function() {
|
||||
// No parse tree nodes to return
|
||||
return [];
|
||||
};
|
||||
|
||||
|
@ -113,4 +113,3 @@ exports.parseLink = function(source,pos) {
|
||||
node.end = closePos + 2;
|
||||
return node;
|
||||
};
|
||||
|
||||
|
@ -63,4 +63,3 @@ exports.parse = function() {
|
||||
}];
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -69,4 +69,3 @@ exports.parse = function() {
|
||||
children: tree
|
||||
}];
|
||||
};
|
||||
|
||||
|
@ -57,4 +57,3 @@ exports.parse = function() {
|
||||
// No parse tree nodes to return
|
||||
return [];
|
||||
};
|
||||
|
||||
|
@ -66,4 +66,3 @@ exports.parse = function() {
|
||||
}
|
||||
return tree;
|
||||
};
|
||||
|
||||
|
@ -51,4 +51,3 @@ exports.parse = function() {
|
||||
}
|
||||
return [node];
|
||||
};
|
||||
|
||||
|
@ -184,4 +184,3 @@ exports.parse = function() {
|
||||
}
|
||||
return [table];
|
||||
};
|
||||
|
||||
|
@ -82,4 +82,3 @@ exports.parse = function() {
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -80,4 +80,3 @@ exports.parse = function() {
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -79,4 +79,3 @@ exports.parse = function() {
|
||||
}];
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -65,4 +65,3 @@ exports.parse = function() {
|
||||
// No parse tree nodes to return
|
||||
return [];
|
||||
};
|
||||
|
||||
|
@ -61,4 +61,3 @@ exports.parse = function() {
|
||||
}]
|
||||
}];
|
||||
};
|
||||
|
||||
|
@ -33,4 +33,3 @@ exports.parse = function() {
|
||||
// Return the link without unwikilink character as plain text
|
||||
return [{type: "text", text: linkText.substr(1)}];
|
||||
};
|
||||
|
||||
|
@ -32,4 +32,3 @@ WikiRuleBase.prototype.findNextMatch = function(startPos) {
|
||||
};
|
||||
|
||||
exports.WikiRuleBase = WikiRuleBase;
|
||||
|
||||
|
@ -72,4 +72,3 @@ PluginSwitcher.prototype.switchPlugins = function() {
|
||||
};
|
||||
|
||||
exports.PluginSwitcher = PluginSwitcher;
|
||||
|
||||
|
@ -211,4 +211,3 @@ SaverHandler.prototype.updateDirtyStatus = function() {
|
||||
};
|
||||
|
||||
exports.SaverHandler = SaverHandler;
|
||||
|
||||
|
@ -8,8 +8,6 @@ Handles saving changes via the AndTidWiki Android app
|
||||
\*/
|
||||
|
||||
|
||||
/*jslint node: true, browser: true */
|
||||
/*global $tw: false, netscape: false, Components: false */
|
||||
"use strict";
|
||||
|
||||
var AndTidWiki = function(wiki) {
|
||||
@ -17,27 +15,27 @@ var AndTidWiki = function(wiki) {
|
||||
|
||||
AndTidWiki.prototype.save = function(text,method,callback,options) {
|
||||
var filename = options && options.variables ? options.variables.filename : null;
|
||||
if(method === "download") {
|
||||
if (method === "download") {
|
||||
// Support download
|
||||
if(window.twi.saveDownload) {
|
||||
if (window.twi.saveDownload) {
|
||||
try {
|
||||
window.twi.saveDownload(text,filename);
|
||||
} catch(err) {
|
||||
if(err.message === "Method not found") {
|
||||
if (err.message === "Method not found") {
|
||||
window.twi.saveDownload(text);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
var link = document.createElement("a");
|
||||
link.setAttribute("href","data:text/plain," + encodeURIComponent(text));
|
||||
if(filename) {
|
||||
if (filename) {
|
||||
link.setAttribute("download",filename);
|
||||
}
|
||||
document.body.appendChild(link);
|
||||
link.click();
|
||||
document.body.removeChild(link);
|
||||
}
|
||||
} else if(window.twi.saveWiki) {
|
||||
} else if (window.twi.saveWiki) {
|
||||
// Direct save in Tiddloid
|
||||
window.twi.saveWiki(text);
|
||||
} else {
|
||||
@ -86,4 +84,3 @@ Create an instance of this saver
|
||||
exports.create = function(wiki) {
|
||||
return new AndTidWiki(wiki);
|
||||
};
|
||||
|
||||
|
@ -15,7 +15,7 @@ and the saver may define
|
||||
var findSaver = function(window) {
|
||||
try {
|
||||
return window && window.$tw && window.$tw.customSaver;
|
||||
} catch(err) {
|
||||
} catch (err) {
|
||||
// Catching the exception is the most reliable way to detect cross-origin iframe errors.
|
||||
// For example, instead of saying that `window.parent.$tw` is undefined, Firefox will throw
|
||||
// Uncaught DOMException: Permission denied to access property "$tw" on cross-origin object
|
||||
|
@ -81,4 +81,3 @@ Create an instance of this saver
|
||||
exports.create = function(wiki) {
|
||||
return new DownloadSaver(wiki);
|
||||
};
|
||||
|
||||
|
@ -67,4 +67,3 @@ Create an instance of this saver
|
||||
exports.create = function(wiki) {
|
||||
return new FSOSaver(wiki);
|
||||
};
|
||||
|
||||
|
@ -80,7 +80,7 @@ GiteaSaver.prototype.save = function(text,method,callback) {
|
||||
callback: function(err,getResponseDataJson,xhr) {
|
||||
if(xhr.status === 404) {
|
||||
callback("Please ensure the branch in the Gitea repo exists");
|
||||
} else {
|
||||
}else{
|
||||
data["branch"] = branch;
|
||||
self.upload(uri + filename, use_put?"PUT":"POST", headers, data, callback);
|
||||
}
|
||||
@ -129,4 +129,3 @@ Create an instance of this saver
|
||||
exports.create = function(wiki) {
|
||||
return new GiteaSaver(wiki);
|
||||
};
|
||||
|
||||
|
@ -112,4 +112,3 @@ Create an instance of this saver
|
||||
exports.create = function(wiki) {
|
||||
return new GitHubSaver(wiki);
|
||||
};
|
||||
|
||||
|
@ -7,9 +7,6 @@ Saves wiki by pushing a commit to the GitLab REST API
|
||||
|
||||
\*/
|
||||
|
||||
|
||||
/*jslint node: true, browser: true */
|
||||
/*global $tw: true */
|
||||
"use strict";
|
||||
|
||||
/*
|
||||
@ -113,4 +110,3 @@ Create an instance of this saver
|
||||
exports.create = function(wiki) {
|
||||
return new GitLabSaver(wiki);
|
||||
};
|
||||
|
||||
|
@ -49,4 +49,3 @@ Create an instance of this saver
|
||||
exports.create = function(wiki) {
|
||||
return new ManualDownloadSaver(wiki);
|
||||
};
|
||||
|
||||
|
@ -52,4 +52,3 @@ Create an instance of this saver
|
||||
exports.create = function(wiki) {
|
||||
return new MsDownloadSaver(wiki);
|
||||
};
|
||||
|
||||
|
@ -94,7 +94,7 @@ PutSaver.prototype.save = function(text,method,callback) {
|
||||
} else if(status === 403) { // permission denied
|
||||
errorMsg = $tw.language.getString("Error/PutForbidden");
|
||||
}
|
||||
if(xhr.responseText) {
|
||||
if (xhr.responseText) {
|
||||
// treat any server response like a plain text error explanation
|
||||
errorMsg = errorMsg + "\n\n" + xhr.responseText;
|
||||
}
|
||||
@ -133,4 +133,3 @@ Create an instance of this saver
|
||||
exports.create = function(wiki) {
|
||||
return new PutSaver(wiki);
|
||||
};
|
||||
|
||||
|
@ -7,9 +7,6 @@ Handles saving changes via the TiddlyFox file extension
|
||||
|
||||
\*/
|
||||
|
||||
|
||||
/*jslint node: true, browser: true */
|
||||
/*global $tw: false, netscape: false, Components: false */
|
||||
"use strict";
|
||||
|
||||
var TiddlyFoxSaver = function(wiki) {
|
||||
@ -82,4 +79,3 @@ Create an instance of this saver
|
||||
exports.create = function(wiki) {
|
||||
return new TiddlyFoxSaver(wiki);
|
||||
};
|
||||
|
||||
|
@ -64,4 +64,3 @@ Create an instance of this saver
|
||||
exports.create = function(wiki) {
|
||||
return new TiddlyIESaver(wiki);
|
||||
};
|
||||
|
||||
|
@ -7,9 +7,6 @@ Handles saving changes via the TWEdit iOS app
|
||||
|
||||
\*/
|
||||
|
||||
|
||||
/*jslint node: true, browser: true */
|
||||
/*global $tw: false, netscape: false, Components: false */
|
||||
"use strict";
|
||||
|
||||
var TWEditSaver = function(wiki) {
|
||||
@ -87,4 +84,3 @@ exports.create = function(wiki) {
|
||||
if($tw.browser) {
|
||||
window.version = {title: "TiddlyWiki"};
|
||||
}
|
||||
|
||||
|
@ -28,7 +28,7 @@ UploadSaver.prototype.save = function(text,method,callback) {
|
||||
uploadWithUrlOnly = this.wiki.getTextReference("$:/UploadWithUrlOnly") || "no",
|
||||
url = this.wiki.getTextReference("$:/UploadURL");
|
||||
// Bail out if we don't have the bits we need
|
||||
if(uploadWithUrlOnly === "yes") {
|
||||
if (uploadWithUrlOnly === "yes") {
|
||||
// The url is good enough. No need for a username and password.
|
||||
// Assume the server uses some other kind of auth mechanism.
|
||||
if(!url || url.toString().trim() === "") {
|
||||
@ -104,4 +104,3 @@ Create an instance of this saver
|
||||
exports.create = function(wiki) {
|
||||
return new UploadSaver(wiki);
|
||||
};
|
||||
|
||||
|
@ -87,4 +87,3 @@ BasicAuthenticator.prototype.authenticateRequest = function(request,response,sta
|
||||
};
|
||||
|
||||
exports.AuthenticatorClass = BasicAuthenticator;
|
||||
|
||||
|
@ -342,8 +342,8 @@ Server.prototype.listen = function(port,host,prefix) {
|
||||
}
|
||||
// Warn if required plugins are missing
|
||||
var missing = [];
|
||||
for(var index=0; index<this.requiredPlugins.length; index++) {
|
||||
if(!this.wiki.getTiddler(this.requiredPlugins[index])) {
|
||||
for (var index=0; index<this.requiredPlugins.length; index++) {
|
||||
if (!this.wiki.getTiddler(this.requiredPlugins[index])) {
|
||||
missing.push(this.requiredPlugins[index]);
|
||||
}
|
||||
}
|
||||
@ -371,4 +371,3 @@ Server.prototype.listen = function(port,host,prefix) {
|
||||
};
|
||||
|
||||
exports.Server = Server;
|
||||
|
||||
|
@ -178,4 +178,3 @@ exports.startup = function() {
|
||||
}
|
||||
},false);
|
||||
};
|
||||
|
||||
|
@ -30,4 +30,3 @@ exports.startup = function(callback) {
|
||||
);
|
||||
commander.execute();
|
||||
};
|
||||
|
||||
|
@ -36,4 +36,3 @@ function setFavicon() {
|
||||
faviconLink.setAttribute("href",$tw.utils.makeDataUri(tiddler.fields.text,tiddler.fields.type,tiddler.fields._canonical_uri));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -51,4 +51,3 @@ exports.startup = function() {
|
||||
$tw.wiki.registerPluginTiddlers("info",[TITLE_INFO_PLUGIN]);
|
||||
$tw.wiki.unpackPluginTiddlers();
|
||||
};
|
||||
|
||||
|
@ -33,4 +33,3 @@ exports.startup = function() {
|
||||
$tw.wiki.initParsers();
|
||||
$tw.Commander.initCommands();
|
||||
};
|
||||
|
||||
|
@ -46,4 +46,3 @@ exports.startup = function() {
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
|
@ -117,4 +117,3 @@ exports.startup = function() {
|
||||
// Run any post-render startup actions
|
||||
$tw.rootWidget.invokeActionsByTag("$:/tags/StartupAction/PostRender");
|
||||
};
|
||||
|
||||
|
@ -125,4 +125,3 @@ exports.startup = function() {
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -145,4 +145,3 @@ exports.startup = function() {
|
||||
$tw.anim = new $tw.utils.Animator();
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -231,4 +231,3 @@ function updateLocationHash(options) {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -107,4 +107,3 @@ exports.startup = function() {
|
||||
// Close open windows when unloading main window
|
||||
$tw.addUnloadTask(closeAllWindows);
|
||||
};
|
||||
|
||||
|
@ -130,5 +130,3 @@ Story.prototype.storyNewTiddler = function(targetTitle) {
|
||||
};
|
||||
|
||||
exports.Story = Story;
|
||||
|
||||
|
||||
|
@ -114,4 +114,3 @@ ClassicStoryView.prototype.remove = function(widget) {
|
||||
};
|
||||
|
||||
exports.classic = ClassicStoryView;
|
||||
|
||||
|
@ -96,4 +96,3 @@ PopStoryView.prototype.remove = function(widget) {
|
||||
};
|
||||
|
||||
exports.pop = PopStoryView;
|
||||
|
||||
|
@ -51,7 +51,7 @@ ZoominListView.prototype.navigateTo = function(historyInfo) {
|
||||
// Abandon if the list entry isn't a DOM element (it might be a text node)
|
||||
if(!targetElement) {
|
||||
return;
|
||||
} else if(targetElement.nodeType === Node.TEXT_NODE) {
|
||||
} else if (targetElement.nodeType === Node.TEXT_NODE) {
|
||||
this.logTextNodeRoot(targetElement);
|
||||
return;
|
||||
}
|
||||
@ -136,7 +136,7 @@ ZoominListView.prototype.insert = function(widget) {
|
||||
// Abandon if the list entry isn't a DOM element (it might be a text node)
|
||||
if(!targetElement) {
|
||||
return;
|
||||
} else if(targetElement.nodeType === Node.TEXT_NODE) {
|
||||
} else if (targetElement.nodeType === Node.TEXT_NODE) {
|
||||
this.logTextNodeRoot(targetElement);
|
||||
return;
|
||||
}
|
||||
@ -180,7 +180,7 @@ ZoominListView.prototype.remove = function(widget) {
|
||||
var toWidgetDomNode = toWidget && toWidget.findFirstDomNode();
|
||||
// Set up the tiddler we're moving back in
|
||||
if(toWidgetDomNode) {
|
||||
if(toWidgetDomNode.nodeType === Node.TEXT_NODE) {
|
||||
if (toWidgetDomNode.nodeType === Node.TEXT_NODE) {
|
||||
this.logTextNodeRoot(toWidgetDomNode);
|
||||
toWidgetDomNode = null;
|
||||
} else {
|
||||
@ -223,4 +223,3 @@ ZoominListView.prototype.logTextNodeRoot = function(node) {
|
||||
};
|
||||
|
||||
exports.zoomin = ZoominListView;
|
||||
|
||||
|
@ -700,4 +700,3 @@ SyncFromServerTask.prototype.run = function(callback) {
|
||||
};
|
||||
|
||||
exports.Syncer = Syncer;
|
||||
|
||||
|
@ -96,4 +96,3 @@ exports.getFieldDay = function(field) {
|
||||
this.cache.day[field] = day;
|
||||
return day;
|
||||
};
|
||||
|
||||
|
@ -72,4 +72,3 @@ exports.upgrade = function(wiki,titles,tiddlers) {
|
||||
});
|
||||
return messages;
|
||||
};
|
||||
|
||||
|
@ -44,4 +44,3 @@ exports.upgrade = function(wiki,titles,tiddlers) {
|
||||
}
|
||||
return messages;
|
||||
};
|
||||
|
||||
|
@ -58,4 +58,3 @@ exports.upgrade = function(wiki,titles,tiddlers) {
|
||||
});
|
||||
return messages;
|
||||
};
|
||||
|
||||
|
@ -87,4 +87,3 @@ exports.decryptStoreAreaInteractive = function(encryptedStoreArea,callback,optio
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -15,23 +15,23 @@ var getCellInfo = function(text, start, length, SEPARATOR) {
|
||||
var isCellQuoted = text.charAt(start) === QUOTE;
|
||||
var cellStart = isCellQuoted ? start + 1 : start;
|
||||
|
||||
if(text.charAt(i) === SEPARATOR) {
|
||||
if (text.charAt(i) === SEPARATOR) {
|
||||
return [cellStart, cellStart, false];
|
||||
}
|
||||
|
||||
for(var i = cellStart; i < length; i++) {
|
||||
for (var i = cellStart; i < length; i++) {
|
||||
var cellCharacter = text.charAt(i);
|
||||
var isEOL = cellCharacter === "\n" || cellCharacter === "\r";
|
||||
|
||||
if(isEOL && !isCellQuoted) {
|
||||
if (isEOL && !isCellQuoted) {
|
||||
return [cellStart, i, false];
|
||||
|
||||
} else if(cellCharacter === SEPARATOR && !isCellQuoted) {
|
||||
} else if (cellCharacter === SEPARATOR && !isCellQuoted) {
|
||||
return [cellStart, i, false];
|
||||
|
||||
} else if(cellCharacter === QUOTE && isCellQuoted) {
|
||||
} else if (cellCharacter === QUOTE && isCellQuoted) {
|
||||
var nextCharacter = i + 1 < length ? text.charAt(i + 1) : '';
|
||||
if(nextCharacter !== QUOTE) {
|
||||
if (nextCharacter !== QUOTE) {
|
||||
return [cellStart, i, true];
|
||||
} else {
|
||||
i++;
|
||||
@ -43,7 +43,7 @@ var getCellInfo = function(text, start, length, SEPARATOR) {
|
||||
}
|
||||
|
||||
exports.parseCsvString = function(text, options) {
|
||||
if(!text) {
|
||||
if (!text) {
|
||||
return [];
|
||||
}
|
||||
|
||||
@ -53,10 +53,10 @@ exports.parseCsvString = function(text, options) {
|
||||
rows = [],
|
||||
nextRow = [];
|
||||
|
||||
for(var i = 0; i < length; i++) {
|
||||
for (var i = 0; i < length; i++) {
|
||||
var cellInfo = getCellInfo(text, i, length, SEPARATOR);
|
||||
var cellText = text.substring(cellInfo[0], cellInfo[1]);
|
||||
if(cellInfo[2]) {
|
||||
if (cellInfo[2]) {
|
||||
cellText = cellText.replace(/""/g, '"');
|
||||
cellInfo[1]++;
|
||||
}
|
||||
@ -67,18 +67,18 @@ exports.parseCsvString = function(text, options) {
|
||||
var character = text.charAt(i);
|
||||
var nextCharacter = i + 1 < length ? text.charAt(i + 1) : '';
|
||||
|
||||
if(character === "\r" || character === "\n") {
|
||||
if (character === "\r" || character === "\n") {
|
||||
// Edge case for empty rows
|
||||
if(nextRow.length === 1 && nextRow[0] === '') {
|
||||
if (nextRow.length === 1 && nextRow[0] === '') {
|
||||
nextRow.length = 0;
|
||||
}
|
||||
rows.push(nextRow);
|
||||
nextRow = [];
|
||||
|
||||
if(character === "\r") {
|
||||
if (character === "\r") {
|
||||
var nextCharacter = i + 1 < length ? text.charAt(i + 1) : '';
|
||||
|
||||
if(nextCharacter === "\n") {
|
||||
if (nextCharacter === "\n") {
|
||||
i++;
|
||||
}
|
||||
}
|
||||
@ -86,7 +86,7 @@ exports.parseCsvString = function(text, options) {
|
||||
}
|
||||
|
||||
// Special case if last cell in last row is an empty cell
|
||||
if(text.charAt(length - 1) === SEPARATOR) {
|
||||
if (text.charAt(length - 1) === SEPARATOR) {
|
||||
nextRow.push("");
|
||||
}
|
||||
|
||||
@ -103,13 +103,13 @@ exports.parseCsvStringWithHeader = function(text,options) {
|
||||
var headers = csv[0];
|
||||
|
||||
csv = csv.slice(1);
|
||||
for(var i = 0; i < csv.length; i++) {
|
||||
for (var i = 0; i < csv.length; i++) {
|
||||
var row = csv[i];
|
||||
var rowObject = Object.create(null);
|
||||
|
||||
for(var columnIndex=0; columnIndex<headers.length; columnIndex++) {
|
||||
var columnName = headers[columnIndex];
|
||||
if(columnName) {
|
||||
if (columnName) {
|
||||
rowObject[columnName] = $tw.utils.trim(row[columnIndex] || "");
|
||||
}
|
||||
}
|
||||
@ -117,4 +117,3 @@ exports.parseCsvStringWithHeader = function(text,options) {
|
||||
}
|
||||
return csv;
|
||||
}
|
||||
|
||||
|
@ -108,4 +108,3 @@ exports.slide = {
|
||||
open: slideOpen,
|
||||
close: slideClosed
|
||||
};
|
||||
|
||||
|
@ -36,4 +36,3 @@ Animator.prototype.perform = function(type,domNode,options) {
|
||||
};
|
||||
|
||||
exports.Animator = Animator;
|
||||
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user