bruno 2003/07/15 09:47:27
Modified: src/webapp/WEB-INF cocoon.xconf
Log:
Declare file: protocol factory explicitely (see bug 21396).
Revision Changes Path
1.23 +4 -2 cocoon-2.1/src/webapp/WEB-INF/cocoon.xconf
Index: cocoon.xconf
===================================================================
RCS file: /home/cvs/cocoon-2.1/src/webapp/WEB-INF/cocoon.xconf,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- cocoon.xconf 8 Jul 2003 05:48:53 -0000 1.22
+++ cocoon.xconf 15 Jul 2003 16:47:27 -0000 1.23
@@ -227,9 +227,11 @@
<component-instance
class="org.apache.excalibur.source.impl.ResourceSourceFactory" name="resource"/>
<component-instance
class="org.apache.cocoon.components.source.impl.ContextSourceFactory" name="context"/>
<component-instance
class="org.apache.cocoon.components.source.impl.SitemapSourceFactory" name="cocoon"/>
+ <!-- The "file:" protocol is modifiable (can be written to) and traversable
(directory structures
+ can be crawled). -->
+ <component-instance class="org.apache.excalibur.source.impl.FileSourceFactory"
name="file"/>
<!-- the "*" protocol handles all uri schemes that are not explicitely
specified. This includes all
- JDK standard protocols, with special handling of the "file:" protocol
which is modifiable
- (can be written to) and traversable (directory structures can be crawled).
-->
+ JDK standard protocols. -->
<component-instance class="org.apache.excalibur.source.impl.URLSourceFactory"
name="*"/>
</source-factories>
<!--+