Re: templating system

2005-04-14 Thread David Asorey ?lvarez
Ksenia Marasanova <[EMAIL PROTECTED]> wrote in message news:<[EMAIL PROTECTED]>... > Hi, > > I am looking for fast, simple templating system that will allow me to > do the following: > - embed Python code (or some templating code) in the template > - generate text output (not only XML/HTML) > >

Re: templating system

2005-04-13 Thread Ville Vainio
> "Erik" == Erik Max Francis <[EMAIL PROTECTED]> writes: Erik> All I meant by that note was that EmPy was not primarily Erik> designed for blazing speed; that is, it could easily be made Erik> much more efficient in a lot of ways. I've never had a need It would be interesting to

Re: templating system

2005-04-13 Thread Ksenia Marasanova
On 4/13/05, James Carroll <[EMAIL PROTECTED]> wrote: > I've had fantastic results with SimpleTAL > http://www.owlfish.com/software/simpleTAL/ > > It uses the Zope Page Templates style markups (which are wysiwyg in > dreamweaver) and then pulls contents from python functions and > 'contexts' ve

Re: templating system

2005-04-13 Thread Ksenia Marasanova
> In the interests of full disclosure, I'm the author of EmPy. > Cool :) > All I meant by that note was that EmPy was not primarily designed for > blazing speed; that is, it could easily be made much more efficient in a > lot of ways. I've never had a need to do so, so it's always been low > pri

Re: templating system

2005-04-12 Thread Erik Max Francis
Ksenia Marasanova wrote: Thanks! I've read "Known issues and caveats" on the website: """ EmPy was primarily intended for static processing of documents, rather than dynamic use, and hence speed of processing was not the primary consideration in its design. """ Have you noticed any speed problem

Re: templating system

2005-04-11 Thread Ksenia Marasanova
> > > http://www.reportlab.org/preppy.html Looks very close to what I was looking for :) Thanks! -- Ksenia -- http://mail.python.org/mailman/listinfo/python-list

Re: templating system

2005-04-11 Thread Ksenia Marasanova
> In EmPy, your template would look something like this:: > > > @[for record in records]@ > @record.title > @[end for]@ > > > Batch expanding the template would look like something as simple as > (substituting in your example):: > > ... >

Re: templating system

2005-04-10 Thread Ron_Adam
On Sun, 10 Apr 2005 17:55:06 +0200, Ksenia Marasanova <[EMAIL PROTECTED]> wrote: >Hi, > >I am looking for fast, simple templating system that will allow me to >do the following: >- embed Python code (or some templating code) in the template >- generate text output (not only XML/HTML) > >I don't ne

Re: templating system

2005-04-10 Thread Erik Max Francis
Ksenia Marasanova wrote: I am looking for fast, simple templating system that will allow me to do the following: - embed Python code (or some templating code) in the template - generate text output (not only XML/HTML) I don't need a framework (already have it), but just simple templating. The synta

Re: templating system

2005-04-10 Thread Steve Holden
Ksenia Marasanova wrote: Hi, I am looking for fast, simple templating system that will allow me to do the following: - embed Python code (or some templating code) in the template - generate text output (not only XML/HTML) I don't need a framework (already have it), but just simple templating. The s