<?xml version="1.0" encoding="UTF-8"?>
<!--

    The contents of this file are subject to the license and copyright
    detailed in the LICENSE and NOTICE files at the root of the source
    tree and available online at

    http://www.dspace.org/license/

-->

<!-- 
The XML Test Aspect is just a simple playground for viewing XML source 
in various configurations.

 -->
<map:sitemap xmlns:map="http://apache.org/cocoon/sitemap/1.0">
 <map:components>

  <map:transformers>
   <map:transformer name="Navigation" src="org.dspace.app.xmlui.aspect.xmltest.Navigation"/>
   <map:transformer name="StructureTest" src="org.dspace.app.xmlui.aspect.xmltest.StructureTest"/>
   <map:transformer name="HTMLTest" src="org.dspace.app.xmlui.aspect.xmltest.HTMLTest"/>
   <map:transformer name="BasicFormTest" src="org.dspace.app.xmlui.aspect.xmltest.BasicFormTest"/>
   <map:transformer name="InlineFormTest" src="org.dspace.app.xmlui.aspect.xmltest.InlineFormTest"/>
   <map:transformer name="AdvancedFormTest" src="org.dspace.app.xmlui.aspect.xmltest.AdvancedFormTest"/>
  </map:transformers>
  
 </map:components>
 <map:pipelines>
  <map:pipeline>

   <map:generate/>

   <map:transform type="Navigation"/>

   <map:match pattern="xmltest/form/basic">
     <map:transform type="BasicFormTest"/>
   </map:match>
   
   <map:match pattern="xmltest/form/inline">
    <map:transform type="InlineFormTest"/>
   </map:match>
   
   <map:match pattern="xmltest/form/advanced">
    <map:transform type="AdvancedFormTest"/>
   </map:match>

   <map:match pattern="xmltest/structural">
     <map:transform type="StructureTest"/>
   </map:match>

   <map:match pattern="xmltest/HTML">
    <map:transform type="HTMLTest"/>
   </map:match>

   <map:serialize type="xml"/>

  </map:pipeline>
 </map:pipelines>
</map:sitemap>
