/********************************************************************** * * * XXX BUG: * pwiki.get(..) -> Page object * pwiki.get(..).get(..) -> pWikiPageElement object * pwiki.get(..).get(..).get(..) -> Page object * ... * ..the problem here is trivial, we are doing Object.construct(this.root) * in clone -- the question is what are we going to clone if .root * is of a different type (without ending up with long inheritance * chains)??? * * XXX BUG: .get('/*').raw hangs... * XXX add action to reset overloaded (bootstrap) pages... * - per page * - global * XXX Q: can we access fs from a pwa??? * * * * XXX ROADMAP: * - run in browser * - basics, loading -- DONE * - test localStorage / sessionStorage -- DONE * - test pouch -- DONE * - render page -- DONE * - navigation -- DONE * - hash/anchor -- DONE * - editor and interactivity * - migrate bootstrap * - store topology * - sync and sync conf * - markdown -- DONE * - WikiWord -- DONE * - dom filter mechanics -- DONE * - filters / dom filters: * - wikiword (control) * this can be done in one of two ways: * - wrapping blocks in elemens * ...requires negative filter calls, either on -wikiword * or a different filter like nowikiwords... * - tags (current) * - raw / code * - nl2br * - path2link (wikiword?) * - editor * - configuration * - defaults * - System/config (global) * - pwa * - service worker ??? * ...handle relative urls (???) * - cli * - basic wiki manipulations (1:1 methods) * - import/export/sync * - introspection/repl * - archive old code * - update docs * - refactor and cleanup * - module structure -- REVISE * - pack as electron app (???) * * * * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - * * Architecture: * store * page * renderer * * Modules: * page - base pages and page APIs (XXX should this be in lib???) * parser - pWiki macro parser (XXX should this be in lib???) * store - stores * base - memory store and store utils * file - file storage * localstorage - localStorage / sessionStorage stores * pouchdb - * ... * filter - page filters * base - base filters incl. wikiword * markdown - markdown renderer * ... * pwiki2 - main cli / node entry point * browser - browser entry point * pwiki2-test - testing and experimenting (XXX move to test.js) * * * Q: can we make this a single module with +/- some plugins?? * ...this would make things quite a bit simpler but will negate the * use of high level libs like types... * * * XXX DOC: * - paths in pWiki behave a bit differently than traditional * file-system paths, this is due to one key distinction: * in pWiki there is no distinction between a file and a * directory * i.e. each path can both contain data as a file and at the same * time support sub-paths etc. * for this reason behaviour of some APIs will differ, all paths * within a page (a-la file) are relative to its children and not * to it's siblings. For example, for page "/a/b/c" a link to "./x" * will resolve to "/a/b/c/x" and this is independent of whether * the base path is given as "/a/b/c/" or "/a/b/c" * * NOTE: implementing things in a traditional manner would * introduce lots of edge-cases and subtle ways to make * mistakes, bugs and inconsistencies. * - * * * XXX weaknesses to review: * - .paths() as an index... * + decouples the search logic from the store backend * - requires the whole list of pages to be in memory * ...need to be independent of the number of pages if at * all possible -- otherwise this will hinder long-term use... * .paths() should be cached to make all path searches away from * async waits as we can test quite a number of paths before we * find a page... * ...another solution is to offload the search to the store backend * but this would require the stores to reimplement most of pwiki/path * - * * * TODO?: * - .then() -- resolve when all pending write operations done ??? * - an async REPL??? * - custom element??? * - might be a good idea to try signature based security: * - sign changes * - sign sync session * - refuse changes with wrong signatures * - public keys available on client and on server * - check signatures localy * - check signatures remotely * - private key available only with author * - keep both the last signed and superceding unsigned version * - on sync ask to overwrite unsigned with signed * - check if we can use the same mechanics as ssh... * - in this view a user in the system is simply a set of keys and * a signature (a page =)) * * XXX RELATIVE relative urls are a bit odd... * Path/to/page opens Moo -> Path/to/Page/Moo * should be (???): * Path/to/page opens Moo -> Path/to/Moo * this boils down to how path.relative(..) works, treating the base * as a directory always (current) vs. only if '/' is at the end, on * one hand the current approach is more uniform with less subtle ways * to make mistakes but on the other hand this may introduce a lot * of complexity to the user writing links, e.g. how should the * following be interpreted? * page: /SomePage * link: SomeOtherPage * -> /SomeOtherPage * -> /SomePage/SomeOtherPage (current) * the current approach does not seem to be intuitive... * can this be fixed uniformly across the whole system??? * XXX document this! * * XXX need to think about search -- page function argument syntax??? * * XXX might need to get all the links (macro-level) from a page... * ...would be useful for caching... * * * **********************************************************************/ ((typeof define)[0]=='u'?function(f){module.exports=f(require)}:define) (function(require){ var module={} // make module AMD/node compatible... /*********************************************************************/ // XXX //var object = require('lib/object') var object = require('ig-object') var types = require('ig-types') var pwpath = module.path = require('./pwiki/path') var page = require('./pwiki/page') var basestore = require('./pwiki/store/base') //var localstoragestore = require('./store/localstorage') // XXX for some reason this does not run quietly in browser //var pouchdbstore = require('./store/pouchdb') //var filestore = require('./store/file') //--------------------------------------------------------------------- // Basic setup... // // // Store topology: // // root (BaseStore) ---next--- main (MetaStore) // | // +-- System/... (BaseStore) // // Alternative store topology: // // root (BaseStore) ---next--- main (MetaStore) // System/... (static) // // var store = module.store = //BaseStore.nest() // XXX clone... { __proto__: basestore.BaseStore } .nest({ __proto__: basestore.MetaStore }) // XXX note sure how to organize the system actions -- there can be two // options: // - a root ram store with all the static stuff and nest the rest // - a nested store (as is the case here) // XXX nested system store... store.update('System', Object.create(basestore.BaseStore).load(page.System)) // NOTE: in general the root wiki api is simply a page instance. // XXX not yet sure how to organize the actual client -- UI, hooks, .. etc var pwiki = module.pwiki = page.Page('/', '/', store) //--------------------------------------------------------------------- // comandline... if(typeof(__filename) != 'undefined' && __filename == (require.main || {}).filename){ } /********************************************************************** * vim:set ts=4 sw=4 nowrap : */ return module })