Hi,

I have the following script:

  <fileScanner var="scanner">
    <fileset dir="${maven.cactus.conf.dir}" includes="*.jelly"/>
  </fileScanner>

  <j:forEach var="script" items="${scanner.iterator()}">
    <j:import uri="${script.path}"/>
  </j:forEach>

However, it doesn't work as ${script.path} returns a platform dependent
file name and not a URI. 

Thus, I would need to do a kind of "(new URL(script.path)).getFile()"
...

Or should the import accept a file attribute?

Thanks
-Vincent


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to