Hi, PHP in itself is already a templating engine, in the way you can embed PHP inside your markup. The symfony helpers also help you in generating your html code, so you actually have to do very little actual HTML stuff in symfony. And if there are other things you feel need to be automated, you can either extend the current helpers or write new helpers for those specific options. For those that want a seperate template engine, there is a Smarty plugin out there for symfony.
Obviously, if you want to write something similar to Genshi, by all means go ahead. You can contribute it to the community as a plugin :) I just don't see the use of a seperate template engine for symfony. Stefan On Oct 16, 1:22 pm, "Lucas Stephanou" <[EMAIL PROTECTED]> wrote: > Hello dev's, > > I'm here to start a thread about template system. > > Today symfony doesn't use natively a template system to render presentation > layer. > IMHO, the genshi project[1], used in trac 0.11[2], is more efficient output > generator and I'm working with it in some plugins to internal use here in my > job. > All php options( OPT, Smarty, Haml port) that I knew isn't simple, clean, > and powerful, this in my opinion. > > Well, What you think about? Is PHP a equivalent option? Start a similar > genshi project in PHP? > > [1]:http://genshi.edgewall.org/ > [2]:http://trac.edgewall.org/milestone/0.11 > > -- > Lucas Stephanou --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "symfony developers" 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/symfony-devs?hl=en -~----------~----~----~----~------~----~------~--~---
