44
45
46
47
48
49
50
51
52
53
54
55
56
57
...
107
108
109
110
111
112
113
114
115
116
117
118
119
|
parent = par;
priv = restrict;
title = R(t.meta.title);
content = page {
title = ['documentation :: ' .. t.meta.title];
body = [ t.text ];
class = P'doc article';
};
} end
end
local terra
showpage(co: &lib.srv.convo, id: pref)
var [pages] = array([allpages])
................................................................................
list:lpush('</ul>')
var bp = list:finalize()
co:stdpage(page {
title = 'documentation';
body = bp;
class = P'doc listing';
})
bp:free()
else showpage(co, pg) end
end
return render_docpage
|
|
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
...
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
parent = par;
priv = restrict;
title = R(t.meta.title);
content = page {
title = ['documentation :: ' .. t.meta.title];
body = [ t.text ];
class = P'doc article';
cache = true;
};
} end
end
local terra
showpage(co: &lib.srv.convo, id: pref)
var [pages] = array([allpages])
................................................................................
list:lpush('</ul>')
var bp = list:finalize()
co:stdpage(page {
title = 'documentation';
body = bp;
class = P'doc listing';
cache = false;
})
bp:free()
else showpage(co, pg) end
end
return render_docpage
|