Create Tag for CasEditor-2.2.2-04 release candidate based on uimaj-2.2.2-incubating

git-svn-id: https://svn.apache.org/repos/asf/incubator/uima/sandbox/tags/CasEditor-2.2.2@677394 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/HOW_TO b/CasEditor-2.2.2-04/uima-docbook-tool/HOW_TO
new file mode 100644
index 0000000..f8f9eb3
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/HOW_TO
@@ -0,0 +1,101 @@
+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.

+================================

+= How to use the docbook tool. = 

+================================

+

+The tooling is set up assuming you put your documentation in another directory

+which is parallel (has the same ancestor) as the uima-docbook-tool directory.

+Furthermore, it assumes the target output directory for generated code is 

+some directory (name is arbitrary) at the top level of your documentation project.

+(This follows maven conventions).

+

+

+Step 1: Create a project (if necessary) for your docbook documentation.

+

+Step 2: Organize the documentation into one or more "books".  

+

+  Directory structure to create:  

+      ... (at some level) ... /your-first-book-name

+      ... (at some level) ... /your-second-book-name

+        etc.

+        

+    Within each book-name, you have subdirectories for chapters.  These

+    are "xi:include-d" into a "master" file, which should be named

+    the same as the book.  So, a typical book looks like:

+    

+      ... (at some level) ... /my-book-name/my-book-name.xml  <<-- the "master" file

+      ... (at some level) ... /my-book-name/my-chapter1-name.xml  <<-- included files

+      ... (at some level) ... /my-book-name/my-chapter2-name.xml  <<-- included files

+                  etc.

+                 

+Step 3: copy the contents of the "samples" directory into your docbook project,

+        in the src/styles directory.  You should end up with 

+        src/styles/top and src/styles/titlepage directories.

+                  

+Step 4: modify the "local.docbook.properties", 

+        to fit your requirements and directory layout

+

+        For each book you want to build, create a custom copy of

+        build_book-name.xml, modified to reference the book you want to build.

+        

+        Edit the files in the "top" directory and correct any relative path

+        specifications as needed to correspond to your directory layout.

+        

+        (Optional) Customize the "style": Change the titlepage files, and/or

+        add overrides to the xsl files in the "top" directory.  For instructions

+        on how to do this, see http://www.sagehill.net/book-description.html

+        (you can view this as an on-line book, or buy the book).  

+

+Step 5: build the book using the build_book-name.xml as an ANT script.

+

+

+=============

+=  T I P S  =

+=============

+

+Recommended editor = XMLBuddy plugin for Eclipse.  This will read the docbook dtd, 

+plus any customized Entities you might declare, and make them available for 

+Eclipse auto-completion and checking.

+

+Entities you declare can be put into shared entity files, and then

+essentially included in other files.  See Chapter 22 of the DocBook XSL, the 

+Complete Guide, for examples.

+

+

+=============================================================

+Path requirements:

+

+The target path must be a top level path in a parallel project directory.  

+The font config currently depends on this.

+

+NOTES:

+

+The functionality for xi:include relative linking when the thing being included was 

+in a different directory from the includer was broken.  

+This showed up in image fileref= attributes being improperly / inconsistently translated

+to src=... attributes in the generated xml.  Work-around: give up for now

+in having subdirectories - put all things into one directory.  (Note - as

+of April 2007 a bug in this area has been fix and this needs to be retested)

+

+The qandaset functionality works but the FOP processor 0.20.5 seems to have trouble

+handling id= attributes; it's giving an incorrect error message about a duplicate id tag,

+when, in fact, there is no duplicate.  Work-around: give up using qandaset - just use

+variablelist instead. (4/2007: Needs retesting on FOP 0.93 and newer level of docbook)

+

+Parameters for Docbook are described in the FO ref:

+http://docbook.sourceforge.net/release/xsl/current/doc/fo/index.html

diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/README b/CasEditor-2.2.2-04/uima-docbook-tool/README
new file mode 100644
index 0000000..1ebe78a
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/README
@@ -0,0 +1,398 @@
+		      UIMA DocBook Framework
+		      ==========================
+
+The docbook tooling used to produce the UIMA DocBooks is
+based on work done by the Velocity project, where it
+started out as a framework to render documentation for
+the Velocity project (http://jakarta.apache.org/velocity/) and ended
+somehow up to be a generic framework to render DocBook documents using
+Java and driven by ant.
+
+The Velocity developers wrote:
+
+While DocBook format seems to be ubiquitous these days, to my surprise
+there were not many generic frameworks around that could render all
+kinds of formats using Java and be easily customizable. Projects
+either use heavily customized and hacked style sheets or a mix of Java
+and other applications. Adjusting such a rendering framework to the
+needs of the Velocity project wasn't easy, so at some point, we decided
+to redo this (almost) from scratch.
+
+License Information
+===================
+
+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.
+
+
+Author information
+------------------
+
+This framework and documentation was originally written by the Jakarta Velocity
+Developers. It has been extensively modified by the UIMA developers.
+The tool framework has been moved out of this project and into 
+the uima-docbook-tool project.
+
+If you have questions, found a bug or have enhancements,
+please contact the UIMA developers through the UIMA Development Mailing
+list at uima-dev@incubator.apache.org
+
+
+Why another framework for rendering docbook?
+============================================
+
+What we wanted to have, was a framework, that
+
+* Renders multiple documents into multiple formats with an uniform look
+  without having to copy a large number of stylesheets, images and other
+  supporting files around
+
+* Uses the standard DocBook XML and XSL zip files available for
+  download. Many of the open source DocBook framework use heavily
+  hacked versions and we want to be able to keep up with releases
+  without having to patch the released files every time.
+
+* Use current versions of the DocBook reference files, the libraries
+  and supporting tools. 
+
+* Render all formats without connecting to the Internet. Using 
+  the Apache XML resolver it should be possible to use the framework
+  completely standalone. See
+  http://xml.apache.org/commons/components/resolver/resolver-article.html
+  for an explanation.
+
+* has some documentation so you understand what happens when a format
+  gets rendered and how. That can be customized easily (if you consider
+  customizing complex XSL style sheets 'easy' :-) )
+
+* 100% pure Java. No external programs needed or called.
+
+* ant-driven, platform independent.
+
+  UIMA developers added these:
+  
+* supports XInclude - so you can break up your book into individual
+  svn-controlled chapters, and xinclude them with a master file into
+  a book
+  
+* supports the Docbook "olink" mechanism 
+
+* supports multiple Docbooks
+
+* shares images among html and htmlsingle formats (images are often the
+  most memory consuming part of the document)
+  
+* automatically scale images for html vs pdf so they appear the same size
+
+
+What you need
+=============
+
+* The uima-docbook-tool project (from the UIMA svn)
+
+* A Java Runtime. All testing has been done using the Sun JSDK 1.5.0
+  and 1.6.0
+  but Java 1.4.2 has also been used quite extensively.
+
+* Apache Ant version 1.6 or better. The build script uses the macrodef
+  task which was introduced in ant 1.6. Get it from http://ant.apache.org/
+
+* If you want to render images, Java Advanced Imaging (see README.FIRST)
+
+
+How it is used
+==============
+
+The documents to render are located in src/docbook. 
+Each book is in one subdirectory.  The name of the subdirectory
+is up to you, but this name appears in many other places (by convention).
+The name should be unique to this installation of this pacakge.
+
+The subdirectory can contain 1 or more files, and an images subdirectory.
+Image subdirectory names must be unique for this installation of this package, 
+because they're all put into one target directory (to permit sharing of 
+docbook images).
+If you have more than one file, you can use a modular approach where one 
+file (by convention of the same name as the book subdirectory, followed by ".xml")
+is the "master file" and includes the <book> docbook element, and uses XIncludes 
+to include other parts (typically chapters).
+
+Parallel to the book subdirectories is another set of directories under src/olink.
+These contain for each book the generated olink databases needed for cross reference
+linking using the docbook olink mechanism.  See the Olink section for more details.
+These olink files should be saved in the source svn tree because they're needed for
+the rebuilding of the targets.
+
+If you run ant in the base directory of this distribution, it should
+build a target directory in target/ for each directory in
+src/docbook. In each of the directories, you'll find two
+outputs for the single html (called by the book-name.html)
+and the pdf (called by the book-name.pdf).
+
+In addition, the target directory has 
+   - a shared images directory (the images
+     associated with docbook itself are shared among all books).
+   - a css directory for each book
+
+Zip files are not created here - a further packaging step can create these
+if needed.  
+
+
+Running Ant from Eclipse
+========================
+
+If you run ant with no arguments in the base directory, it runs the
+build.xml ant script which builds all the UIMA documentation.
+
+
+Notes
+=====
+
+* Changing the paper size
+
+  The docbook framework renders its pages in "Letter" format
+  (8.5 x 11 inches).  This allows printing in both, Letter and A4
+  format. If you want to reformat the PDF documentation in A4, you
+  can use the 'paper.type' parameter:
+
+  ant -Dpaper.type=A4 will render the documentation in A4.
+
+
+Add a new DocBook "book"
+========================
+
+Create a new subdirectory inside src/docbook. In there goes your
+new docbook document. If you need images for your document, they go
+into src/<bookname>/images/<maybe-subdir-for-chapter>/<image-name>.png etc. 
+Inside your document, they should be referenced as
+'..images/etc.' because images are kept one level highter in the target
+for sharing the docbook images.
+
+In the main build.xml file, you must add a call to the build-all-books
+task for your new document:
+
+<ant antfile="build-docbook.xml" target="all">
+      <property name="book_name" value="tutorials_and_users_guides"/>  (1)
+</ant>
+
+(1) This is the subdirectory in src/docbook
+
+If you want to do just one chapter of a book, you can.  Do it like this:
+
+<ant antfile="build-docbook.xml" target="all">
+      <property name="book_name" value="tutorials_and_users_guides"/>
+      <property name="chapter_name" value="tug.cas_multiplier"/>
+</ant>
+
+When you add a new document to the framework, you must make sure that
+its referenced DocBook DTD files can be resolved by the Catalog
+resolver. Currently, the resolver knows about DocBook 4.5 and 4.4, so your
+document declaration should be
+
+<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
+       "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">
+
+(or, if you're using an older level of docbook:
+<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
+       "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd">
+
+If you use another doctype definition, the framework will still work,
+but connect to the Internet to get the definition files every time you
+run the build process.
+
+
+How to write / edit Docbook source
+==================================
+
+If you are comfortable with Eclipse, obtain the XMLBuddy plugin for it
+and use it.  It integrates into the Eclipse auto-complete framework all the
+docbook elements and attributes.  It also "knows about" any "entities" that you
+might define/declare.  The UIMA Docbook source makes extensive use of these -
+using entities this way will show an error indicator if you mispell it, and
+entities also participate in the auto-complete framework.  And, when you're
+all done, click on the menu "XML" -> "format" and the source is nicely
+formatted for you.
+
+You can also use XMLMind (see the bottom of this document), but it doesn't
+support entities.
+
+
+How it works (in depth)
+=======================
+
+ant files
+---------
+
+The build.xml file contains only the driver targets for rendering the
+documentation.  It imports the main build file from the uima-docbook-took
+project - the build-docbook.xml. This file normally should not be changed; if you
+have to, please let the developers know, so we can incorporate your
+changes and or bug fixes into the main distribution.
+
+build-docbook.xml contains three main targets: pdf, html and
+htmlsingle. Each is responsible for rendering one format.
+
+User configurable settings are done using the local.docbook.properties
+file, which needs to be at the top level of the project.
+
+DocBook reference files
+-----------------------
+
+The uima-docbook-tool project uses the DocBook XML and XSL distribution archives
+without any changes to them. The version number needs to be in the
+local.docbook.properties files.  
+
+
+XML Resolver
+------------
+
+The framework uses the Apache XML commons resolver to avoid accessing
+the Internet for DTD files. The resolver is configured through the
+CatalogManager.properties and xml-catalog.xml files in the uima-docbook-tool/catalog
+configuration files. If you update e.g. the Docbook XML
+version, you must also update the catalog file to match the new
+version.
+
+
+Docbook Source files
+--------------------
+
+The sources for each DocBook document to render should be in
+src/docbook. Each document has its own subdirectory and gets rendered
+separately. Adding a new document is described in "Adding a new
+DocBook document" above.
+
+
+Stylesheets and Driver files
+----------------------------
+
+For each of the formats used by the framework, a stylesheet driver
+file exists in src/styles. These files are pdf.xsl, html.xsl and
+htmlsingle.xsl.
+
+The driver files are intended to reference the actual style sheet
+customization and to add some framework specific elements through
+filtering. This two step process has been chosen because html and
+htmlsingle are very similar and it makes no sense to maintain two sets
+of stylesheet customizations that are virtually identical.
+
+
+StyleSheet customizations
+-------------------------
+
+These customizations are located in subdirectories in
+src/styles. Currently there are only two: pdf and html (html and
+htmlsingle use the same set of customizations). They are referenced
+from the driver files as src/styles/<subdirectory>/custom.xsl.
+
+
+PDF StyleSheet information
+--------------------------
+
+In the footer, the <releaseinfo> and <productname> elements of the
+DocBook document are displayed. Each document should have these fields
+defined.
+
+
+Titlepages
+----------
+
+PDF and HTML use custom title pages. These are located in the
+respecting src/styles subdirectories as titlepage.xml template
+definitions. The build process renders these files using the DocBook
+XSL template/titlepage.xsl Stylesheet into the same directory
+as the source.  This
+style sheet then must be included in the style sheet driver file (see
+the driver files in src/styles, e.g. pdf.xsl).
+
+If the titlepage reference a project logo, it should be saved 
+as 'logo.png' in the src/images directory. It gets rendered on both
+the HTML and PDF title pages.
+
+
+HTML CSS
+--------
+
+There is support for a CSS file in the html and htmlsingle render
+process. This file is defined in the HTML customization file
+(src/styles/html/custom.xsl) and must be located in the src/css/html
+directory. It is copied into a css subdirectory in the target and must
+be referenced as css/<filename>. See the HTML customization file and
+the build-docbook.xml on how this is done.
+
+Currently, only a single style sheet is supported for both html and
+htmlsingle.
+
+
+Acknowledgements
+----------------
+
+DocBook is a fairly complex format and using and customizing the XSL
+style sheets available is not really straightforward. So by googling
+left and right and looking at other DocBook rendering frameworks that
+are in the open source, we tried to model similarities and sometimes
+actually copied some of the ideas.
+
+This DocBook framework is literally standing on the shoulders of other
+projects, in particular:
+
+* The Docbook project from Apache Velocity
+
+* The DocBook Format by Norman Walsh; (C) 1999-2006 by Norman Walsh,
+  OASIS and O'Reilly, especially all the documentation that is
+  available from http://www.docbook.org/
+
+* The DocBook FAQ maintained by Dave Pawson. We wouldn't have survived
+  without that. (http://www.dpawson.co.uk/docbook/)
+
+* DocBook XSL: The Complete Guide by Bob Stayton. This is an invaluable
+  reference to the DocBook style sheets. Find it online at
+  http://sagehill.net/ or buy the E-book.
+
+* The DocBook Project located at http://docbook.sourceforge.net/. They
+  maintain the XSL style sheets used to transform DocBook into
+  other formats and also link to the docbook mailing list archives.
+
+* The Apache XML commons resolver from
+  http://xml.apache.org/commons/components/resolver/
+
+Ideas on how to render elements, to arrange things and how to do more
+obscure things like title pages or use CSS to render HTML, I've taken
+(sometimes literally by cut'n'paste) from
+
+* The Spring Framework documentation. This is how we got hooked on the
+  idea that Velocity should have DocBook documentation, too. Their
+  DocBook framework is really nice, however for my needs it proved to
+  be 'not exactly what we was looking for' (see above).
+
+  Spring is IMHO an example that good documentation makes all the
+  difference between a successful and popular project and 'the
+  others'. Thanks a lot, Spring guys!
+
+* The "ant and docbook" styler suite by Dawid Weiss, available from
+  http://www.cs.put.poznan.pl/dweiss/xml/projects/ant-docbook-styler/index.xml
+. We stole his CSS style sheet almost verbatim. Thanks a lot, Dawid! 
+
+* The Maven sdocbook plugin by Siegfried Goeschl, Per Olesen and
+  Carlos Sanchez, available at the SourceForge Maven plugin page
+  at http://maven-plugins.sourceforge.net/maven-sdocbook-plugin/
+
+* The XMLmind XML Editor from http://www.xmlmind.com/xmleditor/
+  This is a cross-platform, pure Java editor that not only runs well
+  on Linux, Windows and MacOS but also offers DocBook WYSIWYG support
+  and has a free version. And if you pay for it, you get the source
+  code for it too.
diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/README.FIRST b/CasEditor-2.2.2-04/uima-docbook-tool/README.FIRST
new file mode 100644
index 0000000..bc8449e
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/README.FIRST
@@ -0,0 +1,31 @@
+***************************************************************
+* 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.
+***************************************************************
+
+Running the build with IBM Java 1.4.2 fails - xerces issue with XInclude.
+Please use Java 5.0 or later.
+
+To get the images into the PDF output, you must have the "Java Advanced
+Imaging" Library from Sun.  The tooling will obtain this for you the 
+first time it is run, 
+but your Company may have other places than "Sun" to obtain this library
+from, perhaps under alternative licensing arrangements.  
+If so, you can obtain the library from those places, unzip the archive, and put the two files:
+   jai_codec.jar   and jai_core.jar
+in the uima-docbook-tool project, under tools/jai-versions/jai-1.1.3/  
+
diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/build/build-docbook.xml b/CasEditor-2.2.2-04/uima-docbook-tool/build/build-docbook.xml
new file mode 100644
index 0000000..fab1d08
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/build/build-docbook.xml
@@ -0,0 +1,193 @@
+<?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.

+-->

+

+<!-- This file is <imported...> into other files, so the 

+       properties it sets can be referenced there

+  -->

+

+<project name="common-properties-per-build">

+		

+	<target name="all" depends="prepare, copy-docbook-images">

+	  <ant antfile="${docbook.tool.project}/build/process-one-book.xml">

+	    <reference refid="saxon_and_fop.classpath"/>

+	  </ant> 

+	</target>

+	

+	<target name="setup-common-properties-per-build">

+

+		<available property="isJava5orHigher" classname="java.util.concurrent.atomic.AtomicBoolean"/>

+		<fail message="This script requires Java level 5 or better, and won't run on earlier JVM versions"

+  	      unless="isJava5orHigher"/>

+

+		<path id="docbook.tool.project" location="${ant.file.common-properties-per-build}/../.."/>

+		<pathconvert dirsep="/" property="docbook.tool.project" refid="docbook.tool.project"/>

+

+		<property name="jai.version" value="1.1.3"/>

+		<!-- only this version supported in the auto download script -->

+

+		<!-- Load local properties -->

+		<!-- if the file is not there, it is not an error - it is just skipped -->

+		<!-- earlier files override later ones -->

+		<property file="local.docbook.properties"/>

+		<!-- load from caller project -->

+

+		<property file="${docbook.tool.project}/properties/default.docbook.properties"/>

+

+		<!-- clumsy ant if statements -->

+		<condition property="docbook.fop.extensions" value="fop.extensions">

+			<equals arg1="0.20.5" arg2="${fop.version}"/>

+		</condition>

+		<condition property="fop.main.class" value="org.apache.fop.apps.Fop">

+			<equals arg1="0.20.5" arg2="${fop.version}"/>

+		</condition>

+

+		<condition property="docbook.fop.extensions" value="fop1.extensions">

+			<equals arg1="0.93" arg2="${fop.version}"/>

+		</condition>

+		<condition property="fop.main.class" value="org.apache.fop.cli.Main">

+			<equals arg1="0.93" arg2="${fop.version}"/>

+		</condition>

+

+		<condition property="saxon.main.class" value="com.icl.saxon.StyleSheet">

+			<equals arg1="6.5.5" arg2="${saxon.version}"/>

+		</condition>

+		<condition property="saxon.main.class" value="net.sf.saxon.Transform">

+			<equals arg1="8.9" arg2="${saxon.version}"/>

+		</condition>

+

+		<!-- computed defaults -->

+

+		<property name="src.dir" value="${basedir}/src" />

+		<property name="styles.dir" value="${src.dir}/styles" />

+		<property name="docbook.src.dir" value="${src.dir}/docbook" />

+		<property name="olink.dir" value="${src.dir}/olink" />

+

+		<property name="css.dir" value="${docbook.tool.project}/styles/uima-style/css" />

+		<property name="local.titlepage.dir" value="${styles.dir}/titlepage"/>

+

+		<property name="docbook.tools.lib.dir" value="${docbook.tool.project}/tools/common-lib"/>

+		<property name="docbook.ref.dir" value="${docbook.tool.project}/tools/docbook-versions"/>

+		<property name="docbook.xsl.dir" value="${docbook.ref.dir}/docbook-xsl-${docbook.xsl.version}"/>

+		<property name="docbook.xml.dir" value="${docbook.ref.dir}/docbook-xml-${docbook.xml.version}"/>

+		<property name="saxon.dir"

+      value="${docbook.tool.project}/tools/saxon-versions/saxon-${saxon.version}"/>

+		<property name="jai.dir" value="${docbook.tool.project}/tools/jai-versions/jai-${jai.version}"/>

+		<property name="fop.config"

+      value="${docbook.tool.project}/tools/fop-versions/fop-${fop.version}/fop-config.xml"/>

+

+		<path id="olink.dir.path" location="${olink.dir}" />

+		<pathconvert dirsep="/" property="olink.dir.path" refid="olink.dir.path" />

+

+		<property name="target.dir" value="${basedir}/target" />

+		<!-- ======================================================================== -->

+		<!-- ==                                                                    == -->

+		<!-- == Set up the classpath for the XSLT conversion                       == -->

+		<!-- ==   and for running FOP                                              == -->

+		<!-- ==                                                                    == -->

+		<!-- ======================================================================== -->

+

+		<path id="saxon_and_fop.classpath">

+			<!-- xercesImpl.jar comes first to allow using XInclude -->

+			<pathelement location="${docbook.tools.lib.dir}/xercesImpl-2.7.1.jar"/>

+			<pathelement location="${docbook.tools.lib.dir}/xml-apis-1.3.02.jar"/>

+			<fileset dir="${docbook.tool.project}/tools/fop-versions/fop-${fop.version}" includes="*.jar"/>

+			<fileset dir="${saxon.dir}" includes="*.jar"/>

+			<fileset dir="${docbook.tools.lib.dir}" includes="*.jar"/>

+

+			<fileset dir="${docbook.xsl.dir}/extensions">

+				<include name="${xslt-db.jar}"/>

+			</fileset>

+

+			<fileset dir="${jai.dir}" includes="*.jar"/>

+

+			<!--  Needed to find CatalogManager.properties -->

+			<pathelement

+        location="${docbook.tool.project}/catalog/docbook.version_${docbook.xml.version}"/>

+		</path>

+

+		<uptodate property="title-pdf-uptodate" srcfile="${local.titlepage.dir}/titlepage-pdf.xml"

+      targetfile="${local.titlepage.dir}/titlepage-pdf.xsl"/>

+		<uptodate property="title-html-uptodate" srcfile="${local.titlepage.dir}/titlepage-html.xml"

+      targetfile="${local.titlepage.dir}/titlepage-html.xsl"/>

+

+		<property name="target.dir" value="${basedir}/target"/>

+		<path id="target.dir.path" location="${target.dir}"/>

+		<pathconvert dirsep="/" property="target.dir.path" refid="target.dir.path"/>

+

+		<property name="tmp.dir" value="${target.dir.path}/temp"/>

+		<!-- in caller's project -->

+

+	</target>

+

+	<!-- =========================================================================== -->

+	<!-- ==                                                                       == -->

+	<!-- == prepare temporary directories and get components                      == -->

+	<!-- ==                                                                       == -->

+	<!-- =========================================================================== -->

+	<target name="prepare" depends="setup-common-properties-per-build, setup-availables, 

+		make-temp-dir, test-saxon-available, test-docbook-available, test-jai-available">

+	</target>

+	

+	<target name="make-temp-dir">

+		<mkdir dir="${tmp.dir}"/>

+  </target>

+	

+	<target name="setup-availables">

+		<available file="${saxon.dir}/saxon.jar" property="saxon.available"/>

+		<available file="${docbook.xml.dir}/catalog.xml" property="docbook.available"/>

+		<available file="${jai.dir}/jai_core.jar" property="jai.available"/>

+	</target>

+	

+	<target name="test-saxon-available" unless="saxon.available">

+	  <ant antfile="${docbook.tool.project}/build/get-components.xml" target="get-saxon"/>

+	</target>

+

+	<target name="test-docbook-available" unless="docbook.available">

+	  <ant antfile="${docbook.tool.project}/build/get-components.xml" target="get-docbook"/>

+	</target>

+

+	<target name="test-jai-available" unless="jai.available">

+	  <ant antfile="${docbook.tool.project}/build/get-components.xml" target="get-jai"/>

+	</target>

+

+  <!-- ======================================================================== -->

+  <!-- ==                                                                    == -->

+  <!-- == Clean up the target directory                                      == -->

+  <!-- ==                                                                    == -->

+  <!-- ======================================================================== -->

+  <target name="clean" depends="setup-common-properties-per-build"

+    description="--> Delete temporary and distribution directories for docs">

+    <delete quiet="true" dir="${target.dir.path}"/>

+  </target>

+

+

+	<!-- ======================================================================== -->

+	<!-- == Subroutine: Copy the docbook system images                         == -->

+	<!-- ======================================================================== -->

+

+	<target name="copy-docbook-images">

+

+		<copy todir="${target.dir.path}/images">

+			<fileset dir="${docbook.xsl.dir}/images/"/>

+		</copy>

+

+	</target>

+</project>
\ No newline at end of file
diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/build/common-properties-per-book.xml b/CasEditor-2.2.2-04/uima-docbook-tool/build/common-properties-per-book.xml
new file mode 100644
index 0000000..62be33b
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/build/common-properties-per-book.xml
@@ -0,0 +1,109 @@
+<?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.

+-->

+

+<!-- This file is <imported...> into other files, so the 

+       properties it sets can be referenced there

+  -->

+

+<project name="common-properties-per-book">

+

+	<target name="setup-common-properties-per-book">

+

+		<fail message="You must set book_name">

+			<condition>

+				<not>

+					<isset property="book_name" />

+				</not>

+			</condition>

+		</fail>

+		

+		<!-- if chapter_name is not set, set it to the book_name -->

+		<condition property="chapter_name" value="${book_name}">

+			<isset property="book_name" />

+		</condition>

+

+		<condition property="docbook.outname" value="${chapter_name}">

+			<isset property="chapter_name" />

+		</condition>

+

+    <!-- if olink_work is not set, set it to yes -->

+    <property name="olink_work" value="yes"/>

+

+		<!-- skip some steps if olink_work value is "only" -->

+		<condition property="do_olinkdb_only">

+			<equals arg1="${olink_work}" arg2="only" />

+		</condition>

+

+		<!-- set up to date values for this docbook -->

+		<uptodate property="target-book-pdf-uptodate">

+			<srcfiles dir="${styles.dir}" includes="**/*.*" />

+			<srcfiles dir="${docbook.src.dir}/${book_name}" includes="*.xml" />

+			<!--srcfiles dir="${olink.dir.path}" includes="*/pdf-target.db" /-->

+			<srcfiles dir="${docbook.src.dir}/${book_name}/images" excludes="*/*.ppt"/>

+  		<mergemapper to="${target.dir}${file.separator}${book_name}${file.separator}${docbook.outname}.pdf" />

+		</uptodate>

+		

+		<uptodate property="target-book-html-single-uptodate">

+			<srcfiles dir="${styles.dir}" includes="**/*.*" />

+			<srcfiles dir="${docbook.src.dir}/${book_name}" includes="*.xml" />

+			<!--srcfiles dir="${olink.dir.path}" includes="*/htmlsingle-target.db" /-->

+			<srcfiles dir="${docbook.src.dir}/${book_name}/images" excludes="*/*.ppt"/>

+  	  <mergemapper to="${target.dir}${file.separator}${book_name}${file.separator}${docbook.outname}.html" />

+		</uptodate>

+

+		<uptodate property="target-book-html-chunked-uptodate">

+			<srcfiles dir="${styles.dir}" includes="**/*.*" />

+			<srcfiles dir="${docbook.src.dir}/${book_name}" includes="*.xml" />

+			<!--srcfiles dir="${olink.dir.path}" includes="*/htmlchunked-target.db" /-->

+			<srcfiles dir="${docbook.src.dir}/${book_name}/images" excludes="*/*.ppt"/>

+		  <mergemapper to="${target.dir}${file.separator}${book_name}${file.separator}${docbook.outname}${file.separator}index.html" />

+    </uptodate>

+		

+		<uptodate property="target-book-images-uptodate">

+			<srcfiles dir="${docbook.src.dir}/${book_name}/images" excludes="*/*.ppt"/>

+  	  <globmapper from="*" 

+	      to="${target.dir}${file.separator}images${file.separator}${book_name}${file.separator}*"/>

+    </uptodate>

+		

+		<condition property="skip-or-uptodate.pdf">

+			<or>

+				<isset property="skip.pdf" />

+				<isset property="target-book-pdf-uptodate" />

+			</or>

+		</condition>

+

+		<condition property="skip-or-uptodate.html-chunked">

+			<or>

+				<isset property="skip.html-chunked" />

+				<isset property="target-book-html-chunked-uptodate" />

+			</or>

+		</condition>

+

+		<condition property="skip-or-uptodate.html-single">

+			<or>

+				<isset property="skip.html-single" />

+				<isset property="target-book-html-single-uptodate" />

+			</or>

+		</condition>

+

+

+	</target>

+</project>
\ No newline at end of file
diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/build/get-components.xml b/CasEditor-2.2.2-04/uima-docbook-tool/build/get-components.xml
new file mode 100644
index 0000000..9fa9f6d
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/build/get-components.xml
@@ -0,0 +1,168 @@
+<?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.

+-->

+

+<project name="get-components">

+

+  <!-- ======================================================================== -->

+  <!-- ==                                                                    == -->

+  <!-- == Subroutines                                                        == -->

+  <!-- ==                                                                    == -->

+  <!-- ======================================================================== -->

+  <!-- ======================================================================== -->

+  <!-- == Subroutine: Copy the docbook system images                         == -->

+  <!-- ======================================================================== -->

+  

+  <target name="copy-docbook-images">

+    

+    <copy todir="${target.dir.path}/images">

+      <fileset dir="${docbook.xsl.dir}/images/"/>

+    </copy>

+       

+  </target>

+  

+  <!-- ======================================================================== -->

+  <!-- == Subroutine: Download Saxon                                         == -->

+  <!-- ======================================================================== -->

+  

+  <target name="get-saxon" unless="saxon.available">

+    <input

+      message="Downloading and unzipping (one time) Saxon's free XSLT package,&#xA;

+licensed under the Mozilla Public License Version 1.0;&#xA;

+you may not use this package except in compliance with the License.&#xA;&#xA; 

+You may obtain a copy of the License at http://www.mozilla.org/MPL/&#xA;&#xA;Ok to download?"

+      validargs="y,n" addproperty="ok.download.saxon"/>

+    <condition property="do.download.saxon">

+      <equals arg1="y" arg2="${ok.download.saxon}"/>

+    </condition>

+    <fail unless="do.download.saxon" message="Download aborted by user."/>

+    

+    <get src="http://prdownloads.sourceforge.net/saxon/saxon6-5-5.zip" dest="${tmp.dir}/saxon.zip"/>

+    <unzip src="${tmp.dir}/saxon.zip" dest="${tmp.dir}/saxon"/>

+    <copy file="${tmp.dir}/saxon/saxon.jar" tofile="${saxon.dir}/saxon.jar"/>

+  </target>

+  

+  <!-- ======================================================================== -->

+  <!-- == Subroutine: Download jai                                           == -->

+  <!-- ======================================================================== -->

+  

+  <target name="get-jai" unless="jai.available">

+    <input

+      message="Downloading and unzipping (one time) Java Advanced Imaging package (JAI),&#xA;

+licensed under the specific Sun license for JAI;&#xA;

+You may not use this package except in compliance with the License.&#xA;&#xA; 

+The license is contained in the download.&#xA;&#xA;Ok to download?"

+      validargs="y,n" addproperty="ok.download.jai"/>

+    <condition property="do.download.jai">

+      <equals arg1="y" arg2="${ok.download.jai}"/>

+    </condition>

+    <fail unless="do.download.jai" message="Download aborted by user."/>

+    

+    <get src="http://download.java.net/media/jai/builds/release/1_1_3/jai-1_1_3-lib.zip"

+      dest="${tmp.dir}/jai.zip"/>

+    <unzip src="${tmp.dir}/jai.zip" dest="${tmp.dir}"/>

+    <copy todir="${jai.dir}">

+      <fileset dir="${tmp.dir}/jai-1_1_3/lib">

+        <include name="jai_codec.jar"/>

+        <include name="jai_core.jar"/>

+      </fileset>

+    </copy>

+  </target>

+  

+  <!-- ======================================================================== -->

+  <!-- == Subroutine: Unzip the docbook xml and xslt transformations         == -->

+  <!-- ======================================================================== -->

+  <target name="get-docbook" description="internal: gets and unzips docbook xml and xsl style sheets"

+    unless="docbook.available">

+    

+    <input

+      message="Downloading and unzipping (one time) the free docbook DTDs and XSLT packages.&#xA;

+The DTDs are copyrighted with the following permissions granted:

+  Copyright 1992-2004 HaL Computer Systems, Inc.,&#xA;

+  O'Reilly &amp; Associates, Inc., ArborText, Inc., Fujitsu Software&#xA;

+  Corporation, Norman Walsh, Sun Microsystems, Inc., and the&#xA;

+  Organization for the Advancement of Structured Information&#xA;

+  Standards (OASIS).&#xA;&#xA;

+  Permission to use, copy, modify and distribute the DocBook DTD&#xA;

+  and its accompanying documentation for any purpose and without fee&#xA;

+  is hereby granted in perpetuity, provided that the above copyright&#xA;

+  notice and this paragraph appear in all copies. The copyright&#xA;

+  holders make no representation about the suitability of the DTD for&#xA;

+  any purpose. It is provided &quot;as is&quot; without expressed or implied&#xA;

+  warranty.&#xA;&#xA;

+  If you modify the DocBook DTD in any way, except for declaring and&#xA;

+  referencing additional sets of general entities and declaring&#xA;

+  additional notations, label your DTD as a variant of DocBook. See&#xA;

+  the maintenance documentation for more information. &#xA;&#xA;

+The XSLT transforms come with the following copyright and permissions:&#xA;

+  Permission is hereby granted, free of charge, to any person&#xA;

+  obtaining a copy of this software and associated documentation&#xA;

+  files (the ``Software''), to deal in the Software without&#xA;

+  restriction, including without limitation the rights to use,&#xA;

+  copy, modify, merge, publish, distribute, sublicense, and/or&#xA;

+  sell copies of the Software, and to permit persons to whom the&#xA;

+  Software is furnished to do so, subject to the following&#xA;

+  conditions:&#xA;&#xA;

+  The above copyright notice and this permission notice shall be&#xA;

+  included in all copies or substantial portions of the Software.&#xA;

+ 	Except as contained in this notice, the names of individuals&#xA;

+ 	credited with contribution to this software shall not be used in&#xA;

+ 	advertising or otherwise to promote the sale, use or other&#xA;

+ 	dealings in this Software without prior written authorization&#xA;

+ 	from the individuals in question.&#xA;&#xA;

+ 	Any stylesheet derived from this Software that is publically&#xA;

+ 	distributed will be identified with a different name and the&#xA;

+ 	version strings in any derived Software will be changed so that&#xA;

+ 	no possibility of confusion between the derived package and this&#xA;

+ 	Software will exist.&#xA;&#xA;

+ 	Warranty&#xA;

+ 	--------&#xA;&#xA;

+ 	THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,&#xA;

+ 	EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES&#xA;

+ 	OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND&#xA;

+ 	NONINFRINGEMENT. IN NO EVENT SHALL NORMAN WALSH OR ANY OTHER&#xA;

+ 	CONTRIBUTOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,&#xA;

+ 	WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING&#xA;

+ 	FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR&#xA;

+ 	OTHER DEALINGS IN THE SOFTWARE.&#xA;

+ &#xA;&#xA;Ok to download?"

+      validargs="y,n" addproperty="ok.download.docbooks"/>

+    

+    <condition property="do.download.docbooks">

+      <equals arg1="y" arg2="${ok.download.docbooks}"/>

+    </condition>

+    <fail unless="do.download.docbooks" message="Download aborted by user."/>

+    

+    <mkdir dir="${docbook.xml.dir}"/>

+    <echo message="Downloading and unzipping (one time) docbook-xml-${docbook.xml.version}.zip"/>

+    <get

+      src="http://www.docbook.org/xml/${docbook.xml.version}/docbook-xml-${docbook.xml.version}.zip"

+      dest="${tmp.dir}/docbook-system-xml.zip"/>

+    <unzip src="${tmp.dir}/docbook-system-xml.zip" dest="${docbook.xml.dir}"/>

+    

+    <mkdir dir="${docbook.xsl.dir}"/>

+    <echo message="Downloading and unzipping (one time) docbook-xsl-${docbook.xsl.version}.zip"/>

+    <get src="http://downloads.sourceforge.net/docbook/docbook-xsl-${docbook.xsl.version}.zip"

+      dest="${tmp.dir}/docbook-system-xsl.zip"/>

+    

+    <unzip src="${tmp.dir}/docbook-system-xsl.zip" dest="${docbook.ref.dir}"/>

+  </target>

+

+</project>
\ No newline at end of file
diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/build/process-one-book.xml b/CasEditor-2.2.2-04/uima-docbook-tool/build/process-one-book.xml
new file mode 100644
index 0000000..4368797
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/build/process-one-book.xml
@@ -0,0 +1,238 @@
+<?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.

+-->

+

+  <!--  Assumes the following preconditions and properties are set:

+    "prepare" task is done

+    

+    properties set or not (flags)

+      skip-or-uptodate.pdf

+      skip-or-uptodate.html-single

+      skip-or-uptodate.html-chunked

+      

+    properties identifying paths and names:

+      ${docbook.src.dir}

+      ${book_name}

+      ${chapter_name}

+      ${target.dir.path}

+      ${docbook.outname}

+      ${styles.dir}

+      ${local.titlepage.dir}

+      ${olink.dir.path}

+      ${docbook.xsl.dir}

+      

+    properties identifying versions:

+      ${fop.version}

+      

+    misc properties:

+      ${paper.type}

+      ${olink_work}

+      ${fop.main.class}

+    

+    references:

+      saxon_and_fop.classpath

+      

+    -->

+

+<project name="process-one-book" default="all">

+  

+	<import file="common-properties-per-book.xml"/>

+	

+  <!-- ======================================================================== -->

+  <!-- ==                                                                    == -->

+  <!-- == This is the main target to generate all the docs                   == -->

+  <!-- ==                                                                    == -->

+  <!-- ======================================================================== -->

+  <target name="all" depends="pdf-c, html-c, htmlsingle-c"

+    description="--> Generate html and pdf documentation"/>

+  

+  <target name="pdf-c" depends="setup-common-properties-per-book, copy-docbook-images-and-css" unless="skip-or-uptodate.pdf">

+    <antcall target="pdf">

+    	<reference refid="saxon_and_fop.classpath"/>

+  	</antcall>

+  </target>

+

+  <target name="html-c" depends="setup-common-properties-per-book, copy-docbook-images-and-css" unless="skip-or-uptodate.html-chunked">

+    <antcall target="html">

+	    <reference refid="saxon_and_fop.classpath"/>

+    </antcall>

+  </target>

+  

+  <target name="htmlsingle-c" depends="setup-common-properties-per-book, copy-docbook-images-and-css" unless="skip-or-uptodate.html-single">

+    <antcall target="htmlsingle">

+	    <reference refid="saxon_and_fop.classpath"/>

+    </antcall>

+  </target>

+

+    <!-- ======================================================================== -->

+  <!-- ==                                                                    == -->

+  <!-- == Create the PDF documentation                                       == -->

+  <!-- ==                                                                    == -->

+  <!-- ======================================================================== -->

+  <target name="pdf" 

+    depends="transform-pdf, fop_conditionally"

+    description="--> Generate PDF docs"/>

+  

+  <target name="transform-pdf" depends="transform-title-pdf, transform-source-pdf"

+    description="--> internal transform for pdf output"/>

+  

+  <target name="transform-source-pdf" description="--> internal transform source for pdf output">

+    <!--echo message="docbook.xsl.root = file:///${docbook.xsl.dir}"/-->

+    <!--echo message="olink work = ${olink_work}"/-->

+    <saxon input="${docbook.src.dir}/${book_name}/${chapter_name}.xml"

+      output="${target.dir.path}/${chapter_name}/${docbook.outname}.pdf_src.xml"

+      style="${styles.dir}/top/pdf.xsl"

+      params="fop.version=${fop.version} 

+		               paper.type=${paper.type} 

+		               collect.xref.targets=${olink_work} 

+		               targets.filename=${olink.dir.path}/${chapter_name}/pdf-target.db

+		               target.database.document=file:///${olink.dir.path}/olink_db_pdf.xml

+		               current.docid=${chapter_name}

+			             docbook.xsl.root=file:///${docbook.xsl.dir}			             

+			             "/>

+  </target>

+  

+  <target name="transform-title-pdf" unless="title-pdf-uptodate"

+    description="--> internal transform title page for pdf">

+    <saxon input="${local.titlepage.dir}/titlepage-pdf.xml"

+      output="${local.titlepage.dir}/titlepage-pdf.xsl"

+      style="${docbook.xsl.dir}/template/titlepage.xsl"/>

+  </target>

+  

+  <target name="transform-title-html" unless="title-html-uptodate"

+    description="--> internal trnasform title page for html">

+    <saxon input="${local.titlepage.dir}/titlepage-html.xml"

+      output="${local.titlepage.dir}/titlepage-html.xsl"

+      style="${docbook.xsl.dir}/template/titlepage.xsl"/>

+  </target>

+  

+  <target name="fop_conditionally" description="internal - runs fop conditionally"

+    unless="do_olinkdb_only">

+    

+    <java classname="${fop.main.class}" fork="true" maxmemory="256m"

+      dir="${target.dir.path}/${chapter_name}" classpathref="saxon_and_fop.classpath">

+      <arg value="-c"/>

+      <arg value="${fop.config}"/>

+      <arg value="${target.dir.path}/${chapter_name}/${docbook.outname}.pdf_src.xml"/>

+      <arg value="${target.dir.path}/${chapter_name}/${docbook.outname}.pdf"/>

+    </java>

+    

+  </target>

+  

+  <!-- ======================================================================== -->

+  <!-- ==                                                                    == -->

+  <!-- == Create the HTML documentation, many pages                          == -->

+  <!-- ==                                                                    == -->

+  <!-- ======================================================================== -->

+  <target name="html"

+    depends="transform-title-html, transform-html-chunked"

+    description="--> Generate HTML docs in multiple files"/>

+

+  <target name="transform-html-chunked">

+    <saxon input="${docbook.src.dir}/${book_name}/${chapter_name}.xml"

+      output="${target.dir.path}/${chapter_name}/${docbook.outname}.html"

+      style="${styles.dir}/top/html-chunked.xsl"

+      params="collect.xref.targets=${olink_work} 

+		          targets.filename=${olink.dir.path}/${chapter_name}/htmlsingle-target.db

+		          target.database.document=file:///${olink.dir.path}/olink_db_htmlsingle.xml

+		          current.docid=${chapter_name}"/>

+  </target>

+  

+  <!-- ======================================================================== -->

+  <!-- ==                                                                    == -->

+  <!-- == Create the HTML documentation, one big page                        == -->

+  <!-- ==                                                                    == -->

+  <!-- ======================================================================== -->

+  <target name="htmlsingle"

+    depends="transform-title-html, transform-html-single, clean-if-olink-only"

+    description="--> Generate HTML docs in a single, big file"/>

+  

+  <target name="transform-html-single">

+    <!--echo message="${target.dir.path}/${chapter_name}/${docbook.outname}.html"/>

+    <echo message="olink work = ${olink_work}"/-->

+    <saxon input="${docbook.src.dir}/${book_name}/${chapter_name}.xml"

+      output="${target.dir.path}/${chapter_name}/${docbook.outname}.html"

+      style="${styles.dir}/top/html-single.xsl"

+      params="collect.xref.targets=${olink_work} 

+		          targets.filename=${olink.dir.path}/${chapter_name}/htmlsingle-target.db

+		          target.database.document=file:///${olink.dir.path}/olink_db_htmlsingle.xml

+		          current.docid=${chapter_name}"/>

+  </target>

+  

+	<!-- next target cleans up 0-length output that sometimes appears for olink only -->

+	<target name="clean-if-olink-only" if="do_olinkdb_only">

+		<delete quiet="true" file="${target.dir.path}/${chapter_name}/${docbook.outname}.html"/>

+	</target>			

+		

+  <target name="copy-docbook-images-and-css" unless="${target-book-images-uptodate}">

+

+    <property name="target-book-images-uptodate" value="ignored"/>

+    

+    <copy todir="${target.dir.path}/images/${book_name}">

+      <fileset dir="${docbook.src.dir}/${book_name}/images" excludes="*/*.ppt"/>

+    </copy>

+    

+    <copy todir="${target.dir.path}/${chapter_name}/css">

+      <fileset dir="${css.dir}"/>

+    </copy>

+    

+  </target>

+

+	<!-- ======================================================================== -->

+  <!-- ==                                                                    == -->

+  <!-- == Saxon Converter macro that uses commons-resolver                   == -->

+  <!-- ==   and xerces parser (to handle XIncludes)                          == -->

+  <!-- ==                                                                    == -->

+  <!-- == input: The file to transform                                       == -->

+  <!-- == output: The transformation result                                  == -->

+  <!-- == style: The Style Sheet used for the transformation                 == -->

+  <!-- ==                                                                    == -->

+  <!-- ======================================================================== -->

+  <macrodef name="saxon">

+    <attribute name="input"/>

+    <attribute name="output"/>

+    <attribute name="style"/>

+    <attribute name="params" default=""/>

+    <sequential>

+      <!--echo message="input"/>

+      <echo message="@{input}"/-->

+      <java classname="com.icl.saxon.StyleSheet" fork="true" dir="${docbook.tool.project}"

+        classpathref="saxon_and_fop.classpath">

+        <!-- The jvm args install the xerces parser to allow use of XIncludes -->

+        <jvmarg

+          value="-Djavax.xml.parsers.DocumentBuilderFactory=org.apache.xerces.jaxp.DocumentBuilderFactoryImpl"/>

+        <jvmarg

+          value="-Djavax.xml.parsers.SAXParserFactory=org.apache.xerces.jaxp.SAXParserFactoryImpl"/>

+        <jvmarg

+          value="-Dorg.apache.xerces.xni.parser.XMLParserConfiguration=org.apache.xerces.parsers.XIncludeParserConfiguration"/>

+        <arg line="-x org.apache.xml.resolver.tools.ResolvingXMLReader"/>

+        <arg line="-y org.apache.xml.resolver.tools.ResolvingXMLReader"/>

+        <arg line="-r org.apache.xml.resolver.tools.CatalogResolver"/>

+        <!--arg value="-T"/-->

+        <arg value="-o"/>

+        <arg value="@{output}"/>

+        <arg value="@{input}"/>

+        <arg value="@{style}"/>

+        <arg line="@{params}"/>

+      </java>

+    </sequential>

+  </macrodef>

+

+</project>
\ No newline at end of file
diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/catalog/docbook.version_4.4/CatalogManager.properties b/CasEditor-2.2.2-04/uima-docbook-tool/catalog/docbook.version_4.4/CatalogManager.properties
new file mode 100644
index 0000000..579ddcc
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/catalog/docbook.version_4.4/CatalogManager.properties
@@ -0,0 +1,38 @@
+#  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.    

+

+# see http://xml.apache.org/commons/components/apidocs/resolver/org/apache/xml/resolver/CatalogManager.html

+# for a description of the contents

+

+# 	The semicolon-delimited list of catalog files

+catalogs = catalog/docbook.version_4.4/xml-catalog.xml

+

+relative-catalogs = true

+

+# If non-zero, the Catalog classes will print informative 

+# and debugging messages. The higher the number, the more messages.

+verbosity = 0

+

+prefer = system

+

+# Should a single catalog be constructed for all parsing, 

+# or should a different catalog be created for each parser?

+static-catalog = yes

+

+# If the source document contains "oasis-xml-catalog" processing instructions, 

+# should they be used?

+allow-oasis-xml-catalog-pi = yes

diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/catalog/docbook.version_4.4/xml-catalog.xml b/CasEditor-2.2.2-04/uima-docbook-tool/catalog/docbook.version_4.4/xml-catalog.xml
new file mode 100644
index 0000000..ff02042
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/catalog/docbook.version_4.4/xml-catalog.xml
@@ -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.

+-->

+

+<!-- see http://www.oasis-open.org/committees/entity/spec-2001-08-06.html 

+     for a description of all the elements and attributes -->

+

+<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog">

+

+  <!-- Translate DocBook XML 4.4 system ids to local file names -->

+  <rewriteSystem

+    systemIdStartString="http://www.oasis-open.org/docbook/xml/4.4/"

+    rewritePrefix="../../tools/docbook-versions/docbook-xml-4.4/"/>

+ 

+  <rewriteSystem

+    systemIdStartString="http://docbook.sourceforge.net/release/xsl/current/"

+    rewritePrefix="../../tools/docbook-versions/docbook-xsl-1.70.0/"/>

+

+  <!-- Translate DocBook XML 4.4 public ids to local file names -->

+  <nextCatalog

+    catalog="../../tools/docbook-versions/docbook-xml-4.4/catalog.xml"/>

+

+  <rewriteURI

+    uriStartString="http://docbook.sourceforge.net/release/xsl/current/"

+    rewritePrefix="../../tools/docbook-versions/docbook-xsl-1.70.0/"/>

+

+</catalog>

diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/catalog/docbook.version_4.5/CatalogManager.properties b/CasEditor-2.2.2-04/uima-docbook-tool/catalog/docbook.version_4.5/CatalogManager.properties
new file mode 100644
index 0000000..3ba7ab8
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/catalog/docbook.version_4.5/CatalogManager.properties
@@ -0,0 +1,38 @@
+#  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.    

+

+# see http://xml.apache.org/commons/components/apidocs/resolver/org/apache/xml/resolver/CatalogManager.html

+# for a description of the contents

+

+# 	The semicolon-delimited list of catalog files

+catalogs = catalog/docbook.version_4.5/xml-catalog.xml

+

+relative-catalogs = yes

+

+# If non-zero, the Catalog classes will print informative 

+# and debugging messages. The higher the number, the more messages.

+verbosity = 1

+

+prefer = system

+

+# Should a single catalog be constructed for all parsing, 

+# or should a different catalog be created for each parser?

+static-catalog = yes

+

+# If the source document contains "oasis-xml-catalog" processing instructions, 

+# should they be used?

+allow-oasis-xml-catalog-pi = yes

diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/catalog/docbook.version_4.5/xml-catalog.xml b/CasEditor-2.2.2-04/uima-docbook-tool/catalog/docbook.version_4.5/xml-catalog.xml
new file mode 100644
index 0000000..dac41df
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/catalog/docbook.version_4.5/xml-catalog.xml
@@ -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.

+-->

+

+<!-- see http://www.oasis-open.org/committees/entity/spec-2001-08-06.html 

+     for a description of all the elements and attributes -->

+

+<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog">

+

+  <!-- Translate DocBook XML 4.5 system ids to local file names -->

+  <rewriteSystem

+    systemIdStartString="http://www.oasis-open.org/docbook/xml/4.5/"

+    rewritePrefix="../../tools/docbook-versions/docbook-xml-4.5/"/>

+ 

+  <rewriteSystem

+    systemIdStartString="http://docbook.sourceforge.net/release/xsl/current/"

+    rewritePrefix="../../tools/docbook-versions/docbook-xsl-1.72.0/"/>

+

+  <!-- Translate DocBook XML 4.5 public ids to local file names -->

+  <nextCatalog

+    catalog="../../tools/docbook-versions/docbook-xml-4.5/catalog.xml"/>

+

+  <rewriteURI

+    uriStartString="http://docbook.sourceforge.net/release/xsl/current/"

+    rewritePrefix="../../tools/docbook-versions/docbook-xsl-1.72.0/"/>

+

+</catalog>

diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/properties/default.docbook.properties b/CasEditor-2.2.2-04/uima-docbook-tool/properties/default.docbook.properties
new file mode 100644
index 0000000..8611298
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/properties/default.docbook.properties
@@ -0,0 +1,44 @@
+#  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.    

+

+

+# default version info

+# which version of fop to use

+fop.version = 0.93

+

+# which version of docbook to use

+docbook.xml.version = 4.5

+docbook.xsl.version = 1.72.0

+

+# which version of saxon to use

+saxon.version = 6.5.5

+

+# which version of jai to use 

+# jai = Java Advanced Imaging - need by FOP to process included images

+#  ##########  NOTE only 1.1.3 supported in the autodownload part ########

+jai.version = 1.1.3

+

+# The size of the PDF pages.

+paper.type= Letter

+

+# use saxon version 6.5.5

+saxon.version = 6.5.5

+# We use SAXON as our XSLT processor and this is the custom jar included with

+# the docbook XML distribution.

+xslt-db.jar = saxon653.jar

+

+

diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/samples/build_book-name.xml b/CasEditor-2.2.2-04/uima-docbook-tool/samples/build_book-name.xml
new file mode 100644
index 0000000..dc44c1b
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/samples/build_book-name.xml
@@ -0,0 +1,30 @@
+<?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.    

+-->

+

+<!-- set the basedir value to point to the top level of the project -->

+

+<project name="name of book to build" default="all" basedir=".">

+  

+  <property name="book_name" value="name of book to build"/>

+  

+  <import file="${basedir}/../uima-docbook-tool/build/build-docbook.xml"/>  

+  

+</project>

diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/samples/local.docbook.properties b/CasEditor-2.2.2-04/uima-docbook-tool/samples/local.docbook.properties
new file mode 100644
index 0000000..317cf2c
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/samples/local.docbook.properties
@@ -0,0 +1,54 @@
+#  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.    

+

+# which version of fop to use

+fop.version = 0.93

+

+# which version of docbook to use

+docbook.xml.version = 4.5

+docbook.xsl.version = 1.72.0

+

+# uncomment these to skip parts of the build

+#skip.html-chunked = true

+#skip.html-single = true

+#skip.pdf = true

+

+# Optional settings - defaults shown

+

+# where to get css and styles

+#   basedir is set to the local project's base directory

+#styles.dir = ${basedir}/src/styles

+

+# Where all the sources are located

+#src.dir = ${basedir}/src

+

+# Location of the docbook source files

+#docbook.src.dir = ${src.dir}/docbook

+

+# Location of olink info

+#olink.dir = ${src.dir}/olink

+

+# Target Directory

+#target.dir = ${basedir}/target

+

+# css directory to use for html output is

+#css.dir = $docbook.tool.project/styles/uima-style/css

+

+# where to get title page and save results

+#local.titlepage.dir = ${styles.dir}/titlepage

+

+

diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/samples/titlepage/titlepage-html.xml b/CasEditor-2.2.2-04/uima-docbook-tool/samples/titlepage/titlepage-html.xml
new file mode 100644
index 0000000..03079dc
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/samples/titlepage/titlepage-html.xml
@@ -0,0 +1,60 @@
+<?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.

+-->

+

+<t:templates xmlns:t="http://nwalsh.com/docbook/xsl/template/1.0"

+	     xmlns:param="http://nwalsh.com/docbook/xsl/template/1.0/param"

+             xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

+

+<!-- ==================================================================== -->

+

+<t:titlepage t:element="book" t:wrapper="div" class="titlepage">

+  <t:titlepage-content t:side="recto">

+    <title/>

+    <subtitle/>

+    <corpauthor/>

+    <authorgroup/>

+    <author/>

+    <mediaobject/>

+    <othercredit/>

+    <releaseinfo/>

+    <copyright/>

+    <legalnotice/>

+    <pubdate/>

+    <revision/>

+    <revhistory/>

+    <abstract/>

+  </t:titlepage-content>

+

+  <t:titlepage-content t:side="verso">

+  </t:titlepage-content>

+

+  <t:titlepage-separator>

+    <hr/>

+  </t:titlepage-separator>

+

+  <t:titlepage-before t:side="recto">

+  </t:titlepage-before>

+

+  <t:titlepage-before t:side="verso">

+  </t:titlepage-before>

+</t:titlepage>

+

+</t:templates>

diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/samples/titlepage/titlepage-pdf.xml b/CasEditor-2.2.2-04/uima-docbook-tool/samples/titlepage/titlepage-pdf.xml
new file mode 100644
index 0000000..5c29a09
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/samples/titlepage/titlepage-pdf.xml
@@ -0,0 +1,98 @@
+<?xml version="1.0" encoding="UTF-8"?>

+<!DOCTYPE t:templates [

+<!ENTITY hsize0 "10pt">

+<!ENTITY hsize1 "12pt">

+<!ENTITY hsize2 "14pt">

+<!ENTITY hsize3 "16pt">

+<!ENTITY hsize4 "18pt">

+<!ENTITY hsize5 "20pt">

+<!ENTITY hsize0space "7.5pt"> <!-- 0.75 * hsize0 -->

+<!ENTITY hsize1space "9pt"> <!-- 0.75 * hsize1 -->

+<!ENTITY hsize2space "10.5pt"> <!-- 0.75 * hsize2 -->

+<!ENTITY hsize3space "12pt"> <!-- 0.75 * hsize3 -->

+<!ENTITY hsize4space "13.5pt"> <!-- 0.75 * hsize4 -->

+<!ENTITY hsize5space "15pt"> <!-- 0.75 * hsize5 -->

+]>

+

+

+<!--

+ 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.

+-->

+<t:templates xmlns:t="http://nwalsh.com/docbook/xsl/template/1.0"

+  xmlns:param="http://nwalsh.com/docbook/xsl/template/1.0/param"

+  xmlns:fo="http://www.w3.org/1999/XSL/Format"

+  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

+  

+  <t:titlepage t:element="book" t:wrapper="fo:block">

+    <t:titlepage-content t:side="recto">

+      <title t:named-template="division.title"

+        param:node="ancestor-or-self::book[1]" text-align="center"

+        font-size="&hsize5;" space-before="&hsize5space;" font-weight="bold"

+        font-family="{$title.fontset}"/>

+      <subtitle text-align="center" font-size="&hsize4;"

+        space-before="&hsize4space;" font-family="{$title.fontset}"/>

+      

+      <corpauthor space-before="0.5em" font-size="&hsize2;"/>

+      <authorgroup space-before="0.5em" font-size="&hsize2;"/>

+      <author space-before="0.5em" font-size="&hsize2;"/>

+      

+      <othercredit space-before="0.5em"/>

+      <mediaobject space-before="2em" space-after="2em"/>

+      <releaseinfo space-before="5em"/>

+      <revision space-before="0.5em"/>

+      <revhistory space-before="0.5em"/>

+      <abstract space-before="0.5em" text-align="start" margin-left="0.5in"

+        margin-right="0.5in" font-family="{$body.fontset}"/>

+    </t:titlepage-content>

+    

+    <t:titlepage-content t:side="verso">

+      <copyright space-before="0.5em"/>

+      <legalnotice text-align="start" margin-left="0.5in" margin-right="0.5in"

+        font-family="{$body.fontset}"/>

+      <pubdate space-before="3.5em"/>

+    </t:titlepage-content>

+

+    

+    <t:titlepage-separator>

+    </t:titlepage-separator>

+     <!--   

+    <t:titlepage-before t:side="recto">

+    </t:titlepage-before>

+    

+    <t:titlepage-before t:side="verso">

+    </t:titlepage-before>

+      -->

+  </t:titlepage>

+ 

+  <!-- 

+  <t:titlepage element="chapter" wrapper="fo:block">

+    <t:titlepage-content t:side="recto">

+      <title named-template="component.title"

+        param:node="ancestor-or-self::chapter[1]"

+        margin-left="{$title.margin.left}" 

+        font-size="&hsize5;" 

+        font-weight="bold"

+        font-family="{$title.font.family}" 

+        border-top="solid black 2pt"/>

+    </t:titlepage-content>

+  </t:titlepage>

+ -->

+  

+  <!-- ==================================================================== -->

+  

+</t:templates>

diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/samples/top/html-chunked.xsl b/CasEditor-2.2.2-04/uima-docbook-tool/samples/top/html-chunked.xsl
new file mode 100644
index 0000000..e46f573
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/samples/top/html-chunked.xsl
@@ -0,0 +1,41 @@
+<?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'>
+   
+  <!-- S A M P L E  -->
+  
+  <!-- note that xsl:import elements must appear FIRST
+       and their href strings must be literal (no variables allowed) -->
+    
+  <!-- import docbook system from the shared uima-docbook-tool project -->  
+  <xsl:import href="../../../uima-docbook-tool/tools/docbook-versions/docbook-xsl-1.72.0/html/chunk.xsl" />
+  
+  <!-- import the standard uima-style of formatting from the shared uima-docbook-tool project -->
+  <xsl:import href="../../../uima-docbook-tool/styles/uima-style/top/html-chunked.xsl" />  
+    
+  <!-- The script will generate a title page in ${local.titlepage.dir} -->
+  <!-- this generate xsl file needs to be included here -->
+  <!-- Make sure the path agrees with your setting of ${local.titlepage.dir} in local.docbook.properties -->
+  <xsl:include href="../titlepage/titlepage-html.xsl"/>
+   
+</xsl:stylesheet>
diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/samples/top/html-single.xsl b/CasEditor-2.2.2-04/uima-docbook-tool/samples/top/html-single.xsl
new file mode 100644
index 0000000..67b9ac4
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/samples/top/html-single.xsl
@@ -0,0 +1,41 @@
+<?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'>
+   
+  <!-- S A M P L E  -->
+  
+  <!-- note that xsl:import elements must appear FIRST
+       and their href strings must be literal (no variables allowed) -->
+    
+  <!-- import docbook system from the shared uima-docbook-tool project -->  
+  <xsl:import href="../../../uima-docbook-tool/tools/docbook-versions/docbook-xsl-1.72.0/html/docbook.xsl" />
+  
+  <!-- import the standard uima-style of formatting from the shared uima-docbook-tool project -->
+  <xsl:import href="../../../uima-docbook-tool/styles/uima-style/top/html-single.xsl" />  
+    
+  <!-- The script will generate a title page in ${local.titlepage.dir} -->
+  <!-- this generate xsl file needs to be included here -->
+  <!-- Make sure the path agrees with your setting of ${local.titlepage.dir} in local.docbook.properties -->
+  <xsl:include href="../titlepage/titlepage-html.xsl"/>
+   
+</xsl:stylesheet>
diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/samples/top/pdf.xsl b/CasEditor-2.2.2-04/uima-docbook-tool/samples/top/pdf.xsl
new file mode 100644
index 0000000..aa3b8c8
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/samples/top/pdf.xsl
@@ -0,0 +1,51 @@
+<?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'>
+   
+  <!-- S A M P L E  -->
+  
+  <!-- note that xsl:import elements must appear FIRST
+       and their href strings must be literal (no variables allowed) -->
+  
+  <!-- import docbook system from the shared uima-docbook-tool project 
+  
+    
+             I M P O R T A N T
+         Change the ../../../ . . .   pattern below to go up enough to
+         reach the directory where uima-docbook-tool project is,
+         relative to the directory where you put this file -->  
+  
+  
+  <xsl:import href="../../../uima-docbook-tool/tools/docbook-versions/docbook-xsl-1.72.0/fo/docbook.xsl" />
+  
+  <!-- import the standard uima-style of formatting from the shared uima-docbook-tool project -->
+  <xsl:import href="../../../uima-docbook-tool/styles/uima-style/top/pdf.xsl" />  
+    
+  <!-- The script will generate a title page in ${local.titlepage.dir} -->
+  <!-- this generate xsl file needs to be included here -->
+  <!-- Make sure the path agrees with your setting of ${local.titlepage.dir} in local.docbook.properties -->
+  
+  <xsl:include href="../titlepage/titlepage-pdf.xsl"/>
+   
+</xsl:stylesheet>
diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/styles/uima-style/common/entities.ent b/CasEditor-2.2.2-04/uima-docbook-tool/styles/uima-style/common/entities.ent
new file mode 100644
index 0000000..f1dd379
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/styles/uima-style/common/entities.ent
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="iso-8859-1" ?>

+<!--
+   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.
+-->
+<!ENTITY url_eclipse "http://www.eclipse.org" >

+<!ENTITY url_emf "http://www.eclipse.org/emf" >

+<!ENTITY url_apache_uima_download "http://incubator.apache.org/uima">

+

+<!ENTITY ae "Analysis Engine">

+<!ENTITY aae "Aggregate Analysis Engine">

+

+<!ENTITY uima_docs_overview "overview_and_setup">

+<!ENTITY uima_docs_tutorial_guides "tutorials_and_users_guides">

+<!ENTITY uima_docs_tools "tools">

+<!ENTITY uima_docs_ref "references">

+

+<!-- special symbols forced to switch to symbol font

+     because FOP 0.20.5 doesn't do this correctly -->

+<!ENTITY rarr "<symbol role='symbolfont'>&#x02192;</symbol>" >

+<!ENTITY larr "<symbol role='symbolfont'>&#x02190;</symbol>" >

diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/styles/uima-style/common/html-pdf.xsl b/CasEditor-2.2.2-04/uima-docbook-tool/styles/uima-style/common/html-pdf.xsl
new file mode 100644
index 0000000..49f105a
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/styles/uima-style/common/html-pdf.xsl
@@ -0,0 +1,164 @@
+<?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.
+-->
+
+<!-- This is the common xsl parameterization shared by all formats -->
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+               xmlns:exsl="http://exslt.org/common"
+                version='1.0'>
+  
+  
+
+  <xsl:attribute-set name="root.properties">
+      <xsl:attribute name="text-align">left</xsl:attribute>
+  </xsl:attribute-set>
+
+  <!-- ##################
+       # Admonitions    #
+       ################## -->   
+
+  <!-- Use nice graphics for admonitions 
+  <xsl:param name="admon.graphics">'1'</xsl:param>
+    -->
+  <xsl:param name="admon.graphics.path" select="'../images/'"/>
+  <xsl:param name="navig.graphics.path" select="'../images/'"/>
+  <xsl:param name="callout.graphics.path" select="'../images/callouts/'"/>
+  <xsl:param name="admon.graphics.extension">.gif</xsl:param>
+  <xsl:param name="callout.graphics.extension">.gif</xsl:param>
+ 
+<!--###################################################
+                      olink styling
+    ################################################### -->  
+  <xsl:param name="olink.doctitle" select="'yes'"/>
+  
+  <!--###################################################
+                         Labels
+    ################################################### -->
+
+    <!-- Label Chapters and Sections (numbering) -->
+    <xsl:param name="chapter.autolabel" select="1"/>
+    <xsl:param name="section.autolabel" select="1"/>
+    <xsl:param name="section.autolabel.max.depth" select="3"/>
+
+    <xsl:param name="section.label.includes.component.label" select="1"/>
+  
+    <xsl:param name="table.footnote.number.format" select="'1'"/>
+ 
+
+<!--###################################################
+                         Callouts
+    ################################################### -->
+
+    <!-- don't use images for callouts -->
+    <xsl:param name="callout.graphics">0</xsl:param>
+    <xsl:param name="callout.unicode">1</xsl:param>
+
+    <!-- Place callout marks at this column in annotated areas -->
+    <xsl:param name="callout.defaultcolumn">90</xsl:param>
+
+  <!--###################################################
+                      Table of Contents
+    ################################################### -->
+
+    <xsl:param name="generate.toc">
+      book      toc,title
+    </xsl:param>
+
+  <!--###################################################
+                          Misc
+    ################################################### -->
+
+    <!-- have ulinks with text show the link in a footnote -->
+    <xsl:param name="ulink.footnotes" select="1"/>
+    <xsl:param name="ulink.show" select="1"/>
+
+    <!-- Glossary indent -->
+    <xsl:param name="glossterm.width" select="'1.4in'"/>
+
+    <!-- Placement of titles -->
+    <xsl:param name="formal.title.placement">
+        figure after
+        example after
+        equation before
+        table before
+        procedure before
+    </xsl:param>
+
+  <!-- Format Variable Lists as Blocks (prevents horizontal overflow) -->
+  <xsl:param name="variablelist.as.blocks">1</xsl:param>
+
+  <!-- expand plain imageobject nodes into doubles, one for fo output the other for html output
+       Scale the html output by 1.1 for inches or 1.4 for pixels 
+       use test="$fop.version = '0.93' to do fop versioning -->
+  
+  <!-- scale=xxx is ignored in 0.20.5, but works in 0.93 -->
+  
+  <xsl:template match="mediaobject[imageobject[not(@role)]]">

+    <xsl:variable name="id1" select="imageobject/imagedata"/>

+    <xsl:variable name="width" select="string(imageobject/imagedata/@width)"/>
+    <xsl:variable name="scale" select="string(imageobject/imagedata/@scale)"/>

+    

+    <xsl:variable name="width_number"

+      select="substring($width, 1, string-length($width) - 2)"/>      

+    

+    <xsl:variable name="width_unit"

+      select="substring($width, string-length($width) - 1)"/>
+    
+    <xsl:variable name="scale_factor">
+      <xsl:choose>
+        <xsl:when test="$width_unit = 'px'">1.37</xsl:when>
+        <xsl:otherwise>1.1</xsl:otherwise>
+      </xsl:choose>
+    </xsl:variable>

+          
+    <xsl:variable name="n">

+      <mediaobject>
+        <xsl:choose>
+          <xsl:when test="$width"> 

+            <imageobject role="html">
+              <imagedata width="{concat($width_number * $scale_factor, $width_unit)}"

+                format="{$id1/@format}" fileref="{$id1/@fileref}"/>

+            </imageobject>

+            <imageobject role="fo">

+              <imagedata width="{concat($width_number, $width_unit)}" format="{$id1/@format}"

+                fileref="{$id1/@fileref}"/>

+            </imageobject>
+          </xsl:when>
+          <xsl:when test="$scale">
+            <imageobject role="html">
+              <imagedata scale="{$scale}"
+                format="{$id1/@format}" fileref="{$id1/@fileref}"/>
+            </imageobject>
+            <imageobject role="fo">
+              <imagedata scale="{round(number($scale * .71))}" format="{$id1/@format}"
+                fileref="{$id1/@fileref}"/>
+            </imageobject>
+          </xsl:when>
+        </xsl:choose>
+        

+        <textobject><phrase><xsl:value-of select="textobject/phrase"/></phrase></textobject>

+      </mediaobject>

+    </xsl:variable>
+    
+    <xsl:apply-templates select="exsl:node-set($n)/*"/>

+  </xsl:template>
+  
+</xsl:stylesheet>
+
diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/styles/uima-style/common/html.xsl b/CasEditor-2.2.2-04/uima-docbook-tool/styles/uima-style/common/html.xsl
new file mode 100644
index 0000000..b336cd7
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/styles/uima-style/common/html.xsl
@@ -0,0 +1,57 @@
+<?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'>
+
+  <!-- next 3 cause the role="xxx" to be propagated as class="xxx" in the output html -->
+  <xsl:param name="para.propagates.style" select="1"/>
+  <xsl:param name="emphasis.propagates.style" select="1"/>
+  <xsl:param name="phrase.propagates.style" select="1"/>
+ 
+  <!-- turn on id attributes for major components --> 
+  <xsl:param name="generate.id.attributes" select="1"/>
+
+  <xsl:param name="chunker.output.indent" select="'yes'"/>
+  <xsl:param name="chunker.output.doctype-public" select="'-//W3C//DTD HTML 4.0 Transitional//EN'"/>
+  <xsl:param name="table.frame.border.color" select="'black'"/>
+  <xsl:param name="table.cell.border.color"  select="'black'"/>
+
+  <xsl:param name="table.borders.with.css" select="1"/>
+  <xsl:param name="html.stylesheet.type">text/css</xsl:param>           
+
+  <!--
+  <xsl:param name="use.extensions">1</xsl:param>  causes lots of failed to load image msgs !
+  <xsl:param name="graphicsize.extension">1</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:l10n>
+  </l:i18n>
+  -->    
+</xsl:stylesheet>
diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/styles/uima-style/css/stylesheet-html.css b/CasEditor-2.2.2-04/uima-docbook-tool/styles/uima-style/css/stylesheet-html.css
new file mode 100644
index 0000000..f861b56
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/styles/uima-style/css/stylesheet-html.css
@@ -0,0 +1,302 @@
+/*
+ Licensed to the Apache Software Foundation (ASF) under one
+ or more contributor license agreements.  See the NOTICE file
+ distributed with this work for additional information
+ regarding copyright ownership.  The ASF licenses this file
+ to you under the Apache License, Version 2.0 (the
+ "License"); you may not use this file except in compliance
+ with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing,
+ software distributed under the License is distributed on an
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied.  See the License for the
+ specific language governing permissions and limitations
+ under the License.
+*/
+
+html {
+    padding:        0pt;
+    margin:         0pt;
+}
+
+body {
+    margin-top:     1em;
+    margin-bottom:  1em;
+    margin-left:    16%;
+    margin-right:   8%;
+    font-size: 10.5pt;
+    line-height: 1.3;
+    font-family:     "Palatino Linotype", "Times New Roman", Times, serif;
+}
+
+div {
+    margin:         0pt;
+}
+
+p {
+    text-align:     left;
+    margin-bottom:  .6em;
+    line-height:    1.4;
+}
+
+td {   line-height:    1.2;
+       padding: .3em;
+       }
+
+hr {
+    margin-top:     .6em;
+    margin-bottom:  .6em;
+    margin-left:    0pt;
+    margin-right:   0pt;
+    border:         1px solid gray;
+    background:     gray;
+}
+
+h2,h3,h4,h5 {
+  margin: 0 0 0.5em 0;
+  page-break-after: avoid;
+  font-family: Helvetica, Arial, sans-serif;
+  font-weight: bold;
+    color:          #525D76;
+}
+
+h2 {
+  margin-left: -10%; }
+
+h2, h3, h4 { margin-top: 1em; }
+
+/* later rules of same specificity override earlier ones */
+/* cant use ">" because IE doesn't recognize */
+
+div.chapter div.titlepage h2.title {
+  margin-bottom: 1.5em;
+  font-size: 1.6em;
+  letter-spacing: -0.07ex;
+  border-top:solid black 2.25pt;
+}
+
+/* this one comes after and is therefore more specific */
+
+div.section div.titlepage h2.title {  /* h2 */
+  font-size: 1.3em;
+  border-top:solid black 1.00pt;
+}
+
+h3 {
+  margin-left: -5%;
+  font-size: 1.2em;
+  border-top:solid black .75pt;
+}
+
+div.note h3, div.tip h3 {
+    margin-left: 0;
+    font-size: 1.2em;
+    border-top: none;
+    margin-top: 0em;
+}
+
+h4 {
+  font-size: 1.1em;
+}
+
+a {
+   text-decoration: underline;
+   /*color: black;*/
+}
+
+a:hover {
+   text-decoration: underline;
+   color: black;
+}
+
+h3,h4,h5 {
+    line-height:    1.3;
+    margin-top:     1.5em;
+    font-family:    Arial, Sans-serif;
+}
+
+h1.title {
+    text-align:     left;
+
+    margin-top:     2em;
+    margin-bottom:  2em;
+    margin-left:    0pt;
+    margin-right:   0pt;
+}
+
+h2.subtitle, h3.subtitle {
+    text-align:     left;
+    margin-top:     2em;
+    margin-bottom:  2em;
+    text-transform: uppercase;
+}
+
+h3.author, p.othercredit {
+    font-size:      0.9em;
+    font-weight:    normal;
+    font-style:     oblique;
+    text-align:     left;
+    color:          #525D76;
+}
+
+td.tableSubhead {
+    font-weight:    bold;
+    background-color: silver;
+}
+
+div.titlepage {
+}
+
+div.section {
+}
+
+
+div.authorgroup
+{
+    text-align:     left;
+    margin-bottom:  3em;
+    display:        block;
+}
+
+div.toc, div.list-of-examples, div.list-of-figures {
+
+    margin-bottom:  3em;
+}
+
+
+div.itemizedlist {
+    margin-top:     0.5em;
+    margin-bottom:  0.5em;
+}
+
+ol,ul {
+}
+
+li {
+}
+
+pre {
+    margin:         .75em 0;
+    line-height:    1.25;
+    color:          black;
+}
+
+pre.programlisting {
+    font-size:      9pt;
+    padding:        5pt 2pt;
+    border:         1pt solid black;
+    background:     #eeeeee;
+}
+
+div.table {
+    margin:         1em;
+    padding:        0.5em;
+    text-align:     center;
+}
+
+div.table table {
+ /*    display:        block; */   /* in firefox, breaks centering */
+    margin-left: auto;  /* see http://theodorakis.net/tablecentertest.html */
+    margin-right: auto;
+}
+
+div.table td {
+    padding-right:  5px;
+    padding-left:   5px;
+}
+
+div.table p.title {
+    text-align:     center;
+    margin-left:    5%;
+    margin-right:   5%;
+}
+
+p.releaseinfo, .copyright {
+    font-size:      0.9em;
+    text-align:     left;
+    margin:         0px;
+    padding:        0px;
+}
+
+div.note, div.important, div.example, div.informalexample, div.tip, div.caution {
+    margin:         1em;
+    padding:        0.5em;
+    border:         1px solid gray;
+    background-color: #f8f8e0;
+}
+
+div.important th, div.note th, div.tip th {
+    text-align:     left;
+    border-bottom:  solid 1px gray;
+}
+
+div.navheader, div.navheader table {
+    font-family:    sans-serif;
+    font-size:      12px;
+}
+
+div.navfooter, div.navfooter table {
+    font-family:    sans-serif;
+    font-size:      12px;
+}
+
+div.figure, div.screenshot {
+    text-align:     center;  /* needed for ms5 */
+    margin-top:     1em;
+    margin-bottom:  1em;
+}
+
+div.figure table, div.screenshot table {    /* see http://theodorakis.net/tablecentertest.html */
+    margin-left: auto;
+    margin-right: auto;
+}
+
+div.figure p.title {
+    text-align:     center; 
+    margin-left:    15%;
+    margin-right:   15%;
+}
+
+div.example p.title {
+    margin-top:     0em;
+    margin-bottom:  0.6em;
+    text-align:     left;
+    padding-bottom: 0.4em;
+    border-bottom:  solid 1px gray;
+}
+
+div.figure img {
+    border:         1px solid gray;
+    padding:        0.5em;
+    margin:         0.5em;
+}
+
+div.revhistory {
+    font-size:      0.8em;
+    width:          90%;
+    margin-left:    5%;
+    margin-top:     3em;
+    margin-bottom:  3em;
+}
+
+div.revhistory table {
+    font-family:    sans-serif;
+    font-size:      12px;
+  border-collapse: collapse;
+}
+
+div.revhistory table tr {
+  border:         solid 1px gray;
+}
+
+div.revhistory table th {
+  border: none;
+}
+
+span.bold-italic {
+  font-weight: bold;
+  font-style: italic;
+}
diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/styles/uima-style/top/html-single.xsl b/CasEditor-2.2.2-04/uima-docbook-tool/styles/uima-style/top/html-single.xsl
new file mode 100644
index 0000000..fb08118
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/styles/uima-style/top/html-single.xsl
@@ -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>
+
diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/styles/uima-style/top/pdf.xsl b/CasEditor-2.2.2-04/uima-docbook-tool/styles/uima-style/top/pdf.xsl
new file mode 100644
index 0000000..9984f98
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/styles/uima-style/top/pdf.xsl
@@ -0,0 +1,546 @@
+<?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>
+  
+    <xsl:attribute-set name="orderedlist.properties">
+      <xsl:attribute name="margin-left">0.25in</xsl:attribute>
+    </xsl:attribute-set>
+  
+    <xsl:attribute-set name="itemizedlist.properties">
+      <xsl:attribute name="margin-left">0.25in</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:variable name="releaseInfo" select="//releaseinfo"/>
+              <xsl:choose>
+                <xsl:when test="contains($releaseInfo, '-incubating-SNAPSHOT')">
+                  <xsl:value-of select="substring-before($releaseInfo, '-incubating-SNAPSHOT')"/>
+                </xsl:when>
+                <xsl:when test="contains($releaseInfo, '-incubating')">
+                  <xsl:value-of select="substring-before($releaseInfo, '-incubating')"/>
+                </xsl:when>
+                <xsl:otherwise>
+                  <xsl:value-of select="$releaseInfo"/>
+                </xsl:otherwise>
+              </xsl:choose>
+            </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>
+  
+  
+  <xsl:attribute-set name="admonition.title.properties">
+    <xsl:attribute name="font-size">
+      <xsl:value-of select="$body.font.master * 1.05"/>
+    </xsl:attribute>
+  </xsl:attribute-set>
+  
+  <!-- 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>
+
diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/tools/common-lib/avalon-framework-api-4.3.jar b/CasEditor-2.2.2-04/uima-docbook-tool/tools/common-lib/avalon-framework-api-4.3.jar
new file mode 100644
index 0000000..c900046
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/tools/common-lib/avalon-framework-api-4.3.jar
Binary files differ
diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/tools/common-lib/avalon-framework-impl-4.3.jar b/CasEditor-2.2.2-04/uima-docbook-tool/tools/common-lib/avalon-framework-impl-4.3.jar
new file mode 100644
index 0000000..0715634
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/tools/common-lib/avalon-framework-impl-4.3.jar
Binary files differ
diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/tools/common-lib/batik-all-1.6.jar b/CasEditor-2.2.2-04/uima-docbook-tool/tools/common-lib/batik-all-1.6.jar
new file mode 100644
index 0000000..7b59021
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/tools/common-lib/batik-all-1.6.jar
Binary files differ
diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/tools/common-lib/commons-io-1.1.jar b/CasEditor-2.2.2-04/uima-docbook-tool/tools/common-lib/commons-io-1.1.jar
new file mode 100644
index 0000000..624fc1a
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/tools/common-lib/commons-io-1.1.jar
Binary files differ
diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/tools/common-lib/commons-logging-1.0.4.jar b/CasEditor-2.2.2-04/uima-docbook-tool/tools/common-lib/commons-logging-1.0.4.jar
new file mode 100644
index 0000000..b73a80f
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/tools/common-lib/commons-logging-1.0.4.jar
Binary files differ
diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/tools/common-lib/xercesImpl-2.7.1.jar b/CasEditor-2.2.2-04/uima-docbook-tool/tools/common-lib/xercesImpl-2.7.1.jar
new file mode 100644
index 0000000..eac75ae
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/tools/common-lib/xercesImpl-2.7.1.jar
Binary files differ
diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/tools/common-lib/xml-apis-1.3.02.jar b/CasEditor-2.2.2-04/uima-docbook-tool/tools/common-lib/xml-apis-1.3.02.jar
new file mode 100644
index 0000000..243eaea
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/tools/common-lib/xml-apis-1.3.02.jar
Binary files differ
diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/tools/common-lib/xml-resolver-1.1.jar b/CasEditor-2.2.2-04/uima-docbook-tool/tools/common-lib/xml-resolver-1.1.jar
new file mode 100644
index 0000000..073d789
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/tools/common-lib/xml-resolver-1.1.jar
Binary files differ
diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/README.txt b/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/README.txt
new file mode 100644
index 0000000..88993f6
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/README.txt
@@ -0,0 +1,154 @@
+
+Information on Apache FOP dependencies
+=========================================
+
+$Id$
+
+The Apache Licenses can also be found here:
+http://www.apache.org/licenses/
+
+
+Normal Dependencies
+----------------------
+
+- Apache Jakarta Commons IO
+
+    commons-io-*.jar
+    http://jakarta.apache.org/commons/io/
+    (I/O routines)
+    
+    Apache License v2.0
+    
+- Apache Jakarta Commons Logging
+
+    commons-logging-*.jar
+    http://jakarta.apache.org/commons/logging/
+    (Logging adapter for various logging backends like JDK 1.4 logging or Log4J)
+    
+    Apache License v2.0
+
+- Apache Avalon Framework
+
+    avalon-framework-*.jar
+    http://excalibur.apache.org/framework/
+    (Avalon Framework, maintained by the Apache Excalibur project)
+    
+    Apache License v2.0
+
+- Apache XML Graphics Commons
+
+    xmlgraphics-commons-*.jar
+    http://xmlgraphics.apache.org/
+    (Common Library for Apache Batik and Apache FOP)
+    
+    Apache License v2.0
+
+- Apache Batik
+
+    batik-*.jar
+    http://xmlgraphics.apache.org/batik/
+    (SVG Implementation)
+    
+    Apache License v2.0
+
+
+
+Special Dependencies
+-----------------------
+
+The special dependencies are the whole JAXP set which required for users
+on JDK 1.3.x which doesn't include JAXP. But it is also interesting for
+users on JDKs >= 1.4 if they want to replace the default JAXP 
+implementation delivered by the JDK.
+
+Replacing the default implementations involves understanding the 
+"Endorsed Standards Override Mechanism".
+More information can be found here:
+http://java.sun.com/j2se/1.4.2/docs/guide/standards/index.html
+
+- JAXP API
+
+    xml-apis.jar
+    http://xml.apache.org/commons/components/external/
+    (the JAXP API, plus SAX and various W3C DOM Java bindings,
+    maintained in XML Commons Externals)
+    
+    Apache License v2.0 (applies to the distribution)
+    SAX is in the public domain
+        http://www.saxproject.org/copying.html
+    W3C Software Notice and License (applies to the various DOM Java bindings)
+    W3C Document License (applies to the DOM documentation)
+        http://www.w3.org/Consortium/Legal/copyright-software
+        http://www.w3.org/Consortium/Legal/copyright-documents
+        http://www.w3.org/Consortium/Legal/
+
+- Apache Xerces-J
+
+    xercesImpl-*.jar
+    http://xerces.apache.org
+    (JAXP-compliant XML parser and DOM Level 3 implementation)
+    
+    Apache License v2.0
+
+- Apache Xalan-J
+
+    xalan-*.jar and serializer-*.jar
+    http://xalan.apache.org
+    (JAXP-compliant XSLT and XPath implementation)
+    
+    Apache License v2.0 (applies to Xalan-J)
+    Apache License v1.1 (applies to Apache BCEL and Apache REGEXP bundled in the JAR)
+    Historical Permission Notice and Disclaimer (applies to CUP Parser Generator)
+        http://www.opensource.org/licenses/historical.php
+        (see xalan.runtime.LICENSE.txt)
+
+
+
+Optional Dependencies
+------------------------
+
+The following libraries are not bundled with FOP and must be installed manually.
+Please make sure you've read the license of each package.
+
+- JIMI Image library
+
+    http://java.sun.com/products/jimi
+    Sun Binary Code License
+
+- JAI (Java Advanced Imaging API)
+
+    http://java.sun.com/products/java-media/jai
+    Java Research License and Java Distribution License (Check which one applies to you!)
+
+- JEuclid (MathML implementation, for the MathML extension)
+
+    http://jeuclid.sourceforge.net/
+    http://sourceforge.net/projects/jeuclid
+    Apache License v1.1
+
+
+
+Additional development-time dependencies
+-------------------------------------------
+
+- Servlet API
+
+    servlet-*.jar
+    http://jakarta.apache.org/tomcat/
+    (Servlet API, javax.servlet)
+    
+    Apache License v1.1
+
+- Apache Ant
+
+    (not bundled, requires pre-installation)
+    http://ant.apache.org
+    (XML-based build system
+    
+    Apache License V2.0
+
+- JUnit
+
+    (not bundled, provided by Apache Ant or your IDE)
+    http://www.junit.org
+    Common Public License V1.0
\ No newline at end of file
diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.20.5/fonts/palatino-bold-italic.xml b/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.20.5/fonts/palatino-bold-italic.xml
new file mode 100644
index 0000000..af8d2c1
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.20.5/fonts/palatino-bold-italic.xml
@@ -0,0 +1,21 @@
+<?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.

+	 ***************************************************************

+   -->

+<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="18" 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="556"/><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="204" 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"/><char 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="-117" 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
diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.20.5/fonts/palatino-bold.xml b/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.20.5/fonts/palatino-bold.xml
new file mode 100644
index 0000000..f23cdc8
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.20.5/fonts/palatino-bold.xml
@@ -0,0 +1,21 @@
+<?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.

+	 ***************************************************************

+   -->

+<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="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="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"/><char 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" wdt="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 idx="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
diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.20.5/fonts/palatino-italic.xml b/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.20.5/fonts/palatino-italic.xml
new file mode 100644
index 0000000..0331c1f
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.20.5/fonts/palatino-italic.xml
@@ -0,0 +1,21 @@
+<?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.

+	 ***************************************************************

+   -->

+<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" wdt="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" 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="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="119"><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="-91" 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"/><pair 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-metrics>
\ No newline at end of file
diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.20.5/fonts/palatino.xml b/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.20.5/fonts/palatino.xml
new file mode 100644
index 0000000..ee55975
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.20.5/fonts/palatino.xml
@@ -0,0 +1,21 @@
+<?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.

+	 ***************************************************************

+   -->

+<font-metrics type="TRUETYPE"><font-name>PalatinoLinotype</font-name><embed/><cap-height>689</cap-height><x-height>467</x-height><ascender>731</ascender><descender>-284</descender><bbox><left>-169</left><bottom>-291</bottom><right>1419</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="535"/><char idx="1" wdt="535"/><char idx="2" wdt="535"/><char idx="3" wdt="535"/><char idx="4" wdt="535"/><char idx="5" wdt="535"/><char idx="6" wdt="535"/><char idx="7" wdt="535"/><char idx="8" wdt="535"/><char idx="9" wdt="535"/><char idx="10" wdt="535"/><char idx="11" wdt="535"/><char idx="12" wdt="535"/><char idx="13" wdt="535"/><char idx="14" wdt="535"/><char idx="15" wdt="535"/><char idx="16" wdt="535"/><char idx="17" wdt="535"/><char idx="18" wdt="535"/><char idx="19" wdt="535"/><char idx="20" wdt="535"/><char idx="21" wdt="535"/><char idx="22" wdt="535"/><char idx="23" wdt="535"/><char idx="24" wdt="535"/><char idx="25" wdt="535"/><char idx="26" wdt="535"/><char idx="27" wdt="535"/><char idx="28" wdt="535"/><char idx="29" wdt="535"/><char idx="30" wdt="535"/><char idx="31" wdt="535"/><char idx="32" wdt="250"/><char idx="33" wdt="277"/><char idx="34" wdt="371"/><char idx="35" wdt="479"/><char idx="36" wdt="500"/><char idx="37" wdt="839"/><char idx="38" wdt="777"/><char idx="39" wdt="208"/><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="320"/><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="683"/><char idx="65" wdt="777"/><char idx="66" wdt="610"/><char idx="67" wdt="708"/><char idx="68" wdt="773"/><char idx="69" wdt="610"/><char idx="70" wdt="556"/><char idx="71" wdt="763"/><char idx="72" wdt="832"/><char idx="73" wdt="336"/><char idx="74" wdt="333"/><char idx="75" wdt="726"/><char idx="76" wdt="610"/><char idx="77" wdt="945"/><char idx="78" wdt="831"/><char idx="79" wdt="786"/><char idx="80" wdt="604"/><char idx="81" wdt="786"/><char idx="82" wdt="667"/><char idx="83" wdt="524"/><char idx="84" wdt="612"/><char idx="85" wdt="777"/><char idx="86" wdt="722"/><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="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="500"/><char idx="98" wdt="553"/><char idx="99" wdt="443"/><char idx="100" wdt="610"/><char idx="101" wdt="479"/><char idx="102" wdt="333"/><char idx="103" wdt="556"/><char idx="104" wdt="582"/><char idx="105" wdt="291"/><char idx="106" wdt="233"/><char idx="107" wdt="556"/><char idx="108" wdt="291"/><char idx="109" wdt="882"/><char idx="110" wdt="582"/><char idx="111" wdt="545"/><char idx="112" wdt="601"/><char idx="113" wdt="560"/><char idx="114" wdt="395"/><char idx="115" wdt="423"/><char idx="116" wdt="326"/><char idx="117" wdt="603"/><char idx="118" wdt="564"/><char idx="119" wdt="833"/><char idx="120" wdt="516"/><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="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="1144"/><char idx="138" wdt="524"/><char idx="139" wdt="331"/><char idx="140" wdt="998"/><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="979"/><char idx="154" wdt="423"/><char idx="155" wdt="331"/><char idx="156" wdt="827"/><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"/><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="646"/><char idx="182" wdt="627"/><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="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="943"/><char idx="199" wdt="708"/><char idx="200" wdt="610"/><char idx="201" wdt="610"/><char idx="202" wdt="610"/><char idx="203" wdt="610"/><char idx="204" wdt="336"/><char idx="205" wdt="336"/><char idx="206" wdt="336"/><char idx="207" wdt="336"/><char idx="208" wdt="773"/><char idx="209" wdt="831"/><char idx="210" wdt="786"/><char idx="211" wdt="786"/><char idx="212" wdt="786"/><char idx="213" wdt="786"/><char idx="214" wdt="786"/><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="604"/><char idx="223" wdt="556"/><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="757"/><char idx="231" wdt="443"/><char idx="232" wdt="479"/><char idx="233" wdt="479"/><char idx="234" wdt="479"/><char idx="235" wdt="479"/><char idx="236" wdt="291"/><char idx="237" wdt="291"/><char idx="238" wdt="291"/><char idx="239" wdt="291"/><char idx="240" wdt="545"/><char idx="241" wdt="582"/><char idx="242" wdt="545"/><char idx="243" wdt="545"/><char idx="244" wdt="545"/><char idx="245" wdt="545"/><char idx="246" wdt="545"/><char idx="247" wdt="500"/><char idx="248" wdt="545"/><char idx="249" wdt="603"/><char idx="250" wdt="603"/><char idx="251" wdt="603"/><char idx="252" wdt="603"/><char idx="253" wdt="556"/><char idx="254" wdt="601"/><char idx="255" wdt="556"/></widths></singlebyte-extras><kerning kpx1="91"><pair kern="51" kpx2="74"/></kerning><kerning kpx1="121"><pair kern="-17" kpx2="111"/><pair kern="-109" kpx2="46"/><pair kern="-109" kpx2="44"/><pair kern="-17" kpx2="101"/><pair kern="-26" kpx2="97"/></kerning><kerning kpx1="89"><pair kern="-48" kpx2="59"/><pair kern="-48" kpx2="58"/><pair kern="-83" kpx2="118"/><pair kern="-83" kpx2="117"/><pair kern="-80" kpx2="115"/><pair kern="-85" kpx2="114"/><pair kern="-82" kpx2="113"/><pair kern="-85" kpx2="112"/><pair kern="-82" kpx2="111"/><pair kern="-95" kpx2="46"/><pair kern="-90" kpx2="173"/><pair kern="-90" kpx2="45"/><pair kern="-85" kpx2="44"/><pair kern="-31" kpx2="105"/><pair kern="-82" kpx2="101"/><pair kern="-90" kpx2="100"/><pair kern="-90" kpx2="65"/><pair kern="-90" kpx2="97"/><pair kern="-18" kpx2="32"/><pair kern="-18" kpx2="160"/></kerning><kerning kpx1="119"><pair kern="-17" kpx2="111"/><pair kern="-90" kpx2="46"/><pair kern="-90" kpx2="44"/><pair kern="-17" kpx2="101"/><pair kern="-26" kpx2="97"/></kerning><kerning kpx1="87"><pair kern="-18" kpx2="59"/><pair kern="-18" kpx2="58"/><pair kern="-48" kpx2="121"/><pair kern="-48" kpx2="117"/><pair kern="-73" kpx2="114"/><pair kern="-65" kpx2="111"/><pair kern="-90" kpx2="46"/><pair kern="-55" kpx2="45"/><pair kern="-55" kpx2="173"/><pair kern="-90" kpx2="44"/><pair kern="-24" kpx2="105"/><pair kern="-65" kpx2="101"/><pair kern="-65" kpx2="100"/><pair kern="-100" kpx2="65"/><pair kern="-70" kpx2="97"/></kerning><kerning kpx1="118"><pair kern="-17" kpx2="111"/><pair kern="-109" kpx2="46"/><pair kern="-109" kpx2="44"/><pair kern="-17" kpx2="101"/><pair kern="-26" kpx2="97"/></kerning><kerning kpx1="86"><pair kern="-55" kpx2="59"/><pair kern="-55" kpx2="58"/><pair kern="-65" kpx2="121"/><pair kern="-65" kpx2="117"/><pair kern="-72" kpx2="114"/><pair kern="-70" kpx2="111"/><pair kern="-127" kpx2="46"/><pair kern="-74" kpx2="45"/><pair kern="-74" kpx2="173"/><pair kern="-127" kpx2="44"/><pair kern="-24" kpx2="105"/><pair kern="-70" kpx2="101"/><pair kern="-80" kpx2="97"/><pair kern="-95" kpx2="65"/></kerning><kerning kpx1="84"><pair kern="-36" kpx2="59"/><pair kern="-64" kpx2="122"/><pair kern="-36" kpx2="58"/><pair kern="-64" kpx2="121"/><pair kern="-64" kpx2="119"/><pair kern="-64" kpx2="118"/><pair kern="-70" kpx2="117"/><pair kern="-70" kpx2="115"/><pair kern="-70" kpx2="114"/><pair kern="-70" kpx2="111"/><pair kern="-74" kpx2="46"/><pair kern="-56" kpx2="173"/><pair kern="-31" kpx2="109"/><pair kern="-56" kpx2="45"/><pair kern="-74" kpx2="44"/><pair kern="-70" kpx2="101"/><pair kern="-70" kpx2="100"/><pair kern="-70" kpx2="99"/><pair kern="-63" kpx2="65"/><pair kern="-80" kpx2="97"/></kerning><kerning kpx1="147"><pair kern="-166" kpx2="191"/><pair kern="-146" kpx2="65"/></kerning><kerning kpx1="146"><pair kern="-80" kpx2="244"/><pair kern="-68" kpx2="116"/><pair kern="-107" kpx2="115"/><pair kern="-58" kpx2="114"/><pair kern="-80" kpx2="111"/><pair kern="-58" kpx2="109"/><pair kern="-80" kpx2="234"/><pair kern="-80" kpx2="233"/><pair kern="-80" kpx2="232"/><pair kern="-80" kpx2="101"/><pair kern="-107" kpx2="100"/><pair kern="-61" kpx2="226"/><pair kern="-90" kpx2="97"/><pair kern="-68" kpx2="32"/><pair kern="-68" kpx2="160"/></kerning><kerning kpx1="114"><pair kern="-58" kpx2="46"/><pair kern="-18" kpx2="173"/><pair kern="-18" kpx2="45"/><pair kern="-39" kpx2="44"/><pair kern="63" kpx2="148"/><pair kern="63" kpx2="146"/></kerning><kerning kpx1="82"><pair kern="-17" kpx2="121"/><pair kern="-19" kpx2="89"/><pair kern="-19" kpx2="87"/><pair kern="-39" kpx2="86"/><pair kern="-21" kpx2="160"/><pair kern="-21" kpx2="32"/></kerning><kerning kpx1="145"><pair kern="-166" kpx2="191"/><pair kern="-146" kpx2="65"/></kerning><kerning kpx1="80"><pair kern="-31" kpx2="111"/><pair kern="-126" kpx2="46"/><pair kern="-126" kpx2="44"/><pair kern="-31" kpx2="101"/><pair kern="-66" kpx2="65"/><pair kern="-31" kpx2="97"/><pair kern="-21" kpx2="160"/><pair kern="-21" kpx2="32"/></kerning><kerning kpx1="76"><pair kern="-36" kpx2="121"/><pair kern="-90" kpx2="89"/><pair kern="-74" kpx2="87"/><pair kern="-90" kpx2="86"/><pair kern="-48" kpx2="84"/><pair kern="-73" kpx2="146"/><pair kern="-37" kpx2="160"/><pair kern="-37" kpx2="32"/></kerning><kerning kpx1="40"><pair kern="51" kpx2="74"/></kerning><kerning kpx1="70"><pair kern="-70" kpx2="46"/><pair kern="-70" kpx2="44"/><pair kern="-61" kpx2="65"/></kerning><kerning kpx1="102"><pair kern="34" kpx2="63"/><pair kern="51" kpx2="93"/><pair kern="51" kpx2="41"/><pair kern="59" kpx2="148"/><pair kern="59" kpx2="146"/><pair kern="34" kpx2="33"/></kerning><kerning kpx1="132"><pair kern="-78" kpx2="87"/><pair kern="-151" kpx2="86"/><pair kern="-117" kpx2="84"/></kerning><kerning kpx1="130"><pair kern="-78" kpx2="87"/><pair kern="-151" kpx2="86"/><pair kern="-117" kpx2="84"/></kerning><kerning kpx1="65"><pair kern="-63" kpx2="121"/><pair kern="-109" kpx2="89"/><pair kern="-70" kpx2="119"/><pair kern="-74" kpx2="87"/><pair kern="-95" kpx2="86"/><pair kern="-70" kpx2="118"/><pair kern="-74" kpx2="84"/><pair kern="-70" kpx2="146"/><pair kern="-56" kpx2="160"/><pair kern="-56" kpx2="32"/></kerning><kerning kpx1="96"><pair kern="-166" kpx2="191"/><pair kern="-146" kpx2="65"/></kerning><kerning kpx1="32"><pair kern="-36" kpx2="65"/></kerning><kerning kpx1="160"><pair kern="-36" kpx2="65"/></kerning></font-metrics>
\ No newline at end of file
diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.20.5/fop-config.xml b/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.20.5/fop-config.xml
new file mode 100644
index 0000000..47f8df6
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.20.5/fop-config.xml
@@ -0,0 +1,46 @@
+<!--

+   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.

+-->

+<configuration>

+  <entry>

+    <key>fontBaseDir</key>

+    <value>../../../uima-docbook-tool/tools/fop-versions/fop-0.20.5/fonts</value>

+  </entry>

+  <fonts>

+    <font metrics-file="palatino.xml" 

+      kerning="yes"

+      embed-file="file:///c:/WINDOWS/Fonts/pala.TTF">

+      <font-triplet name="Palatino" style="normal" weight="normal"/>

+    </font>

+    <font metrics-file="palatino-bold.xml" 

+      kerning="yes"

+      embed-file="file:///c:/WINDOWS/Fonts/palab.TTF">

+      <font-triplet name="Palatino" style="normal" weight="bold"/>

+    </font>

+    <font metrics-file="palatino-italic.xml" 

+      kerning="yes"

+      embed-file="file:///c:/WINDOWS/Fonts/palai.TTF">

+      <font-triplet name="Palatino" style="italic" weight="normal"/>

+    </font>

+    <font metrics-file="palatino-bold-italic.xml" 

+      kerning="yes"

+      embed-file="file:///c:/WINDOWS/Fonts/palabi.TTF">

+      <font-triplet name="Palatino" style="italic" weight="bold"/>

+    </font>

+  </fonts>

+</configuration>
\ No newline at end of file
diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.20.5/fop.jar b/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.20.5/fop.jar
new file mode 100644
index 0000000..f7a3a2c
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.20.5/fop.jar
Binary files differ
diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.93/fonts/FOP_TT_font_metric_generation.xml b/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.93/fonts/FOP_TT_font_metric_generation.xml
new file mode 100644
index 0000000..4ca573d
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.93/fonts/FOP_TT_font_metric_generation.xml
@@ -0,0 +1,89 @@
+<?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.    

+-->

+

+<project name="FOP Font Metric Generation" default="gen" basedir="../">

+

+  <!-- ======================================================================== -->

+  <!-- ==                                                                    == -->

+  <!-- == Generate the Font Metrics - Windows                                == -->

+  <!-- ==                                                                    == -->

+  <!-- ======================================================================== -->

+  <path id="fop.classpath">

+		<fileset dir="${basedir}/fop-0.93/lib">

+      <include name="fop.jar"/>

+      <include name="avalon-framework.jar"/>

+      <include name="commons-logging.jar"/>

+      <include name="commons-io.jar"/>

+    </fileset>

+	</path>

+

+  <target name="gen" >

+    <antcall target="gen1">

+      <param name="fontName" value="pala"/>

+      <param name="longFontName" value="palatino"/>

+    </antcall>

+        <antcall target="gen1">

+      <param name="fontName" value="palai"/>

+      <param name="longFontName" value="palatino-italic"/>

+    </antcall>

+    <antcall target="gen1">

+      <param name="fontName" value="palab"/>

+      <param name="longFontName" value="palatino-bold"/>

+    </antcall>

+    <antcall target="gen1">

+      <param name="fontName" value="palabi"/>

+      <param name="longFontName" value="palatino-bold-italic"/>

+    </antcall>

+

+  </target> 

+

+ <!--   <target name="gen" >

+    <antcall target="gen1">

+      <param name="fontName" value="ARIAL"/>

+      <param name="longFontName" value="palatino"/>

+    </antcall>

+        <antcall target="gen1">

+      <param name="fontName" value="ARIALI"/>

+      <param name="longFontName" value="palatino-italic"/>

+    </antcall>

+    <antcall target="gen1">

+      <param name="fontName" value="ARIALBD"/>

+      <param name="longFontName" value="palatino-bold"/>

+    </antcall>

+    <antcall target="gen1">

+      <param name="fontName" value="ARIALBI"/>

+      <param name="longFontName" value="palatino-bold-italic"/>

+    </antcall>

+

+  </target> -->

+  

+  <target name="gen1" description="--> generate one font metric">

+

+    <java classpathref="fop.classpath"  classname="org.apache.fop.fonts.apps.TTFReader"

+      fork="true" maxmemory="256m" dir="${basedir}">

+      <arg value="-enc"/>  

+      <arg value="ansi"/> 

+			<arg value="c:\Windows\fonts\${fontName}.ttf"/>

+      <arg value="${basedir}/fop-0.93/lib/${longFontName}.xml"/>      

+    </java>

+  </target>

+

+</project>

diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.93/fonts/FOP_Type1_font_metric_generation.xml b/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.93/fonts/FOP_Type1_font_metric_generation.xml
new file mode 100644
index 0000000..ca50baa
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.93/fonts/FOP_Type1_font_metric_generation.xml
@@ -0,0 +1,59 @@
+<?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.    

+-->

+

+<project name="FOP Font Metric Generation" default="gen" basedir="../">

+

+  <!-- ======================================================================== -->

+  <!-- ==                                                                    == -->

+  <!-- == Generate the Font Metrics - Windows                                == -->

+  <!-- ==                                                                    == -->

+  <!-- ======================================================================== -->

+  <path id="fop.classpath">

+		<pathelement location="${basedir}/fop-0.93/build/fop.jar"/>

+		<fileset dir="${basedir}/fop-0.93/lib">

+      <include name="avalon-framework.jar"/>

+      <include name="commons-logging.jar"/>

+      <include name="commons-io.jar"/>

+    </fileset>

+	</path>

+

+  <target name="gen" description="--> generate the font metrics">

+

+    <java classpathref="fop.classpath"  classname="apache.fop.fonts.apps.PFMReader"

+      fork="true" maxmemory="256m" dir="${basedir}">

+      <arg value="-c"/>

+			<arg value="${docbook.fontconfig}"/>

+			<arg value="${target.dir}/${chapter_name}/${docbook.outname}.xml"/>

+			<arg value="${target.dir}/${chapter_name}/${docbook.outname}.pdf"/>

+      

+    </java>

+  </target>

+

+  <!-- ======================================================================== -->

+  <!-- ==                                                                    == -->

+  <!-- == Clean up the target directory                                      == -->

+  <!-- ==                                                                    == -->

+  <!-- ======================================================================== -->

+  <target name="clean"

+          description="--> Delete temporary and distribution directories for docs">

+    <ant antfile="build-docbook.xml" target="clean"/>

+  </target>

+</project>

diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.93/fonts/palatino-bold-italic.xml b/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.93/fonts/palatino-bold-italic.xml
new file mode 100644
index 0000000..d7510c1
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.93/fonts/palatino-bold-italic.xml
@@ -0,0 +1,21 @@
+<?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.

+	 ***************************************************************

+   -->

+<font-metrics metrics-version="2" type="TRUETYPE"><font-name>PalatinoLinotype,BoldItalic</font-name><embed/><cap-height>686</cap-height><x-height>476</x-height><ascender>729</ascender><descender>-278</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="18" 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="556"/><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="204" 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"/><char 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="-117" 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="97"/><pair kern="-68" kpx2="65"/></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
diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.93/fonts/palatino-bold.xml b/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.93/fonts/palatino-bold.xml
new file mode 100644
index 0000000..bb08436
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.93/fonts/palatino-bold.xml
@@ -0,0 +1,21 @@
+<?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.

+	 ***************************************************************

+   -->

+<font-metrics metrics-version="2" type="TRUETYPE"><font-name>PalatinoLinotype,Bold</font-name><embed/><cap-height>686</cap-height><x-height>459</x-height><ascender>727</ascender><descender>-265</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="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="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"/><char 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" wdt="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 idx="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="-74" kpx2="97"/><pair kern="-55" kpx2="65"/></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="119"><pair kern="-91" kpx2="46"/><pair kern="-91" 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="118"><pair kern="-110" kpx2="46"/><pair kern="-110" kpx2="44"/></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="97"/><pair kern="-91" kpx2="65"/></kerning><kerning kpx1="147"><pair kern="-91" kpx2="65"/></kerning><kerning kpx1="146"><pair kern="-55" kpx2="115"/></kerning><kerning kpx1="82"><pair kern="-55" kpx2="89"/><pair kern="-37" kpx2="121"/><pair kern="-37" kpx2="87"/><pair kern="-74" kpx2="86"/><pair kern="-55" kpx2="84"/></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="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="173"><pair kern="-74" kpx2="89"/><pair kern="-37" kpx2="87"/><pair kern="-91" kpx2="86"/><pair kern="-74" kpx2="84"/></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="76"><pair kern="-91" kpx2="89"/><pair kern="-74" kpx2="121"/><pair kern="-91" kpx2="87"/><pair kern="-91" kpx2="86"/><pair kern="-74" kpx2="84"/><pair kern="-74" kpx2="148"/><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="-110" kpx2="89"/><pair kern="-69" kpx2="121"/><pair kern="-91" kpx2="87"/><pair kern="-69" kpx2="119"/><pair kern="-128" kpx2="86"/><pair kern="-69" kpx2="118"/><pair kern="-91" kpx2="84"/><pair kern="-91" kpx2="148"/><pair kern="-91" kpx2="146"/></kerning><kerning kpx1="96"><pair kern="-91" kpx2="65"/></kerning></font-metrics>
\ No newline at end of file
diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.93/fonts/palatino-italic.xml b/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.93/fonts/palatino-italic.xml
new file mode 100644
index 0000000..e04833b
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.93/fonts/palatino-italic.xml
@@ -0,0 +1,21 @@
+<?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.

+	 ***************************************************************

+   -->

+<font-metrics metrics-version="2" type="TRUETYPE"><font-name>PalatinoLinotype,Italic</font-name><embed/><cap-height>689</cap-height><x-height>472</x-height><ascender>718</ascender><descender>-277</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" wdt="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" 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="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="97"/><pair kern="-91" kpx2="65"/></kerning><kerning kpx1="119"><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="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="-58" kpx2="79"/><pair kern="-97" kpx2="111"/><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="-91" kpx2="101"/><pair kern="-48" kpx2="69"/><pair kern="-97" kpx2="97"/><pair kern="-185" kpx2="65"/></kerning><kerning kpx1="118"><pair kern="-55" kpx2="46"/><pair kern="-55" kpx2="44"/></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="-18" kpx2="79"/><pair kern="-97" kpx2="111"/><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="-97" kpx2="97"/><pair kern="-91" kpx2="65"/></kerning><kerning kpx1="82"><pair kern="-55" kpx2="89"/><pair kern="-37" kpx2="121"/><pair kern="-55" kpx2="87"/><pair kern="-74" kpx2="86"/><pair kern="-55" kpx2="84"/></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="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="-74" kpx2="89"/><pair kern="-37" kpx2="121"/><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="89"/><pair kern="-55" kpx2="121"/><pair kern="-55" kpx2="87"/><pair kern="-37" kpx2="119"/><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-metrics>
\ No newline at end of file
diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.93/fonts/palatino.xml b/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.93/fonts/palatino.xml
new file mode 100644
index 0000000..d5e7c8c
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.93/fonts/palatino.xml
@@ -0,0 +1,21 @@
+<?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.

+	 ***************************************************************

+   -->

+<font-metrics metrics-version="2" type="TRUETYPE"><font-name>PalatinoLinotype</font-name><embed/><cap-height>689</cap-height><x-height>467</x-height><ascender>723</ascender><descender>-281</descender><bbox><left>-169</left><bottom>-291</bottom><right>1419</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="535"/><char idx="1" wdt="535"/><char idx="2" wdt="535"/><char idx="3" wdt="535"/><char idx="4" wdt="535"/><char idx="5" wdt="535"/><char idx="6" wdt="535"/><char idx="7" wdt="535"/><char idx="8" wdt="535"/><char idx="9" wdt="535"/><char idx="10" wdt="535"/><char idx="11" wdt="535"/><char idx="12" wdt="535"/><char idx="13" wdt="535"/><char idx="14" wdt="535"/><char idx="15" wdt="535"/><char idx="16" wdt="535"/><char idx="17" wdt="535"/><char idx="18" wdt="535"/><char idx="19" wdt="535"/><char idx="20" wdt="535"/><char idx="21" wdt="535"/><char idx="22" wdt="535"/><char idx="23" wdt="535"/><char idx="24" wdt="535"/><char idx="25" wdt="535"/><char idx="26" wdt="535"/><char idx="27" wdt="535"/><char idx="28" wdt="535"/><char idx="29" wdt="535"/><char idx="30" wdt="535"/><char idx="31" wdt="535"/><char idx="32" wdt="250"/><char idx="33" wdt="277"/><char idx="34" wdt="371"/><char idx="35" wdt="479"/><char idx="36" wdt="500"/><char idx="37" wdt="839"/><char idx="38" wdt="777"/><char idx="39" wdt="208"/><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="320"/><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="683"/><char idx="65" wdt="777"/><char idx="66" wdt="610"/><char idx="67" wdt="708"/><char idx="68" wdt="773"/><char idx="69" wdt="610"/><char idx="70" wdt="556"/><char idx="71" wdt="763"/><char idx="72" wdt="832"/><char idx="73" wdt="336"/><char idx="74" wdt="333"/><char idx="75" wdt="726"/><char idx="76" wdt="610"/><char idx="77" wdt="945"/><char idx="78" wdt="831"/><char idx="79" wdt="786"/><char idx="80" wdt="604"/><char idx="81" wdt="786"/><char idx="82" wdt="667"/><char idx="83" wdt="524"/><char idx="84" wdt="612"/><char idx="85" wdt="777"/><char idx="86" wdt="722"/><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="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="500"/><char idx="98" wdt="553"/><char idx="99" wdt="443"/><char idx="100" wdt="610"/><char idx="101" wdt="479"/><char idx="102" wdt="333"/><char idx="103" wdt="556"/><char idx="104" wdt="582"/><char idx="105" wdt="291"/><char idx="106" wdt="233"/><char idx="107" wdt="556"/><char idx="108" wdt="291"/><char idx="109" wdt="882"/><char idx="110" wdt="582"/><char idx="111" wdt="545"/><char idx="112" wdt="601"/><char idx="113" wdt="560"/><char idx="114" wdt="395"/><char idx="115" wdt="423"/><char idx="116" wdt="326"/><char idx="117" wdt="603"/><char idx="118" wdt="564"/><char idx="119" wdt="833"/><char idx="120" wdt="516"/><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="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="1144"/><char idx="138" wdt="524"/><char idx="139" wdt="331"/><char idx="140" wdt="998"/><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="979"/><char idx="154" wdt="423"/><char idx="155" wdt="331"/><char idx="156" wdt="827"/><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"/><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="646"/><char idx="182" wdt="627"/><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="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="943"/><char idx="199" wdt="708"/><char idx="200" wdt="610"/><char idx="201" wdt="610"/><char idx="202" wdt="610"/><char idx="203" wdt="610"/><char idx="204" wdt="336"/><char idx="205" wdt="336"/><char idx="206" wdt="336"/><char idx="207" wdt="336"/><char idx="208" wdt="773"/><char idx="209" wdt="831"/><char idx="210" wdt="786"/><char idx="211" wdt="786"/><char idx="212" wdt="786"/><char idx="213" wdt="786"/><char idx="214" wdt="786"/><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="604"/><char idx="223" wdt="556"/><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="757"/><char idx="231" wdt="443"/><char idx="232" wdt="479"/><char idx="233" wdt="479"/><char idx="234" wdt="479"/><char idx="235" wdt="479"/><char idx="236" wdt="291"/><char idx="237" wdt="291"/><char idx="238" wdt="291"/><char idx="239" wdt="291"/><char idx="240" wdt="545"/><char idx="241" wdt="582"/><char idx="242" wdt="545"/><char idx="243" wdt="545"/><char idx="244" wdt="545"/><char idx="245" wdt="545"/><char idx="246" wdt="545"/><char idx="247" wdt="500"/><char idx="248" wdt="545"/><char idx="249" wdt="603"/><char idx="250" wdt="603"/><char idx="251" wdt="603"/><char idx="252" wdt="603"/><char idx="253" wdt="556"/><char idx="254" wdt="601"/><char idx="255" wdt="556"/></widths></singlebyte-extras><kerning kpx1="91"><pair kern="51" kpx2="74"/></kerning><kerning kpx1="121"><pair kern="-17" kpx2="111"/><pair kern="-109" kpx2="46"/><pair kern="-109" kpx2="44"/><pair kern="-17" kpx2="101"/><pair kern="-26" kpx2="97"/></kerning><kerning kpx1="89"><pair kern="-48" kpx2="59"/><pair kern="-48" kpx2="58"/><pair kern="-83" kpx2="118"/><pair kern="-83" kpx2="117"/><pair kern="-80" kpx2="115"/><pair kern="-85" kpx2="114"/><pair kern="-82" kpx2="113"/><pair kern="-85" kpx2="112"/><pair kern="-82" kpx2="111"/><pair kern="-95" kpx2="46"/><pair kern="-90" kpx2="45"/><pair kern="-90" kpx2="173"/><pair kern="-85" kpx2="44"/><pair kern="-31" kpx2="105"/><pair kern="-82" kpx2="101"/><pair kern="-90" kpx2="100"/><pair kern="-90" kpx2="97"/><pair kern="-90" kpx2="65"/><pair kern="-18" kpx2="160"/><pair kern="-18" kpx2="32"/></kerning><kerning kpx1="87"><pair kern="-18" kpx2="59"/><pair kern="-18" kpx2="58"/><pair kern="-48" kpx2="121"/><pair kern="-48" kpx2="117"/><pair kern="-73" kpx2="114"/><pair kern="-65" kpx2="111"/><pair kern="-90" kpx2="46"/><pair kern="-55" kpx2="45"/><pair kern="-55" kpx2="173"/><pair kern="-90" kpx2="44"/><pair kern="-24" kpx2="105"/><pair kern="-65" kpx2="101"/><pair kern="-65" kpx2="100"/><pair kern="-70" kpx2="97"/><pair kern="-100" kpx2="65"/></kerning><kerning kpx1="119"><pair kern="-17" kpx2="111"/><pair kern="-90" kpx2="46"/><pair kern="-90" kpx2="44"/><pair kern="-17" kpx2="101"/><pair kern="-26" kpx2="97"/></kerning><kerning kpx1="86"><pair kern="-55" kpx2="59"/><pair kern="-55" kpx2="58"/><pair kern="-65" kpx2="121"/><pair kern="-65" kpx2="117"/><pair kern="-72" kpx2="114"/><pair kern="-70" kpx2="111"/><pair kern="-127" kpx2="46"/><pair kern="-74" kpx2="45"/><pair kern="-74" kpx2="173"/><pair kern="-127" kpx2="44"/><pair kern="-24" kpx2="105"/><pair kern="-70" kpx2="101"/><pair kern="-80" kpx2="97"/><pair kern="-95" kpx2="65"/></kerning><kerning kpx1="118"><pair kern="-17" kpx2="111"/><pair kern="-109" kpx2="46"/><pair kern="-109" kpx2="44"/><pair kern="-17" kpx2="101"/><pair kern="-26" kpx2="97"/></kerning><kerning kpx1="84"><pair kern="-36" kpx2="59"/><pair kern="-36" kpx2="58"/><pair kern="-64" kpx2="122"/><pair kern="-64" kpx2="121"/><pair kern="-64" kpx2="119"/><pair kern="-64" kpx2="118"/><pair kern="-70" kpx2="117"/><pair kern="-70" kpx2="115"/><pair kern="-70" kpx2="114"/><pair kern="-70" kpx2="111"/><pair kern="-74" kpx2="46"/><pair kern="-31" kpx2="109"/><pair kern="-56" kpx2="45"/><pair kern="-56" kpx2="173"/><pair kern="-74" kpx2="44"/><pair kern="-70" kpx2="101"/><pair kern="-70" kpx2="100"/><pair kern="-70" kpx2="99"/><pair kern="-80" kpx2="97"/><pair kern="-63" kpx2="65"/></kerning><kerning kpx1="147"><pair kern="-166" kpx2="191"/><pair kern="-146" kpx2="65"/></kerning><kerning kpx1="114"><pair kern="-58" kpx2="46"/><pair kern="-18" kpx2="173"/><pair kern="-18" kpx2="45"/><pair kern="-39" kpx2="44"/><pair kern="63" kpx2="148"/><pair kern="63" kpx2="146"/></kerning><kerning kpx1="82"><pair kern="-19" kpx2="89"/><pair kern="-17" kpx2="121"/><pair kern="-19" kpx2="87"/><pair kern="-39" kpx2="86"/><pair kern="-21" kpx2="160"/><pair kern="-21" kpx2="32"/></kerning><kerning kpx1="146"><pair kern="-68" kpx2="116"/><pair kern="-80" kpx2="244"/><pair kern="-107" kpx2="115"/><pair kern="-58" kpx2="114"/><pair kern="-80" kpx2="111"/><pair kern="-58" kpx2="109"/><pair kern="-80" kpx2="234"/><pair kern="-80" kpx2="233"/><pair kern="-80" kpx2="232"/><pair kern="-80" kpx2="101"/><pair kern="-107" kpx2="100"/><pair kern="-61" kpx2="226"/><pair kern="-90" kpx2="97"/><pair kern="-68" kpx2="160"/><pair kern="-68" kpx2="32"/></kerning><kerning kpx1="145"><pair kern="-166" kpx2="191"/><pair kern="-146" kpx2="65"/></kerning><kerning kpx1="80"><pair kern="-31" kpx2="111"/><pair kern="-126" kpx2="46"/><pair kern="-126" kpx2="44"/><pair kern="-31" kpx2="101"/><pair kern="-66" kpx2="65"/><pair kern="-31" kpx2="97"/><pair kern="-21" kpx2="160"/><pair kern="-21" kpx2="32"/></kerning><kerning kpx1="76"><pair kern="-90" kpx2="89"/><pair kern="-36" kpx2="121"/><pair kern="-74" kpx2="87"/><pair kern="-90" kpx2="86"/><pair kern="-48" kpx2="84"/><pair kern="-73" kpx2="146"/><pair kern="-37" kpx2="160"/><pair kern="-37" kpx2="32"/></kerning><kerning kpx1="40"><pair kern="51" kpx2="74"/></kerning><kerning kpx1="102"><pair kern="34" kpx2="63"/><pair kern="51" kpx2="93"/><pair kern="51" kpx2="41"/><pair kern="59" kpx2="148"/><pair kern="59" kpx2="146"/><pair kern="34" kpx2="33"/></kerning><kerning kpx1="70"><pair kern="-70" kpx2="46"/><pair kern="-70" kpx2="44"/><pair kern="-61" kpx2="65"/></kerning><kerning kpx1="132"><pair kern="-78" kpx2="87"/><pair kern="-151" kpx2="86"/><pair kern="-117" kpx2="84"/></kerning><kerning kpx1="130"><pair kern="-78" kpx2="87"/><pair kern="-151" kpx2="86"/><pair kern="-117" kpx2="84"/></kerning><kerning kpx1="65"><pair kern="-109" kpx2="89"/><pair kern="-63" kpx2="121"/><pair kern="-74" kpx2="87"/><pair kern="-70" kpx2="119"/><pair kern="-95" kpx2="86"/><pair kern="-70" kpx2="118"/><pair kern="-74" kpx2="84"/><pair kern="-70" kpx2="146"/><pair kern="-56" kpx2="160"/><pair kern="-56" kpx2="32"/></kerning><kerning kpx1="160"><pair kern="-36" kpx2="65"/></kerning><kerning kpx1="32"><pair kern="-36" kpx2="65"/></kerning><kerning kpx1="96"><pair kern="-166" kpx2="191"/><pair kern="-146" kpx2="65"/></kerning></font-metrics>
\ No newline at end of file
diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.93/fop-config.xml b/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.93/fop-config.xml
new file mode 100644
index 0000000..aea264f
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.93/fop-config.xml
@@ -0,0 +1,60 @@
+<!--

+   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.

+-->

+<fop version="1.0">

+  <!-- relative base used for URL resolution -->

+  <!-- set to ${target.dir}/${chapter_name} -->

+  <!-- the base value is used for resolving relative urls in the input text

+       including src="xyz.png" images

+       Therefore, must be set to the target dir where the output is going -->

+  

+  <base>.</base>

+  <!-- relative base used for font URL resolution

+       expressed relative to the FOP base dir -->

+  <font-base>../../../uima-docbook-tool/tools/fop-versions/fop-0.93/fonts</font-base>

+  <!-- Source resolution in dpi (dots/pixels per inch) for determining the size of pixels in SVG and bitmap images, default: 72dpi -->

+  <source-resolution>96</source-resolution>

+  <!-- Target resolution in dpi (dots/pixels per inch) for specifying the target resolution for generated bitmaps, default: 72dpi -->

+  <target-resolution>96</target-resolution>

+  <renderers>

+  <renderer mime="application/pdf">

+  <fonts>

+    <font metrics-url="palatino.xml"

+      kerning="yes"

+      embed-url="file:///c:/WINDOWS/Fonts/pala.TTF">

+      <font-triplet name="Palatino" style="normal" weight="normal"/>

+    </font>

+    <font metrics-url="palatino-bold.xml" 

+      kerning="yes"

+      embed-url="file:///c:/WINDOWS/Fonts/palab.TTF">

+      <font-triplet name="Palatino" style="normal" weight="bold"/>

+    </font>

+    <font metrics-url="palatino-italic.xml" 

+      kerning="yes"

+      embed-url="file:///c:/WINDOWS/Fonts/palai.TTF">

+      <font-triplet name="Palatino" style="italic" weight="normal"/>

+    </font>

+    <font metrics-url="palatino-bold-italic.xml" 

+      kerning="yes"

+      embed-url="file:///c:/WINDOWS/Fonts/palabi.TTF">

+      <font-triplet name="Palatino" style="italic" weight="bold"/>

+    </font>

+  </fonts>

+    </renderer>

+  </renderers>

+</fop>
\ No newline at end of file
diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.93/fop.jar b/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.93/fop.jar
new file mode 100644
index 0000000..adcf0d3
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.93/fop.jar
Binary files differ
diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.93/xmlgraphics-commons-1.1.jar b/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.93/xmlgraphics-commons-1.1.jar
new file mode 100644
index 0000000..7fd9648
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/tools/fop-versions/fop-0.93/xmlgraphics-commons-1.1.jar
Binary files differ
diff --git a/CasEditor-2.2.2-04/uima-docbook-tool/xinclude.mod b/CasEditor-2.2.2-04/uima-docbook-tool/xinclude.mod
new file mode 100644
index 0000000..207222a
--- /dev/null
+++ b/CasEditor-2.2.2-04/uima-docbook-tool/xinclude.mod
@@ -0,0 +1,46 @@
+<!--
+   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.
+-->
+<!-- xml comments allowed in this file -->
+
+<!-- ================================================================-->
+<!--   This file is incorporated in xml files which have xi:include
+       elements, to allow those files to validate in an XML editor
+       without actually doing the includes                           -->
+
+<!-- defines xi:include as a valid element for validating editors -->
+<!-- adds it as an element to sub parts of books and chapters. -->
+<!--   This must be referenced by each source file that has xi:include
+       elements, in the file's DOCTYPE declaration,
+       using the syntax
+       lt;!ENTITY % xinclude SYSTEM "../../ . . . /uima-docbook-tool/xinclude.mod">
+       %xinclude; -->
+
+<!ELEMENT xi:include (xi:fallback?) >

+<!ATTLIST xi:include

+  xmlns:xi   CDATA        #FIXED      "http://www.w3.org/2001/XInclude"

+  href       CDATA        #REQUIRED

+  parse      (xml|text)   "xml"

+  encoding   CDATA        #IMPLIED >

+

+<!ELEMENT xi:fallback ANY>

+<!ATTLIST xi:fallback

+  xmlns:xi   CDATA        #FIXED      "http://www.w3.org/2001/XInclude" >

+

+<!ENTITY % local.chapter.class "| xi:include">

+<!ENTITY % local.book.class "| xi:include">