mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-08-08 06:43:49 +00:00
Remove the old Firefox XUL saver
It's only of historical interest now, sadly.
This commit is contained in:
parent
b48dec6932
commit
b74df6d1b0
@ -1,66 +0,0 @@
|
|||||||
/*\
|
|
||||||
title: $:/core/modules/savers/firefox.js
|
|
||||||
type: application/javascript
|
|
||||||
module-type: saver
|
|
||||||
|
|
||||||
Handles saving changes via Firefox's XUL APIs
|
|
||||||
|
|
||||||
\*/
|
|
||||||
(function(){
|
|
||||||
|
|
||||||
/*jslint node: true, browser: true */
|
|
||||||
/*global $tw: false, netscape: false, Components: false */
|
|
||||||
"use strict";
|
|
||||||
|
|
||||||
var FirefoxSaver = function(wiki) {
|
|
||||||
};
|
|
||||||
|
|
||||||
FirefoxSaver.prototype.save = function(text) {
|
|
||||||
try {
|
|
||||||
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
|
|
||||||
// Generate the local file path from the file URI
|
|
||||||
var url = document.location.toString(),
|
|
||||||
ioService = Components.classes["@mozilla.org/network/io-service;1"].getService(Components.interfaces.nsIIOService),
|
|
||||||
fileHandler = ioService.getProtocolHandler("file").QueryInterface(Components.interfaces.nsIFileProtocolHandler),
|
|
||||||
fileSpec = fileHandler.getFileFromURLSpec(url);
|
|
||||||
// Try to save the file
|
|
||||||
var file = Components.classes["@mozilla.org/file/local;1"].createInstance(Components.interfaces.nsILocalFile);
|
|
||||||
file.initWithPath(fileSpec.path);
|
|
||||||
if(!file.exists()) {
|
|
||||||
file.create(0,0x01B4);// 0x01B4 = 0664
|
|
||||||
}
|
|
||||||
var out = Components.classes["@mozilla.org/network/file-output-stream;1"].createInstance(Components.interfaces.nsIFileOutputStream);
|
|
||||||
out.init(file,0x22,0x04,null);
|
|
||||||
var converter = Components.classes["@mozilla.org/intl/converter-output-stream;1"].createInstance(Components.interfaces.nsIConverterOutputStream);
|
|
||||||
converter.init(out, "UTF-8", 0, 0);
|
|
||||||
converter.writeString(text);
|
|
||||||
converter.close();
|
|
||||||
return true;
|
|
||||||
} catch(ex) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
/*
|
|
||||||
Information about this saver
|
|
||||||
*/
|
|
||||||
FirefoxSaver.prototype.info = {
|
|
||||||
name: "firefox",
|
|
||||||
priority: 1000
|
|
||||||
};
|
|
||||||
|
|
||||||
/*
|
|
||||||
Static method that returns true if this saver is capable of working
|
|
||||||
*/
|
|
||||||
exports.canSave = function(wiki) {
|
|
||||||
return window.location.protocol === "file:" && !!window.Components;
|
|
||||||
};
|
|
||||||
|
|
||||||
/*
|
|
||||||
Create an instance of this saver
|
|
||||||
*/
|
|
||||||
exports.create = function(wiki) {
|
|
||||||
return new FirefoxSaver(wiki);
|
|
||||||
};
|
|
||||||
|
|
||||||
})();
|
|
Loading…
x
Reference in New Issue
Block a user