blob: 1916558598894feced282edc87da74c2b75eeeb7 [file] [log] [blame]
<?xml version="1.0"?>
<!--
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.
-->
<!--+
| HTML block samples sitemap
| CVS $Id: sitemap.xmap 230598 2005-08-06 21:53:09Z antonio $
+-->
<map:sitemap xmlns:map="http://apache.org/cocoon/sitemap/1.0">
<map:components>
<map:generators default="file">
<!-- use the new implementation of JX -->
<map:generator name="jx" src="org.apache.cocoon.template.JXTemplateGenerator"/>
</map:generators>
</map:components>
<map:flow language="javascript">
<map:script src="flow/captcha.js"/>
</map:flow>
<map:pipelines>
<map:pipeline type="caching">
<map:match pattern="">
<map:redirect-to uri="welcome"/>
</map:match>
<!-- list of samples -->
<map:match pattern="welcome">
<map:generate src="welcome.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="custom">
<map:generate src="custom.xhtml"/>
<map:serialize type="html"/>
</map:match>
<map:match pattern="simple">
<map:call function="simple"/>
</map:match>
<map:match pattern="continue">
<map:call continuation="{request-param:continuation}"/>
</map:match>
<map:match pattern="custom.jpeg">
<map:read type="captcha" src="{request-param:text}">
<map:parameter name="width" value="{request-param:width}"/>
<map:parameter name="height" value="{request-param:height}"/>
<map:parameter name="background" value="{request-param:background}"/>
<map:parameter name="foreground" value="{request-param:foreground}"/>
<map:parameter name="font" value="{request-param:font}"/>
<map:parameter name="scale" value="{request-param:scale}"/>
<map:parameter name="amount" value="{request-param:amount}"/>
<map:parameter name="quality" value="{request-param:quality}"/>
</map:read>
</map:match>
<map:match pattern="simple.jpeg">
<map:read type="captcha" src="{session-attr:captcha}"/>
</map:match>
<map:match pattern="**.jx">
<map:generate src="{1}.jx"/>
<map:transform type="jx" />
<map:serialize type="html"/>
</map:match>
</map:pipeline>
</map:pipelines>
</map:sitemap>