No, the jinja2 directories should not clobber each other. It is probably a 
bug in the pyramid_jinja2 bindings.

I'm suggesting you could have only one Configurator() for both parts of your 
application, avoiding WSGI composition issues:

def main(config):
    config.add_view(...)

def admin(config):
    config.add_view(...)

c = Configurator()
main(c)
admin(c)

Rocky Burt has been working on the pyramid_jinja2 bindings. See the pylons 
project on github. When he is finished, you will be able to specify 
renderer='packagename:home.html' and renderer='package2:home.html', avoiding 
name clashes.

Daniel Holth

-- 
You received this message because you are subscribed to the Google Groups 
"pylons-discuss" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/pylons-discuss?hl=en.

Reply via email to