Keith, You can review the Velocity User Guide: http://jakarta.apache.org/velocity/user-guide.html#Include
But basically you have two choices: a) #parse( "MyTemplate.vm" ): The #parse script element allows the template designer to import a local file that contains VTL. Velocity will parse the VTL and render the template specified. b) #include( "MyTemplate.vm" ) : The contents of the file are not rendered through the template engine. For security reasons, the file to be included may only be under TEMPLATE_ROOT. Hope this help you ---------------------------------------------------------------------------- Edgar González González VALHALLA Project, s.a. Chief Technology Officer Web: www.valhallaproject.com <http://www.valhallaproject.com> E-mail: [EMAIL PROTECTED] Phone: +58-212-242.4379 / 6662 / 4055 / 6475 Fax: +58-212-242.6809 "The limits of my language mean the limits of my world." Ludwig Wittgenstein ---------------------------------------------------------------------------- -----Mensaje original----- De: Keith Seim [mailto:[EMAIL PROTECTED] Enviado el: lunes, 28 de julio de 2003 04:53 p.m. Para: [EMAIL PROTECTED] Asunto: importing files into screen templates Hi I have a screen template, and I have another vm file that I want to import as a component of that screen template (similar to how the layout template imports navigations into the required area). Can anyone give me the script I use to reference and import the component file. I'll give an example of what I want: File: OneFile.vm <---------------------------- Some text [import call to OtherFile.vm] Some more text ---------------------------> File: OtherFile.vm <------------------------- Some text that I want to import as component in a number of screens. --------------------------> Thanks ___________________________________ Keith Seim • http://kjsdesigns.com --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
