From 7b7f191542f19ae8834f188b15f4273879da41d2 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Tue, 3 May 2022 16:47:43 +0300 Subject: [PATCH] ... Signed-off-by: Alex A. Naanou --- pwiki2.js | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/pwiki2.js b/pwiki2.js index 1b521ed..34aea90 100755 --- a/pwiki2.js +++ b/pwiki2.js @@ -158,6 +158,16 @@ module.BaseStore = { data: undefined, + // store chain actions... + // + // XXX need to think about this... + next: undefined, + push: function(store){ + }, + + + + exists: function(path){ path = module.path.normalize(path, 'string') var data = this.data @@ -1440,7 +1450,7 @@ var WIKIWORD_PATTERN = store.load(require('./bootstrap')) // NOTE: in general the root wiki api is simply a page instance. -// XXX not yet sure how to organize the actual alient -- UI, hooks, .. etc +// XXX not yet sure how to organize the actual client -- UI, hooks, .. etc var pwiki = module.pwiki = Page('/', '/', store)