Author: rgardler
Date: Tue Nov 16 11:57:07 2004
New Revision: 76014
Modified:
forrest/trunk/plugins/wiki/input.xmap
Log:
fix some silly errors (no defualt transformer, calling wrong resource)
Modified: forrest/trunk/plugins/wiki/input.xmap
==============================================================================
--- forrest/trunk/plugins/wiki/input.xmap (original)
+++ forrest/trunk/plugins/wiki/input.xmap Tue Nov 16 11:57:07 2004
@@ -16,7 +16,7 @@
-->
<map:sitemap xmlns:map="http://apache.org/cocoon/sitemap/1.0">
<map:components>
- <map:transformers>
+ <map:transformers default="xslt">
<map:transformer name="lexer"
src="org.apache.cocoon.transformation.LexicalTransformer"
logger="sitemap.transformer.lexer">
@@ -81,14 +81,12 @@
<map:pipelines>
<map:pipeline internal="true">
<map:match pattern="**.xml">
- <map:call resource="transform-to-document">
- <map:parameter name="src" value="{project:content.xdocs}{1}.xml" />
+ <map:call resource="file-resolver">
+ <map:parameter name="uri" value="{1}"/>
</map:call>
</map:match>
</map:pipeline>
- </map:pipelines>
- <map:pipelines>
<map:pipeline type="caching" internal-only="true">
<map:match pattern="*.xlex">
|