mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-06 01:56:20 +00:00
38 lines
957 B
JavaScript
38 lines
957 B
JavaScript
|
/*\
|
||
|
title: $:/core/modules/server/routes/get-tiddlers-json.js
|
||
|
type: application/javascript
|
||
|
module-type: route
|
||
|
|
||
|
GET /recipes/default/tiddlers/tiddlers.json
|
||
|
|
||
|
\*/
|
||
|
(function() {
|
||
|
|
||
|
/*jslint node: true, browser: true */
|
||
|
/*global $tw: false */
|
||
|
"use strict";
|
||
|
|
||
|
exports.method = "GET";
|
||
|
|
||
|
exports.path = /^\/recipes\/default\/tiddlers.json$/;
|
||
|
|
||
|
exports.handler = function(request,response,state) {
|
||
|
response.writeHead(200, {"Content-Type": "application/json"});
|
||
|
var tiddlers = [];
|
||
|
state.wiki.forEachTiddler({sortField: "title"},function(title,tiddler) {
|
||
|
var tiddlerFields = {};
|
||
|
$tw.utils.each(tiddler.fields,function(field,name) {
|
||
|
if(name !== "text") {
|
||
|
tiddlerFields[name] = tiddler.getFieldString(name);
|
||
|
}
|
||
|
});
|
||
|
tiddlerFields.revision = state.wiki.getChangeCount(title);
|
||
|
tiddlerFields.type = tiddlerFields.type || "text/vnd.tiddlywiki";
|
||
|
tiddlers.push(tiddlerFields);
|
||
|
});
|
||
|
var text = JSON.stringify(tiddlers);
|
||
|
response.end(text,"utf8");
|
||
|
};
|
||
|
|
||
|
}());
|