Re: [Repoze-dev] Fwd: Jython Support on 1.2

2010-01-05 Thread Chris McDonough
FTR, I just made the zope.schema trunk tests pass under Jython. A release should be made soon. http://svn.zope.org/zope.schema/trunk/ I still haven't figured out why zope.configuration doesn't work though. - C Diaz, Eduardo wrote: > Yes, I'm going to work on that patch, Thanks! > > On Mon,

Re: [Repoze-dev] Fwd: Jython Support on 1.2

2010-01-04 Thread Chris McDonough
Diaz, Eduardo wrote: > Ok, that worked! Great! For the record, I installed Jython in the meantime, and I just fixed the repoze/bfg/paster.py Jython bug on the trunk. I'm going to try to get a fix into zope.schema (maybe just a conditional def of a __get__ like you did).. once I can figure ou

[Repoze-dev] Fwd: Jython Support on 1.2

2010-01-04 Thread Diaz, Eduardo
Ok, that worked! I just changed the view like this: from jinja2 import Template, Environment, PackageLoader from webob import Response def my_view(context, request): env = Environment(loader=PackageLoader('myproject', 'templates')) template = env.get_template('mytemplate.jinja2') res