blob: 0afab43c06ce3842af9c1b88eff5e3a503e3ff59 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!-- $Id$ -->
<map:sitemap xmlns:map="http://apache.org/cocoon/sitemap/1.0">
<!-- ========================= Components ================================ -->
<map:components>
<map:generators default="file">
<map:generator name="linkstatus" src="org.apache.cocoon.generation.LinkStatusGenerator"/>
<map:generator name="calendar" src="org.apache.cocoon.generation.CalendarGenerator"/>
</map:generators>
<map:transformers default="xslt">
<map:transformer name="i18n" logger="sitemap.transformer.i18n" src="org.apache.cocoon.transformation.I18nTransformer">
<catalogues default="messages">
<catalogue id="messages" name="messages" location="common/i18n"/>
</catalogues>
</map:transformer>
</map:transformers>
</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:component-configurations>
<global-variables>
<!--+
| Define global parameters, used in the input modules GlobalInputModule demo.
+-->
<global-sitemap>This value is defined in the samples/sitemap.xmap</global-sitemap>
<global-sitemap-override>This value is defined in the samples/sitemap.xmap, should be overridden by samples/modules/sitemap.xmap</global-sitemap-override>
</global-variables>
</map:component-configurations>
<map:pipeline>
<map:match pattern="">
<map:generate src="samples.xml"/>
<map:transform src="context://samples/common/style/xsl/html/simple-samples2html.xsl">
<map:parameter name="contextPath" value="{request:contextPath}"/>
</map:transform>
<map:serialize/>
</map:match>
<!-- ========================= Stream ================================ -->
<map:match pattern="order">
<map:generate src="stream/OrderPage.xml"/>
<map:transform src="context://samples/stylesheets/dynamic-page2html.xsl">
<map:parameter name="servletPath" value="{request:servletPath}"/>
<map:parameter name="sitemapURI" value="{request:sitemapURI}"/>
<map:parameter name="contextPath" value="{request:contextPath}"/>
<map:parameter name="file" value=".xsp"/>
</map:transform>
<map:serialize type="html"/>
</map:match>
<map:match pattern="process-order">
<map:generate type="stream">
<map:parameter name="form-name" value="Foo"/>
</map:generate>
<map:transform src="context://stylesheets/system/xml2html.xslt"/>
<map:serialize type="html"/>
</map:match>
<!-- ======================= Other Samples =========================== -->
<map:match pattern="components">
<map:generate src="components-samples.xml"/>
<map:transform src="context://samples/common/style/xsl/html/simple-samples2html.xsl">
<map:parameter name="contextPath" value="{request:contextPath}"/>
</map:transform>
<map:serialize/>
</map:match>
<map:match pattern="misc">
<map:generate src="misc-samples.xml"/>
<map:transform src="context://samples/common/style/xsl/html/simple-samples2html.xsl">
<map:parameter name="contextPath" value="{request:contextPath}"/>
</map:transform>
<map:serialize/>
</map:match>
<map:match pattern="source-write.xml">
<map:generate src="components/source-writing-transformer.xml"/>
<map:transform type="write-source"/>
<map:serialize type="xml"/>
</map:match>
<map:match pattern="request.html">
<map:generate type="request"/>
<map:transform src="context://stylesheets/system/xml2html.xslt"/>
<map:serialize/>
</map:match>
<map:match pattern="cal">
<map:generate type="calendar" label="content">
<!-- Uncomment and set a value for the desired month and year
<map:parameter name="month" value="6"/>
<map:parameter name="year" value="1998"/>
-->
<map:parameter name="dateFormat" value="EEEE, MMMM d yyyy"/>
<map:parameter name="lang" value="{request-param:lang}"/>
<map:parameter name="country" value="{request-param:country}"/>
</map:generate>
<map:transform src="context://stylesheets/system/calendar2html.xslt"/>
<!-- to localize the column headers, remove the comments below -->
<!--
<map:transform type="i18n">
<map:parameter name="default-catalogue-id" value="messages"/>
<map:parameter name="locale" value="{request-param:lang}"/>
</map:transform>
-->
<map:serialize/>
</map:match>
<!-- ======================== Utilities ============================== -->
<map:match pattern="**sitemap.xmap">
<map:generate src="{0}"/>
<map:serialize type="xml"/>
</map:match>
<map:match pattern="linkstatus">
<map:redirect-to uri="linkstatus/localhost/8888/docs/index.html"/>
</map:match>
<map:match pattern="linkstatus/*/*/**">
<map:generate type="linkstatus" src="http://{1}:{2}/{3}"/>
<map:transform src="context://stylesheets/system/linkstatus2html.xslt"/>
<map:serialize/>
</map:match>
<map:match pattern="status.html">
<map:generate src="status" type="status"/>
<map:transform src="context://stylesheets/system/status2html.xslt">
<map:parameter name="contextPath" value="{request:contextPath}"/>
</map:transform>
<map:serialize/>
</map:match>
<map:match pattern="clearcache.html">
<map:act type="clear-cache">
<map:generate src="status" type="status"/>
<map:transform src="context://stylesheets/system/status2html.xslt">
<map:parameter name="contextPath" value="{request:contextPath}"/>
</map:transform>
<map:serialize/>
</map:act>
</map:match>
<map:match pattern="clearpersistentstore.html">
<map:act type="clear-persistent-store">
<map:generate src="status" type="status"/>
<map:transform src="context://stylesheets/system/status2html.xslt">
<map:parameter name="contextPath" value="{request:contextPath}"/>
</map:transform>
<map:serialize/>
</map:act>
<map:generate src="no-persistent-store.xml"/>
<map:transform src="context://stylesheets/system/xml2html.xslt"/>
<map:serialize type="html"/>
</map:match>
<!-- ========================= Automount ============================= -->
<map:match pattern="*/**">
<map:mount uri-prefix="{1}" src="{1}/" check-reload="yes"/>
</map:match>
</map:pipeline>
</map:pipelines>
</map:sitemap>