moved to new object.js

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2019-07-17 00:11:00 +03:00
parent 4afc4502d9
commit ae508c7e9c
28 changed files with 7 additions and 7 deletions

0
README.md Normal file → Executable file
View File

0
bootstrap/Doc/About.md Normal file → Executable file
View File

0
bootstrap/Doc/Macros.md Normal file → Executable file
View File

0
bootstrap/Doc/Path.md Normal file → Executable file
View File

0
bootstrap/Doc/Templates.md Normal file → Executable file
View File

0
bootstrap/System/settings.json Normal file → Executable file
View File

0
bootstrap/System/style.css Normal file → Executable file
View File

0
bootstrap/Templates.html Normal file → Executable file
View File

0
bootstrap/Templates/EmptyOutline.html Normal file → Executable file
View File

0
bootstrap/Templates/EmptyPage.html Normal file → Executable file
View File

0
bootstrap/Templates/EmptyToDo.html Normal file → Executable file
View File

0
bootstrap/Templates/_css.html Normal file → Executable file
View File

0
bootstrap/Templates/_edit.html Normal file → Executable file
View File

0
bootstrap/Templates/_outline.html Normal file → Executable file
View File

0
bootstrap/Templates/_raw.txt Normal file → Executable file
View File

0
bootstrap/Templates/_todo.html Normal file → Executable file
View File

0
bootstrap/Templates/_view.html Normal file → Executable file
View File

0
bootstrap/Templates/all_pages.html Normal file → Executable file
View File

0
bootstrap/Templates/outline.html Normal file → Executable file
View File

0
bootstrap/Templates/pages.html Normal file → Executable file
View File

0
bootstrap/Templates/todo.html Normal file → Executable file
View File

0
bootstrap/Templates/tree.html Normal file → Executable file
View File

0
bootstrap/TestTodo.md Normal file → Executable file
View File

0
lib/README Normal file → Executable file
View File

0
lib/_module.js Normal file → Executable file
View File

0
make_bootstrap.js Normal file → Executable file
View File

View File

@ -4,16 +4,16 @@
"author": "Alex A. Naanou <alex.nanou@gmail.com>",
"license": "BSD",
"dependencies": {
"glob": "^7.1.3",
"glob": "^7.1.4",
"ig-actions": "^1.9.0",
"ig-features": "^2.2.6",
"ig-object": "^1.0.7",
"ig-object": "^2.0.0",
"jszip": "^2.6.1",
"peer": "^0.2.10",
"pouch-replicate-webrtc": "0.0.9",
"pouchdb": "^7.0.0",
"pouchdb": "^7.1.1",
"requirejs": "^2.3.6",
"showdown": "^1.8.6",
"showdown": "^1.9.0",
"xss": "^0.2.13"
},
"devDependencies": {},

View File

@ -90,7 +90,7 @@ module.pWikiFeatures = new features.FeatureSet()
/*
// base pWiki object...
var pWiki =
module.pWiki = object.makeConstructor('pWiki', actions.MetaActions)
module.pWiki = object.Constructor('pWiki', actions.MetaActions)
// base instance constructor...
pWikiFeatures.__actions__ =
@ -1135,7 +1135,7 @@ module.pWikiMacros = actions.Actions(pWikiBase, {
// can get using native JS lookup mechanisms, or at least the
// farthest I've pushed it so far...
var pWikiPage =
module.pWikiPage = object.makeConstructor('pWikiPage',
module.pWikiPage = object.Constructor('pWikiPage',
actions.mix(
// XXX not sure if we need this here...
//actions.MetaActions,
@ -1596,7 +1596,7 @@ var pWikiUI = pWikiFeatures.Feature({
// XXX STUB: not sure if this is the right way...
var pWikiClient =
module.pWikiClient = object.makeConstructor('pWikiClient',
module.pWikiClient = object.Constructor('pWikiClient',
actions.mix(
actions.MetaActions,
pWikiUIActions))