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

svn commit: r557069 - in /incubator/uima/uimaj/trunk/uima-docbooks/src/docbook/tutorials_and_users_guides: annotator_analysis_engine_guide.xml tug.aas.xml tug.fc.xml

Author: schor
Date: Tue Jul 17 14:49:12 2007
New Revision: 557069

URL: http://svn.apache.org/viewvc?view=rev&rev=557069
Log:
no Jira - fix 3 cases of lines too long in PDF generation

Modified:
    incubator/uima/uimaj/trunk/uima-docbooks/src/docbook/tutorials_and_users_guides/annotator_analysis_engine_guide.xml
    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.fc.xml

Modified: incubator/uima/uimaj/trunk/uima-docbooks/src/docbook/tutorials_and_users_guides/annotator_analysis_engine_guide.xml
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uima-docbooks/src/docbook/tutorials_and_users_guides/annotator_analysis_engine_guide.xml?view=diff&rev=557069&r1=557068&r2=557069
==============================================================================
--- incubator/uima/uimaj/trunk/uima-docbooks/src/docbook/tutorials_and_users_guides/annotator_analysis_engine_guide.xml (original)
+++ incubator/uima/uimaj/trunk/uima-docbooks/src/docbook/tutorials_and_users_guides/annotator_analysis_engine_guide.xml Tue Jul 17 14:49:12 2007
@@ -2231,7 +2231,7 @@
       <title>Header and Annotator Class Identification</title>
       
       
-      <programlisting><![CDATA[<?xml version="1.0" encoding="UTF-8" ?> 
+      <programlisting><?db-font-size 80% ?><![CDATA[<?xml version="1.0" encoding="UTF-8" ?> 
 <!--  Descriptor for the example RoomNumberAnnotator. --> 
 <analysisEngineDescription xmlns="http://uima.apache.org/resourceSpecifier">
   <frameworkImplementation>org.apache.uima.java</frameworkImplementation> 
@@ -2425,7 +2425,7 @@
         <title>Aggregate Analysis Engine Descriptor</title>
         
         
-        <programlisting><![CDATA[<?xml version="1.0" encoding="UTF-8" ?> 
+        <programlisting><?db-font-size 80% ?><![CDATA[<?xml version="1.0" encoding="UTF-8" ?> 
 <analysisEngineDescription xmlns="http://uima.apache.org/resourceSpecifier">
   <frameworkImplementation>org.apache.uima.java</frameworkImplementation> 
   <primitive>false</primitive> 

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=557069&r1=557068&r2=557069
==============================================================================
--- 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 Tue Jul 17 14:49:12 2007
@@ -99,7 +99,7 @@
         that the variable <quote>aCas</quote> holds a reference to a CAS:</para>
       
       
-      <programlisting>aCas.<emphasis role="bold">setSofaDataString</emphasis>(document_text_string, mime_type_string);
+      <programlisting><?db-font-size 80% ?>aCas.<emphasis role="bold">setSofaDataString</emphasis>(document_text_string, mime_type_string);
 aCas.<emphasis role="bold">setSofaDataArray</emphasis>(feature_structure_primitive_array, mime_type_string);
 aCas.<emphasis role="bold">setSofaDataURI</emphasis>(uri_string, mime_type_string);</programlisting>
       

Modified: incubator/uima/uimaj/trunk/uima-docbooks/src/docbook/tutorials_and_users_guides/tug.fc.xml
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uima-docbooks/src/docbook/tutorials_and_users_guides/tug.fc.xml?view=diff&rev=557069&r1=557068&r2=557069
==============================================================================
--- incubator/uima/uimaj/trunk/uima-docbooks/src/docbook/tutorials_and_users_guides/tug.fc.xml (original)
+++ incubator/uima/uimaj/trunk/uima-docbooks/src/docbook/tutorials_and_users_guides/tug.fc.xml Tue Jul 17 14:49:12 2007
@@ -120,8 +120,10 @@
         <title>The WhiteboardFlowController Class</title>
         
         
-        <programlisting>public class WhiteboardFlowController extends CasFlowController_ImplBase {
-  public Flow computeFlow(CAS aCAS) throws AnalysisEngineProcessException {
+        <programlisting>public class WhiteboardFlowController 
+          extends CasFlowController_ImplBase {
+  public Flow computeFlow(CAS aCAS) 
+          throws AnalysisEngineProcessException {
     WhiteboardFlow flow = new WhiteboardFlow();
     flow.setCas(aCAS);
     return flow;