1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
<?xml version="1.0"?>
<map:sitemap xmlns:map="http://apache.org/cocoon/sitemap/1.0">
<map:components>
<map:generators default="file"/>
<map:transformers default="xslt"/>
<map:readers default="resource"/>
<map:serializers default="html"/>
<map:selectors default="browser"/>
<map:matchers default="wildcard"/>
</map:components>
<map:pipelines>
<map:pipeline>
<map:match pattern="*/">
<map:redirect-to uri="index_home.xml"/>
</map:match>
</map:pipeline>
<map:pipeline>
<map:match pattern="*/test.xml">
<map:generate type="html" src="logic/PDeSOP/test.html"/>
<map:serialize/>
</map:match>
</map:pipeline>
(autres pipelines...) |