On Nov 12, 2007 8:39 AM, Thomas Bernhard <[EMAIL PROTECTED]> wrote: > > How to include only a part of a file into another one with Velocity and this > to be done in the template (so not from Java code). > > With FreeMarker I would do the following: > ---- > <pre> > <template:include src="../mypages/items.html" > elements="/html/body/[EMAIL PROTECTED]'aItem' and > position()<=8]"/> > </pre> > ---- > > How to achieve the above in a Velocity template? > With the #include macro syntax seems to allow the inclusion of an entire > file only :(.
correct. if you want to be able to do this, you'll either need to create your own subclass of the Include directive or create a "tool" class with a method you can call to do this. > Thanx, > Tom. > -- > View this message in context: > http://www.nabble.com/How-to-include-only-a-part-of-a-file--tf4792246.html#a13709026 > Sent from the Velocity - User mailing list archive at Nabble.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]
