sitemap.xmap
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:2k
源码类别:

网格计算

开发平台:

Java

  1. <?xml version="1.0"?>
  2. <!--
  3.   Licensed to the Apache Software Foundation (ASF) under one or more
  4.   contributor license agreements.  See the NOTICE file distributed with
  5.   this work for additional information regarding copyright ownership.
  6.   The ASF licenses this file to You under the Apache License, Version 2.0
  7.   (the "License"); you may not use this file except in compliance with
  8.   the License.  You may obtain a copy of the License at
  9.       http://www.apache.org/licenses/LICENSE-2.0
  10.   Unless required by applicable law or agreed to in writing, software
  11.   distributed under the License is distributed on an "AS IS" BASIS,
  12.   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13.   See the License for the specific language governing permissions and
  14.   limitations under the License.
  15. -->
  16. <map:sitemap xmlns:map="http://apache.org/cocoon/sitemap/1.0">
  17.   <map:components>
  18.     <map:serializers default="fo2pdf">
  19.       <map:serializer name="fo2pdf"
  20.                 src="org.apache.cocoon.serialization.FOPSerializer"
  21.                 mime-type="application/pdf">
  22.         <user-config src="/home/ndaley/hadoop/branch-0.20/src/docs/cn/uming.conf"/>
  23.         </map:serializer>
  24.     </map:serializers>
  25.   </map:components>
  26.   <map:pipelines>
  27.     <map:pipeline>
  28. <!-- generate .pdf files from .fo -->
  29.       <map:match type="regexp" pattern="^(.*?)([^/]*).pdf$">
  30.         <map:select type="exists">
  31.           <map:when test="{lm:project.{1}{2}.pdf}">
  32.             <map:read src="{lm:project.{1}{2}.pdf}"/>
  33.           </map:when>
  34.           <map:when test="{lm:project.{1}{2}.fo}">
  35.             <map:generate src="{lm:project.{1}{2}.fo}"/>
  36.             <map:serialize type="fo2pdf"/>
  37.           </map:when>
  38.           <map:otherwise>
  39.             <map:generate src="cocoon://{1}{2}.fo"/>
  40.             <map:serialize type="fo2pdf"/>
  41.           </map:otherwise>
  42.         </map:select>
  43.       </map:match>
  44.     </map:pipeline>
  45.   </map:pipelines>
  46. </map:sitemap>