http://www.perlmonks.org?node_id=676017


in reply to Re^2: Push style templating systems
in thread Push style templating systems

Thanks for clearing that up, at least somewhat ;-)

Citing Terence Parr
The trick is to provide sufficient power in a template engine without providing constructs that allow separation violation.

It is my understanding that he shows that "push" (his Definition 8) is sufficiently strict to ensure separation. But for the template engine user's convenience you can add things while separation is still enforced.

He designed StringTemplate accordingly, but StringTemplate isn't pure-push then, isn't it?

Replies are listed 'Best First'.
Re^4: Push style templating systems
by metaperl (Curate) on Mar 25, 2008 at 14:05 UTC
    He designed StringTemplate accordingly, but StringTemplate isn't pure-push then, isn't it?
    I don't know what pure push is. If I had to guess, I would say that the 5 rules implied by strict separation, listed after Definition 7, define pure push. And as far as I can see, StringTemplate doesnt break any of those rules.

    I know Seamstress doesnt.