Its going to be your best bet in using a different templating language. YOu will have to make sure to only parse your HTML requests and not json/download etc.
Basically, response._caller is a function, that returns a string which is the html. So you would instead of response.render(d) you would do jinja2.render(d) where d is the dict returned from the action, you will of course have to tell jinja where to find templates and which template to render based on action jinja.render(d, '/applications/init/views/' + request.action+'.html') -Thadeus On Tue, Jan 26, 2010 at 8:24 PM, Alexandre <[email protected]> wrote: > Hi, > > I want to replace web2py's template engine with Jinja > 2<http://jinja.pocoo.org/2/>, > anyone has some experience doing something similar? I'm trying to assign > response._caller with a custom function, but I'm not having much success, is > that the right way? > > Thanks, > Alexandre Rosenfeld > > Eng Comp 06 - USP São Carlos > FoG - http://fog.icmc.usp.br > IM Team - AIESEC > > -- > You received this message because you are subscribed to the Google Groups > "web2py-users" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]<web2py%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/web2py?hl=en. > -- You received this message because you are subscribed to the Google Groups "web2py-users" 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/web2py?hl=en.

