2013-08-19 12:55:40 +00:00
|
|
|
/*\
|
|
|
|
title: $:/core/modules/savers/andtidwiki.js
|
|
|
|
type: application/javascript
|
|
|
|
module-type: saver
|
|
|
|
|
|
|
|
Handles saving changes via the AndTidWiki Android app
|
|
|
|
|
|
|
|
\*/
|
|
|
|
(function(){
|
|
|
|
|
|
|
|
/*jslint node: true, browser: true */
|
|
|
|
/*global $tw: false, netscape: false, Components: false */
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
var AndTidWiki = function(wiki) {
|
|
|
|
};
|
|
|
|
|
2013-11-27 20:51:08 +00:00
|
|
|
AndTidWiki.prototype.save = function(text,method,callback) {
|
2013-08-19 12:55:40 +00:00
|
|
|
// Get the pathname of this document
|
2014-05-05 12:30:31 +00:00
|
|
|
var pathname = decodeURIComponent(document.location.toString().split("#")[0]);
|
2013-08-19 12:55:40 +00:00
|
|
|
// Strip the file://
|
|
|
|
if(pathname.indexOf("file://") === 0) {
|
|
|
|
pathname = pathname.substr(7);
|
|
|
|
}
|
|
|
|
// Strip any query or location part
|
|
|
|
var p = pathname.indexOf("?");
|
|
|
|
if(p !== -1) {
|
|
|
|
pathname = pathname.substr(0,p);
|
|
|
|
}
|
|
|
|
p = pathname.indexOf("#");
|
|
|
|
if(p !== -1) {
|
|
|
|
pathname = pathname.substr(0,p);
|
|
|
|
}
|
|
|
|
// Save the file
|
2014-08-30 19:44:26 +00:00
|
|
|
window.twi.saveFile(pathname,text);
|
2013-08-19 12:55:40 +00:00
|
|
|
// Call the callback
|
|
|
|
callback(null);
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
Information about this saver
|
|
|
|
*/
|
|
|
|
AndTidWiki.prototype.info = {
|
|
|
|
name: "andtidwiki",
|
2014-02-04 21:21:01 +00:00
|
|
|
priority: 1600,
|
|
|
|
capabilities: ["save", "autosave"]
|
2013-08-19 12:55:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
Static method that returns true if this saver is capable of working
|
|
|
|
*/
|
|
|
|
exports.canSave = function(wiki) {
|
|
|
|
return !!window.twi && !!window.twi.saveFile;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
Create an instance of this saver
|
|
|
|
*/
|
|
|
|
exports.create = function(wiki) {
|
|
|
|
return new AndTidWiki(wiki);
|
|
|
|
};
|
|
|
|
|
|
|
|
})();
|