RE: Fastest template engine

2012-12-24 Thread Andriy Kornatskyy
> From: andriy.kornats...@live.com > To: python-list@python.org > Subject: RE: Fastest template engine > Date: Tue, 23 Oct 2012 15:45:56 +0300 > > > Python template engines offer high reusability of markup code and the > following features are used by content dev

RE: Fastest template engine

2012-10-23 Thread Andriy Kornatskyy
rom: andriy.kornats...@live.com > To: python-list@python.org > Subject: RE: Fastest template engine > Date: Fri, 19 Oct 2012 11:34:41 +0300 > > > Per community request cheetah has been added to benchmark. Post updated, just > in case: > > http://mindref.blogspot.com/2012/0

RE: Fastest template engine

2012-10-19 Thread Andriy Kornatskyy
n-list@python.org > Subject: RE: Fastest template engine > Date: Wed, 26 Sep 2012 16:21:21 +0300 > > > The post has been updated with the following template engines added (per > community request): > > 1. chameleon > 2. django > 3. web2py > > Here is a link: >

RE: Fastest template engine

2012-10-01 Thread Andriy Kornatskyy
1. Added benchmarks for python 3.3 2. Captured total numbers of calls made by corresponding template engine and number of unique functions used. http://mindref.blogspot.com/2012/07/python-fastest-template.html Comments or suggestions are welcome. Andriy --

Re: Fastest template engine

2012-09-26 Thread alex23
On Sep 27, 2:12 am, Jean-Michel Pichavant wrote: > Kindly ignore my post, I don't know why, I read web framework instead of > template engine. Possibly because there's a parallel thread by Andriy on that topic :) -- http://mail.python.org/mailman/listinfo/python-list

Re: Fastest template engine

2012-09-26 Thread Jean-Michel Pichavant
- Original Message - > - Original Message - > > > > The post has been updated with the following template engines added > > (per community request): > > > > 1. chameleon > > 2. django > > 3. web2py > > > > Here is a link: > > > > http://mindref.blogspot.com/2012/07/python-fast

Re: Fastest template engine

2012-09-26 Thread Jean-Michel Pichavant
- Original Message - > > The post has been updated with the following template engines added > (per community request): > > 1. chameleon > 2. django > 3. web2py > > Here is a link: > > http://mindref.blogspot.com/2012/07/python-fastest-template.html > > Comments or suggestions are welc

RE: Fastest template engine

2012-09-26 Thread Andriy Kornatskyy
The post has been updated with the following template engines added (per community request): 1. chameleon 2. django 3. web2py Here is a link: http://mindref.blogspot.com/2012/07/python-fastest-template.html Comments or suggestions are welcome. Thanks. Andriy --

RE: Fastest template engine

2012-09-25 Thread Andriy Kornatskyy
The post has been updated due to comment from Makoto Kuwata (author of tenjin) related to use of optimized version of HTML escape in tenjin templates. I believe Mako and Jinja2 both are using MarkupSafe which serves exactly for that purpose there. The test assert the output is unicode. http:/