You are viewing a plain text version of this content. The canonical link for it is here.
Posted to svn@forrest.apache.org by rg...@apache.org on 2004/12/09 14:19:11 UTC

svn commit: r111379 - /forrest/trunk/plugins/org.apache.forrest.plugin.feeder/input.xmap

Author: rgardler
Date: Thu Dec  9 05:19:10 2004
New Revision: 111379

URL: http://svn.apache.org/viewcvs?view=rev&rev=111379
Log:
don't use absolute path to resources (broken because of name change)
Modified:
   forrest/trunk/plugins/org.apache.forrest.plugin.feeder/input.xmap

Modified: forrest/trunk/plugins/org.apache.forrest.plugin.feeder/input.xmap
Url: http://svn.apache.org/viewcvs/forrest/trunk/plugins/org.apache.forrest.plugin.feeder/input.xmap?view=diff&rev=111379&p1=forrest/trunk/plugins/org.apache.forrest.plugin.feeder/input.xmap&r1=111378&p2=forrest/trunk/plugins/org.apache.forrest.plugin.feeder/input.xmap&r2=111379
==============================================================================
--- forrest/trunk/plugins/org.apache.forrest.plugin.feeder/input.xmap	(original)
+++ forrest/trunk/plugins/org.apache.forrest.plugin.feeder/input.xmap	Thu Dec  9 05:19:10 2004
@@ -27,15 +27,15 @@
     <map:pipeline>
       <map:match pattern="feeder/*.xml">
         <map:generate src="{project:content.xdocs}/{1}.xml"/>
-        <map:transform src="{forrest:plugins}/feeder/resources/stylesheets/feedDesc2RSS20.xsl"/>
-        <map:transform src="{forrest:plugins}/feeder/resources/stylesheets/rss2document.xsl"/>
+        <map:transform src="resources/stylesheets/feedDesc2RSS20.xsl"/>
+        <map:transform src="resources/stylesheets/rss2document.xsl"/>
         <map:serialize type="xml"/>
       </map:match>
       
       <map:match pattern="**/feeder/*.xml">
         <map:generate src="{project:content.xdocs}/{1}/{2}.xml"/>
-        <map:transform src="{forrest:plugins}/feeder/resources/stylesheets/feedDesc2RSS20.xsl"/>
-        <map:transform src="{forrest:plugins}/feeder/resources/stylesheets/rss2document.xsl"/>
+        <map:transform src="resources/stylesheets/feedDesc2RSS20.xsl"/>
+        <map:transform src="resources/stylesheets/rss2document.xsl"/>
         <map:serialize type="xml"/>
       </map:match>
     </map:pipeline>