Re: Loading Velocity Templates

2009-07-22 Thread Andrew Berman
I was not able to get it to work with ResourceStreamLocator. Whatever I passed in for the path yielded a null stream. The iterator does work though, so I'm just going to loop through it and check for null. Thanks again Igor! On Wed, Jul 22, 2009 at 11:09 AM, Andrew Berman wrote: > It looks li

Re: Loading Velocity Templates

2009-07-22 Thread Andrew Berman
It looks like ResourceStreamLocator has the logic I'm looking for. Let me give it a shot and I'll let you know if it works. Thanks for your help! On Wed, Jul 22, 2009 at 11:05 AM, Andrew Berman wrote: > OK, so the iterator does return all combinations, so I guess I have to loop > through them

Re: Loading Velocity Templates

2009-07-22 Thread Andrew Berman
OK, so the iterator does return all combinations, so I guess I have to loop through them and check for their existence. I don't suppose Wicket has anything to do that already since it must be doing something like this with the HTML? On Tue, Jul 21, 2009 at 5:06 PM, Igor Vaynberg wrote: > On Tue,

Re: Loading Velocity Templates

2009-07-21 Thread Igor Vaynberg
On Tue, Jul 21, 2009 at 4:17 PM, Andrew Berman wrote: > What exactly do I pass into the path part?  Do I pass in a full directory > structure or just the name of the file? it doesnt matter - whatever you pass in is whatever you will get back - it is basically a prefix. i havent tried to use this

Re: Loading Velocity Templates

2009-07-21 Thread Andrew Berman
What exactly do I pass into the path part? Do I pass in a full directory structure or just the name of the file? I've tried this before and I always get a null. Thanks Igor On Tue, Jul 21, 2009 at 4:05 PM, Igor Vaynberg wrote: > see if ResourceNameIterator helps > > -igor > > On Tue, Jul 21, 2

Re: Loading Velocity Templates

2009-07-21 Thread Igor Vaynberg
see if ResourceNameIterator helps -igor On Tue, Jul 21, 2009 at 3:55 PM, Andrew Berman wrote: > Hello, > > I currently use Velocity templates within my Wicket 1.3 application, and I > have been using VelocityPanel.forTemplateResource to locate my resources > passing it the actual file URL of the

Loading Velocity Templates

2009-07-21 Thread Andrew Berman
Hello, I currently use Velocity templates within my Wicket 1.3 application, and I have been using VelocityPanel.forTemplateResource to locate my resources passing it the actual file URL of the velocity template. However, I now have a need to find the velocity templates in the same way the HTML fi