You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by al...@apache.org on 2007/02/09 21:13:38 UTC

svn commit: r505476 - in /incubator/uima/uimaj/trunk/uima-docbooks/src: docbook/tutorials_and_users_guides/ olink/overview_and_setup/ olink/tutorials_and_users_guides/

Author: alally
Date: Fri Feb  9 12:13:37 2007
New Revision: 505476

URL: http://svn.apache.org/viewvc?view=rev&rev=505476
Log:
miscellaneous edits

Modified:
    incubator/uima/uimaj/trunk/uima-docbooks/src/docbook/tutorials_and_users_guides/tug.aas.xml
    incubator/uima/uimaj/trunk/uima-docbooks/src/docbook/tutorials_and_users_guides/tug.multi_views.xml
    incubator/uima/uimaj/trunk/uima-docbooks/src/olink/overview_and_setup/htmlsingle-target.db
    incubator/uima/uimaj/trunk/uima-docbooks/src/olink/overview_and_setup/pdf-target.db
    incubator/uima/uimaj/trunk/uima-docbooks/src/olink/tutorials_and_users_guides/htmlsingle-target.db
    incubator/uima/uimaj/trunk/uima-docbooks/src/olink/tutorials_and_users_guides/pdf-target.db

Modified: incubator/uima/uimaj/trunk/uima-docbooks/src/docbook/tutorials_and_users_guides/tug.aas.xml
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uima-docbooks/src/docbook/tutorials_and_users_guides/tug.aas.xml?view=diff&rev=505476&r1=505475&r2=505476
==============================================================================
--- incubator/uima/uimaj/trunk/uima-docbooks/src/docbook/tutorials_and_users_guides/tug.aas.xml (original)
+++ incubator/uima/uimaj/trunk/uima-docbooks/src/docbook/tutorials_and_users_guides/tug.aas.xml Fri Feb  9 12:13:37 2007
@@ -254,13 +254,12 @@
     
     <para>A built-in type, <literal>uima.cas.AnnotationBase</literal>, is provided by
       UIMA to allow users to extend the Annotation capabilities to different kinds of
-      Annotations. The <literal>AnnotationBase</literal> type has one feature, the
-      <literal>SofaRef</literal>, which holds a reference to the
-      <literal>SofaFS</literal> feature structure, which is an instance of a built-in type
-      that is used to represent a Sofa in the framework. The <literal>SofaFS</literal>
-      feature is automatically set when creating an annotation (meaning &mdash; any type
-      derived from the built-in <literal>uima.cas.AnnotationBase </literal>type); it
-      should not be set by the user.</para>
+      Annotations. The <literal>AnnotationBase</literal> type has one feature, named
+      <literal>sofa</literal>, which holds a reference to the
+      <literal>Sofa</literal> feature structure with which this annotation is associated. 
+      The <literal>sofa</literal> feature is automatically set when creating an annotation 
+      (meaning &mdash; any type derived from the built-in 
+      <literal>uima.cas.AnnotationBase</literal> type); it should not be set by the user.</para>
     
     <para>There is one method, <literal>getView</literal>(), provided by
       <literal>AnnotationBase</literal> that returns the CAS View for the Sofa the

Modified: incubator/uima/uimaj/trunk/uima-docbooks/src/docbook/tutorials_and_users_guides/tug.multi_views.xml
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uima-docbooks/src/docbook/tutorials_and_users_guides/tug.multi_views.xml?view=diff&rev=505476&r1=505475&r2=505476
==============================================================================
--- incubator/uima/uimaj/trunk/uima-docbooks/src/docbook/tutorials_and_users_guides/tug.multi_views.xml (original)
+++ incubator/uima/uimaj/trunk/uima-docbooks/src/docbook/tutorials_and_users_guides/tug.multi_views.xml Fri Feb  9 12:13:37 2007
@@ -64,7 +64,7 @@
     <title>CAS Views and Sofas</title>
     
     <para>Sofas (see <olink targetdoc="&uima_docs_tutorial_guides;"
-        targetptr="ugr.tug.aas.sofa"/> and CAS Views are linked. In this implementation,
+        targetptr="ugr.tug.aas.sofa"/>) and CAS Views are linked. In this implementation,
       every CAS view has one associated Sofa, and every Sofa has one associated CAS
       View.</para>
     
@@ -194,8 +194,7 @@
     
     <para>If an Application creates a new CAS, the initial CAS that is created will be a view
       named <quote>_InitialView</quote>. This name can be used in the application and in
-      Sofa Mapping (see <xref linkend="ugr.tug.mvs.sofa_name_mapping"/>) to refer to
-      this otherwise unnamed view.</para>
+      Sofa Mapping (see the next section) to refer to this otherwise unnamed view.</para>
     
   </section>
   
@@ -528,17 +527,17 @@
       
       
       <programlisting>// get View of the English text Sofa
-engView = aCas.getView("EnglishDocument");
+englishView = aCas.getView("EnglishDocument");
 
 // Create the output German text Sofa
-germView = aCas.createView("GermanDocument");</programlisting>
+germanView = aCas.createView("GermanDocument");</programlisting>
       
       <para>the indexing of annotations with the appropriate view:</para>
       
       
-      <programlisting>engView.addFsToIndexes(engAnnot);
+      <programlisting>englishView.addFsToIndexes(engAnnot);
 . . .
-germView.addFsToIndexes(germAnnot);</programlisting>
+germanView.addFsToIndexes(germAnnot);</programlisting>
       
       <para>and the combining of metadata belonging to different Sofas in the same feature
         structure:</para>
@@ -655,7 +654,7 @@
     <title>Sofa Incompatibilities between UIMA version 1 and version 2</title>
     <titleabbrev>Sofa Incompatibilities: V1 and V2</titleabbrev>
     
-    <para>The major change for version 2 is related to the support of Single-View components
+    <para>A major change in version 2 is related to the support of Single-View components
       and applications. Given an analysis engine, <literal>ae</literal>, the API
       
       <programlisting>CAS cas = ae.newCas();</programlisting>

Modified: incubator/uima/uimaj/trunk/uima-docbooks/src/olink/overview_and_setup/htmlsingle-target.db
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uima-docbooks/src/olink/overview_and_setup/htmlsingle-target.db?view=diff&rev=505476&r1=505475&r2=505476
==============================================================================
--- incubator/uima/uimaj/trunk/uima-docbooks/src/olink/overview_and_setup/htmlsingle-target.db (original)
+++ incubator/uima/uimaj/trunk/uima-docbooks/src/olink/overview_and_setup/htmlsingle-target.db Fri Feb  9 12:13:37 2007
@@ -199,34 +199,48 @@
          <div element="section" href="#ugr.project_overview_new_capabilities" number="1.4.1" targetptr="ugr.project_overview_new_capabilities">
             <ttl>New Capabilities</ttl>
             <xreftext>Section 1.4.1, “New Capabilities”</xreftext>
