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

网格计算

开发平台:

Java

  1. #!/bin/sh
  2. # Licensed to the Apache Software Foundation (ASF) under one or more
  3. # contributor license agreements.  See the NOTICE file distributed with
  4. # this work for additional information regarding copyright ownership.
  5. # The ASF licenses this file to You under the Apache License, Version 2.0
  6. # (the "License"); you may not use this file except in compliance with
  7. # the License.  You may obtain a copy of the License at
  8. #
  9. #     http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. # This file is used to fix the paths in CNDOCS_SRC/uming.conf, CNDOCS_SRC/src/documentation/sitemap.xmap 
  17. CNDOCS_SRC=$1
  18. cat <<EOF > src/docs/cn/uming.conf
  19. <?xml version="1.0"?>
  20. <configuration>
  21.   <fonts>
  22.     <font metrics-file="$CNDOCS_SRC/uming.xml" kerning="yes" embed-file="$CNDOCS_SRC/uming.ttc">
  23.       <font-triplet name="AR PL UMing" style="normal" weight="normal"/>
  24.       <font-triplet name="AR PL UMing" style="italic" weight="normal"/>
  25.       <font-triplet name="AR PL UMing" style="normal" weight="bold"/>
  26.       <font-triplet name="AR PL UMing" style="italic" weight="bold"/>
  27.     </font>
  28.   </fonts>
  29. </configuration>
  30. EOF
  31. cat <<EOF > src/docs/cn/src/documentation/sitemap.xmap
  32. <?xml version="1.0"?>
  33. <!--
  34.   Licensed to the Apache Software Foundation (ASF) under one or more
  35.   contributor license agreements.  See the NOTICE file distributed with
  36.   this work for additional information regarding copyright ownership.
  37.   The ASF licenses this file to You under the Apache License, Version 2.0
  38.   (the "License"); you may not use this file except in compliance with
  39.   the License.  You may obtain a copy of the License at
  40.       http://www.apache.org/licenses/LICENSE-2.0
  41.   Unless required by applicable law or agreed to in writing, software
  42.   distributed under the License is distributed on an "AS IS" BASIS,
  43.   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  44.   See the License for the specific language governing permissions and
  45.   limitations under the License.
  46. -->
  47. <map:sitemap xmlns:map="http://apache.org/cocoon/sitemap/1.0">
  48.   <map:components>
  49.     <map:serializers default="fo2pdf">
  50.       <map:serializer name="fo2pdf"
  51.                 src="org.apache.cocoon.serialization.FOPSerializer"
  52.                 mime-type="application/pdf">
  53.         <user-config src="$CNDOCS_SRC/uming.conf"/>
  54.         </map:serializer>
  55.     </map:serializers>
  56.   </map:components>
  57.   <map:pipelines>
  58.     <map:pipeline>
  59. <!-- generate .pdf files from .fo -->
  60.       <map:match type="regexp" pattern="^(.*?)([^/]*).pdf$">
  61.         <map:select type="exists">
  62.           <map:when test="{lm:project.{1}{2}.pdf}">
  63.             <map:read src="{lm:project.{1}{2}.pdf}"/>
  64.           </map:when>
  65.           <map:when test="{lm:project.{1}{2}.fo}">
  66.             <map:generate src="{lm:project.{1}{2}.fo}"/>
  67.             <map:serialize type="fo2pdf"/>
  68.           </map:when>
  69.           <map:otherwise>
  70.             <map:generate src="cocoon://{1}{2}.fo"/>
  71.             <map:serialize type="fo2pdf"/>
  72.           </map:otherwise>
  73.         </map:select>
  74.       </map:match>
  75.     </map:pipeline>
  76.   </map:pipelines>
  77. </map:sitemap>
  78. EOF