mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-18 07:44:51 +00:00
8643278a45
Fixes #1450 Provides support for an integrated plugin library that can be used to install plugins from tiddlywiki.com directly to wikis hosted online or offline. See the Plugins tab of Control Panel. Todo: * Error checking(eg libraryserver.js HTTP GET) * Translatability * Documentation ** $:/tags/ServerConnection ** savelibrarytiddlers command
67 lines
2.0 KiB
JavaScript
67 lines
2.0 KiB
JavaScript
/*\
|
|
title: $:/core/modules/commands/savelibrarytiddlers.js
|
|
type: application/javascript
|
|
module-type: command
|
|
|
|
Command to save the subtiddlers of a bundle tiddler as a series of JSON files
|
|
|
|
--savelibrarytiddlers <tiddler> <pathname> <skinnylisting>
|
|
|
|
The tiddler identifies the bundle tiddler that contains the subtiddlers.
|
|
|
|
The pathname specifies the pathname to the folder in which the JSON files should be saved. The filename is the URL encoded title of the subtiddler.
|
|
|
|
The skinnylisting specifies the title of the tiddler to which a JSON catalogue of the subtiddlers will be saved. The JSON file contains the same data as the bundle tiddler but with the `text` field removed.
|
|
|
|
\*/
|
|
(function(){
|
|
|
|
/*jslint node: true, browser: true */
|
|
/*global $tw: false */
|
|
"use strict";
|
|
|
|
exports.info = {
|
|
name: "savelibrarytiddlers",
|
|
synchronous: true
|
|
};
|
|
|
|
var Command = function(params,commander,callback) {
|
|
this.params = params;
|
|
this.commander = commander;
|
|
this.callback = callback;
|
|
};
|
|
|
|
Command.prototype.execute = function() {
|
|
if(this.params.length < 2) {
|
|
return "Missing filename";
|
|
}
|
|
var self = this,
|
|
fs = require("fs"),
|
|
path = require("path"),
|
|
containerTitle = this.params[0],
|
|
basepath = this.params[1],
|
|
skinnyListTitle = this.params[2];
|
|
// Get the container tiddler as data
|
|
var containerData = self.commander.wiki.getTiddlerData(containerTitle,undefined);
|
|
if(!containerData) {
|
|
return "'" + containerTitle + "' is not a tiddler bundle";
|
|
}
|
|
// Save each JSON file and collect the skinny data
|
|
var skinnyList = [];
|
|
$tw.utils.each(containerData.tiddlers,function(tiddler,title) {
|
|
var pathname = path.resolve(self.commander.outputPath,basepath + encodeURIComponent(title) + ".json");
|
|
$tw.utils.createFileDirectories(pathname);
|
|
fs.writeFileSync(pathname,JSON.stringify(tiddler,null,$tw.config.preferences.jsonSpaces),"utf8");
|
|
skinnyList.push($tw.utils.extend({},tiddler,{text: undefined}));
|
|
});
|
|
// Save the catalogue tiddler
|
|
if(skinnyListTitle) {
|
|
self.commander.wiki.setTiddlerData(skinnyListTitle,skinnyList);
|
|
}
|
|
return null;
|
|
};
|
|
|
|
exports.Command = Command;
|
|
|
|
})();
|