"Daniel Tang" <dan....@public.gmane.org> writes:
Also, I think you can just set the default by changing the init_app
call from 'mako' to 'pylonsmyghty'.
Ah, that was it, the magic name :-)
Thanks!
The init_app() approach appears to work with the addition of the
'components' path to 'templates', i.e.
paths = dict(root=root,
controllers=os.path.join(root, 'controllers'),
static_files=os.path.join(root, 'public'),
templates=[os.path.join(root, 'templates'),
os.path.join(root, 'components')])
Now to track down why the caching decorator is no longer
working... "<type 'exceptions.TypeError'>: can't pickle _local
objects"
Robert