You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by vg...@apache.org on 2008/04/09 15:51:55 UTC

svn commit: r646350 - /cocoon/trunk/core/cocoon-webapp/src/main/webapp/test-suite/sitemap.xmap

Author: vgritsenko
Date: Wed Apr  9 06:51:53 2008
New Revision: 646350

URL: http://svn.apache.org/viewvc?rev=646350&view=rev
Log:
cleanup

Modified:
    cocoon/trunk/core/cocoon-webapp/src/main/webapp/test-suite/sitemap.xmap

Modified: cocoon/trunk/core/cocoon-webapp/src/main/webapp/test-suite/sitemap.xmap
URL: http://svn.apache.org/viewvc/cocoon/trunk/core/cocoon-webapp/src/main/webapp/test-suite/sitemap.xmap?rev=646350&r1=646349&r2=646350&view=diff
==============================================================================
--- cocoon/trunk/core/cocoon-webapp/src/main/webapp/test-suite/sitemap.xmap (original)
+++ cocoon/trunk/core/cocoon-webapp/src/main/webapp/test-suite/sitemap.xmap Wed Apr  9 06:51:53 2008
@@ -16,50 +16,41 @@
   limitations under the License.
 -->
 
-<!-- CVS $Id$ -->
-
+<!--
+  - $Id$
+  -->
 <map:sitemap xmlns:map="http://apache.org/cocoon/sitemap/1.0">
 
-<!-- =========================== Components ================================ -->
+  <!-- =========================== Views =================================== -->
 
- <map:components>
-  <map:generators default="file"/>
-  <map:transformers default="xslt"/>
-  <map:readers default="resource"/>
-  <map:serializers default="html"/>
-  <map:matchers default="wildcard"/>
-  <map:selectors default="browser"/>
- </map:components>
-
-<!-- =========================== Views =================================== -->
-
- <map:views>
-  <map:view name="content" from-label="content">
-   <map:serialize type="xml"/>
-  </map:view>
-
-  <map:view from-label="content" name="pretty-content">
-    <map:transform src="context://stylesheets/system/xml2html.xslt"/>
-    <map:serialize type="html"/>
-  </map:view>
-
-  <map:view name="links" from-position="last">
-   <map:serialize type="links"/>
-  </map:view>
- </map:views>
-
-<!-- =========================== Pipelines ================================= -->
-
- <map:pipelines>
-  <map:pipeline>
-
-   <map:match pattern="static-site/**.html">
-     <map:generate src="xdocs/{1}.xml"/>
-     <map:transform src="stylesheets/xdoc2html.xslt">
-      <map:parameter name="contextPath" value="{request:contextPath}"/>
-     </map:transform>
-     <map:serialize type="html"/>
-   </map:match>
-   </map:pipeline>
- </map:pipelines>
+  <map:views>
+    <map:view name="content" from-label="content">
+      <map:serialize type="xml"/>
+    </map:view>
+
+    <map:view from-label="content" name="pretty-content">
+      <map:transform src="context://stylesheets/system/xml2html.xslt"/>
+      <map:serialize type="html"/>
+    </map:view>
+
+    <map:view name="links" from-position="last">
+      <map:serialize type="links"/>
+    </map:view>
+  </map:views>
+
+  <!-- =========================== Pipelines ================================= -->
+
+  <map:pipelines>
+    <map:pipeline>
+
+      <map:match pattern="static-site/**.html">
+        <map:generate src="xdocs/{1}.xml"/>
+        <map:transform src="stylesheets/xdoc2html.xslt">
+          <map:parameter name="contextPath" value="{request:contextPath}"/>
+        </map:transform>
+        <map:serialize type="html"/>
+      </map:match>
+      
+    </map:pipeline>
+  </map:pipelines>
 </map:sitemap>