mirror of
https://github.com/flynx/pWiki.git
synced 2026-01-10 20:07:43 +00:00
added macro-else block + tweaking...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
parent
7576d48867
commit
447ad8ea0d
98
wiki.js
98
wiki.js
@ -118,9 +118,7 @@ var macro = {
|
|||||||
macro: {
|
macro: {
|
||||||
now: Macro('Create a now id',
|
now: Macro('Create a now id',
|
||||||
[],
|
[],
|
||||||
function(context, elem, state){
|
function(context, elem, state){ return ''+Date.now() }),
|
||||||
return ''+Date.now()
|
|
||||||
}),
|
|
||||||
// select filter to post-process text...
|
// select filter to post-process text...
|
||||||
filter: Macro('Filter to post-process text',
|
filter: Macro('Filter to post-process text',
|
||||||
['name'],
|
['name'],
|
||||||
@ -255,8 +253,26 @@ var macro = {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// fill macro...
|
||||||
if(path){
|
if(path){
|
||||||
return $(context.get(path)
|
var pages = context.get(path)
|
||||||
|
|
||||||
|
// no matching pages...
|
||||||
|
if(pages.length == 0){
|
||||||
|
var e = elem
|
||||||
|
.find('else').first().clone()
|
||||||
|
.attr('src', path)
|
||||||
|
parse(e, context)
|
||||||
|
return e
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
// fill with pages...
|
||||||
|
elem = elem.clone()
|
||||||
|
.find('else')
|
||||||
|
.remove()
|
||||||
|
.end()
|
||||||
|
return $(pages
|
||||||
.map(function(page){
|
.map(function(page){
|
||||||
var e = elem.clone()
|
var e = elem.clone()
|
||||||
.attr('src', page.path)
|
.attr('src', page.path)
|
||||||
@ -735,6 +751,11 @@ var data = {
|
|||||||
+'@include(./todo)'
|
+'@include(./todo)'
|
||||||
+'',
|
+'',
|
||||||
},
|
},
|
||||||
|
'Templates/EmptyOutline': {
|
||||||
|
text: ''
|
||||||
|
+'@include(./outline)'
|
||||||
|
+'',
|
||||||
|
},
|
||||||
|
|
||||||
'Templates/pages': {
|
'Templates/pages': {
|
||||||
//text: '<macro src="../*"> [@source(./path)]<br> </macro>\n'
|
//text: '<macro src="../*"> [@source(./path)]<br> </macro>\n'
|
||||||
@ -747,7 +768,7 @@ var data = {
|
|||||||
+'</div>'
|
+'</div>'
|
||||||
+'</macro>\n'
|
+'</macro>\n'
|
||||||
},
|
},
|
||||||
'Templates/tree': {
|
'Templates/all_pages': {
|
||||||
//text: '<macro src="../**"> [@source(./path)]<br> </macro>\n'
|
//text: '<macro src="../**"> [@source(./path)]<br> </macro>\n'
|
||||||
text: ''
|
text: ''
|
||||||
+'<macro src="../**">'
|
+'<macro src="../**">'
|
||||||
@ -758,6 +779,23 @@ var data = {
|
|||||||
+'</div>'
|
+'</div>'
|
||||||
+'</macro>\n'
|
+'</macro>\n'
|
||||||
},
|
},
|
||||||
|
'Templates/tree': {
|
||||||
|
//text: '<macro src="../**"> [@source(./path)]<br> </macro>\n'
|
||||||
|
text: ''
|
||||||
|
+'<macro src="../*">'
|
||||||
|
+'<div class="item">'
|
||||||
|
+'<a href="#@source(./path)">@source(./title)</a>'
|
||||||
|
+'<span class="separator"/>\n'
|
||||||
|
+'<a class="button" href="#@source(./path)/delete">×</a>'
|
||||||
|
+'</div>'
|
||||||
|
+'<div style="padding-left: 30px">'
|
||||||
|
+'<include '
|
||||||
|
+'style="display:block" '
|
||||||
|
+'src="@source(./path)/tree" '
|
||||||
|
+'/>'
|
||||||
|
+'</div>'
|
||||||
|
+'</macro>\n'
|
||||||
|
},
|
||||||
'Templates/_raw': {
|
'Templates/_raw': {
|
||||||
text: '@source(..)',
|
text: '@source(..)',
|
||||||
},
|
},
|
||||||
@ -825,10 +863,41 @@ var data = {
|
|||||||
+'',
|
+'',
|
||||||
},
|
},
|
||||||
|
|
||||||
|
// XXX experimental...
|
||||||
|
'Templates/_todo': {
|
||||||
|
text: ''
|
||||||
|
+'<include src="../_view"/>\n'
|
||||||
|
+'\n'
|
||||||
|
// XXX temporary until I figure out how to deal with the saveto=".."
|
||||||
|
// in implicit vs. explicit _view
|
||||||
|
+'<slot name="title" class="title" contenteditable saveto="..">'
|
||||||
|
+'@source(../title)'
|
||||||
|
+'</slot>\n'
|
||||||
|
+'\n'
|
||||||
|
+'<slot name="page-content">\n'
|
||||||
|
+'@include(../todo)'
|
||||||
|
+'</slot>'
|
||||||
|
+'\n',
|
||||||
|
},
|
||||||
|
'Templates/_outline': {
|
||||||
|
text: ''
|
||||||
|
+'<include src="../_view"/>\n'
|
||||||
|
+'\n'
|
||||||
|
// XXX temporary until I figure out how to deal with the saveto=".."
|
||||||
|
// in implicit vs. explicit _view
|
||||||
|
+'<slot name="title" class="title" contenteditable saveto="..">'
|
||||||
|
+'@source(../title)'
|
||||||
|
+'</slot>\n'
|
||||||
|
+'\n'
|
||||||
|
+'<slot name="page-content">\n'
|
||||||
|
+'@include(../outline)'
|
||||||
|
+'</slot>'
|
||||||
|
+'\n',
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
// XXX experimental...
|
// XXX experimental...
|
||||||
// XXX need sorting...
|
// XXX need sorting...
|
||||||
// ToDo view...
|
|
||||||
'Templates/todo': {
|
'Templates/todo': {
|
||||||
text: ''
|
text: ''
|
||||||
+'<div>'
|
+'<div>'
|
||||||
@ -864,23 +933,6 @@ var data = {
|
|||||||
+'</macro>'
|
+'</macro>'
|
||||||
+'\n',
|
+'\n',
|
||||||
},
|
},
|
||||||
// ToDo viewer...
|
|
||||||
'Templates/_todo': {
|
|
||||||
text: ''
|
|
||||||
+'<include src="../_view"/>\n'
|
|
||||||
+'\n'
|
|
||||||
// XXX temporary until I figure out how to deal with the saveto=".."
|
|
||||||
// in implicit vs. explicit _view
|
|
||||||
+'<slot name="title" class="title" contenteditable saveto="..">'
|
|
||||||
+'@source(../title)'
|
|
||||||
+'</slot>\n'
|
|
||||||
+'\n'
|
|
||||||
+'<slot name="page-content">\n'
|
|
||||||
+'@include(../todo)'
|
|
||||||
+'</slot>'
|
|
||||||
+'\n',
|
|
||||||
},
|
|
||||||
|
|
||||||
'Templates/outline': {
|
'Templates/outline': {
|
||||||
text: ''
|
text: ''
|
||||||
//*
|
//*
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user