[ http://issues.apache.org/jira/browse/COCOON-1933?page=comments#action_12441770 ] Carsten Ziegeler commented on COCOON-1933: ------------------------------------------
All the contents of a block or an application can be served directly from within a jar or war. So we have to support at least the file system, jar/war and classpath. I just looked into the spring code and getFile() is only support if the resource is really a file. A simple solution could be if we would just include all files according to a pattern like "*.js" etc. But of course the file ending whould depend on the used interpreter and it is no guarantee that there isn't a directory "hello.js" in the flow directory. So I think we have to find another solution :( > [Patch] Automatic loading of flow scripts in "flow/" must not load directories > ------------------------------------------------------------------------------ > > Key: COCOON-1933 > URL: http://issues.apache.org/jira/browse/COCOON-1933 > Project: Cocoon > Issue Type: Bug > Components: * Cocoon Core > Affects Versions: 2.2-dev (Current SVN) > Reporter: Alexander Klimetschek > Attachments: cocoon-flow-only-files.patch > > > The automatic loading of everything inside flow/ also tries to load > directories, which cannot be compiled like files. Happens typically when you > have a subversion directory (.svn) or other version-control directory inside. > The stacktrace for the problem: > Caused by: org.apache.excalibur.source.SourceNotFoundException: > file:/Users/alex/Mindquarry/hack/mindquarry-teamspace-web/mindquarry-teamspace-block/src/main/resources/COB-INF/flow/.svn/ > doesn't exist. > at > org.apache.excalibur.source.impl.FileSource.getInputStream(FileSource.java:150) > at > org.apache.cocoon.components.flow.javascript.fom.FOM_JavaScriptInterpreter.compileScript(FOM_JavaScriptInterpreter.java:502) > at > org.apache.cocoon.components.flow.CompilingInterpreter$ScriptSourceEntry.getScript(CompilingInterpreter.java:112) > at > org.apache.cocoon.components.flow.javascript.fom.FOM_JavaScriptInterpreter.setupContext(FOM_JavaScriptInterpreter.java:453) > at > org.apache.cocoon.components.flow.javascript.fom.FOM_JavaScriptInterpreter.callFunction(FOM_JavaScriptInterpreter.java:572) > at > org.apache.cocoon.components.treeprocessor.sitemap.CallFunctionNode.invoke(CallFunctionNode.java:109) > ... 43 more > Caused by: java.io.FileNotFoundException: > /Users/alex/Mindquarry/hack/mindquarry-teamspace-web/mindquarry-teamspace-block/src/main/resources/COB-INF/flow/.svn > (No such file or directory) > at java.io.FileInputStream.open(Native Method) > at java.io.FileInputStream.<init>(FileInputStream.java:106) > at > org.apache.excalibur.source.impl.FileSource.getInputStream(FileSource.java:146) > ... 48 more -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira
