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