You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by sc...@apache.org on 2007/04/06 23:06:42 UTC

svn commit: r526279 [2/3] - in /incubator/uima/uimaj/trunk/uima-docbook-tool: build/ build/samples/ catalog/ catalog/docbook.version_4.4/ catalog/docbook.version_4.5/ properties/ properties/samples/ styles/ styles/common/ styles/common/samples/ styles/...

Added: incubator/uima/uimaj/trunk/uima-docbook-tool/styles/uima-style/titlepage/titlepage-pdf.xsl
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uima-docbook-tool/styles/uima-style/titlepage/titlepage-pdf.xsl?view=auto&rev=526279
==============================================================================
--- incubator/uima/uimaj/trunk/uima-docbook-tool/styles/uima-style/titlepage/titlepage-pdf.xsl (added)
+++ incubator/uima/uimaj/trunk/uima-docbook-tool/styles/uima-style/titlepage/titlepage-pdf.xsl Fri Apr  6 14:06:38 2007
@@ -0,0 +1,197 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:exsl="http://exslt.org/common" version="1.0" exclude-result-prefixes="exsl">
+
+<!-- This stylesheet was created by template/titlepage.xsl; do not edit it by hand. -->
+
+<xsl:template name="book.titlepage.recto">
+  <xsl:choose>
+    <xsl:when test="bookinfo/title">
+      <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/title"/>
+    </xsl:when>
+    <xsl:when test="info/title">
+      <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/title"/>
+    </xsl:when>
+    <xsl:when test="title">
+      <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="title"/>
+    </xsl:when>
+  </xsl:choose>
+
+  <xsl:choose>
+    <xsl:when test="bookinfo/subtitle">
+      <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/subtitle"/>
+    </xsl:when>
+    <xsl:when test="info/subtitle">
+      <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/subtitle"/>
+    </xsl:when>
+    <xsl:when test="subtitle">
+      <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="subtitle"/>
+    </xsl:when>
+  </xsl:choose>
+
+  <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/corpauthor"/>
+  <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/corpauthor"/>
+  <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/authorgroup"/>
+  <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/authorgroup"/>
+  <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/author"/>
+  <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/author"/>
+  <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/othercredit"/>
+  <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/othercredit"/>
+  <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/mediaobject"/>
+  <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/mediaobject"/>
+  <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/releaseinfo"/>
+  <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/releaseinfo"/>
+  <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/revision"/>
+  <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/revision"/>
+  <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/revhistory"/>
+  <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/revhistory"/>
+  <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="bookinfo/abstract"/>
+  <xsl:apply-templates mode="book.titlepage.recto.auto.mode" select="info/abstract"/>
+</xsl:template>
+
+<xsl:template name="book.titlepage.verso">
+  <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="bookinfo/copyright"/>
+  <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="info/copyright"/>
+  <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="bookinfo/legalnotice"/>
+  <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="info/legalnotice"/>
+  <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="bookinfo/pubdate"/>
+  <xsl:apply-templates mode="book.titlepage.verso.auto.mode" select="info/pubdate"/>
+</xsl:template>
+
+<xsl:template name="book.titlepage.separator">
+</xsl:template>
+
+<xsl:template name="book.titlepage">
+  <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format">
+    <xsl:variable name="recto.content">
+      <xsl:call-template name="book.titlepage.before.recto"/>
+      <xsl:call-template name="book.titlepage.recto"/>
+    </xsl:variable>
+    <xsl:variable name="recto.elements.count">
+      <xsl:choose>
+        <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when>
+        <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')">
+          <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($recto.content)/*)"/></xsl:when>
+        <xsl:otherwise>1</xsl:otherwise>
+      </xsl:choose>
+    </xsl:variable>
+    <xsl:if test="(normalize-space($recto.content) != '') or ($recto.elements.count &gt; 0)">
+      <fo:block><xsl:copy-of select="$recto.content"/></fo:block>
+    </xsl:if>
+    <xsl:variable name="verso.content">
+      <xsl:call-template name="book.titlepage.before.verso"/>
+      <xsl:call-template name="book.titlepage.verso"/>
+    </xsl:variable>
+    <xsl:variable name="verso.elements.count">
+      <xsl:choose>
+        <xsl:when test="function-available('exsl:node-set')"><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when>
+        <xsl:when test="contains(system-property('xsl:vendor'), 'Apache Software Foundation')">
+          <!--Xalan quirk--><xsl:value-of select="count(exsl:node-set($verso.content)/*)"/></xsl:when>
+        <xsl:otherwise>1</xsl:otherwise>
+      </xsl:choose>
+    </xsl:variable>
+    <xsl:if test="(normalize-space($verso.content) != '') or ($verso.elements.count &gt; 0)">
+      <fo:block><xsl:copy-of select="$verso.content"/></fo:block>
+    </xsl:if>
+    <xsl:call-template name="book.titlepage.separator"/>
+  </fo:block>
+</xsl:template>
+
+<xsl:template match="*" mode="book.titlepage.recto.mode">
+  <!-- if an element isn't found in this mode, -->
+  <!-- try the generic titlepage.mode -->
+  <xsl:apply-templates select="." mode="titlepage.mode"/>
+</xsl:template>
+
+<xsl:template match="*" mode="book.titlepage.verso.mode">
+  <!-- if an element isn't found in this mode, -->
+  <!-- try the generic titlepage.mode -->
+  <xsl:apply-templates select="." mode="titlepage.mode"/>
+</xsl:template>
+
+<xsl:template match="title" mode="book.titlepage.recto.auto.mode">
+<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.recto.style" text-align="center" font-size="20pt" space-before="15pt" font-weight="bold" font-family="{$title.fontset}">
+<xsl:call-template name="division.title">
+<xsl:with-param name="node" select="ancestor-or-self::book[1]"/>
+</xsl:call-template>
+</fo:block>
+</xsl:template>
+
+<xsl:template match="subtitle" mode="book.titlepage.recto.auto.mode">
+<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.recto.style" text-align="center" font-size="18pt" space-before="13.5pt" font-family="{$title.fontset}">
+<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/>
+</fo:block>
+</xsl:template>
+
+<xsl:template match="corpauthor" mode="book.titlepage.recto.auto.mode">
+<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.recto.style" space-before="0.5em" font-size="14pt">
+<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/>
+</fo:block>
+</xsl:template>
+
+<xsl:template match="authorgroup" mode="book.titlepage.recto.auto.mode">
+<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.recto.style" space-before="0.5em" font-size="14pt">
+<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/>
+</fo:block>
+</xsl:template>
+
+<xsl:template match="author" mode="book.titlepage.recto.auto.mode">
+<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.recto.style" space-before="0.5em" font-size="14pt">
+<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/>
+</fo:block>
+</xsl:template>
+
+<xsl:template match="othercredit" mode="book.titlepage.recto.auto.mode">
+<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.recto.style" space-before="0.5em">
+<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/>
+</fo:block>
+</xsl:template>
+
+<xsl:template match="mediaobject" mode="book.titlepage.recto.auto.mode">
+<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.recto.style" space-before="2em" space-after="2em">
+<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/>
+</fo:block>
+</xsl:template>
+
+<xsl:template match="releaseinfo" mode="book.titlepage.recto.auto.mode">
+<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.recto.style" space-before="5em">
+<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/>
+</fo:block>
+</xsl:template>
+
+<xsl:template match="revision" mode="book.titlepage.recto.auto.mode">
+<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.recto.style" space-before="0.5em">
+<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/>
+</fo:block>
+</xsl:template>
+
+<xsl:template match="revhistory" mode="book.titlepage.recto.auto.mode">
+<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.recto.style" space-before="0.5em">
+<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/>
+</fo:block>
+</xsl:template>
+
+<xsl:template match="abstract" mode="book.titlepage.recto.auto.mode">
+<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.recto.style" space-before="0.5em" text-align="start" margin-left="0.5in" margin-right="0.5in" font-family="{$body.fontset}">
+<xsl:apply-templates select="." mode="book.titlepage.recto.mode"/>
+</fo:block>
+</xsl:template>
+
+<xsl:template match="copyright" mode="book.titlepage.verso.auto.mode">
+<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.verso.style" space-before="0.5em">
+<xsl:apply-templates select="." mode="book.titlepage.verso.mode"/>
+</fo:block>
+</xsl:template>
+
+<xsl:template match="legalnotice" mode="book.titlepage.verso.auto.mode">
+<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.verso.style" text-align="start" margin-left="0.5in" margin-right="0.5in" font-family="{$body.fontset}">
+<xsl:apply-templates select="." mode="book.titlepage.verso.mode"/>
+</fo:block>
+</xsl:template>
+
+<xsl:template match="pubdate" mode="book.titlepage.verso.auto.mode">
+<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format" xsl:use-attribute-sets="book.titlepage.verso.style" space-before="3.5em">
+<xsl:apply-templates select="." mode="book.titlepage.verso.mode"/>
+</fo:block>
+</xsl:template>
+
+</xsl:stylesheet>

Added: incubator/uima/uimaj/trunk/uima-docbook-tool/styles/uima-style/top/html-single.xsl
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uima-docbook-tool/styles/uima-style/top/html-single.xsl?view=auto&rev=526279
==============================================================================
--- incubator/uima/uimaj/trunk/uima-docbook-tool/styles/uima-style/top/html-single.xsl (added)
+++ incubator/uima/uimaj/trunk/uima-docbook-tool/styles/uima-style/top/html-single.xsl Fri Apr  6 14:06:38 2007
@@ -0,0 +1,44 @@
+<?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.
+-->
+
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+                version='1.0'>
+
+  <!-- This file is always imported by another xsl file in another project
+       having the data.
+    
+       That other file (see styles/common/samples) imports also:
+          the right docbook version / pdf or html or html single
+          the titlepage generated xsl
+     -->     
+  
+  <!-- relative urls are relative to this stylesheet location -->
+  <!-- xsl:imports must be first in the file, and have lower precedence
+       than following elements -->
+  
+  <xsl:import href="../common/html.xsl"/>
+  <xsl:import href="../common/html-pdf.xsl"/>
+      
+  <!-- where to find the css stylesheet -->
+  <xsl:param name="html.stylesheet">css/stylesheet-html.css</xsl:param>
+
+</xsl:stylesheet>
+

Added: incubator/uima/uimaj/trunk/uima-docbook-tool/styles/uima-style/top/pdf.xsl
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uima-docbook-tool/styles/uima-style/top/pdf.xsl?view=auto&rev=526279
==============================================================================
--- incubator/uima/uimaj/trunk/uima-docbook-tool/styles/uima-style/top/pdf.xsl (added)
+++ incubator/uima/uimaj/trunk/uima-docbook-tool/styles/uima-style/top/pdf.xsl Fri Apr  6 14:06:38 2007
@@ -0,0 +1,520 @@
+<?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.
+-->
+
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+                xmlns:fo="http://www.w3.org/1999/XSL/Format"
+                version='1.0'>
+  
+  <!-- This file is always imported by another xsl file in another project
+       having the data.
+    
+       That other file (see styles/common/samples) imports also:
+          the right docbook version / pdf or html or html single
+          the titlepage generated xsl
+     -->     
+  
+  <!-- relative urls are relative to this stylesheet location -->
+  <!-- xsl:imports must be first in the file, and have lower precedence
+       than following elements -->
+    
+  <xsl:import href="../common/html-pdf.xsl" />
+  
+  <xsl:param name="fop.version"/>
+  <xsl:param name="docbook.xsl.root"/>
+  
+  
+  <!-- selects fop or fop1 for 0.20.5 / 0.93 versions of FOP -->
+  <xsl:param name="fop1.extensions">
+    <xsl:choose>
+      <xsl:when test="$fop.version = '0.93'">1</xsl:when>
+      <xsl:otherwise>0</xsl:otherwise>
+    </xsl:choose>
+  </xsl:param>
+  
+   <xsl:param name="fop.extensions">
+    <xsl:choose>
+      <xsl:when test="$fop.version = '0.20.5'">1</xsl:when>
+      <xsl:otherwise>0</xsl:otherwise>
+    </xsl:choose>
+  </xsl:param>
+   
+  <xsl:param name="draft.watermark.image" select="concat($docbook.xsl.root, '/images/draft.png')"/>
+
+  <!-- Fonts, default alignment -->
+   
+  <xsl:param name="body.font.family"  select="'Palatino'"/>
+  <xsl:param name="body.font.master"    select="'10.5'"/>
+  
+<!--###################################################
+                      0.93 fixups
+    ################################################### -->
+  <!--  Need to verify OK for 0.20.5  -->
+    <xsl:attribute-set name="table.properties">
+      <xsl:attribute name="keep-together.within-column">auto</xsl:attribute>
+    </xsl:attribute-set>
+    
+  
+<!--###################################################
+                      olink styling
+    ################################################### -->
+  <xsl:param name="insert.xref.page.number" select="'yes'"/>
+  <xsl:param name="insert.olink.pdf.frag" select="1"/>
+
+  <!--###################################################
+                      xref (and ulink) styling
+    ################################################### -->
+  <xsl:attribute-set name="xref.properties">
+      <xsl:attribute name="color">blue</xsl:attribute>
+  </xsl:attribute-set>
+  
+  <!--###################################################
+                      Monospace font size
+    ################################################### -->
+  
+  <xsl:attribute-set name="monospace.properties">
+    <xsl:attribute name="font-size">
+      <xsl:choose>
+        <xsl:when test="processing-instruction('db-font-size')">
+          <xsl:value-of select="processing-instruction('db-font-size')"/>
+        </xsl:when>
+        <xsl:otherwise>9.5pt</xsl:otherwise>
+      </xsl:choose>
+    </xsl:attribute>
+  </xsl:attribute-set>
+ 
+  <xsl:attribute-set name="monospace.verbatim.properties">
+    <xsl:attribute name="font-size">
+      <xsl:choose>
+        <xsl:when test="processing-instruction('db-font-size')">
+          <xsl:value-of select="processing-instruction('db-font-size')"/>
+        </xsl:when>
+        <xsl:otherwise>9pt</xsl:otherwise>
+      </xsl:choose>
+    </xsl:attribute>
+  </xsl:attribute-set>
+
+<!--###################################################
+                      Center figure captions
+    ################################################### -->
+  
+  <xsl:attribute-set name="informalfigure.properties">
+    <xsl:attribute name="text-align">center</xsl:attribute>
+  </xsl:attribute-set>
+
+  <xsl:attribute-set name="figure.properties">
+    <xsl:attribute name="text-align">center</xsl:attribute>
+  </xsl:attribute-set>
+
+<!--###################################################
+                      Page margins
+    ################################################### -->   
+  <xsl:param name="page.margin.top" select="'1cm'"/>
+  <!-- region.before.extent = height of the header -->
+  <xsl:param name="region.before.extent" select="'1cm'"/>
+  <xsl:param name="body.margin.top" select="'1.5cm'"/>
+
+  <xsl:param name="body.margin.bottom" select="'1.5cm'"/>
+  <!-- region.after.extent = height of area where footers are printed -->
+  <xsl:param name="region.after.extent" select="'1cm'"/>
+  <xsl:param name="page.margin.bottom" select="'1cm'"/>
+  <xsl:param name="title.margin.left">
+    <xsl:choose>
+      <xsl:when test="$fop.extensions != 0">-4pc</xsl:when>
+      <xsl:otherwise>0pt</xsl:otherwise>
+    </xsl:choose>
+  </xsl:param>
+  <xsl:param name="body.start.indent">
+    <xsl:choose>
+      <xsl:when test="$fop.extensions != 0">0pt</xsl:when>
+      <xsl:otherwise>4pc</xsl:otherwise>
+    </xsl:choose>
+  </xsl:param>
+  
+  <xsl:param name="page.margin.inner" select="'1.3in'"/>
+  <xsl:param name="page.margin.outer" select="'.70in'"/>
+  
+<!--###################################################
+                      Header
+    ################################################### -->
+    <!-- More space in the center header for long text -->
+    <xsl:param name="header.column.widths">1 90 1</xsl:param>
+    <xsl:attribute-set name="header.content.properties">
+        <xsl:attribute name="font-family">
+            <xsl:value-of select="$body.font.family"/>
+        </xsl:attribute>
+        <xsl:attribute name="margin-left">0em</xsl:attribute>
+        <xsl:attribute name="margin-right">0em</xsl:attribute>
+    </xsl:attribute-set>
+
+<!--###################################################
+                      Custom Footer
+    ################################################### -->
+    <xsl:attribute-set name="footer.content.properties">
+        <xsl:attribute name="font-family">
+            <xsl:value-of select="$body.font.family"/>
+        </xsl:attribute>
+        <xsl:attribute name="margin-left">0em</xsl:attribute>
+        <xsl:attribute name="margin-right">0em</xsl:attribute>
+    </xsl:attribute-set>
+
+      <!-- width specifications: inside, center, outside -->
+    <xsl:param name="footer.column.widths">2 6 1</xsl:param>
+  
+    <xsl:template name="footer.content">
+        <xsl:param name="pageclass" select="''"/>
+        <xsl:param name="sequence" select="''"/>
+        <xsl:param name="position" select="''"/>
+        <xsl:param name="gentext-key" select="''"/>
+
+        <xsl:variable name="Version">
+          <xsl:choose>
+            <xsl:when test="//productname">
+              <xsl:value-of select="//productname"/><xsl:text> </xsl:text>
+            </xsl:when>
+            <xsl:otherwise>
+              <xsl:text>please define productname in your docbook file!</xsl:text>
+            </xsl:otherwise>
+          </xsl:choose>
+
+          <xsl:choose>
+            <xsl:when test="//releaseinfo">
+              <xsl:value-of select="//releaseinfo"/>
+            </xsl:when>
+            <xsl:otherwise>
+                <!-- nop -->
+            </xsl:otherwise>
+          </xsl:choose>
+        </xsl:variable>
+
+        <xsl:variable name="Title">
+          <!-- <xsl:value-of select="//title"/> -->
+          <xsl:apply-templates select="." mode="titleabbrev.markup"/>
+        </xsl:variable>
+
+        <xsl:choose>
+          <xsl:when test="$sequence='blank'">
+            <xsl:choose>
+              <xsl:when test="$double.sided != 0 and $position = 'left'">
+                <xsl:value-of select="$Version"/>
+              </xsl:when>
+
+              <xsl:when test="$double.sided = 0 and $position = 'center'">
+                <!-- nop -->
+              </xsl:when>
+
+              <xsl:otherwise>
+                <fo:page-number/>
+              </xsl:otherwise>
+            </xsl:choose>
+          </xsl:when>
+
+          <xsl:when test="$pageclass='titlepage'">
+          <!-- nop: other titlepage sequences have no footer -->
+          </xsl:when>
+
+          <xsl:when test="$double.sided != 0 and $sequence = 'even' and $position='left'">
+            <fo:page-number/>
+          </xsl:when>
+
+          <xsl:when test="$double.sided != 0 and ($sequence = 'odd' or $sequence = 'first') and $position='right'">
+            <fo:page-number/>
+          </xsl:when>
+
+          <xsl:when test="$double.sided = 0 and $position='right'">
+           <fo:page-number/>
+          </xsl:when>
+
+          <xsl:when test="$double.sided != 0 and $sequence = 'odd' and $position='left'">
+            <xsl:value-of select="$Version"/>
+          </xsl:when>
+
+          <xsl:when test="$double.sided != 0 and $sequence = 'even' and $position='right'">
+            <xsl:value-of select="$Version"/>
+          </xsl:when>
+
+          <xsl:when test="$double.sided = 0 and $position='left'">
+            <xsl:value-of select="$Version"/>
+          </xsl:when>
+
+          <xsl:when test="$position='center'">
+            <xsl:value-of select="$Title"/>
+          </xsl:when>
+
+          <xsl:otherwise>
+          <!-- nop -->
+          </xsl:otherwise>
+        </xsl:choose>
+    </xsl:template>
+
+<!--###################################################
+                      Extensions
+    ################################################### -->
+
+    <!-- These extensions are required for table printing and other stuff -->
+    <xsl:param name="use.extensions">1</xsl:param>
+    <!-- next set to 0 for now.  1 should work but an extension fn is missing 
+      see: http://sourceware.org/ml/docbook-apps/2004-q4/msg00703.html -->
+    <xsl:param name="tablecolumns.extension">0</xsl:param>
+
+<!--###################################################
+                   Paper & Page Size
+    ################################################### -->
+
+    <!-- Paper type, no headers on blank pages, no double sided printing -->
+    <xsl:param name="double.sided">1</xsl:param>
+    <xsl:param name="headers.on.blank.pages">0</xsl:param>
+    <xsl:param name="footers.on.blank.pages">0</xsl:param>
+
+<!--###################################################
+                   Fonts & Styles
+    ################################################### -->
+
+    <xsl:param name="hyphenate">false</xsl:param>
+
+    <!-- Line height in body text -->
+    <xsl:param name="line-height">1.35</xsl:param>
+
+<!--###################################################
+                   Tables
+    ################################################### -->
+
+    <!-- Some padding inside tables -->
+    <xsl:attribute-set name="table.cell.padding">
+        <xsl:attribute name="padding-left">4pt</xsl:attribute>
+        <xsl:attribute name="padding-right">4pt</xsl:attribute>
+        <xsl:attribute name="padding-top">4pt</xsl:attribute>
+        <xsl:attribute name="padding-bottom">4pt</xsl:attribute>
+    </xsl:attribute-set>
+
+    <!-- Only hairlines as frame and cell borders in tables -->
+    <!-- note that 72 pt = 1 in, and values like 0.1pt cause problems
+         in FOP 0.93 but work in FOP 0.20.5 -->
+    <xsl:param name="table.frame.border.thickness">.7pt</xsl:param>
+    <xsl:param name="table.cell.border.thickness">.7pt</xsl:param>
+
+<!--###################################################
+                         Labels
+    ################################################### -->
+   
+    <xsl:attribute-set name="component.title.properties">
+      <xsl:attribute name="border-top">
+        <xsl:text>solid black 2pt</xsl:text>
+      </xsl:attribute> 
+      <xsl:attribute name="font-size">
+        <xsl:value-of select="$body.font.master * 2"/>
+        <xsl:text>pt</xsl:text>
+      </xsl:attribute> 
+    </xsl:attribute-set>
+ 
+    <xsl:attribute-set name="section.title.level1.properties">
+      <xsl:attribute name="border-top">
+        <xsl:text>solid black 1pt</xsl:text>
+      </xsl:attribute>
+      <xsl:attribute name="font-size">
+        <xsl:value-of select="$body.font.master * 1.8"/>
+        <xsl:text>pt</xsl:text>
+      </xsl:attribute> 
+    </xsl:attribute-set>
+
+      <xsl:attribute-set name="section.title.level2.properties">
+      <xsl:attribute name="border-top">
+        <xsl:text>solid black .75pt</xsl:text>
+      </xsl:attribute> 
+      <xsl:attribute name="font-size">
+        <xsl:value-of select="$body.font.master * 1.6"/>
+        <xsl:text>pt</xsl:text>
+      </xsl:attribute>  
+    </xsl:attribute-set>
+
+    <xsl:attribute-set name="section.title.level3.properties">
+      <xsl:attribute name="border-top">
+        <xsl:text>solid black .5pt</xsl:text>
+      </xsl:attribute> 
+      <xsl:attribute name="font-size">
+        <xsl:value-of select="$body.font.master * 1.4"/>
+        <xsl:text>pt</xsl:text>
+      </xsl:attribute>
+      <xsl:attribute name="margin-left">
+        <xsl:choose>
+          <xsl:when test="$fop.extensions != 0">-2pc</xsl:when>
+          <xsl:when test="$fop1.extensions != 0">2pc</xsl:when>
+        </xsl:choose>  
+      </xsl:attribute>
+    </xsl:attribute-set>
+  
+    <xsl:attribute-set name="section.title.level4.properties">
+      <xsl:attribute name="font-size">
+        <xsl:value-of select="$body.font.master * 1.3"/>
+        <xsl:text>pt</xsl:text>
+      </xsl:attribute>
+      <xsl:attribute name="margin-left">
+        <xsl:choose>
+          <xsl:when test="$fop.extensions != 0">-2pc</xsl:when>
+          <xsl:when test="$fop1.extensions != 0">2pc</xsl:when>
+        </xsl:choose>  
+      </xsl:attribute>
+    </xsl:attribute-set>
+  
+    <xsl:attribute-set name="section.title.level5.properties">
+      <xsl:attribute name="font-size">
+        <xsl:value-of select="$body.font.master * 1.2"/>
+        <xsl:text>pt</xsl:text>
+      </xsl:attribute>  
+      <xsl:attribute name="margin-left">
+        <xsl:choose>
+          <xsl:when test="$fop.extensions != 0">-2pc</xsl:when>
+          <xsl:when test="$fop1.extensions != 0">2pc</xsl:when>
+        </xsl:choose>  
+      </xsl:attribute>
+    </xsl:attribute-set>
+  
+<!--###################################################
+                      Programlistings
+    ################################################### -->
+
+    <xsl:attribute-set name="verbatim.properties">
+        <xsl:attribute name="font-size">9pt</xsl:attribute>
+        <xsl:attribute name="space-before.minimum">1em</xsl:attribute>
+        <xsl:attribute name="space-before.optimum">1em</xsl:attribute>
+        <xsl:attribute name="space-before.maximum">1em</xsl:attribute>
+        <!-- alef: commented out because footnotes were screwed because of it -->
+        <!--<xsl:attribute name="space-after.minimum">0.1em</xsl:attribute>
+        <xsl:attribute name="space-after.optimum">0.1em</xsl:attribute>
+        <xsl:attribute name="space-after.maximum">0.1em</xsl:attribute>-->
+
+        <xsl:attribute name="border-color">#444444</xsl:attribute>
+        <xsl:attribute name="border-style">solid</xsl:attribute>
+        <xsl:attribute name="border-width">0.1pt</xsl:attribute>
+        <xsl:attribute name="padding-top">0.5em</xsl:attribute>
+        <xsl:attribute name="padding-left">0.5em</xsl:attribute>
+        <xsl:attribute name="padding-right">0.5em</xsl:attribute>
+        <xsl:attribute name="padding-bottom">0.5em</xsl:attribute>
+        <xsl:attribute name="margin-left">0.5em</xsl:attribute>
+        <xsl:attribute name="margin-right">0.5em</xsl:attribute>
+    </xsl:attribute-set>
+
+    <!-- Shade (background) programlistings -->
+    <xsl:param name="shade.verbatim">1</xsl:param>
+    <xsl:attribute-set name="shade.verbatim.style">
+        <xsl:attribute name="background-color">#F0F0F0</xsl:attribute>
+    </xsl:attribute-set>
+
+    <xsl:attribute-set name="list.block.spacing">
+      <xsl:attribute name="space-before.optimum">0.1em</xsl:attribute>
+      <xsl:attribute name="space-before.minimum">0.1em</xsl:attribute>
+      <xsl:attribute name="space-before.maximum">0.1em</xsl:attribute>
+      <xsl:attribute name="space-after.optimum">0.1em</xsl:attribute>
+      <xsl:attribute name="space-after.minimum">0.1em</xsl:attribute>
+      <xsl:attribute name="space-after.maximum">0.1em</xsl:attribute>
+    </xsl:attribute-set>
+
+    <xsl:attribute-set name="example.properties">
+      <xsl:attribute name="space-before.minimum">0.5em</xsl:attribute>
+      <xsl:attribute name="space-before.optimum">0.5em</xsl:attribute>
+      <xsl:attribute name="space-before.maximum">0.5em</xsl:attribute>
+      <xsl:attribute name="space-after.minimum">0.1em</xsl:attribute>
+      <xsl:attribute name="space-after.optimum">0.1em</xsl:attribute>
+      <xsl:attribute name="space-after.maximum">0.1em</xsl:attribute>
+      <xsl:attribute name="keep-together.within-column">always</xsl:attribute>
+    </xsl:attribute-set>
+
+<!--###################################################
+        Title information for Figures, Examples etc.
+    ################################################### -->
+
+    <xsl:attribute-set name="formal.title.properties" use-attribute-sets="normal.para.spacing">
+      <xsl:attribute name="font-weight">normal</xsl:attribute>
+      <xsl:attribute name="font-style">italic</xsl:attribute>
+      <xsl:attribute name="font-size">
+        <xsl:value-of select="concat($body.font.master, 'pt')"/>
+      </xsl:attribute>
+      <xsl:attribute name="hyphenate">false</xsl:attribute>
+      <xsl:attribute name="space-before.minimum">0.1em</xsl:attribute>
+      <xsl:attribute name="space-before.optimum">0.1em</xsl:attribute>
+      <xsl:attribute name="space-before.maximum">0.1em</xsl:attribute>
+    </xsl:attribute-set>
+
+<!--###################################################
+                          Misc
+    ################################################### -->
+
+  <!-- FOP 0.25 doens't support body.start.indent 
+  <xsl:param name="body.start.indent">.75in</xsl:param>
+   -->
+  
+  <!-- Remove "Chapter" from the Chapter titles... 
+  <xsl:param name="local.l10n.xml" select="document('')"/>
+  <l:i18n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0">
+    <l:l10n language="en">
+      <l:context name="title-numbered">
+        <l:template name="chapter" text="%n.&#160;%t"/>
+        <l:template name="section" text="%n&#160;%t"/>
+      </l:context>
+      <l:context name="title">
+        <l:template name="example" text="Example&#160;%n&#160;%t"/>
+      </l:context>
+    </l:l10n>
+  </l:i18n>
+--> 
+  
+<!-- workaround for FOP 0.20.5 switch to symbol fonts -->
+  <xsl:template match="symbol[@role = 'symbolfont']">
+    <fo:inline font-family="Symbol">
+      <xsl:call-template name="inline.charseq"/>
+    </fo:inline>
+  </xsl:template>
+
+  <!-- bold-italic formatting -->
+  <xsl:template match="emphasis[@role='bold-italic']">
+   <fo:inline font-weight="bold" font-style="italic">
+     <xsl:apply-templates/>
+   </fo:inline>
+ </xsl:template>
+  
+  <!-- Make notes display inline for 1st para --> 
+  <xsl:template name="nongraphical.admonition">
+    <xsl:variable name="id">
+      <xsl:call-template name="object.id"/>
+    </xsl:variable>
+
+    <xsl:choose>
+      <xsl:when test="child::*[1]/self::para">
+        <fo:block id="{$id}"
+               xsl:use-attribute-sets="nongraphical.admonition.properties">
+          <fo:block>
+            <fo:inline keep-with-next.within-line='always'
+                 xsl:use-attribute-sets="admonition.title.properties">
+              <xsl:apply-templates select="." mode="object.title.markup"/>
+              <xsl:text>: </xsl:text>
+            </fo:inline>
+            <xsl:apply-templates select="para[1]/node()"/>
+          </fo:block>
+          <xsl:apply-templates select="*[not(self::para[1])]"/>
+        </fo:block>
+      </xsl:when>
+      <xsl:otherwise>
+        <xsl:apply-imports/>
+      </xsl:otherwise>
+    </xsl:choose>
+  </xsl:template> 
+
+</xsl:stylesheet>
+

Added: incubator/uima/uimaj/trunk/uima-docbook-tool/tools/common-lib/LICENSES
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uima-docbook-tool/tools/common-lib/LICENSES?view=auto&rev=526279
==============================================================================
--- incubator/uima/uimaj/trunk/uima-docbook-tool/tools/common-lib/LICENSES (added)
+++ incubator/uima/uimaj/trunk/uima-docbook-tool/tools/common-lib/LICENSES Fri Apr  6 14:06:38 2007
@@ -0,0 +1,2 @@
+- avalon-framework, batik, commons-io (Jakarta), commons-logging (Jakarta), fop, xercesImpl, xml-apis, xml-resolver are distributed unter the
+  Apache Software License 2.0. See LICENSES-APACHE.txt for information

Added: incubator/uima/uimaj/trunk/uima-docbook-tool/tools/common-lib/LICENSES-APACHE.txt
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uima-docbook-tool/tools/common-lib/LICENSES-APACHE.txt?view=auto&rev=526279
==============================================================================
--- incubator/uima/uimaj/trunk/uima-docbook-tool/tools/common-lib/LICENSES-APACHE.txt (added)
+++ incubator/uima/uimaj/trunk/uima-docbook-tool/tools/common-lib/LICENSES-APACHE.txt Fri Apr  6 14:06:38 2007
@@ -0,0 +1,202 @@
+
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed 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.

Added: incubator/uima/uimaj/trunk/uima-docbook-tool/tools/common-lib/avalon-framework-api-4.3.jar
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uima-docbook-tool/tools/common-lib/avalon-framework-api-4.3.jar?view=auto&rev=526279
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/uimaj/trunk/uima-docbook-tool/tools/common-lib/avalon-framework-api-4.3.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/uimaj/trunk/uima-docbook-tool/tools/common-lib/avalon-framework-impl-4.3.jar
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uima-docbook-tool/tools/common-lib/avalon-framework-impl-4.3.jar?view=auto&rev=526279
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/uimaj/trunk/uima-docbook-tool/tools/common-lib/avalon-framework-impl-4.3.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/uimaj/trunk/uima-docbook-tool/tools/common-lib/batik-all-1.6.jar
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uima-docbook-tool/tools/common-lib/batik-all-1.6.jar?view=auto&rev=526279
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/uimaj/trunk/uima-docbook-tool/tools/common-lib/batik-all-1.6.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/uimaj/trunk/uima-docbook-tool/tools/common-lib/commons-io-1.1.jar
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uima-docbook-tool/tools/common-lib/commons-io-1.1.jar?view=auto&rev=526279
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/uimaj/trunk/uima-docbook-tool/tools/common-lib/commons-io-1.1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/uimaj/trunk/uima-docbook-tool/tools/common-lib/commons-logging-1.0.4.jar
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uima-docbook-tool/tools/common-lib/commons-logging-1.0.4.jar?view=auto&rev=526279
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/uimaj/trunk/uima-docbook-tool/tools/common-lib/commons-logging-1.0.4.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/uimaj/trunk/uima-docbook-tool/tools/common-lib/xercesImpl-2.7.1.jar
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uima-docbook-tool/tools/common-lib/xercesImpl-2.7.1.jar?view=auto&rev=526279
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/uimaj/trunk/uima-docbook-tool/tools/common-lib/xercesImpl-2.7.1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/uimaj/trunk/uima-docbook-tool/tools/common-lib/xml-apis-1.3.02.jar
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uima-docbook-tool/tools/common-lib/xml-apis-1.3.02.jar?view=auto&rev=526279
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/uimaj/trunk/uima-docbook-tool/tools/common-lib/xml-apis-1.3.02.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/uimaj/trunk/uima-docbook-tool/tools/common-lib/xml-resolver-1.1.jar
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uima-docbook-tool/tools/common-lib/xml-resolver-1.1.jar?view=auto&rev=526279
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/uimaj/trunk/uima-docbook-tool/tools/common-lib/xml-resolver-1.1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/uimaj/trunk/uima-docbook-tool/tools/fop-versions/fop-0.20.5/fonts/palatino-bold-italic.xml
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uima-docbook-tool/tools/fop-versions/fop-0.20.5/fonts/palatino-bold-italic.xml?view=auto&rev=526279
==============================================================================
--- incubator/uima/uimaj/trunk/uima-docbook-tool/tools/fop-versions/fop-0.20.5/fonts/palatino-bold-italic.xml (added)
+++ incubator/uima/uimaj/trunk/uima-docbook-tool/tools/fop-versions/fop-0.20.5/fonts/palatino-bold-italic.xml Fri Apr  6 14:06:38 2007
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><font-metrics type="TRUETYPE"><font-name>PalatinoLinotype,BoldItalic</font-name><embed/><cap-height>686</cap-height><x-height>476</x-height><ascender>731</ascender><descender>-284</descender><bbox><left>-156</left><bottom>-291</bottom><right>1305</right><top>1049</top></bbox><flags>97</flags><stemv>0</stemv><italicangle>-10</italicangle><subtype>TRUETYPE</subtype><singlebyte-extras><encoding>WinAnsiEncoding</encoding><first-char>0</first-char><last-char>255</last-char><widths><char idx="0" wdt="749"/><char idx="1" wdt="749"/><char idx="2" wdt="749"/><char idx="3" wdt="749"/><char idx="4" wdt="749"/><char idx="5" wdt="749"/><char idx="6" wdt="749"/><char idx="7" wdt="749"/><char idx="8" wdt="749"/><char idx="9" wdt="749"/><char idx="10" wdt="749"/><char idx="11" wdt="749"/><char idx="12" wdt="749"/><char idx="13" wdt="749"/><char idx="14" wdt="749"/><char idx="15" wdt="749"/><char idx="16" wdt="749"/><char idx="17" wdt="749"/><char idx="1
 8" wdt="749"/><char idx="19" wdt="749"/><char idx="20" wdt="749"/><char idx="21" wdt="749"/><char idx="22" wdt="749"/><char idx="23" wdt="749"/><char idx="24" wdt="749"/><char idx="25" wdt="749"/><char idx="26" wdt="749"/><char idx="27" wdt="749"/><char idx="28" wdt="749"/><char idx="29" wdt="749"/><char idx="30" wdt="749"/><char idx="31" wdt="749"/><char idx="32" wdt="250"/><char idx="33" wdt="333"/><char idx="34" wdt="500"/><char idx="35" wdt="481"/><char idx="36" wdt="500"/><char idx="37" wdt="889"/><char idx="38" wdt="833"/><char idx="39" wdt="250"/><char idx="40" wdt="333"/><char idx="41" wdt="333"/><char idx="42" wdt="443"/><char idx="43" wdt="500"/><char idx="44" wdt="250"/><char idx="45" wdt="388"/><char idx="46" wdt="250"/><char idx="47" wdt="314"/><char idx="48" wdt="500"/><char idx="49" wdt="500"/><char idx="50" wdt="500"/><char idx="51" wdt="500"/><char idx="52" wdt="500"/><char idx="53" wdt="500"/><char idx="54" wdt="500"/><char idx="55" wdt="500"/><char idx="56
 " wdt="500"/><char idx="57" wdt="500"/><char idx="58" wdt="250"/><char idx="59" wdt="250"/><char idx="60" wdt="500"/><char idx="61" wdt="500"/><char idx="62" wdt="500"/><char idx="63" wdt="443"/><char idx="64" wdt="697"/><char idx="65" wdt="722"/><char idx="66" wdt="666"/><char idx="67" wdt="685"/><char idx="68" wdt="777"/><char idx="69" wdt="610"/><char idx="70" wdt="556"/><char idx="71" wdt="777"/><char idx="72" wdt="778"/><char idx="73" wdt="389"/><char idx="74" wdt="389"/><char idx="75" wdt="722"/><char idx="76" wdt="610"/><char idx="77" wdt="943"/><char idx="78" wdt="777"/><char idx="79" wdt="833"/><char idx="80" wdt="666"/><char idx="81" wdt="833"/><char idx="82" wdt="722"/><char idx="83" wdt="556"/><char idx="84" wdt="610"/><char idx="85" wdt="777"/><char idx="86" wdt="666"/><char idx="87" wdt="1000"/><char idx="88" wdt="722"/><char idx="89" wdt="610"/><char idx="90" wdt="666"/><char idx="91" wdt="333"/><char idx="92" wdt="605"/><char idx="93" wdt="333"/><char idx="94
 " wdt="500"/><char idx="95" wdt="499"/><char idx="96" wdt="278"/><char idx="97" wdt="556"/><char idx="98" wdt="537"/><char idx="99" wdt="443"/><char idx="100" wdt="556"/><char idx="101" wdt="443"/><char idx="102" wdt="333"/><char idx="103" wdt="500"/><char idx="104" wdt="556"/><char idx="105" wdt="333"/><char idx="106" wdt="333"/><char idx="107" wdt="556"/><char idx="108" wdt="333"/><char idx="109" wdt="833"/><char idx="110" wdt="556"/><char idx="111" wdt="556"/><char idx="112" wdt="556"/><char idx="113" wdt="537"/><char idx="114" wdt="389"/><char idx="115" wdt="443"/><char idx="116" wdt="389"/><char idx="117" wdt="556"/><char idx="118" wdt="556"/><char idx="119" wdt="833"/><char idx="120" wdt="500"/><char idx="121" wdt="556"/><char idx="122" wdt="500"/><char idx="123" wdt="333"/><char idx="124" wdt="500"/><char idx="125" wdt="333"/><char idx="126" wdt="500"/><char idx="127" wdt="605"/><char idx="128" wdt="500"/><char idx="129" wdt="605"/><char idx="130" wdt="250"/><char idx
 ="131" wdt="500"/><char idx="132" wdt="500"/><char idx="133" wdt="1000"/><char idx="134" wdt="556"/><char idx="135" wdt="556"/><char idx="136" wdt="333"/><char idx="137" wdt="1000"/><char idx="138" wdt="556"/><char idx="139" wdt="333"/><char idx="140" wdt="1012"/><char idx="141" wdt="605"/><char idx="142" wdt="666"/><char idx="143" wdt="605"/><char idx="144" wdt="605"/><char idx="145" wdt="278"/><char idx="146" wdt="278"/><char idx="147" wdt="500"/><char idx="148" wdt="500"/><char idx="149" wdt="605"/><char idx="150" wdt="500"/><char idx="151" wdt="1000"/><char idx="152" wdt="500"/><char idx="153" wdt="998"/><char idx="154" wdt="443"/><char idx="155" wdt="333"/><char idx="156" wdt="778"/><char idx="157" wdt="605"/><char idx="158" wdt="500"/><char idx="159" wdt="610"/><char idx="160" wdt="250"/><char idx="161" wdt="333"/><char idx="162" wdt="500"/><char idx="163" wdt="500"/><char idx="164" wdt="500"/><char idx="165" wdt="500"/><char idx="166" wdt="500"/><char idx="167" wdt="5
 56"/><char idx="168" wdt="333"/><char idx="169" wdt="747"/><char idx="170" wdt="333"/><char idx="171" wdt="500"/><char idx="172" wdt="500"/><char idx="173" wdt="388"/><char idx="174" wdt="747"/><char idx="175" wdt="333"/><char idx="176" wdt="399"/><char idx="177" wdt="500"/><char idx="178" wdt="319"/><char idx="179" wdt="319"/><char idx="180" wdt="333"/><char idx="181" wdt="566"/><char idx="182" wdt="556"/><char idx="183" wdt="250"/><char idx="184" wdt="333"/><char idx="185" wdt="319"/><char idx="186" wdt="333"/><char idx="187" wdt="500"/><char idx="188" wdt="806"/><char idx="189" wdt="806"/><char idx="190" wdt="806"/><char idx="191" wdt="443"/><char idx="192" wdt="722"/><char idx="193" wdt="722"/><char idx="194" wdt="722"/><char idx="195" wdt="722"/><char idx="196" wdt="722"/><char idx="197" wdt="722"/><char idx="198" wdt="943"/><char idx="199" wdt="685"/><char idx="200" wdt="610"/><char idx="201" wdt="610"/><char idx="202" wdt="610"/><char idx="203" wdt="610"/><char idx="2
 04" wdt="389"/><char idx="205" wdt="389"/><char idx="206" wdt="389"/><char idx="207" wdt="389"/><char idx="208" wdt="777"/><char idx="209" wdt="777"/><char idx="210" wdt="833"/><char idx="211" wdt="833"/><char idx="212" wdt="833"/><char idx="213" wdt="833"/><char idx="214" wdt="833"/><char idx="215" wdt="500"/><char idx="216" wdt="833"/><char idx="217" wdt="777"/><char idx="218" wdt="777"/><char idx="219" wdt="777"/><char idx="220" wdt="777"/><char idx="221" wdt="610"/><char idx="222" wdt="666"/><char idx="223" wdt="556"/><char idx="224" wdt="556"/><char idx="225" wdt="556"/><char idx="226" wdt="556"/><char idx="227" wdt="556"/><char idx="228" wdt="556"/><char idx="229" wdt="556"/><char idx="230" wdt="737"/><char idx="231" wdt="443"/><char idx="232" wdt="443"/><char idx="233" wdt="443"/><char idx="234" wdt="443"/><char idx="235" wdt="443"/><char idx="236" wdt="333"/><char idx="237" wdt="333"/><char idx="238" wdt="333"/><char idx="239" wdt="333"/><char idx="240" wdt="556"/><c
 har idx="241" wdt="556"/><char idx="242" wdt="556"/><char idx="243" wdt="556"/><char idx="244" wdt="556"/><char idx="245" wdt="556"/><char idx="246" wdt="556"/><char idx="247" wdt="500"/><char idx="248" wdt="556"/><char idx="249" wdt="556"/><char idx="250" wdt="556"/><char idx="251" wdt="556"/><char idx="252" wdt="556"/><char idx="253" wdt="556"/><char idx="254" wdt="556"/><char idx="255" wdt="556"/></widths></singlebyte-extras><kerning kpx1="76"><pair kern="-68" kpx2="89"/><pair kern="-78" kpx2="87"/><pair kern="-78" kpx2="86"/><pair kern="-68" kpx2="84"/><pair kern="-68" kpx2="146"/></kerning><kerning kpx1="89"><pair kern="-68" kpx2="59"/><pair kern="-68" kpx2="58"/><pair kern="-68" kpx2="121"/><pair kern="-68" kpx2="117"/><pair kern="-68" kpx2="114"/><pair kern="-68" kpx2="111"/><pair kern="-68" kpx2="46"/><pair kern="-68" kpx2="45"/><pair kern="-68" kpx2="173"/><pair kern="-68" kpx2="44"/><pair kern="-68" kpx2="105"/><pair kern="-68" kpx2="101"/><pair kern="-68" kpx2="97
 "/><pair kern="-117" kpx2="65"/></kerning><kerning kpx1="87"><pair kern="-68" kpx2="59"/><pair kern="-68" kpx2="58"/><pair kern="-68" kpx2="121"/><pair kern="-68" kpx2="117"/><pair kern="-68" kpx2="114"/><pair kern="-68" kpx2="111"/><pair kern="-68" kpx2="46"/><pair kern="-68" kpx2="45"/><pair kern="-68" kpx2="173"/><pair kern="-68" kpx2="44"/><pair kern="-68" kpx2="105"/><pair kern="-68" kpx2="101"/><pair kern="-68" kpx2="97"/><pair kern="-117" kpx2="65"/></kerning><kerning kpx1="70"><pair kern="-68" kpx2="46"/><pair kern="-68" kpx2="44"/><pair kern="-68" kpx2="65"/></kerning><kerning kpx1="86"><pair kern="-68" kpx2="59"/><pair kern="-68" kpx2="58"/><pair kern="-68" kpx2="121"/><pair kern="-68" kpx2="117"/><pair kern="-68" kpx2="114"/><pair kern="-68" kpx2="111"/><pair kern="-68" kpx2="46"/><pair kern="-68" kpx2="45"/><pair kern="-68" kpx2="173"/><pair kern="-68" kpx2="44"/><pair kern="-68" kpx2="105"/><pair kern="-68" kpx2="101"/><pair kern="-68" kpx2="97"/><pair kern="-11
 7" kpx2="65"/></kerning><kerning kpx1="84"><pair kern="-68" kpx2="59"/><pair kern="-68" kpx2="58"/><pair kern="-68" kpx2="121"/><pair kern="-68" kpx2="119"/><pair kern="-68" kpx2="117"/><pair kern="-68" kpx2="115"/><pair kern="-68" kpx2="114"/><pair kern="-68" kpx2="111"/><pair kern="-68" kpx2="46"/><pair kern="-68" kpx2="45"/><pair kern="-68" kpx2="173"/><pair kern="-68" kpx2="44"/><pair kern="-68" kpx2="105"/><pair kern="-68" kpx2="101"/><pair kern="-68" kpx2="99"/><pair kern="-68" kpx2="65"/><pair kern="-68" kpx2="97"/></kerning><kerning kpx1="65"><pair kern="-68" kpx2="89"/><pair kern="-117" kpx2="87"/><pair kern="-117" kpx2="86"/><pair kern="-68" kpx2="84"/><pair kern="-68" kpx2="146"/></kerning><kerning kpx1="80"><pair kern="-68" kpx2="46"/><pair kern="-68" kpx2="44"/><pair kern="-78" kpx2="65"/></kerning></font-metrics>
\ No newline at end of file

Added: incubator/uima/uimaj/trunk/uima-docbook-tool/tools/fop-versions/fop-0.20.5/fonts/palatino-bold.xml
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uima-docbook-tool/tools/fop-versions/fop-0.20.5/fonts/palatino-bold.xml?view=auto&rev=526279
==============================================================================
--- incubator/uima/uimaj/trunk/uima-docbook-tool/tools/fop-versions/fop-0.20.5/fonts/palatino-bold.xml (added)
+++ incubator/uima/uimaj/trunk/uima-docbook-tool/tools/fop-versions/fop-0.20.5/fonts/palatino-bold.xml Fri Apr  6 14:06:38 2007
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><font-metrics type="TRUETYPE"><font-name>PalatinoLinotype,Bold</font-name><embed/><cap-height>686</cap-height><x-height>459</x-height><ascender>731</ascender><descender>-284</descender><bbox><left>-173</left><bottom>-299</bottom><right>1445</right><top>1049</top></bbox><flags>33</flags><stemv>0</stemv><italicangle>0</italicangle><subtype>TRUETYPE</subtype><singlebyte-extras><encoding>WinAnsiEncoding</encoding><first-char>0</first-char><last-char>255</last-char><widths><char idx="0" wdt="751"/><char idx="1" wdt="751"/><char idx="2" wdt="751"/><char idx="3" wdt="751"/><char idx="4" wdt="751"/><char idx="5" wdt="751"/><char idx="6" wdt="751"/><char idx="7" wdt="751"/><char idx="8" wdt="751"/><char idx="9" wdt="751"/><char idx="10" wdt="751"/><char idx="11" wdt="751"/><char idx="12" wdt="751"/><char idx="13" wdt="751"/><char idx="14" wdt="751"/><char idx="15" wdt="751"/><char idx="16" wdt="751"/><char idx="17" wdt="751"/><char idx="18" wdt="
 751"/><char idx="19" wdt="751"/><char idx="20" wdt="751"/><char idx="21" wdt="751"/><char idx="22" wdt="751"/><char idx="23" wdt="751"/><char idx="24" wdt="751"/><char idx="25" wdt="751"/><char idx="26" wdt="751"/><char idx="27" wdt="751"/><char idx="28" wdt="751"/><char idx="29" wdt="751"/><char idx="30" wdt="751"/><char idx="31" wdt="751"/><char idx="32" wdt="250"/><char idx="33" wdt="277"/><char idx="34" wdt="385"/><char idx="35" wdt="481"/><char idx="36" wdt="500"/><char idx="37" wdt="889"/><char idx="38" wdt="833"/><char idx="39" wdt="227"/><char idx="40" wdt="333"/><char idx="41" wdt="333"/><char idx="42" wdt="443"/><char idx="43" wdt="500"/><char idx="44" wdt="250"/><char idx="45" wdt="333"/><char idx="46" wdt="250"/><char idx="47" wdt="295"/><char idx="48" wdt="500"/><char idx="49" wdt="500"/><char idx="50" wdt="500"/><char idx="51" wdt="500"/><char idx="52" wdt="500"/><char idx="53" wdt="500"/><char idx="54" wdt="500"/><char idx="55" wdt="500"/><char idx="56" wdt="5
 00"/><char idx="57" wdt="500"/><char idx="58" wdt="250"/><char idx="59" wdt="250"/><char idx="60" wdt="500"/><char idx="61" wdt="500"/><char idx="62" wdt="500"/><char idx="63" wdt="443"/><char idx="64" wdt="697"/><char idx="65" wdt="777"/><char idx="66" wdt="660"/><char idx="67" wdt="722"/><char idx="68" wdt="831"/><char idx="69" wdt="605"/><char idx="70" wdt="557"/><char idx="71" wdt="833"/><char idx="72" wdt="833"/><char idx="73" wdt="389"/><char idx="74" wdt="389"/><char idx="75" wdt="769"/><char idx="76" wdt="605"/><char idx="77" wdt="1000"/><char idx="78" wdt="833"/><char idx="79" wdt="833"/><char idx="80" wdt="610"/><char idx="81" wdt="833"/><char idx="82" wdt="713"/><char idx="83" wdt="610"/><char idx="84" wdt="666"/><char idx="85" wdt="777"/><char idx="86" wdt="777"/><char idx="87" wdt="1000"/><char idx="88" wdt="666"/><char idx="89" wdt="666"/><char idx="90" wdt="666"/><char idx="91" wdt="333"/><char idx="92" wdt="295"/><char idx="93" wdt="333"/><char idx="94" wdt="
 500"/><char idx="95" wdt="500"/><char idx="96" wdt="277"/><char idx="97" wdt="500"/><char idx="98" wdt="610"/><char idx="99" wdt="443"/><char idx="100" wdt="610"/><char idx="101" wdt="500"/><char idx="102" wdt="389"/><char idx="103" wdt="555"/><char idx="104" wdt="610"/><char idx="105" wdt="333"/><char idx="106" wdt="333"/><char idx="107" wdt="610"/><char idx="108" wdt="333"/><char idx="109" wdt="889"/><char idx="110" wdt="610"/><char idx="111" wdt="556"/><char idx="112" wdt="610"/><char idx="113" wdt="610"/><char idx="114" wdt="389"/><char idx="115" wdt="443"/><char idx="116" wdt="333"/><char idx="117" wdt="610"/><char idx="118" wdt="555"/><char idx="119" wdt="833"/><char idx="120" wdt="500"/><char idx="121" wdt="556"/><char idx="122" wdt="500"/><char idx="123" wdt="310"/><char idx="124" wdt="500"/><char idx="125" wdt="310"/><char idx="126" wdt="500"/><char idx="127" wdt="605"/><char idx="128" wdt="500"/><char idx="129" wdt="605"/><char idx="130" wdt="277"/><char idx="131" 
 wdt="500"/><char idx="132" wdt="500"/><char idx="133" wdt="1000"/><char idx="134" wdt="500"/><char idx="135" wdt="500"/><char idx="136" wdt="333"/><char idx="137" wdt="1000"/><char idx="138" wdt="610"/><char idx="139" wdt="389"/><char idx="140" wdt="1000"/><char idx="141" wdt="605"/><char idx="142" wdt="666"/><char idx="143" wdt="605"/><char idx="144" wdt="605"/><char idx="145" wdt="277"/><char idx="146" wdt="277"/><char idx="147" wdt="500"/><char idx="148" wdt="500"/><char idx="149" wdt="605"/><char idx="150" wdt="500"/><char idx="151" wdt="1000"/><char idx="152" wdt="500"/><char idx="153" wdt="998"/><char idx="154" wdt="443"/><char idx="155" wdt="389"/><char idx="156" wdt="833"/><char idx="157" wdt="605"/><char idx="158" wdt="500"/><char idx="159" wdt="666"/><char idx="160" wdt="250"/><char idx="161" wdt="277"/><char idx="162" wdt="500"/><char idx="163" wdt="500"/><char idx="164" wdt="500"/><char idx="165" wdt="500"/><char idx="166" wdt="500"/><char idx="167" wdt="500"/><c
 har idx="168" wdt="333"/><char idx="169" wdt="747"/><char idx="170" wdt="293"/><char idx="171" wdt="500"/><char idx="172" wdt="500"/><char idx="173" wdt="333"/><char idx="174" wdt="747"/><char idx="175" wdt="333"/><char idx="176" wdt="399"/><char idx="177" wdt="500"/><char idx="178" wdt="321"/><char idx="179" wdt="321"/><char idx="180" wdt="333"/><char idx="181" wdt="675"/><char idx="182" wdt="641"/><char idx="183" wdt="250"/><char idx="184" wdt="333"/><char idx="185" wdt="321"/><char idx="186" wdt="326"/><char idx="187" wdt="500"/><char idx="188" wdt="810"/><char idx="189" wdt="810"/><char idx="190" wdt="810"/><char idx="191" wdt="443"/><char idx="192" wdt="777"/><char idx="193" wdt="777"/><char idx="194" wdt="777"/><char idx="195" wdt="777"/><char idx="196" wdt="777"/><char idx="197" wdt="777"/><char idx="198" wdt="1000"/><char idx="199" wdt="722"/><char idx="200" wdt="605"/><char idx="201" wdt="605"/><char idx="202" wdt="605"/><char idx="203" wdt="605"/><char idx="204" wd
 t="389"/><char idx="205" wdt="389"/><char idx="206" wdt="389"/><char idx="207" wdt="389"/><char idx="208" wdt="831"/><char idx="209" wdt="833"/><char idx="210" wdt="833"/><char idx="211" wdt="833"/><char idx="212" wdt="833"/><char idx="213" wdt="833"/><char idx="214" wdt="833"/><char idx="215" wdt="500"/><char idx="216" wdt="833"/><char idx="217" wdt="777"/><char idx="218" wdt="777"/><char idx="219" wdt="777"/><char idx="220" wdt="777"/><char idx="221" wdt="666"/><char idx="222" wdt="610"/><char idx="223" wdt="610"/><char idx="224" wdt="500"/><char idx="225" wdt="500"/><char idx="226" wdt="500"/><char idx="227" wdt="500"/><char idx="228" wdt="500"/><char idx="229" wdt="500"/><char idx="230" wdt="777"/><char idx="231" wdt="443"/><char idx="232" wdt="500"/><char idx="233" wdt="500"/><char idx="234" wdt="500"/><char idx="235" wdt="500"/><char idx="236" wdt="333"/><char idx="237" wdt="333"/><char idx="238" wdt="333"/><char idx="239" wdt="333"/><char idx="240" wdt="556"/><char id
 x="241" wdt="610"/><char idx="242" wdt="556"/><char idx="243" wdt="556"/><char idx="244" wdt="556"/><char idx="245" wdt="556"/><char idx="246" wdt="556"/><char idx="247" wdt="500"/><char idx="248" wdt="556"/><char idx="249" wdt="610"/><char idx="250" wdt="610"/><char idx="251" wdt="610"/><char idx="252" wdt="610"/><char idx="253" wdt="556"/><char idx="254" wdt="610"/><char idx="255" wdt="556"/></widths></singlebyte-extras><kerning kpx1="121"><pair kern="-91" kpx2="46"/><pair kern="-91" kpx2="44"/></kerning><kerning kpx1="89"><pair kern="-55" kpx2="59"/><pair kern="-55" kpx2="58"/><pair kern="-74" kpx2="118"/><pair kern="-55" kpx2="117"/><pair kern="-91" kpx2="113"/><pair kern="-55" kpx2="112"/><pair kern="-74" kpx2="111"/><pair kern="-74" kpx2="46"/><pair kern="-74" kpx2="45"/><pair kern="-74" kpx2="173"/><pair kern="-74" kpx2="44"/><pair kern="-18" kpx2="105"/><pair kern="-74" kpx2="101"/><pair kern="-55" kpx2="65"/><pair kern="-74" kpx2="97"/></kerning><kerning kpx1="119">
 <pair kern="-91" kpx2="46"/><pair kern="-91" kpx2="44"/></kerning><kerning kpx1="87"><pair kern="-37" kpx2="59"/><pair kern="-37" kpx2="58"/><pair kern="-55" kpx2="121"/><pair kern="-55" kpx2="117"/><pair kern="-37" kpx2="114"/><pair kern="-74" kpx2="111"/><pair kern="-91" kpx2="46"/><pair kern="-37" kpx2="45"/><pair kern="-37" kpx2="173"/><pair kern="-91" kpx2="44"/><pair kern="-18" kpx2="105"/><pair kern="-74" kpx2="101"/><pair kern="-74" kpx2="97"/><pair kern="-91" kpx2="65"/></kerning><kerning kpx1="118"><pair kern="-110" kpx2="46"/><pair kern="-110" kpx2="44"/></kerning><kerning kpx1="86"><pair kern="-74" kpx2="59"/><pair kern="-74" kpx2="58"/><pair kern="-91" kpx2="121"/><pair kern="-74" kpx2="117"/><pair kern="-74" kpx2="114"/><pair kern="-110" kpx2="111"/><pair kern="-128" kpx2="46"/><pair kern="-91" kpx2="45"/><pair kern="-91" kpx2="173"/><pair kern="-128" kpx2="44"/><pair kern="-37" kpx2="105"/><pair kern="-110" kpx2="101"/><pair kern="-110" kpx2="97"/><pair kern="
 -128" kpx2="65"/></kerning><kerning kpx1="84"><pair kern="-74" kpx2="59"/><pair kern="-74" kpx2="58"/><pair kern="-91" kpx2="121"/><pair kern="-91" kpx2="119"/><pair kern="-74" kpx2="117"/><pair kern="-91" kpx2="115"/><pair kern="-74" kpx2="114"/><pair kern="-91" kpx2="111"/><pair kern="-91" kpx2="46"/><pair kern="-74" kpx2="45"/><pair kern="-74" kpx2="173"/><pair kern="-91" kpx2="44"/><pair kern="-37" kpx2="105"/><pair kern="-91" kpx2="101"/><pair kern="-110" kpx2="99"/><pair kern="-91" kpx2="65"/><pair kern="-91" kpx2="97"/></kerning><kerning kpx1="147"><pair kern="-91" kpx2="65"/></kerning><kerning kpx1="146"><pair kern="-55" kpx2="115"/></kerning><kerning kpx1="114"><pair kern="-55" kpx2="46"/><pair kern="-55" kpx2="44"/><pair kern="55" kpx2="148"/><pair kern="55" kpx2="146"/></kerning><kerning kpx1="82"><pair kern="-37" kpx2="121"/><pair kern="-55" kpx2="89"/><pair kern="-37" kpx2="87"/><pair kern="-74" kpx2="86"/><pair kern="-55" kpx2="84"/></kerning><kerning kpx1="145
 "><pair kern="-91" kpx2="65"/></kerning><kerning kpx1="80"><pair kern="-128" kpx2="46"/><pair kern="-128" kpx2="44"/><pair kern="-74" kpx2="65"/></kerning><kerning kpx1="45"><pair kern="-74" kpx2="89"/><pair kern="-37" kpx2="87"/><pair kern="-91" kpx2="86"/><pair kern="-74" kpx2="84"/></kerning><kerning kpx1="173"><pair kern="-74" kpx2="89"/><pair kern="-37" kpx2="87"/><pair kern="-91" kpx2="86"/><pair kern="-74" kpx2="84"/></kerning><kerning kpx1="76"><pair kern="-74" kpx2="121"/><pair kern="-91" kpx2="89"/><pair kern="-91" kpx2="87"/><pair kern="-91" kpx2="86"/><pair kern="-74" kpx2="148"/><pair kern="-74" kpx2="84"/><pair kern="-74" kpx2="146"/></kerning><kerning kpx1="102"><pair kern="37" kpx2="148"/><pair kern="37" kpx2="146"/></kerning><kerning kpx1="70"><pair kern="-110" kpx2="46"/><pair kern="-110" kpx2="44"/><pair kern="-55" kpx2="65"/></kerning><kerning kpx1="65"><pair kern="-69" kpx2="121"/><pair kern="-110" kpx2="89"/><pair kern="-69" kpx2="119"/><pair kern="-91"
  kpx2="87"/><pair kern="-128" kpx2="86"/><pair kern="-69" kpx2="118"/><pair kern="-91" kpx2="148"/><pair kern="-91" kpx2="84"/><pair kern="-91" kpx2="146"/></kerning><kerning kpx1="96"><pair kern="-91" kpx2="65"/></kerning></font-metrics>
\ No newline at end of file

Added: incubator/uima/uimaj/trunk/uima-docbook-tool/tools/fop-versions/fop-0.20.5/fonts/palatino-italic.xml
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uima-docbook-tool/tools/fop-versions/fop-0.20.5/fonts/palatino-italic.xml?view=auto&rev=526279
==============================================================================
--- incubator/uima/uimaj/trunk/uima-docbook-tool/tools/fop-versions/fop-0.20.5/fonts/palatino-italic.xml (added)
+++ incubator/uima/uimaj/trunk/uima-docbook-tool/tools/fop-versions/fop-0.20.5/fonts/palatino-italic.xml Fri Apr  6 14:06:38 2007
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><font-metrics type="TRUETYPE"><font-name>PalatinoLinotype,Italic</font-name><embed/><cap-height>689</cap-height><x-height>472</x-height><ascender>731</ascender><descender>-284</descender><bbox><left>-161</left><bottom>-291</bottom><right>1248</right><top>1052</top></bbox><flags>97</flags><stemv>0</stemv><italicangle>-10</italicangle><subtype>TRUETYPE</subtype><singlebyte-extras><encoding>WinAnsiEncoding</encoding><first-char>0</first-char><last-char>255</last-char><widths><char idx="0" wdt="815"/><char idx="1" wdt="815"/><char idx="2" wdt="815"/><char idx="3" wdt="815"/><char idx="4" wdt="815"/><char idx="5" wdt="815"/><char idx="6" wdt="815"/><char idx="7" wdt="815"/><char idx="8" wdt="815"/><char idx="9" wdt="815"/><char idx="10" wdt="815"/><char idx="11" wdt="815"/><char idx="12" wdt="815"/><char idx="13" wdt="815"/><char idx="14" wdt="815"/><char idx="15" wdt="815"/><char idx="16" wdt="815"/><char idx="17" wdt="815"/><char idx="18" w
 dt="815"/><char idx="19" wdt="815"/><char idx="20" wdt="815"/><char idx="21" wdt="815"/><char idx="22" wdt="815"/><char idx="23" wdt="815"/><char idx="24" wdt="815"/><char idx="25" wdt="815"/><char idx="26" wdt="815"/><char idx="27" wdt="815"/><char idx="28" wdt="815"/><char idx="29" wdt="815"/><char idx="30" wdt="815"/><char idx="31" wdt="815"/><char idx="32" wdt="250"/><char idx="33" wdt="333"/><char idx="34" wdt="500"/><char idx="35" wdt="478"/><char idx="36" wdt="500"/><char idx="37" wdt="889"/><char idx="38" wdt="777"/><char idx="39" wdt="333"/><char idx="40" wdt="333"/><char idx="41" wdt="333"/><char idx="42" wdt="389"/><char idx="43" wdt="500"/><char idx="44" wdt="250"/><char idx="45" wdt="333"/><char idx="46" wdt="250"/><char idx="47" wdt="296"/><char idx="48" wdt="500"/><char idx="49" wdt="500"/><char idx="50" wdt="500"/><char idx="51" wdt="500"/><char idx="52" wdt="500"/><char idx="53" wdt="500"/><char idx="54" wdt="500"/><char idx="55" wdt="500"/><char idx="56" wd
 t="500"/><char idx="57" wdt="500"/><char idx="58" wdt="250"/><char idx="59" wdt="250"/><char idx="60" wdt="500"/><char idx="61" wdt="500"/><char idx="62" wdt="500"/><char idx="63" wdt="500"/><char idx="64" wdt="683"/><char idx="65" wdt="722"/><char idx="66" wdt="610"/><char idx="67" wdt="666"/><char idx="68" wdt="777"/><char idx="69" wdt="610"/><char idx="70" wdt="555"/><char idx="71" wdt="722"/><char idx="72" wdt="777"/><char idx="73" wdt="333"/><char idx="74" wdt="333"/><char idx="75" wdt="666"/><char idx="76" wdt="556"/><char idx="77" wdt="943"/><char idx="78" wdt="777"/><char idx="79" wdt="777"/><char idx="80" wdt="610"/><char idx="81" wdt="777"/><char idx="82" wdt="666"/><char idx="83" wdt="555"/><char idx="84" wdt="611"/><char idx="85" wdt="777"/><char idx="86" wdt="657"/><char idx="87" wdt="943"/><char idx="88" wdt="721"/><char idx="89" wdt="666"/><char idx="90" wdt="666"/><char idx="91" wdt="333"/><char idx="92" wdt="605"/><char idx="93" wdt="333"/><char idx="94" wdt
 ="500"/><char idx="95" wdt="500"/><char idx="96" wdt="277"/><char idx="97" wdt="443"/><char idx="98" wdt="462"/><char idx="99" wdt="406"/><char idx="100" wdt="500"/><char idx="101" wdt="389"/><char idx="102" wdt="277"/><char idx="103" wdt="500"/><char idx="104" wdt="500"/><char idx="105" wdt="277"/><char idx="106" wdt="277"/><char idx="107" wdt="443"/><char idx="108" wdt="277"/><char idx="109" wdt="777"/><char idx="110" wdt="556"/><char idx="111" wdt="443"/><char idx="112" wdt="500"/><char idx="113" wdt="462"/><char idx="114" wdt="389"/><char idx="115" wdt="389"/><char idx="116" wdt="333"/><char idx="117" wdt="556"/><char idx="118" wdt="500"/><char idx="119" wdt="722"/><char idx="120" wdt="500"/><char idx="121" wdt="500"/><char idx="122" wdt="443"/><char idx="123" wdt="333"/><char idx="124" wdt="500"/><char idx="125" wdt="333"/><char idx="126" wdt="500"/><char idx="127" wdt="500"/><char idx="128" wdt="500"/><char idx="129" wdt="500"/><char idx="130" wdt="278"/><char idx="131
 " wdt="500"/><char idx="132" wdt="500"/><char idx="133" wdt="1000"/><char idx="134" wdt="500"/><char idx="135" wdt="500"/><char idx="136" wdt="333"/><char idx="137" wdt="1000"/><char idx="138" wdt="555"/><char idx="139" wdt="333"/><char idx="140" wdt="1027"/><char idx="141" wdt="500"/><char idx="142" wdt="666"/><char idx="143" wdt="500"/><char idx="144" wdt="500"/><char idx="145" wdt="277"/><char idx="146" wdt="277"/><char idx="147" wdt="500"/><char idx="148" wdt="500"/><char idx="149" wdt="500"/><char idx="150" wdt="500"/><char idx="151" wdt="1000"/><char idx="152" wdt="500"/><char idx="153" wdt="1000"/><char idx="154" wdt="389"/><char idx="155" wdt="333"/><char idx="156" wdt="668"/><char idx="157" wdt="500"/><char idx="158" wdt="443"/><char idx="159" wdt="666"/><char idx="160" wdt="250"/><char idx="161" wdt="333"/><char idx="162" wdt="500"/><char idx="163" wdt="500"/><char idx="164" wdt="500"/><char idx="165" wdt="500"/><char idx="166" wdt="500"/><char idx="167" wdt="500"/
 ><char idx="168" wdt="333"/><char idx="169" wdt="747"/><char idx="170" wdt="333"/><char idx="171" wdt="500"/><char idx="172" wdt="500"/><char idx="173" wdt="333"/><char idx="174" wdt="747"/><char idx="175" wdt="333"/><char idx="176" wdt="399"/><char idx="177" wdt="500"/><char idx="178" wdt="319"/><char idx="179" wdt="319"/><char idx="180" wdt="333"/><char idx="181" wdt="610"/><char idx="182" wdt="500"/><char idx="183" wdt="250"/><char idx="184" wdt="333"/><char idx="185" wdt="319"/><char idx="186" wdt="333"/><char idx="187" wdt="500"/><char idx="188" wdt="806"/><char idx="189" wdt="806"/><char idx="190" wdt="806"/><char idx="191" wdt="500"/><char idx="192" wdt="722"/><char idx="193" wdt="722"/><char idx="194" wdt="722"/><char idx="195" wdt="722"/><char idx="196" wdt="722"/><char idx="197" wdt="722"/><char idx="198" wdt="940"/><char idx="199" wdt="666"/><char idx="200" wdt="610"/><char idx="201" wdt="610"/><char idx="202" wdt="610"/><char idx="203" wdt="610"/><char idx="204" 
 wdt="333"/><char idx="205" wdt="333"/><char idx="206" wdt="333"/><char idx="207" wdt="333"/><char idx="208" wdt="777"/><char idx="209" wdt="777"/><char idx="210" wdt="777"/><char idx="211" wdt="777"/><char idx="212" wdt="777"/><char idx="213" wdt="777"/><char idx="214" wdt="777"/><char idx="215" wdt="500"/><char idx="216" wdt="777"/><char idx="217" wdt="777"/><char idx="218" wdt="777"/><char idx="219" wdt="777"/><char idx="220" wdt="777"/><char idx="221" wdt="666"/><char idx="222" wdt="610"/><char idx="223" wdt="500"/><char idx="224" wdt="443"/><char idx="225" wdt="443"/><char idx="226" wdt="443"/><char idx="227" wdt="443"/><char idx="228" wdt="443"/><char idx="229" wdt="443"/><char idx="230" wdt="638"/><char idx="231" wdt="406"/><char idx="232" wdt="389"/><char idx="233" wdt="389"/><char idx="234" wdt="389"/><char idx="235" wdt="389"/><char idx="236" wdt="277"/><char idx="237" wdt="277"/><char idx="238" wdt="277"/><char idx="239" wdt="277"/><char idx="240" wdt="443"/><char 
 idx="241" wdt="556"/><char idx="242" wdt="443"/><char idx="243" wdt="443"/><char idx="244" wdt="443"/><char idx="245" wdt="443"/><char idx="246" wdt="443"/><char idx="247" wdt="500"/><char idx="248" wdt="443"/><char idx="249" wdt="556"/><char idx="250" wdt="556"/><char idx="251" wdt="556"/><char idx="252" wdt="556"/><char idx="253" wdt="500"/><char idx="254" wdt="500"/><char idx="255" wdt="500"/></widths></singlebyte-extras><kerning kpx1="121"><pair kern="-37" kpx2="46"/><pair kern="-37" kpx2="44"/></kerning><kerning kpx1="89"><pair kern="-74" kpx2="59"/><pair kern="-74" kpx2="58"/><pair kern="-74" kpx2="118"/><pair kern="-91" kpx2="117"/><pair kern="-91" kpx2="113"/><pair kern="-74" kpx2="112"/><pair kern="-110" kpx2="111"/><pair kern="-91" kpx2="46"/><pair kern="-74" kpx2="45"/><pair kern="-74" kpx2="173"/><pair kern="-91" kpx2="44"/><pair kern="-55" kpx2="105"/><pair kern="-110" kpx2="101"/><pair kern="-91" kpx2="65"/><pair kern="-91" kpx2="97"/></kerning><kerning kpx1="1
 19"><pair kern="-55" kpx2="46"/><pair kern="-55" kpx2="44"/></kerning><kerning kpx1="87"><pair kern="-18" kpx2="59"/><pair kern="-18" kpx2="58"/><pair kern="-20" kpx2="121"/><pair kern="-20" kpx2="117"/><pair kern="-20" kpx2="114"/><pair kern="-20" kpx2="111"/><pair kern="-55" kpx2="46"/><pair kern="-18" kpx2="45"/><pair kern="-18" kpx2="173"/><pair kern="-55" kpx2="44"/><pair kern="-20" kpx2="105"/><pair kern="-20" kpx2="101"/><pair kern="-20" kpx2="97"/><pair kern="-91" kpx2="65"/></kerning><kerning kpx1="118"><pair kern="-55" kpx2="46"/><pair kern="-55" kpx2="44"/></kerning><kerning kpx1="86"><pair kern="-37" kpx2="59"/><pair kern="-37" kpx2="58"/><pair kern="-79" kpx2="121"/><pair kern="-97" kpx2="117"/><pair kern="-91" kpx2="114"/><pair kern="-97" kpx2="111"/><pair kern="-58" kpx2="79"/><pair kern="-128" kpx2="46"/><pair kern="-55" kpx2="45"/><pair kern="-55" kpx2="173"/><pair kern="-128" kpx2="44"/><pair kern="-74" kpx2="105"/><pair kern="-48" kpx2="69"/><pair kern="-9
 1" kpx2="101"/><pair kern="-185" kpx2="65"/><pair kern="-97" kpx2="97"/></kerning><kerning kpx1="84"><pair kern="-74" kpx2="59"/><pair kern="-74" kpx2="58"/><pair kern="-86" kpx2="121"/><pair kern="-86" kpx2="119"/><pair kern="-97" kpx2="117"/><pair kern="-97" kpx2="115"/><pair kern="-97" kpx2="114"/><pair kern="-97" kpx2="111"/><pair kern="-18" kpx2="79"/><pair kern="-74" kpx2="46"/><pair kern="-55" kpx2="45"/><pair kern="-55" kpx2="173"/><pair kern="-74" kpx2="44"/><pair kern="-55" kpx2="105"/><pair kern="-97" kpx2="101"/><pair kern="-97" kpx2="99"/><pair kern="-91" kpx2="65"/><pair kern="-97" kpx2="97"/></kerning><kerning kpx1="114"><pair kern="-18" kpx2="111"/><pair kern="-74" kpx2="46"/><pair kern="-74" kpx2="44"/><pair kern="-18" kpx2="104"/><pair kern="-18" kpx2="103"/><pair kern="-18" kpx2="101"/><pair kern="-18" kpx2="99"/><pair kern="-18" kpx2="113"/></kerning><kerning kpx1="82"><pair kern="-37" kpx2="121"/><pair kern="-55" kpx2="89"/><pair kern="-55" kpx2="87"/><p
 air kern="-74" kpx2="86"/><pair kern="-55" kpx2="84"/></kerning><kerning kpx1="49"><pair kern="-39" kpx2="49"/></kerning><kerning kpx1="80"><pair kern="-128" kpx2="46"/><pair kern="-128" kpx2="44"/><pair kern="-128" kpx2="65"/></kerning><kerning kpx1="79"><pair kern="-58" kpx2="65"/></kerning><kerning kpx1="76"><pair kern="-37" kpx2="121"/><pair kern="-74" kpx2="89"/><pair kern="-48" kpx2="87"/><pair kern="-48" kpx2="86"/><pair kern="-68" kpx2="84"/><pair kern="-18" kpx2="160"/><pair kern="-18" kpx2="32"/></kerning><kerning kpx1="70"><pair kern="-110" kpx2="46"/><pair kern="-110" kpx2="44"/><pair kern="-110" kpx2="65"/></kerning><kerning kpx1="69"><pair kern="-48" kpx2="65"/></kerning><kerning kpx1="65"><pair kern="-55" kpx2="121"/><pair kern="-55" kpx2="89"/><pair kern="-37" kpx2="119"/><pair kern="-55" kpx2="87"/><pair kern="-83" kpx2="86"/><pair kern="-37" kpx2="118"/><pair kern="-55" kpx2="84"/><pair kern="-37" kpx2="160"/><pair kern="-37" kpx2="32"/></kerning></font-met
 rics>
\ No newline at end of file