-            <div element="section" href="#ugr.project_overview_new_data_types" number="1.4.1.1" targetptr="ugr.project_overview_new_data_types">
+            <obj element="formalpara" href="#ugr.project_overview_new_data_types" number="" targetptr="ugr.project_overview_new_data_types">
                <ttl>New Primitive data types</ttl>
-               <xreftext>Section 1.4.1.1, “New Primitive data types”</xreftext>
-            </div>
-            <div element="section" href="#ugr.ovv.simpler_aes_and_cases" number="1.4.1.2" targetptr="ugr.ovv.simpler_aes_and_cases">
+               <xreftext>New Primitive data types</xreftext>
+            </obj>
+            <obj element="formalpara" href="#ugr.ovv.simpler_aes_and_cases" number="" targetptr="ugr.ovv.simpler_aes_and_cases">
                <ttl>Simpler Analysis Engines and CASes</ttl>
-               <xreftext>Section 1.4.1.2, “Simpler Analysis Engines and CASes”</xreftext>
-            </div>
-            <div element="section" href="#ugr.ovv.sofas_and_cas_views_simplified" number="1.4.1.3" targetptr="ugr.ovv.sofas_and_cas_views_simplified">
+               <xreftext>Simpler Analysis Engines and CASes</xreftext>
+            </obj>
+            <obj element="formalpara" href="#ugr.ovv.sofas_and_cas_views_simplified" number="" targetptr="ugr.ovv.sofas_and_cas_views_simplified">
                <ttl>Sofas and CAS Views simplified</ttl>
-               <xreftext>Section 1.4.1.3, “Sofas and CAS Views simplified”</xreftext>
-            </div>
-            <div element="section" href="#ugr.ovv.ae_support_multiple_new_cases" number="1.4.1.4" targetptr="ugr.ovv.ae_support_multiple_new_cases">
-               <ttl>Analysis Component generalized to support multiple new CAS outputs</ttl>
-               <xreftext>Section 1.4.1.4, “Analysis Component generalized to support multiple new CAS outputs”</xreftext>
-            </div>
-            <div element="section" href="#ugr.ovv.user_customized_fc" number="1.4.1.5" targetptr="ugr.ovv.user_customized_fc">
+               <xreftext>Sofas and CAS Views simplified</xreftext>
+            </obj>
+            <obj element="formalpara" href="#ugr.ovv.ae_support_multiple_new_cases" number="" targetptr="ugr.ovv.ae_support_multiple_new_cases">
+               <ttl>Analysis Component generalized to support multiple new CAS
+          outputs</ttl>
+               <xreftext>Analysis Component generalized to support multiple new CAS
+          outputs</xreftext>
+            </obj>
+            <obj element="formalpara" href="#ugr.ovv.user_customized_fc" number="" targetptr="ugr.ovv.user_customized_fc">
                <ttl>User-customized Flow Controllers</ttl>
-               <xreftext>Section 1.4.1.5, “User-customized Flow Controllers”</xreftext>
-            </div>
-         </div>
-         <div element="section" href="#ugr.project_overview_backwards_compatibility" number="1.4.2" targetptr="ugr.project_overview_backwards_compatibility">
-            <ttl>Backwards Compatibility</ttl>
-            <xreftext>Section 1.4.2, “Backwards Compatibility”</xreftext>
+               <xreftext>User-customized Flow Controllers</xreftext>
+            </obj>
          </div>
-         <div element="section" href="#ugr.ovv.other_changes" number="1.4.3" targetptr="ugr.ovv.other_changes">
+         <div element="section" href="#ugr.ovv.other_changes" number="1.4.2" targetptr="ugr.ovv.other_changes">
             <ttl>Other Changes</ttl>
-            <xreftext>Section 1.4.3, “Other Changes”</xreftext>
+            <xreftext>Section 1.4.2, “Other Changes”</xreftext>
+            <obj element="formalpara" href="#ugr.ovv.exceptions_rationalized" number="" targetptr="ugr.ovv.exceptions_rationalized">
+               <ttl>UIMA Exceptions rationalized</ttl>
+               <xreftext>UIMA Exceptions rationalized</xreftext>
+            </obj>
+            <obj element="formalpara" href="#ugr.ovv.result_specification" number="" targetptr="ugr.ovv.result_specification">
+               <ttl>Changes in Result Specifications</ttl>
+               <xreftext>Changes in Result Specifications</xreftext>
+            </obj>
+            <obj element="formalpara" href="#ugr.ovv.one_capability_set" number="" targetptr="ugr.ovv.one_capability_set">
+               <ttl>Only one Capability Set</ttl>
+               <xreftext>Only one Capability Set</xreftext>
+            </obj>
+         </div>
+         <div element="section" href="#ugr.project_overview_backwards_compatibility" number="1.4.3" targetptr="ugr.project_overview_backwards_compatibility">
+            <ttl>Backwards Compatibility</ttl>
+            <xreftext>Section 1.4.3, “Backwards Compatibility”</xreftext>
          </div>
       </div>
       <div element="section" href="#ugr.project_overview_summary" number="1.5" targetptr="ugr.project_overview_summary">
@@ -383,7 +397,7 @@
          <div element="section" href="#ugr.ovv.eclipse_setup.install_emf" number="3.1.2" targetptr="ugr.ovv.eclipse_setup.install_emf">
             <ttl>Install additional Eclipse component: EMF</ttl>
             <xreftext>Section 3.1.2, “Install additional Eclipse component: EMF”</xreftext>
-            <div element="section" href="#d0e1925" number="3.1.2.1">
+            <div element="section" href="#d0e1996" number="3.1.2.1">
                <ttl>EMF Installation Shortcut for Eclipse 3.2</ttl>
                <xreftext>Section 3.1.2.1, “EMF Installation Shortcut for Eclipse 3.2”</xreftext>
             </div>
