added some missing stuff...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2016-10-25 18:13:34 +03:00
parent d2bb337b35
commit 55bf7e825f
8 changed files with 2219 additions and 0 deletions

3
bootstrap/TestTodo.md Normal file
View File

@ -0,0 +1,3 @@
[Templates/outline/_edit]
@include(./todo)

1
bootstrap/TestTodo/01.html Executable file
View File

@ -0,0 +1 @@
item 1

1
bootstrap/TestTodo/02.html Executable file
View File

@ -0,0 +1 @@
item 2

1
bootstrap/TestTodo/03.html Executable file
View File

@ -0,0 +1 @@
item 3

1
bootstrap/TestTodo/04.html Executable file
View File

@ -0,0 +1 @@
item 4

2142
ext-lib/require.js Executable file

File diff suppressed because it is too large Load Diff

19
lib/_module.js Normal file
View File

@ -0,0 +1,19 @@
/**********************************************************************
*
*
*
**********************************************************************/
((typeof define)[0]=='u'?function(f){module.exports=f(require)}:define)
(function(require){ var module={} // make module AMD/node compatible...
/*********************************************************************/
/*********************************************************************/
/**********************************************************************
* vim:set ts=4 sw=4 : */ return module })

51
ui.js Executable file
View File

@ -0,0 +1,51 @@
/**********************************************************************
*
*
*
**********************************************************************/
var requirejs_cfg = {
paths: {
// XXX one approach to avoid at least this section is to copy the
// modules to lib/*, this way we'll need the map section below
// only... (without automation this also sounds bad)
'lib/object': './node_modules/ig-object/object',
'lib/actions': './node_modules/ig-actions/actions',
'lib/features': './node_modules/ig-features/features',
//'lib/keyboard': './node_modules/ig-keyboard/keyboard',
},
map: {
'*': {
// back-refs
// ...these enable the npm modules reference each other in
// a cross-platform manner....
'ig-object': 'lib/object',
'ig-actions': 'lib/actions',
'ig-features': 'lib/features',
//'ig-keyboard': 'lib/keyboard',
},
},
}
// config the browser version of requirejs...
requirejs.config(requirejs_cfg)
;/********************************************************************/
((typeof define)[0]=='u'?function(f){module.exports=f(require)}:define)
(function(require){ var module={} // make module AMD/node compatible...
/*********************************************************************/
var pwiki = require('pwiki')
/*********************************************************************/
/**********************************************************************
* vim:set ts=4 sw=4 : */ return module })