mirror of
https://github.com/flynx/pWiki.git
synced 2026-01-08 11:01:07 +00:00
moved to new object.js
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
parent
4afc4502d9
commit
ae508c7e9c
0
bootstrap/Doc/About.md
Normal file → Executable file
0
bootstrap/Doc/About.md
Normal file → Executable file
0
bootstrap/Doc/Macros.md
Normal file → Executable file
0
bootstrap/Doc/Macros.md
Normal file → Executable file
0
bootstrap/Doc/Path.md
Normal file → Executable file
0
bootstrap/Doc/Path.md
Normal file → Executable file
0
bootstrap/Doc/Templates.md
Normal file → Executable file
0
bootstrap/Doc/Templates.md
Normal file → Executable file
0
bootstrap/System/settings.json
Normal file → Executable file
0
bootstrap/System/settings.json
Normal file → Executable file
0
bootstrap/System/style.css
Normal file → Executable file
0
bootstrap/System/style.css
Normal file → Executable file
0
bootstrap/Templates.html
Normal file → Executable file
0
bootstrap/Templates.html
Normal file → Executable file
0
bootstrap/Templates/EmptyOutline.html
Normal file → Executable file
0
bootstrap/Templates/EmptyOutline.html
Normal file → Executable file
0
bootstrap/Templates/EmptyPage.html
Normal file → Executable file
0
bootstrap/Templates/EmptyPage.html
Normal file → Executable file
0
bootstrap/Templates/EmptyToDo.html
Normal file → Executable file
0
bootstrap/Templates/EmptyToDo.html
Normal file → Executable file
0
bootstrap/Templates/_css.html
Normal file → Executable file
0
bootstrap/Templates/_css.html
Normal file → Executable file
0
bootstrap/Templates/_edit.html
Normal file → Executable file
0
bootstrap/Templates/_edit.html
Normal file → Executable file
0
bootstrap/Templates/_outline.html
Normal file → Executable file
0
bootstrap/Templates/_outline.html
Normal file → Executable file
0
bootstrap/Templates/_raw.txt
Normal file → Executable file
0
bootstrap/Templates/_raw.txt
Normal file → Executable file
0
bootstrap/Templates/_todo.html
Normal file → Executable file
0
bootstrap/Templates/_todo.html
Normal file → Executable file
0
bootstrap/Templates/_view.html
Normal file → Executable file
0
bootstrap/Templates/_view.html
Normal file → Executable file
0
bootstrap/Templates/all_pages.html
Normal file → Executable file
0
bootstrap/Templates/all_pages.html
Normal file → Executable file
0
bootstrap/Templates/outline.html
Normal file → Executable file
0
bootstrap/Templates/outline.html
Normal file → Executable file
0
bootstrap/Templates/pages.html
Normal file → Executable file
0
bootstrap/Templates/pages.html
Normal file → Executable file
0
bootstrap/Templates/todo.html
Normal file → Executable file
0
bootstrap/Templates/todo.html
Normal file → Executable file
0
bootstrap/Templates/tree.html
Normal file → Executable file
0
bootstrap/Templates/tree.html
Normal file → Executable file
0
bootstrap/TestTodo.md
Normal file → Executable file
0
bootstrap/TestTodo.md
Normal file → Executable file
0
lib/README
Normal file → Executable file
0
lib/README
Normal file → Executable file
0
lib/_module.js
Normal file → Executable file
0
lib/_module.js
Normal file → Executable file
0
make_bootstrap.js
Normal file → Executable file
0
make_bootstrap.js
Normal file → Executable file
@ -4,16 +4,16 @@
|
|||||||
"author": "Alex A. Naanou <alex.nanou@gmail.com>",
|
"author": "Alex A. Naanou <alex.nanou@gmail.com>",
|
||||||
"license": "BSD",
|
"license": "BSD",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"glob": "^7.1.3",
|
"glob": "^7.1.4",
|
||||||
"ig-actions": "^1.9.0",
|
"ig-actions": "^1.9.0",
|
||||||
"ig-features": "^2.2.6",
|
"ig-features": "^2.2.6",
|
||||||
"ig-object": "^1.0.7",
|
"ig-object": "^2.0.0",
|
||||||
"jszip": "^2.6.1",
|
"jszip": "^2.6.1",
|
||||||
"peer": "^0.2.10",
|
"peer": "^0.2.10",
|
||||||
"pouch-replicate-webrtc": "0.0.9",
|
"pouch-replicate-webrtc": "0.0.9",
|
||||||
"pouchdb": "^7.0.0",
|
"pouchdb": "^7.1.1",
|
||||||
"requirejs": "^2.3.6",
|
"requirejs": "^2.3.6",
|
||||||
"showdown": "^1.8.6",
|
"showdown": "^1.9.0",
|
||||||
"xss": "^0.2.13"
|
"xss": "^0.2.13"
|
||||||
},
|
},
|
||||||
"devDependencies": {},
|
"devDependencies": {},
|
||||||
|
|||||||
6
pwiki.js
6
pwiki.js
@ -90,7 +90,7 @@ module.pWikiFeatures = new features.FeatureSet()
|
|||||||
/*
|
/*
|
||||||
// base pWiki object...
|
// base pWiki object...
|
||||||
var pWiki =
|
var pWiki =
|
||||||
module.pWiki = object.makeConstructor('pWiki', actions.MetaActions)
|
module.pWiki = object.Constructor('pWiki', actions.MetaActions)
|
||||||
|
|
||||||
// base instance constructor...
|
// base instance constructor...
|
||||||
pWikiFeatures.__actions__ =
|
pWikiFeatures.__actions__ =
|
||||||
@ -1135,7 +1135,7 @@ module.pWikiMacros = actions.Actions(pWikiBase, {
|
|||||||
// can get using native JS lookup mechanisms, or at least the
|
// can get using native JS lookup mechanisms, or at least the
|
||||||
// farthest I've pushed it so far...
|
// farthest I've pushed it so far...
|
||||||
var pWikiPage =
|
var pWikiPage =
|
||||||
module.pWikiPage = object.makeConstructor('pWikiPage',
|
module.pWikiPage = object.Constructor('pWikiPage',
|
||||||
actions.mix(
|
actions.mix(
|
||||||
// XXX not sure if we need this here...
|
// XXX not sure if we need this here...
|
||||||
//actions.MetaActions,
|
//actions.MetaActions,
|
||||||
@ -1596,7 +1596,7 @@ var pWikiUI = pWikiFeatures.Feature({
|
|||||||
|
|
||||||
// XXX STUB: not sure if this is the right way...
|
// XXX STUB: not sure if this is the right way...
|
||||||
var pWikiClient =
|
var pWikiClient =
|
||||||
module.pWikiClient = object.makeConstructor('pWikiClient',
|
module.pWikiClient = object.Constructor('pWikiClient',
|
||||||
actions.mix(
|
actions.mix(
|
||||||
actions.MetaActions,
|
actions.MetaActions,
|
||||||
pWikiUIActions))
|
pWikiUIActions))
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user