@@ -418,6 +432,221 @@
       <ttl>UIMA Frequently Asked Questions (FAQ's)</ttl>
       <xreftext>Chapter 4, <i>UIMA Frequently Asked Questions (FAQ's)</i>
       </xreftext>
+      <obj element="varlistentry" href="#ugr.faqs.what_is_uima" number="" targetptr="ugr.faqs.what_is_uima">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <span class="bold">
+               <strong>What is UIMA?</strong>
+            </span>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.pronounce" number="" targetptr="ugr.faqs.pronounce">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <span class="bold">
+               <strong>How do you pronounce UIMA?</strong>
+            </span>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.difference_apache_uima" number="" targetptr="ugr.faqs.difference_apache_uima">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <span class="bold">
+               <strong>What's the difference between UIMA and the Apache UIMA?</strong>
+            </span>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.include_semantic_search" number="" targetptr="ugr.faqs.include_semantic_search">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <span class="bold">
+               <strong>
+          Does UIMA include a semantic search engine?
+        </strong>
+            </span>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.what_is_an_annotation" number="" targetptr="ugr.faqs.what_is_an_annotation">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <span class="bold">
+               <strong>What is an Annotation?</strong>
+            </span>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.what_is_the_cas" number="" targetptr="ugr.faqs.what_is_the_cas">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <span class="bold">
+               <strong>What is the CAS?</strong>
+            </span>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.what_does_the_cas_contain" number="" targetptr="ugr.faqs.what_does_the_cas_contain">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <span class="bold">
+               <strong>What does the CAS contain?</strong>
+            </span>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.only_annotations" number="" targetptr="ugr.faqs.only_annotations">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <span class="bold">
+               <strong>Does the CAS only contain Annotations?</strong>
+            </span>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.just_xml" number="" targetptr="ugr.faqs.just_xml">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <span class="bold">
+               <strong>Is the CAS just XML?</strong>
+            </span>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.what_is_a_type_system" number="" targetptr="ugr.faqs.what_is_a_type_system">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <span class="bold">
+               <strong>What is a Type System?</strong>
+            </span>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.what_is_a_sofa" number="" targetptr="ugr.faqs.what_is_a_sofa">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <span class="bold">
+               <strong>What is a Sofa?</strong>
+            </span>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.annotator_versus_ae" number="" targetptr="ugr.faqs.annotator_versus_ae">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <span class="bold">
+               <strong>What's the difference between an Annotator and an Analysis
+          Engine?</strong>
+            </span>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.web_services" number="" targetptr="ugr.faqs.web_services">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <span class="bold">
+               <strong>Are UIMA analysis engines web services?</strong>
+            </span>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.stateless_aes" number="" targetptr="ugr.faqs.stateless_aes">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <span class="bold">
+               <strong>Do Analysis Engines have to be
+          "stateless"?</strong>
+            </span>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.uddi" number="" targetptr="ugr.faqs.uddi">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <span class="bold">
+               <strong>Is engine meta-data compatible with web services and
+          UDDI?</strong>
+            </span>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.scaling" number="" targetptr="ugr.faqs.scaling">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <span class="bold">
+               <strong>How do you scale a UIMA application?</strong>
+            </span>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.embedding" number="" targetptr="ugr.faqs.embedding">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <span class="bold">
+               <strong>What does it mean to embed UIMA in systems middleware?</strong>
+            </span>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.cpm_versus_cpe" number="" targetptr="ugr.faqs.cpm_versus_cpe">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <span class="bold">
+               <strong>How is the CPM different from a CPE?</strong>
+            </span>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.semantic_search" number="" targetptr="ugr.faqs.semantic_search">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <span class="bold">
+               <strong>What is Semantic Search and what is its relationship to
+          UIMA?</strong>
+            </span>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.xml_fragment_not_xml" number="" targetptr="ugr.faqs.xml_fragment_not_xml">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <span class="bold">
+               <strong>Is an XML Fragment Query valid XML?</strong>
+            </span>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.modalities_other_than_text" number="" targetptr="ugr.faqs.modalities_other_than_text">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <span class="bold">
+               <strong>Does UIMA support modalities other than text?</strong>
+            </span>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.compare" number="" targetptr="ugr.faqs.compare">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <span class="bold">
+               <strong>How does UIMA compare to other similar work?</strong>
+            </span>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.open_source" number="" targetptr="ugr.faqs.open_source">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <span class="bold">
+               <strong>Is UIMA Open Source?</strong>
+            </span>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.levels_required" number="" targetptr="ugr.faqs.levels_required">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <span class="bold">
+               <strong>What Java level and OS are required for the UIMA SDK?</strong>
+            </span>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.building_apps_on_top_of_uima" number="" targetptr="ugr.faqs.building_apps_on_top_of_uima">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <span class="bold">
+               <strong>Can I build my UIM application on top of UIMA?</strong>
+            </span>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.commercial_products" number="" targetptr="ugr.faqs.commercial_products">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <span class="bold">
+               <strong>Do any commercial products support the UIMA framework or include
+          it as part of their product?</strong>
+            </span>
+         </xreftext>
+      </obj>
    </div>
    <obj element="glossary" href="#ugr.glossary" number="" targetptr="ugr.glossary">
       <ttl>Glossary: Key Terms &amp; Concepts</ttl>

Modified: incubator/uima/uimaj/trunk/uima-docbooks/src/olink/overview_and_setup/pdf-target.db
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uima-docbooks/src/olink/overview_and_setup/pdf-target.db?view=diff&rev=505476&r1=505475&r2=505476
==============================================================================
--- incubator/uima/uimaj/trunk/uima-docbooks/src/olink/overview_and_setup/pdf-target.db (original)
+++ incubator/uima/uimaj/trunk/uima-docbooks/src/olink/overview_and_setup/pdf-target.db Fri Feb  9 12:13:37 2007
@@ -199,34 +199,48 @@
          <div element="section" href="#ugr.project_overview_new_capabilities" number="1.4.1" targetptr="ugr.project_overview_new_capabilities">
             <ttl>New Capabilities</ttl>
             <xreftext>Section 1.4.1, “New Capabilities”</xreftext>
-            <div element="section" href="#ugr.project_overview_new_data_types" number="1.4.1.1" targetptr="ugr.project_overview_new_data_types">
+            <obj element="formalpara" href="#ugr.project_overview_new_data_types" number="" targetptr="ugr.project_overview_new_data_types">
                <ttl>New Primitive data types</ttl>
-               <xreftext>Section 1.4.1.1, “New Primitive data types”</xreftext>
-            </div>
-            <div element="section" href="#ugr.ovv.simpler_aes_and_cases" number="1.4.1.2" targetptr="ugr.ovv.simpler_aes_and_cases">
+               <xreftext>New Primitive data types</xreftext>
+            </obj>
+            <obj element="formalpara" href="#ugr.ovv.simpler_aes_and_cases" number="" targetptr="ugr.ovv.simpler_aes_and_cases">
                <ttl>Simpler Analysis Engines and CASes</ttl>
-               <xreftext>Section 1.4.1.2, “Simpler Analysis Engines and CASes”</xreftext>
-            </div>
-            <div element="section" href="#ugr.ovv.sofas_and_cas_views_simplified" number="1.4.1.3" targetptr="ugr.ovv.sofas_and_cas_views_simplified">
+               <xreftext>Simpler Analysis Engines and CASes</xreftext>
+            </obj>
+            <obj element="formalpara" href="#ugr.ovv.sofas_and_cas_views_simplified" number="" targetptr="ugr.ovv.sofas_and_cas_views_simplified">
                <ttl>Sofas and CAS Views simplified</ttl>
-               <xreftext>Section 1.4.1.3, “Sofas and CAS Views simplified”</xreftext>
-            </div>
-            <div element="section" href="#ugr.ovv.ae_support_multiple_new_cases" number="1.4.1.4" targetptr="ugr.ovv.ae_support_multiple_new_cases">
-               <ttl>Analysis Component generalized to support multiple new CAS outputs</ttl>
-               <xreftext>Section 1.4.1.4, “Analysis Component generalized to support multiple new CAS outputs”</xreftext>
-            </div>
-            <div element="section" href="#ugr.ovv.user_customized_fc" number="1.4.1.5" targetptr="ugr.ovv.user_customized_fc">
+               <xreftext>Sofas and CAS Views simplified</xreftext>
+            </obj>
+            <obj element="formalpara" href="#ugr.ovv.ae_support_multiple_new_cases" number="" targetptr="ugr.ovv.ae_support_multiple_new_cases">
+               <ttl>Analysis Component generalized to support multiple new CAS
+          outputs</ttl>
+               <xreftext>Analysis Component generalized to support multiple new CAS
+          outputs</xreftext>
+            </obj>
+            <obj element="formalpara" href="#ugr.ovv.user_customized_fc" number="" targetptr="ugr.ovv.user_customized_fc">
                <ttl>User-customized Flow Controllers</ttl>
-               <xreftext>Section 1.4.1.5, “User-customized Flow Controllers”</xreftext>
-            </div>
-         </div>
-         <div element="section" href="#ugr.project_overview_backwards_compatibility" number="1.4.2" targetptr="ugr.project_overview_backwards_compatibility">
-            <ttl>Backwards Compatibility</ttl>
-            <xreftext>Section 1.4.2, “Backwards Compatibility”</xreftext>
+               <xreftext>User-customized Flow Controllers</xreftext>
+            </obj>
          </div>
-         <div element="section" href="#ugr.ovv.other_changes" number="1.4.3" targetptr="ugr.ovv.other_changes">
+         <div element="section" href="#ugr.ovv.other_changes" number="1.4.2" targetptr="ugr.ovv.other_changes">
             <ttl>Other Changes</ttl>
-            <xreftext>Section 1.4.3, “Other Changes”</xreftext>
+            <xreftext>Section 1.4.2, “Other Changes”</xreftext>
+            <obj element="formalpara" href="#ugr.ovv.exceptions_rationalized" number="" targetptr="ugr.ovv.exceptions_rationalized">
+               <ttl>UIMA Exceptions rationalized</ttl>
+               <xreftext>UIMA Exceptions rationalized</xreftext>
+            </obj>
+            <obj element="formalpara" href="#ugr.ovv.result_specification" number="" targetptr="ugr.ovv.result_specification">
+               <ttl>Changes in Result Specifications</ttl>
+               <xreftext>Changes in Result Specifications</xreftext>
+            </obj>
+            <obj element="formalpara" href="#ugr.ovv.one_capability_set" number="" targetptr="ugr.ovv.one_capability_set">
+               <ttl>Only one Capability Set</ttl>
+               <xreftext>Only one Capability Set</xreftext>
+            </obj>
+         </div>
+         <div element="section" href="#ugr.project_overview_backwards_compatibility" number="1.4.3" targetptr="ugr.project_overview_backwards_compatibility">
+            <ttl>Backwards Compatibility</ttl>
+            <xreftext>Section 1.4.3, “Backwards Compatibility”</xreftext>
          </div>
       </div>
       <div element="section" href="#ugr.project_overview_summary" number="1.5" targetptr="ugr.project_overview_summary">
@@ -383,7 +397,7 @@
          <div element="section" href="#ugr.ovv.eclipse_setup.install_emf" number="3.1.2" targetptr="ugr.ovv.eclipse_setup.install_emf">
             <ttl>Install additional Eclipse component: EMF</ttl>
             <xreftext>Section 3.1.2, “Install additional Eclipse component: EMF”</xreftext>
-            <div element="section" href="#d0e1925" number="3.1.2.1">
+            <div element="section" href="#d0e1996" number="3.1.2.1">
                <ttl>EMF Installation Shortcut for Eclipse 3.2</ttl>
                <xreftext>Section 3.1.2.1, “EMF Installation Shortcut for Eclipse 3.2”</xreftext>
             </div>
@@ -418,6 +432,169 @@
       <ttl>UIMA Frequently Asked Questions (FAQ's)</ttl>
       <xreftext>Chapter 4, <fo:inline xmlns:fo="http://www.w3.org/1999/XSL/Format" font-style="italic">UIMA Frequently Asked Questions (FAQ's)</fo:inline>
       </xreftext>
+      <obj element="varlistentry" href="#ugr.faqs.what_is_uima" number="" targetptr="ugr.faqs.what_is_uima">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <fo:inline xmlns:fo="http://www.w3.org/1999/XSL/Format" font-weight="bold">What is UIMA?</fo:inline>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.pronounce" number="" targetptr="ugr.faqs.pronounce">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <fo:inline xmlns:fo="http://www.w3.org/1999/XSL/Format" font-weight="bold">How do you pronounce UIMA?</fo:inline>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.difference_apache_uima" number="" targetptr="ugr.faqs.difference_apache_uima">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <fo:inline xmlns:fo="http://www.w3.org/1999/XSL/Format" font-weight="bold">What's the difference between UIMA and the Apache UIMA?</fo:inline>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.include_semantic_search" number="" targetptr="ugr.faqs.include_semantic_search">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <fo:inline xmlns:fo="http://www.w3.org/1999/XSL/Format" font-weight="bold">
+          Does UIMA include a semantic search engine?
+        </fo:inline>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.what_is_an_annotation" number="" targetptr="ugr.faqs.what_is_an_annotation">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <fo:inline xmlns:fo="http://www.w3.org/1999/XSL/Format" font-weight="bold">What is an Annotation?</fo:inline>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.what_is_the_cas" number="" targetptr="ugr.faqs.what_is_the_cas">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <fo:inline xmlns:fo="http://www.w3.org/1999/XSL/Format" font-weight="bold">What is the CAS?</fo:inline>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.what_does_the_cas_contain" number="" targetptr="ugr.faqs.what_does_the_cas_contain">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <fo:inline xmlns:fo="http://www.w3.org/1999/XSL/Format" font-weight="bold">What does the CAS contain?</fo:inline>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.only_annotations" number="" targetptr="ugr.faqs.only_annotations">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <fo:inline xmlns:fo="http://www.w3.org/1999/XSL/Format" font-weight="bold">Does the CAS only contain Annotations?</fo:inline>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.just_xml" number="" targetptr="ugr.faqs.just_xml">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <fo:inline xmlns:fo="http://www.w3.org/1999/XSL/Format" font-weight="bold">Is the CAS just XML?</fo:inline>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.what_is_a_type_system" number="" targetptr="ugr.faqs.what_is_a_type_system">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <fo:inline xmlns:fo="http://www.w3.org/1999/XSL/Format" font-weight="bold">What is a Type System?</fo:inline>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.what_is_a_sofa" number="" targetptr="ugr.faqs.what_is_a_sofa">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <fo:inline xmlns:fo="http://www.w3.org/1999/XSL/Format" font-weight="bold">What is a Sofa?</fo:inline>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.annotator_versus_ae" number="" targetptr="ugr.faqs.annotator_versus_ae">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <fo:inline xmlns:fo="http://www.w3.org/1999/XSL/Format" font-weight="bold">What's the difference between an Annotator and an Analysis
+          Engine?</fo:inline>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.web_services" number="" targetptr="ugr.faqs.web_services">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <fo:inline xmlns:fo="http://www.w3.org/1999/XSL/Format" font-weight="bold">Are UIMA analysis engines web services?</fo:inline>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.stateless_aes" number="" targetptr="ugr.faqs.stateless_aes">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <fo:inline xmlns:fo="http://www.w3.org/1999/XSL/Format" font-weight="bold">Do Analysis Engines have to be
+          "stateless"?</fo:inline>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.uddi" number="" targetptr="ugr.faqs.uddi">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <fo:inline xmlns:fo="http://www.w3.org/1999/XSL/Format" font-weight="bold">Is engine meta-data compatible with web services and
+          UDDI?</fo:inline>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.scaling" number="" targetptr="ugr.faqs.scaling">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <fo:inline xmlns:fo="http://www.w3.org/1999/XSL/Format" font-weight="bold">How do you scale a UIMA application?</fo:inline>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.embedding" number="" targetptr="ugr.faqs.embedding">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <fo:inline xmlns:fo="http://www.w3.org/1999/XSL/Format" font-weight="bold">What does it mean to embed UIMA in systems middleware?</fo:inline>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.cpm_versus_cpe" number="" targetptr="ugr.faqs.cpm_versus_cpe">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <fo:inline xmlns:fo="http://www.w3.org/1999/XSL/Format" font-weight="bold">How is the CPM different from a CPE?</fo:inline>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.semantic_search" number="" targetptr="ugr.faqs.semantic_search">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <fo:inline xmlns:fo="http://www.w3.org/1999/XSL/Format" font-weight="bold">What is Semantic Search and what is its relationship to
+          UIMA?</fo:inline>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.xml_fragment_not_xml" number="" targetptr="ugr.faqs.xml_fragment_not_xml">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <fo:inline xmlns:fo="http://www.w3.org/1999/XSL/Format" font-weight="bold">Is an XML Fragment Query valid XML?</fo:inline>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.modalities_other_than_text" number="" targetptr="ugr.faqs.modalities_other_than_text">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <fo:inline xmlns:fo="http://www.w3.org/1999/XSL/Format" font-weight="bold">Does UIMA support modalities other than text?</fo:inline>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.compare" number="" targetptr="ugr.faqs.compare">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <fo:inline xmlns:fo="http://www.w3.org/1999/XSL/Format" font-weight="bold">How does UIMA compare to other similar work?</fo:inline>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.open_source" number="" targetptr="ugr.faqs.open_source">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <fo:inline xmlns:fo="http://www.w3.org/1999/XSL/Format" font-weight="bold">Is UIMA Open Source?</fo:inline>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.levels_required" number="" targetptr="ugr.faqs.levels_required">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <fo:inline xmlns:fo="http://www.w3.org/1999/XSL/Format" font-weight="bold">What Java level and OS are required for the UIMA SDK?</fo:inline>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.building_apps_on_top_of_uima" number="" targetptr="ugr.faqs.building_apps_on_top_of_uima">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <fo:inline xmlns:fo="http://www.w3.org/1999/XSL/Format" font-weight="bold">Can I build my UIM application on top of UIMA?</fo:inline>
+         </xreftext>
+      </obj>
+      <obj element="varlistentry" href="#ugr.faqs.commercial_products" number="" targetptr="ugr.faqs.commercial_products">
+         <ttl>???TITLE???</ttl>
+         <xreftext>
+            <fo:inline xmlns:fo="http://www.w3.org/1999/XSL/Format" font-weight="bold">Do any commercial products support the UIMA framework or include
+          it as part of their product?</fo:inline>
+         </xreftext>
+      </obj>
    </div>
    <obj element="glossary" href="#ugr.glossary" number="" targetptr="ugr.glossary">
       <ttl>Glossary: Key Terms &amp; Concepts</ttl>

Modified: incubator/uima/uimaj/trunk/uima-docbooks/src/olink/tutorials_and_users_guides/htmlsingle-target.db
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uima-docbooks/src/olink/tutorials_and_users_guides/htmlsingle-target.db?view=diff&rev=505476&r1=505475&r2=505476
==============================================================================
--- incubator/uima/uimaj/trunk/uima-docbooks/src/olink/tutorials_and_users_guides/htmlsingle-target.db (original)
+++ incubator/uima/uimaj/trunk/uima-docbooks/src/olink/tutorials_and_users_guides/htmlsingle-target.db Fri Feb  9 12:13:37 2007
@@ -112,15 +112,15 @@
          <xreftext>Section 1.5, “Additional Topics”</xreftext>
          <div element="section" href="#ugr.tug.aae.contract_for_annotator_methods" number="1.5.1" targetptr="ugr.tug.aae.contract_for_annotator_methods">
             <ttl>Contract: Annotator Methods Called by the Framework</ttl>
-            <xreftext>Section 1.5.1, “Contract: Annotator Methods Called by the Framework”</xreftext>
+            <xreftext>Section 1.5.1, “Annotator Methods”</xreftext>
          </div>
          <div element="section" href="#ugr.tug.aae.reporting_errors_from_annotators" number="1.5.2" targetptr="ugr.tug.aae.reporting_errors_from_annotators">
             <ttl>Reporting errors from Annotators</ttl>
             <xreftext>Section 1.5.2, “Reporting errors from Annotators”</xreftext>
          </div>
          <div element="section" href="#ugr.tug.aae.throwing_exceptions_from_annotators" number="1.5.3" targetptr="ugr.tug.aae.throwing_exceptions_from_annotators">
-            <ttl>Throwing Exceptions from Annoatators</ttl>
-            <xreftext>Section 1.5.3, “Throwing Exceptions from Annoatators”</xreftext>
+            <ttl>Throwing Exceptions from Annotators</ttl>
+            <xreftext>Section 1.5.3, “Throwing Exceptions from Annotators”</xreftext>
          </div>
          <div element="section" href="#ugr.tug.aae.accessing_external_resource_files" number="1.5.4" targetptr="ugr.tug.aae.accessing_external_resource_files">
             <ttl>Accessing External Resource Files</ttl>
@@ -189,11 +189,11 @@
       </div>
       <div element="section" href="#ugr.tug.aae.viewing_UIMA_objects_in_eclipse_debugger" number="1.7" targetptr="ugr.tug.aae.viewing_UIMA_objects_in_eclipse_debugger">
          <ttl>Viewing UIMA objects in the Eclipse debugger</ttl>
-         <xreftext>Section 1.7, “Viewing UIMA objects in the Eclipse debugger”</xreftext>
+         <xreftext>Section 1.7, “UIMA Objects in Eclipse Debugger”</xreftext>
       </div>
       <div element="section" href="#ugr.tug.aae.xml_intro_ae_descriptor" number="1.8" targetptr="ugr.tug.aae.xml_intro_ae_descriptor">
          <ttl>Introduction to Analysis Engine Descriptor XML Syntax</ttl>
-         <xreftext>Section 1.8, “Introduction to Analysis Engine Descriptor XML Syntax”</xreftext>
+         <xreftext>Section 1.8, “Analysis Engine XML Descriptor”</xreftext>
          <div element="section" href="#ugr.tug.aae.header_annotator_class_identification" number="1.8.1" targetptr="ugr.tug.aae.header_annotator_class_identification">
             <ttl>Header and Annotator Class Identification</ttl>
             <xreftext>Section 1.8.1, “Header and Annotator Class Identification”</xreftext>
@@ -523,11 +523,11 @@
          <div element="section" href="#ugr.tug.configuring_timeout_settings" number="3.6.6" targetptr="ugr.tug.configuring_timeout_settings">
             <ttl>Configuring Timeout Settings</ttl>
             <xreftext>Section 3.6.6, “Configuring Timeout Settings”</xreftext>
-            <div element="section" href="#d0e4196" number="3.6.6.1">
+            <div element="section" href="#ugr.tug.setting_client_timeout" number="3.6.6.1" targetptr="ugr.tug.setting_client_timeout">
                <ttl>Setting the Client Timeout</ttl>
                <xreftext>Section 3.6.6.1, “Setting the Client Timeout”</xreftext>
             </div>
-            <div element="section" href="#d0e4259" number="3.6.6.2">
+            <div element="section" href="#ugr.tug.setting_server_socket_timeout" number="3.6.6.2" targetptr="ugr.tug.setting_server_socket_timeout">
                <ttl>Setting the Server Socket Timeout</ttl>
                <xreftext>Section 3.6.6.2, “Setting the Server Socket Timeout”</xreftext>
             </div>
@@ -572,11 +572,11 @@
       </div>
       <div element="section" href="#ugr.tug.fc.adding_fc_to_aggregate" number="4.3" targetptr="ugr.tug.fc.adding_fc_to_aggregate">
          <ttl>Adding a Flow Controller to an Aggregate Analysis Engine</ttl>
-         <xreftext>Section 4.3, “Adding a Flow Controller to an Aggregate Analysis Engine”</xreftext>
+         <xreftext>Section 4.3, “Adding Flow Controller to an Aggregate”</xreftext>
       </div>
       <div element="section" href="#ugr.tug.fc.adding_fc_to_cpe" number="4.4" targetptr="ugr.tug.fc.adding_fc_to_cpe">
          <ttl>Adding a Flow Controller to a Collection Processing Engine</ttl>
-         <xreftext>Section 4.4, “Adding a Flow Controller to a Collection Processing Engine”</xreftext>
+         <xreftext>Section 4.4, “Adding Flow Controller to CPE”</xreftext>
       </div>
       <div element="section" href="#ugr.tug.fc.using_fc_with_cas_multipliers" number="4.5" targetptr="ugr.tug.fc.using_fc_with_cas_multipliers">
          <ttl>Using Flow Controllers with CAS Multipliers</ttl>
@@ -691,10 +691,10 @@
          </div>
          <div element="section" href="#ugr.tug.mvs.specifying_cas_view_for_single_view" number="6.4.3" targetptr="ugr.tug.mvs.specifying_cas_view_for_single_view">
             <ttl>Specifying the CAS View for a Single-View Component</ttl>
-            <xreftext>Section 6.4.3, “Specifying the CAS View for a Single-View Component”</xreftext>
+            <xreftext>Section 6.4.3, “CAS View for Single-View Parts”</xreftext>
             <obj element="para" href="#ugr.tug.mvs.sofa_mapping_leav_out_name" number="" targetptr="ugr.tug.mvs.sofa_mapping_leav_out_name">
                <ttl>???TITLE???</ttl>
-               <xreftext>Section 6.4.3, “Specifying the CAS View for a Single-View Component”</xreftext>
+               <xreftext>Section 6.4.3, “CAS View for Single-View Parts”</xreftext>
             </obj>
          </div>
          <div element="section" href="#ugr.tug.mvs.name_mapping_application" number="6.4.4" targetptr="ugr.tug.mvs.name_mapping_application">
@@ -736,7 +736,7 @@
       </div>
       <div element="section" href="#ugr.tug.mvs.sofa_incompatibilities_v1_v2" number="6.8" targetptr="ugr.tug.mvs.sofa_incompatibilities_v1_v2">
          <ttl>Sofa Incompatibilities between UIMA version 1 and version 2</ttl>
-         <xreftext>Section 6.8, “Sofa Incompatibilities between UIMA version 1 and version 2”</xreftext>
+         <xreftext>Section 6.8, “Sofa Incompatibilities: V1 and V2”</xreftext>
       </div>
    </div>
    <div element="chapter" href="#ugr.tug.cm" number="7" targetptr="ugr.tug.cm">
@@ -806,13 +806,13 @@
       <div element="section" href="#ugr.tug.cm.calling_cm_from_app" number="7.5" targetptr="ugr.tug.cm.calling_cm_from_app">
          <ttl>Calling a CAS Multiplier from an Application</ttl>
          <xreftext>Section 7.5, “Applications: Calling CAS Multipliers”</xreftext>
-         <div element="section" href="#d0e5951" number="7.5.1">
+         <div element="section" href="#ugr.tug.cm.retrieving_output_cases" number="7.5.1" targetptr="ugr.tug.cm.retrieving_output_cases">
             <ttl>Retrieving Output CASes from the CAS Multiplier</ttl>
-            <xreftext>Section 7.5.1, “Retrieving Output CASes from the CAS Multiplier”</xreftext>
+            <xreftext>Section 7.5.1, “Output CASes”</xreftext>
          </div>
-         <div element="section" href="#d0e6020" number="7.5.2">
+         <div element="section" href="#ugr.tug.cm.using_cm_with_other_aes" number="7.5.2" targetptr="ugr.tug.cm.using_cm_with_other_aes">
             <ttl>Using a CAS Multiplier with other Analysis Engines</ttl>
-            <xreftext>Section 7.5.2, “Using a CAS Multiplier with other Analysis Engines”</xreftext>
+            <xreftext>Section 7.5.2, “CAS Multipliers with other AEs”</xreftext>
          </div>
       </div>
       <div element="section" href="#ugr.tug.cm.using_cm_to_merge_cases" number="7.6" targetptr="ugr.tug.cm.using_cm_to_merge_cases">
@@ -820,7 +820,7 @@
          <xreftext>Section 7.6, “Merging with CAS Multipliers”</xreftext>
          <div element="section" href="#ugr.tug.cm.overview_of_how_to_merge_cases" number="7.6.1" targetptr="ugr.tug.cm.overview_of_how_to_merge_cases">
             <ttl>Overview of How to Merge CASes</ttl>
-            <xreftext>Section 7.6.1, “Merginging Overview”</xreftext>
+            <xreftext>Section 7.6.1, “CAS Merging Overview”</xreftext>
          </div>
          <div element="section" href="#ugr.tug.cm.example_cas_merger" number="7.6.2" targetptr="ugr.tug.cm.example_cas_merger">
             <ttl>Example CAS Merger</ttl>

Modified: incubator/uima/uimaj/trunk/uima-docbooks/src/olink/tutorials_and_users_guides/pdf-target.db
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uima-docbooks/src/olink/tutorials_and_users_guides/pdf-target.db?view=diff&rev=505476&r1=505475&r2=505476
==============================================================================
--- incubator/uima/uimaj/trunk/uima-docbooks/src/olink/tutorials_and_users_guides/pdf-target.db (original)
+++ incubator/uima/uimaj/trunk/uima-docbooks/src/olink/tutorials_and_users_guides/pdf-target.db Fri Feb  9 12:13:37 2007
@@ -112,15 +112,15 @@
          <xreftext>Section 1.5, “Additional Topics”</xreftext>
          <div element="section" href="#ugr.tug.aae.contract_for_annotator_methods" number="1.5.1" targetptr="ugr.tug.aae.contract_for_annotator_methods">
             <ttl>Contract: Annotator Methods Called by the Framework</ttl>
-            <xreftext>Section 1.5.1, “Contract: Annotator Methods Called by the Framework”</xreftext>
+            <xreftext>Section 1.5.1, “Annotator Methods”</xreftext>
          </div>
          <div element="section" href="#ugr.tug.aae.reporting_errors_from_annotators" number="1.5.2" targetptr="ugr.tug.aae.reporting_errors_from_annotators">
             <ttl>Reporting errors from Annotators</ttl>
             <xreftext>Section 1.5.2, “Reporting errors from Annotators”</xreftext>
          </div>
          <div element="section" href="#ugr.tug.aae.throwing_exceptions_from_annotators" number="1.5.3" targetptr="ugr.tug.aae.throwing_exceptions_from_annotators">
-            <ttl>Throwing Exceptions from Annoatators</ttl>
-            <xreftext>Section 1.5.3, “Throwing Exceptions from Annoatators”</xreftext>
+            <ttl>Throwing Exceptions from Annotators</ttl>
+            <xreftext>Section 1.5.3, “Throwing Exceptions from Annotators”</xreftext>
          </div>
          <div element="section" href="#ugr.tug.aae.accessing_external_resource_files" number="1.5.4" targetptr="ugr.tug.aae.accessing_external_resource_files">
             <ttl>Accessing External Resource Files</ttl>
@@ -189,11 +189,11 @@
       </div>
       <div element="section" href="#ugr.tug.aae.viewing_UIMA_objects_in_eclipse_debugger" number="1.7" targetptr="ugr.tug.aae.viewing_UIMA_objects_in_eclipse_debugger">
          <ttl>Viewing UIMA objects in the Eclipse debugger</ttl>
-         <xreftext>Section 1.7, “Viewing UIMA objects in the Eclipse debugger”</xreftext>
+         <xreftext>Section 1.7, “UIMA Objects in Eclipse Debugger”</xreftext>
       </div>
       <div element="section" href="#ugr.tug.aae.xml_intro_ae_descriptor" number="1.8" targetptr="ugr.tug.aae.xml_intro_ae_descriptor">
          <ttl>Introduction to Analysis Engine Descriptor XML Syntax</ttl>
-         <xreftext>Section 1.8, “Introduction to Analysis Engine Descriptor XML Syntax”</xreftext>
+         <xreftext>Section 1.8, “Analysis Engine XML Descriptor”</xreftext>
          <div element="section" href="#ugr.tug.aae.header_annotator_class_identification" number="1.8.1" targetptr="ugr.tug.aae.header_annotator_class_identification">
             <ttl>Header and Annotator Class Identification</ttl>
             <xreftext>Section 1.8.1, “Header and Annotator Class Identification”</xreftext>
@@ -523,11 +523,11 @@
          <div element="section" href="#ugr.tug.configuring_timeout_settings" number="3.6.6" targetptr="ugr.tug.configuring_timeout_settings">
             <ttl>Configuring Timeout Settings</ttl>
             <xreftext>Section 3.6.6, “Configuring Timeout Settings”</xreftext>
-            <div element="section" href="#d0e4196" number="3.6.6.1">
+            <div element="section" href="#ugr.tug.setting_client_timeout" number="3.6.6.1" targetptr="ugr.tug.setting_client_timeout">
                <ttl>Setting the Client Timeout</ttl>
                <xreftext>Section 3.6.6.1, “Setting the Client Timeout”</xreftext>
             </div>
-            <div element="section" href="#d0e4259" number="3.6.6.2">
+            <div element="section" href="#ugr.tug.setting_server_socket_timeout" number="3.6.6.2" targetptr="ugr.tug.setting_server_socket_timeout">
                <ttl>Setting the Server Socket Timeout</ttl>
                <xreftext>Section 3.6.6.2, “Setting the Server Socket Timeout”</xreftext>
             </div>
@@ -572,11 +572,11 @@
       </div>
       <div element="section" href="#ugr.tug.fc.adding_fc_to_aggregate" number="4.3" targetptr="ugr.tug.fc.adding_fc_to_aggregate">
          <ttl>Adding a Flow Controller to an Aggregate Analysis Engine</ttl>
-         <xreftext>Section 4.3, “Adding a Flow Controller to an Aggregate Analysis Engine”</xreftext>
+         <xreftext>Section 4.3, “Adding Flow Controller to an Aggregate”</xreftext>
       </div>
       <div element="section" href="#ugr.tug.fc.adding_fc_to_cpe" number="4.4" targetptr="ugr.tug.fc.adding_fc_to_cpe">
          <ttl>Adding a Flow Controller to a Collection Processing Engine</ttl>
-         <xreftext>Section 4.4, “Adding a Flow Controller to a Collection Processing Engine”</xreftext>
+         <xreftext>Section 4.4, “Adding Flow Controller to CPE”</xreftext>
       </div>
       <div element="section" href="#ugr.tug.fc.using_fc_with_cas_multipliers" number="4.5" targetptr="ugr.tug.fc.using_fc_with_cas_multipliers">
          <ttl>Using Flow Controllers with CAS Multipliers</ttl>
@@ -691,10 +691,10 @@
          </div>
          <div element="section" href="#ugr.tug.mvs.specifying_cas_view_for_single_view" number="6.4.3" targetptr="ugr.tug.mvs.specifying_cas_view_for_single_view">
             <ttl>Specifying the CAS View for a Single-View Component</ttl>
-            <xreftext>Section 6.4.3, “Specifying the CAS View for a Single-View Component”</xreftext>
+            <xreftext>Section 6.4.3, “CAS View for Single-View Parts”</xreftext>
             <obj element="para" href="#ugr.tug.mvs.sofa_mapping_leav_out_name" number="" targetptr="ugr.tug.mvs.sofa_mapping_leav_out_name">
                <ttl>???TITLE???</ttl>
-               <xreftext>Section 6.4.3, “Specifying the CAS View for a Single-View Component”</xreftext>
+               <xreftext>Section 6.4.3, “CAS View for Single-View Parts”</xreftext>
             </obj>
          </div>
          <div element="section" href="#ugr.tug.mvs.name_mapping_application" number="6.4.4" targetptr="ugr.tug.mvs.name_mapping_application">
@@ -736,7 +736,7 @@
       </div>
       <div element="section" href="#ugr.tug.mvs.sofa_incompatibilities_v1_v2" number="6.8" targetptr="ugr.tug.mvs.sofa_incompatibilities_v1_v2">
          <ttl>Sofa Incompatibilities between UIMA version 1 and version 2</ttl>
-         <xreftext>Section 6.8, “Sofa Incompatibilities between UIMA version 1 and version 2”</xreftext>
+         <xreftext>Section 6.8, “Sofa Incompatibilities: V1 and V2”</xreftext>
       </div>
    </div>
    <div element="chapter" href="#ugr.tug.cm" number="7" targetptr="ugr.tug.cm">
@@ -806,13 +806,13 @@
       <div element="section" href="#ugr.tug.cm.calling_cm_from_app" number="7.5" targetptr="ugr.tug.cm.calling_cm_from_app">
          <ttl>Calling a CAS Multiplier from an Application</ttl>
          <xreftext>Section 7.5, “Applications: Calling CAS Multipliers”</xreftext>
-         <div element="section" href="#d0e5951" number="7.5.1">
+         <div element="section" href="#ugr.tug.cm.retrieving_output_cases" number="7.5.1" targetptr="ugr.tug.cm.retrieving_output_cases">
             <ttl>Retrieving Output CASes from the CAS Multiplier</ttl>
-            <xreftext>Section 7.5.1, “Retrieving Output CASes from the CAS Multiplier”</xreftext>
+            <xreftext>Section 7.5.1, “Output CASes”</xreftext>
          </div>
-         <div element="section" href="#d0e6020" number="7.5.2">
+         <div element="section" href="#ugr.tug.cm.using_cm_with_other_aes" number="7.5.2" targetptr="ugr.tug.cm.using_cm_with_other_aes">
             <ttl>Using a CAS Multiplier with other Analysis Engines</ttl>
-            <xreftext>Section 7.5.2, “Using a CAS Multiplier with other Analysis Engines”</xreftext>
+            <xreftext>Section 7.5.2, “CAS Multipliers with other AEs”</xreftext>
          </div>
       </div>
       <div element="section" href="#ugr.tug.cm.using_cm_to_merge_cases" number="7.6" targetptr="ugr.tug.cm.using_cm_to_merge_cases">
@@ -820,7 +820,7 @@
          <xreftext>Section 7.6, “Merging with CAS Multipliers”</xreftext>
          <div element="section" href="#ugr.tug.cm.overview_of_how_to_merge_cases" number="7.6.1" targetptr="ugr.tug.cm.overview_of_how_to_merge_cases">
             <ttl>Overview of How to Merge CASes</ttl>
-            <xreftext>Section 7.6.1, “Merginging Overview”</xreftext>
+            <xreftext>Section 7.6.1, “CAS Merging Overview”</xreftext>
          </div>
          <div element="section" href="#ugr.tug.cm.example_cas_merger" number="7.6.2" targetptr="ugr.tug.cm.example_cas_merger">
             <ttl>Example CAS Merger</ttl>