Differences From
Artifact [4b4b2876e4]:
394 394 'http', 'html', 'session', 'tpl', 'store', 'acl';
395 395
396 396 'smackdown'; -- md-alike parser
397 397 }
398 398
399 399 local be = {}
400 400 for _, b in pairs(config.backends) do
401 - be[#be+1] = terralib.loadfile('backend/' .. b .. '.t')()
401 + be[#be+1] = terralib.loadfile(string.format('backend/%s.t',b))()
402 402 end
403 403 lib.store.backends = global(`array([be]))
404 404
405 405 lib.cmdparse = terralib.loadfile('cmdparse.t')()
406 406
407 407 do local collate = function(path,f, ...)
408 408 return loadfile(path..'/'..f..'.lua')(path, ...)