in reply to HTML::Template generic includes

The second method isn't impossible. You could define a filter subroutine (as a parameter to HTML::Template::new) that would handle the includes, and modify the content accordingly. (In fact, it could use HTML::Template do do it.)

Replies are listed 'Best First'.
Re: Re: HTML::Template generic includes
by kappa (Chaplain) on Mar 29, 2004 at 15:42 UTC
    Ahh, I see. With the ability to filter I can just implement a special tag for the case and let that <TMPL_INCLUDE> alone. Thanks for quite a good suggestion!