1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-03 10:43:16 +00:00

Improved comments

This commit is contained in:
Jeremy Ruston 2012-04-07 11:32:16 +01:00
parent d34f163dbc
commit 9e4404bb97
2 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,8 @@
/*\
title: js/HttpSync.js
A very simple synchroniser. It PUTs updated or created tiddlers, and DELETEs deleted tiddlers.
\*/
(function(){

View File

@ -1,6 +1,8 @@
/*\
title: js/LocalFileSync.js
Loads tiddlers from a given directory, and then keeps the files up to date as tiddlers are modified, created or deleted.
\*/
(function(){
@ -15,8 +17,6 @@ var retrieveFile = require("./FileRetriever.js").retrieveFile,
util = require("util"),
async = require("async");
function LocalFileSync(dirpath,store,callback) {
this.dirpath = dirpath;
this.store = store;