mirror of
https://github.com/TiddlyWiki/TiddlyWiki5.git
synced 2026-05-02 13:26:56 +00:00
Revised test data
Testing against the output of cook.rb isn't satisfactory because of the bugs in it; instead we're now going to test against the tiddlywiki.com build products
This commit is contained in:
20
test/tiddlywiki.2.6.5/source/tiddlywiki/deprecated/FileAdaptor.js
Executable file
20
test/tiddlywiki.2.6.5/source/tiddlywiki/deprecated/FileAdaptor.js
Executable file
@@ -0,0 +1,20 @@
|
||||
//--
|
||||
//-- Deprecated FileAdaptor functions
|
||||
//--
|
||||
|
||||
FileAdaptor.loadTiddlyWikiCallback = function(status,context,responseText,url,xhr)
|
||||
{
|
||||
context.status = status;
|
||||
if(!status) {
|
||||
context.statusText = "Error reading file";
|
||||
} else {
|
||||
//# Load the content into a TiddlyWiki() object
|
||||
context.adaptor.store = new TiddlyWiki();
|
||||
if(!context.adaptor.store.importTiddlyWiki(responseText)) {
|
||||
context.statusText = config.messages.invalidFileError.format([url]);
|
||||
context.status = false;
|
||||
}
|
||||
}
|
||||
context.complete(context,context.userParams);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user