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/03/14 23:12:10 UTC

svn commit: r518354 [12/21] - in /incubator/uima/site/trunk/uima-website: docs/ docs/downloads/releaseDocs/ docs/downloads/releaseDocs/2.1.0-incubating/ docs/downloads/releaseDocs/2.1.0-incubating/docs/ docs/downloads/releaseDocs/2.1.0-incubating/docs/...

Modified: incubator/uima/site/trunk/uima-website/xdocs/downloads.xml
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads.xml?view=diff&rev=518354&r1=518353&r2=518354
==============================================================================
--- incubator/uima/site/trunk/uima-website/xdocs/downloads.xml (original)
+++ incubator/uima/site/trunk/uima-website/xdocs/downloads.xml Wed Mar 14 15:11:54 2007
@@ -57,7 +57,7 @@
   <strong>Apache UIMA version 2.1.0-incubating</strong> 
   <br/>
   Release Date: March 14, 2007 <br/>
-  <a href="http://people.apache.org/dist/incubator/uima/2.1.0-incubating/RELEASE_NOTES.html">Release Notes</a>
+  <a href="downloads/releaseDocs/2.1.0-incubating/RELEASE_NOTES.html">Release Notes</a>
 </p>
 <p><strong>Binary Distributions</strong>
   <ul>

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/RELEASE_NOTES.html
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/RELEASE_NOTES.html?view=auto&rev=518354
==============================================================================
--- incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/RELEASE_NOTES.html (added)
+++ incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/RELEASE_NOTES.html Wed Mar 14 15:11:54 2007
@@ -0,0 +1,521 @@
+<html>
+<head>
+  <title>Apache UIMA v2.1.0 Releate Notes</title>
+</head>
+<body>
+<h1>Apache UIMA (Unstructured Information Management Architecture) v2.1.0 Release Notes</h1>
+
+<h2>Contents</h2>
+<p>
+<a href="#what.is.uima">1. What is UIMA?</a><br/>
+<a href="#major.changes">2. Major Changes in this Release</a><br/>
+<a href="#migrating">3. Migrating from IBM UIMA to Apache UIMA</a><br/>
+<a href="#get.involved">4. How to Get Involved</a><br/>
+<a href="#report.issues">5. How to Report Issues</a><br/>
+<a href="#list.issues">6. List of JIRA Issues Fixed in this Release</a>
+</p>  
+   
+<h2><a name="what.is.uima">1. What is UIMA?</a></h2>
+
+     <p>
+  			Unstructured Information Management applications are
+				software systems that analyze large volumes of
+				unstructured information in order to discover knowledge
+				that is relevant to an end user. UIMA is a framework and
+				SDK for developing such applications. An example UIM
+				application might ingest plain text and identify
+				entities, such as persons, places, organizations; or
+				relations, such as works-for or located-at. UIMA enables
+				such an application to be decomposed into components,
+				for example "language identification" -&gt; "language
+				specific segmentation" -&gt; "sentence boundary
+				detection" -&gt; "entity detection (person/place names
+				etc.)". Each component must implement interfaces defined
+				by the framework and must provide self-describing
+				metadata via XML descriptor files. The framework manages
+				these components and the data flow between them.
+				Components are written in Java or C++; the data that
+				flows between components is designed for efficient
+				mapping between these languages. UIMA additionally
+				provides capabilities to wrap components as network
+				services, and can scale to very large volumes by
+				replicating processing pipelines over a cluster of
+				networked nodes.
+			</p>
+                                                <p>
+				Apache UIMA is an Apache-licensed open source
+				implementation of the UIMA specification (that
+				specification is, in turn, being developed concurrently
+				by a technical committee within
+				<a href="http://www.oasis-open.org">OASIS</a>
+				, a standards organization). We invite and encourage you
+				to participate in both the implementation and
+				specification efforts.
+			</p>
+                                                <p>
+				UIMA is a component framework for analysing unstructured
+				content such as text, audio and video. It comprises an
+				SDK and tooling for composing and running analytic
+				components written in Java and C++, with some support
+				for Perl, Python and TCL.
+			</p>
+
+<h2><a name="major.changes">2. Major Changes in this Release</a></h2>
+<p>
+This section describes what has changed between version 2.0 and version 2.1 of 
+UIMA. A migration utility is provided which will make the required updates to 
+your Java code and descriptors. See Section 3, "Migrating from IBM UIMA to 
+Apache UIMA" for instructions on how to run the migration utility.
+</p> 
+  
+<h3>2.1. Java Package Name Changes</h3>
+<p>
+All of the UIMA Java package names have changed in Apache UIMA. They now start 
+with org.apache rather than com.ibm. There have been other changes as well. The 
+package name segment reference_impl has been shortened to impl, and some 
+segments have been reordered. For example 
+com.ibm.uima.reference_impl.analysis_engine has become 
+org.apache.uima.analysis_engine.impl. Tools are now consolidated under 
+org.apache.uima.tools and service adapters under org.apache.uima.adapter.
+</p>
+<p>
+The migration utility will replace all occurrences of IBM UIMA package names 
+with their Apache UIMA equivalents. It will not replace prefixes of package 
+names, so if your code uses a package called com.ibm.uima.myproject (although 
+that is not recommended), it will not be replaced.
+</p>  
+  
+<h3>2.2. XML Descriptor Changes</h3>
+<p>
+The XML namespace in UIMA component descriptors has changed from 
+http://uima.watson.ibm.com/resourceSpecifier to 
+http://uima.apache.org/resourceSpecifier. The value of the 
+&lt;frameworkImplementation> must now be org.apache.uima.java or 
+org.apache.uima.cpp. The migration script will apply these replacements.
+</p>
+  
+<h3>2.3. TCAS replaced by CAS</h3>
+<p>
+In Apache UIMA the TCAS interface has been removed. All uses of it must now be 
+replaced by the CAS interface. (All methods that used to be defined on TCAS 
+were moved to CAS in v2.0.) The method CAS.getTCAS() is replaced with 
+CAS.getCurrentView() and CAS.getTCAS(String) is replaced with 
+CAS.getView(String) . The following have also been removed and replaced with 
+the equivalent "CAS" variants: TCASException, TCASRuntimeException, TCasPool, 
+and CasCreationUtils.createTCas(...).
+</p>
+<p>
+The migration script will apply the necessary replacements.
+</p>
+  
+<h3>2.4. JCas Is Now an Interface</h3>
+<p>
+In previous versions, user code accessed the JCas class directly. In Apache 
+UIMA there is now an interface, org.apache.uima.jcas.JCas, which all JCas-based 
+user code must now use. Static methods that were previously on the JCas class 
+(and called from JCas cover classes generated by JCasGen) have been moved to 
+the new org.apache.uima.jcas.JCasRegistry class. The migration script will 
+apply the necessary replacements to your code, including any JCas cover classes 
+that are part of your codebase.
+</p>
+  
+<h3>2.5. JAR File names Have Changed</h3>
+<p>
+The UIMA JAR file names have changed slightly. Underscores have been replaced 
+with hyphens to be consistent with Apache naming conventions. For example 
+uima_core.jar is now uima-core.jar. Also uima_jcas_builtin_types.jar has been 
+renamed to uima-document-annotation.jar. Finally, the jVinci.jar file is now in
+the lib directory rather than the lib/vinci directory as was previously the 
+case. The migration script will apply the necessary replacements, for example to
+script files or Eclipse launch configurations. 
+</p>
+  
+<h3>2.6. Semantic Search Engine Repackaged</h3>
+<p>
+The versions of the UIMA SDK prior to the move into Apache came with a semantic 
+search engine. The Apache version does not include this search engine. The 
+search engine has been repackaged and is separately available from 
+<a href="http://www.alphaworks.ibm.com/tech/uima">http://www.alphaworks.ibm.com/tech/uima</a>. 
+The intent is to hook up (over time) with other open source search engines, 
+such as the Lucene search engine project in Apache.
+</p>
+
+<h2><a name="migrating">3. Migrating from IBM UIMA to Apache UIMA</a></h2>
+<p>
+Note: Before running the migration utility, be sure to back up your files, just 
+in case you encounter any problems, because the migration tool updates the 
+files in place in the directories where it finds them.
+</p>
+<p>
+The migration utility is run by executing the script file 
+apache-uima/bin/ibmUimaToApacheUima.bat (Windows) or 
+apache-uima/bin/ibmUimaToApacheUima.sh (UNIX). You must pass one argument: the 
+directory containing the files that you want to be migrated. Subdirectories 
+will be processed recursively.
+</p>
+<p>
+The script scans your files and applies the necessary updates, for example 
+replacing the com.ibm package names with the new org.apache package names. 
+</p>
+<p>
+The script will only attempt to modify files with the extensions: java, xml, 
+xmi, wsdd, properties, launch, bat, cmd, sh, ksh, or csh; and files with no 
+extension. Also, files with size greater than 1,000,000 bytes will be skipped. 
+(If you want the script to modify files with other extensions, you can edit 
+the script file and change the -ext argument appropriately.)
+</p>  
+<p>
+If the migration tool reports warnings, there may be a few additional steps to 
+take. The following two sections explain some simple manual changes that you
+might need to make to your code.
+</p>
+  
+<h3>3.1. JCas Cover Classes for DocumentAnnotation</h3>
+<p>
+If you have run JCasGen it is likely that you have the classes 
+com.ibm.uima.jcas.tcas.DocumentAnnotation and 
+com.ibm.uima.jcas.tcas.DocumentAnnotation_Type as part of your code. This 
+package name is no longer valid, and the migration utility does not move your 
+files between directories so it is unable to fix this.
+</p>
+<p>
+If you have not made manual modifications to these classes, the best solution 
+is usually to just delete these two classes (and their containing package). 
+There is a default version in the uima-document-annotation.jar file that is 
+included in Apache UIMA. If you have made custom changes, then you should not 
+delete the file but instead move it to the correct package 
+org.apache.uima.jcas.tcas. For more information about JCas and 
+DocumentAnnotation please see Section 5.5.4, 
+"Adding Features to DocumentAnnotation" in the 
+  <a href="docs/html/references/references.html">UIMA References</a> manual.
+</p>  
+  
+<h3>3.2. JCas.getDocumentAnnotation</h3>
+<p>
+The deprecated method JCas.getDocumentAnnotation has been removed. Its use 
+must be replaced with JCas.getDocumentAnnotationFs. The method 
+JCas.getDocumentAnnotationFs() returns type TOP, so your code must cast this to 
+type DocumentAnnotation. The reasons for this are described in Section 
+5.5.4, "Adding Features to DocumentAnnotation" in the 
+<a href="docs/html/references/references.html">UIMA References</a> manual.
+</p>
+  
+<h3>3.3. Rare Cases Where Additional Manual Migration is Necessary</h3>
+<p>
+For most users there should not be any additional migration steps necessary.
+However, if the migration tool reported an additional warning or if you are 
+having trouble getting your code to compile or run after running the migration, 
+please see Section 1.4.2. "Rare Cases Where Additional Manual Migration is 
+Necessary," in the <a href="docs/html/overview_and_setup/overview_and_setup.html">
+Overview and Setup</a> manual.
+</p>
+  
+<h2><a name="get.involved">4. How to Get Involved</a></h2>
+<p>
+The Apache UIMA project really needs and appreciates any contributions, 
+including documentation help, source code and feedback.  If you are interested
+in contributing, please visit 
+<a href="http://incubator.apache.org/uima/get-involved.html">
+  http://incubator.apache.org/uima/get-involved.html</a>.
+</p>
+  
+<h2><a name="report.issues">5. How to Report Issues</a></h2>
+<p>
+The Apache UIMA project uses JIRA for issue tracking.  Please report any 
+issues you find at 
+<a href="http://issues.apache.org/jira/browse/uima">http://issues.apache.org/jira/browse/uima</a>
+</p>
+  
+<h2><a name="list.issues">6. List of JIRA Issues Fixed in this Release</a></h2>
+<h2>Bug</h2>
+<ul>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-14'>UIMA-14</a>] - Plugin manifests still list IBM as the vendor</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-16'>UIMA-16</a>] - NullPointerException in UIMAFramework.newCollectionProcessingManager</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-20'>UIMA-20</a>] - PearMerger unit test failure</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-22'>UIMA-22</a>] - Tools still use IBM splashscreen</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-23'>UIMA-23</a>] - setUimaClassPath and adjustExamplePaths scripts have incorrect jar names</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-26'>UIMA-26</a>] - Incorrect paths in example descriptors and the adjustExamplePaths scripts</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-27'>UIMA-27</a>] - org.apache.uima.cas.test.SofaTest creates file that is not deleted afterwards; moreover, this file has been checked into SVN.</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-29'>UIMA-29</a>] - Can't call process twice on CPE</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-31'>UIMA-31</a>] - Document Analyzer doesn't save character encoding in preferences</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-34'>UIMA-34</a>] - Vinci service deployment descriptor timeoutPeriod parameter does not work.</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-40'>UIMA-40</a>] - CasAnnotationViewer doesn't support new primitive types</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-41'>UIMA-41</a>] - LowLevelCAS.ll_getTypeClass() needs to be updated for the new 2.0 types</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-43'>UIMA-43</a>] - The ';' path separator char is not  replaced with OS dependent char in installed PEAR</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-44'>UIMA-44</a>] - rename IBMResultPrinter class</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-46'>UIMA-46</a>] - Duplicate feature name on supertype and subtype does not work if subtype definition comes first in descriptor</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-57'>UIMA-57</a>] - UimacppAnalysisEngine should be named UimacppAnalysisComponent</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-58'>UIMA-58</a>] - Resources directory missing from examples project</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-61'>UIMA-61</a>] - CasCreationUtils.createCas(Collection) silently ignores TypeSystemDescription objects,</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-65'>UIMA-65</a>] - CAS.setSofaDataString on Initial View throws ArrayIndexOutOfBoundsException</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-75'>UIMA-75</a>] - In VinciService wrapper, &quot;serializerClassName&quot; parameter is unused</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-77'>UIMA-77</a>] - CasToInlineXml fails for new primitive types</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-79'>UIMA-79</a>] - Document Analyzer progress message sometimes says something like &quot;Processed 8 of 7 Documents&quot;</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-80'>UIMA-80</a>] - CVD document text is deleted after an analysis engine is loaded</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-81'>UIMA-81</a>] - feature values containing &quot;&lt;&gt;&quot; are not displayed correctly in CVD</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-83'>UIMA-83</a>] - CDE Parameter Type drop-down is not properly sized on Mac.</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-84'>UIMA-84</a>] - CDE's  &quot;Find AE&quot;  Dialog does not  work on Mac.</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-85'>UIMA-85</a>] - CDE &quot;Open in new window...&quot; feature does not work on Mac.</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-86'>UIMA-86</a>] - Aggregate descriptor that imports itself causes hang</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-94'>UIMA-94</a>] - Pear merger default output name uses &quot;tae&quot; - should use &quot;ae&quot;</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-99'>UIMA-99</a>] - CDE incorrect tooltip for configuration parameter value field</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-100'>UIMA-100</a>] - Flow Controller logger is not given the correct name</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-101'>UIMA-101</a>] - PEAR Installer prints warning messages on startup</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-102'>UIMA-102</a>] - Incubator icon on web page should link to incubator site, not UIMA site</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-105'>UIMA-105</a>] - Circular Imports Leave Duplicates</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-113'>UIMA-113</a>] - socket timeout exception is (sometimes?) embedded in sax exception, resulting in a retry</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-115'>UIMA-115</a>] - The TCAS class should be dropped</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-117'>UIMA-117</a>] - CVD Help-&gt;Manual menu item gives &quot;invalid url&quot; error dialog.</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-122'>UIMA-122</a>] - Sofa mapping should be removed from Vinci services</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-128'>UIMA-128</a>] - ll_setStringValue not checking if feature range is subtype of String with Allowed Values, not doing Allowed Value check</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-129'>UIMA-129</a>] - $main_root replacement does not work for components of a merged pear file.</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-130'>UIMA-130</a>] - ResourceCreationSpecifier.validate() provides no way to pass datapath information</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-133'>UIMA-133</a>] - PEAR Merger adds only 1 JAR file from the delegate 'lib' folder to the generated aggregate CLASSPATH</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-136'>UIMA-136</a>] - String subtype test case break Maven build</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-137'>UIMA-137</a>] - Import_implTest fails on mvn package</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-138'>UIMA-138</a>] - Example MeetingFinderCPE_withXmlDetagging.xml doesn't work</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-141'>UIMA-141</a>] - JCasGen - bring over missing templates and template build tool jet_expander</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-142'>UIMA-142</a>] - JCas version of getLocalFSData() returning wrong type</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-144'>UIMA-144</a>] - Wrong impl in JCasImpl for getView(local-view-name)</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-148'>UIMA-148</a>] - Calls to URL.equals and URL.hashCode should be removed</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-150'>UIMA-150</a>] - DebugFSLogicalStructure - fix cache setting for Unexpanded Feature Structures (found by Findbugs)</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-153'>UIMA-153</a>] - DocBook formatting fixes - style sheets and CSS wrong for table centering, plus fixes for CVD</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-163'>UIMA-163</a>] - CpeCasProcessors.removeCasProcessor always throws &quot;invalid index&quot; exception</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-165'>UIMA-165</a>] - Need JCAS fixes for DocumentatAnnotation and type merging</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-186'>UIMA-186</a>] - AnalysisEngine.setResultSpecification doesn't clear out previously cached result specification information</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-187'>UIMA-187</a>] - getSofaDataString() is documented in the manual but does not exist in the code</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-188'>UIMA-188</a>] - AnalysisEngine_implTest incorrectly failing on PowerMac platform</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-189'>UIMA-189</a>] - Maven building on *nix platforms including Mac OS X broken in several ways</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-190'>UIMA-190</a>] - Type priority test case failing with IBM JDK 1.5</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-191'>UIMA-191</a>] - CDE: adding feature value type in default namespace does not work correctly</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-192'>UIMA-192</a>] - Schema validation doesn't work with Sun Java 1.4, causes fatal error.</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-193'>UIMA-193</a>] - PEAR Encoding Test gives NullPointerException under Sun Java 1.4.2</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-195'>UIMA-195</a>] - Logging test fails when logger properties file and log file are specified for unit tests</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-196'>UIMA-196</a>] - IteratorTest.testIterator() fails with Sun Java 1.6</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-197'>UIMA-197</a>] - TypePriorityTest.testMain() fails with Sun Java 1.6</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-198'>UIMA-198</a>] - CPE Test Cases fail when run with &quot;mvn test&quot;</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-199'>UIMA-199</a>] - JMX Support has problems with AE names containing special characters (e.g. commas)</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-200'>UIMA-200</a>] - Excessive releases of CAS on error in Aggregate CasMultiplier</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-202'>UIMA-202</a>] - AnalysisEngineDescription.getDelegateAnalysisEngineSpecifiers() should only resolve delegate imports, not other imports</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-203'>UIMA-203</a>] - maven build for eclipse plugins is inconsistent - the runtime plugin may be missing the .jar packaging</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-204'>UIMA-204</a>] - Plugin builds have zip files with extra top level directories</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-205'>UIMA-205</a>] - CDE fails to add/rmv flow constraints when user-defined flow is specified without any flow constraints</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-206'>UIMA-206</a>] - setSofaDataXXX(xxx, mime) methods do not set sofa mime feature</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-207'>UIMA-207</a>] - Documentation errors</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-209'>UIMA-209</a>] - FeatureStructure.equals returns false for same FS obtained through different views</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-210'>UIMA-210</a>] - faulty use of .read(buffer...) in several places - not checking for fewer than expected bytes/chars read</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-213'>UIMA-213</a>] - DocumentAnalyzer/RunAE tools don't support XML detagging and Remote Vinci AEs</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-214'>UIMA-214</a>] - DocumentAnalyzer shouldn't have to re-contact service to get the typesystem</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-217'>UIMA-217</a>] - actions creating new instances which are subtypes of AnnotationBase should set the sofa ref</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-220'>UIMA-220</a>] - Failure in XCasToCasDataSaxHandlerTest on Sun Java 1.4.2</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-221'>UIMA-221</a>] - adjustExamplePaths.sh has incorrect jar file names in classpath</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-222'>UIMA-222</a>] - JavaDoc is not being built</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-223'>UIMA-223</a>] - JAR file name changes not mentioned in documentation or handled by migration script</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-225'>UIMA-225</a>] - doFullValidation fails for C++ Annotator Descriptor</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-226'>UIMA-226</a>] - In uimaj-examples some resource files are under src/main/java instead of src/main/resources</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-227'>UIMA-227</a>] - Distribution docs directory includes XXX_pdf_src.xml files</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-229'>UIMA-229</a>] - Bad error message if aggregate descriptor flow contains undefined key</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-230'>UIMA-230</a>] - CPE GUI sometimes won't start if JList widgets are in use</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-231'>UIMA-231</a>] - CPEGUI clearAll doesn't reset file chooser directory consistently</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-233'>UIMA-233</a>] - CAS View caching works incorrectly</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-234'>UIMA-234</a>] - CAS Multiplier &quot;internal&quot; CASes should have identical type system to CPE CAS Pool</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-244'>UIMA-244</a>] - CPE GUI Intermittent Failure on Startup</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-245'>UIMA-245</a>] - CPE GUI on exit says settings have been changed even when they haven't</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-247'>UIMA-247</a>] - Drop &quot;XCAS&quot; from name of Annotation Viewer GUI</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-250'>UIMA-250</a>] - ClassNotFoundException for org.apache.uima.adapter.ServiceDataCargo when SOAP service should be deployed</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-252'>UIMA-252</a>] - bold italics highlighting does not work in code sections of the html documentation</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-253'>UIMA-253</a>] - default path for CAS annotation viewer does not exist</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-256'>UIMA-256</a>] - CVD manual not displayed in distribution</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-257'>UIMA-257</a>] - Document Analyzer sometimes names style map file incorrectly</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-261'>UIMA-261</a>] - In Glossary section of docs, linked glossary terms are not rendered.</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-262'>UIMA-262</a>] - CAS Visual Debugger command line parameters does not work</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-263'>UIMA-263</a>] - CAS Visual Debugger shows an error message when a user tries to open the log file but not log file was written.</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-264'>UIMA-264</a>] - CAS Visual Debugger does not support CAS Multiplier components</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-266'>UIMA-266</a>] - DocumentAnalyzer also use wrong default directory docs/examples/data</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-272'>UIMA-272</a>] - CVD manual  &amp; help missing?</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-279'>UIMA-279</a>] - toXML method of ServiceAlias has an apparent infinite loop</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-281'>UIMA-281</a>] - org.apache.uima.pear.util.UIMAUtil.identifyUimaComponentCategory method may throw NullPointerException</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-283'>UIMA-283</a>] - CAS Merger example component does not work with CVD/old API call</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-284'>UIMA-284</a>] - Synchronization issues</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-285'>UIMA-285</a>] - shell scripts test if JAVA_HOME is not set, and if so, set it to an invalid value</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-286'>UIMA-286</a>] - Math.abs returns a negative number very occasionally, causing NameClient in jVinci to fail</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-288'>UIMA-288</a>] - NPE possible in PEAR Util XMLUtil printError method</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-289'>UIMA-289</a>] - CasProcessorDeploymentParamsImpl has incorrect equals test argument</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-290'>UIMA-290</a>] - Wrong logical connector || when &amp;&amp; was intended, CPMEngine</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-291'>UIMA-291</a>] - &quot;bad interpreter&quot; when using pearMerger.sh script on linux </li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-292'>UIMA-292</a>] - UIMA incompatible with Java Version 6</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-293'>UIMA-293</a>] - If CasCopier's destination CAS is set to a base CAS, annotations cannot be copied.</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-294'>UIMA-294</a>] - Sofa mapping failure in mixed CPE pipeline</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-297'>UIMA-297</a>] - Automatic bag index creates duplicate copies of FSs under some circumstances</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-298'>UIMA-298</a>] - XMI CAS Serializer can map two namespaces to the same XML NS prefix</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-300'>UIMA-300</a>] - DocumentAnalyzer cant be run by multiple users on the same machine</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-302'>UIMA-302</a>] - adjustExamplePaths scripts replace &quot;C:/Temp&quot; with &quot;temp&quot;</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-304'>UIMA-304</a>] - Document Analyzer HTML View Not Working</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-308'>UIMA-308</a>] - org.apache.uima.cas.impl.AnnotationBaseImpl.toString() bombs for base annotations without sofa.</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-310'>UIMA-310</a>] - CasCopier fails on null array elements</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-312'>UIMA-312</a>] - assembly of docs/html missing the css dirs and file</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-313'>UIMA-313</a>] - Flow Controller example Analysis Engine does not work properly</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-314'>UIMA-314</a>] - MeetingFinderCPE_Managed.xml doesn't run on Linux</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-315'>UIMA-315</a>] - CDE - hover in aggregate page supposed to show description - but isn't</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-317'>UIMA-317</a>] - MeetingFinderCPE_Managed.xml is duplicate of MeetingFinderCPE_Managed_Windows.xml</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-320'>UIMA-320</a>] - add LICENSE and NOTICE files to META-INF folder of a jar</li>
+</ul>
+
+<h2>Improvement</h2>
+<ul>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-9'>UIMA-9</a>] - Remove support for xi:include</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-10'>UIMA-10</a>] - Split JCas into interface and implementation</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-11'>UIMA-11</a>] - org.apache.itu package should be renamed</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-24'>UIMA-24</a>] - Uninformative error message when trying to create an AE from a descriptor whose frameworkImplementation is incorrect</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-28'>UIMA-28</a>] - 2.0 examples use deprecated methods</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-33'>UIMA-33</a>] - Do not use same timeout on GetMetadata as is used for Process</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-51'>UIMA-51</a>] - Add version number to XCAS (or maybe to CAS built-in typesystem?)</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-70'>UIMA-70</a>] - JavaDoc doesn't match impl</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-76'>UIMA-76</a>] - add new pear installer API to install a pear file easily out of an application</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-78'>UIMA-78</a>] - CPE descriptor should support URLs to reference components</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-90'>UIMA-90</a>] - Create eclipse run configurations for startVNS and startVinciService</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-91'>UIMA-91</a>] - Remove/hide CAS Initializer Panel in CPE GUI?</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-92'>UIMA-92</a>] - Add Logging to WhiteboardFlowController</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-93'>UIMA-93</a>] - Mailing list subscription instructions are not obvious</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-96'>UIMA-96</a>] - XML descriptor capitalization is inconsistent</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-97'>UIMA-97</a>] - OpenNLP wrapper examples should use new annotator interfaces</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-104'>UIMA-104</a>] - PackageInstaller and PackageInstallerException need class javadoc comments</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-110'>UIMA-110</a>] - TCAS.getAnnotationIndex(Type type) should throw exception if type is not a subtype of annotation.</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-112'>UIMA-112</a>] - Assembly should unpack into a directory</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-116'>UIMA-116</a>] - Always deliver the base CAS to the process method</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-119'>UIMA-119</a>] - Fix docs around result spec to reflect changed design</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-120'>UIMA-120</a>] - Logical Structure view of CAS: show view name in unexpanded form of CAS</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-121'>UIMA-121</a>] - Documentation Formatting improvements</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-126'>UIMA-126</a>] - add news section to the website</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-132'>UIMA-132</a>] - Provide better support for filenames with spaces in resource URL</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-134'>UIMA-134</a>] - Extend CasCopier to support multiple views</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-145'>UIMA-145</a>] - Port CVD documentation to DocBook</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-149'>UIMA-149</a>] - Cloning may fail for subclasses of ResultSpecification</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-156'>UIMA-156</a>] - CVD uses deprecated API for setting log file.</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-157'>UIMA-157</a>] - CAS / CasView API refactoring</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-160'>UIMA-160</a>] - Logger properties files live in root directory of distribution</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-161'>UIMA-161</a>] - adding documentation for PEAR API</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-171'>UIMA-171</a>] - Make CVD look-and-feel configurable</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-173'>UIMA-173</a>] - Create Default Bag Indexes when addFsToIndexes is called but no index has been defined for that type</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-177'>UIMA-177</a>] - JCasGen should notify user when &quot;type merging&quot; has occurred</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-178'>UIMA-178</a>] - CVD can not display long string values</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-179'>UIMA-179</a>] - Need method JFSIndexRepository.getAllIndexedFS(type)</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-183'>UIMA-183</a>] - (CAS/JCAS).getAnnotationIndex  should declare return type AnnotationIndex</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-184'>UIMA-184</a>] - Add getAnnotationIndex() to JCas API, impl via forwarding to CAS</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-185'>UIMA-185</a>] - Make CAS use same Exception concept as the rest of UIMA</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-208'>UIMA-208</a>] - Merge TaeSpecifierSchema.xsd  with resourceSpecifierSchema.xsd</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-212'>UIMA-212</a>] - Turn on socket keepAlive in jVinci</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-215'>UIMA-215</a>] - CasCopier constructor should take source CAS as argument</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-216'>UIMA-216</a>] - Add getSupportedXCasVersions to Vinci Services</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-218'>UIMA-218</a>] - Creating an subtype of an AnnotationBase in a &quot;base&quot; CAS gives wrong / misleading error message &quot;Can't create FS of type xxx with this method&quot;</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-235'>UIMA-235</a>] - improve example tutorial code to use Matcher / find() in default mode</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-237'>UIMA-237</a>] - Change source build to include only the docbook system zip files</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-241'>UIMA-241</a>] - Migration Tool improvement</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-243'>UIMA-243</a>] - Update EMF installation instructions</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-246'>UIMA-246</a>] - Add documentation summarizing timeouts and how to set them</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-249'>UIMA-249</a>] - PDF, html and javadocs documentation should be in separate subdirectories </li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-251'>UIMA-251</a>] - CVD should not use a banner</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-259'>UIMA-259</a>] - add an overview HTML document with links to the different HTML book</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-265'>UIMA-265</a>] - impove CAS Multiplier documentation that CAS Multipliers does not work in CVD and CPE</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-274'>UIMA-274</a>] - CDE add new feature - not making visible the additional input fields for element types when range type changed</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-305'>UIMA-305</a>] - Move FileUtils to non-internal package</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-311'>UIMA-311</a>] - Docbook build script usability issue</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-318'>UIMA-318</a>] - Broken hyperlinks to html docbooks in Release_Notes</li>
+</ul>
+<h2>New Feature</h2>
+<ul>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-49'>UIMA-49</a>] - Migration tools from IBM UIMA to Apache UIMA</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-62'>UIMA-62</a>] - Provide an example CasMultiplier that merges CASes</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-152'>UIMA-152</a>] - add component test utilities project</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-164'>UIMA-164</a>] - Add source distribution</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-224'>UIMA-224</a>] - Add release signing and verification info</li>
+</ul>
+<h2>Task</h2>
+<ul>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-1'>UIMA-1</a>] - Reorganize SVN</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-2'>UIMA-2</a>] - Fix licensing issues with Eclipse plugins</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-3'>UIMA-3</a>] - Split big book into 4, rewrite to be appropriate for Apache UIMA, redo in DocBook, get it generate high-quality PDF</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-5'>UIMA-5</a>] - re-organize docbook project and update ant build scripts</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-6'>UIMA-6</a>] - Include documentation in assembly</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-7'>UIMA-7</a>] - Add javadocs to build</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-8'>UIMA-8</a>] - Add examples to assembly</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-15'>UIMA-15</a>] - Semantic Search repackaging</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-21'>UIMA-21</a>] - Update Version Number</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-36'>UIMA-36</a>] - Change descriptor XML namespaces from uima.watson.ibm.com to uima.apache.org</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-37'>UIMA-37</a>] - Track down and replace remaining occurrences of IBM</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-45'>UIMA-45</a>] - Review and clean up unit tests</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-48'>UIMA-48</a>] - Reformat all source code to match adopted conventions</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-64'>UIMA-64</a>] - Remove the package org.apache.uima.tttypesystem</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-103'>UIMA-103</a>] - Add license headers to batch files and shell scripts</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-123'>UIMA-123</a>] - Remove VinciCasObjectProcessorService_impl</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-135'>UIMA-135</a>] - Remove Entity View mode from DocumentAnalyzer</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-159'>UIMA-159</a>] - Add license/notices etc. files for distribution</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-167'>UIMA-167</a>] - Find and verify Docbook license(s)</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-168'>UIMA-168</a>] - undo CommonCas change</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-172'>UIMA-172</a>] - Status page needs updating</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-174'>UIMA-174</a>] - Remove @author tags from Java source</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-176'>UIMA-176</a>] - put apache board statuses into a page linked from our uima website and update uima project status page to reflect this</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-180'>UIMA-180</a>] - Update &quot;What's new in Apache UIMA 2.0&quot; section of documentation</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-211'>UIMA-211</a>] - Restructure directory uimaj-tools/src/main/org.apache.uima.jcasgen</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-232'>UIMA-232</a>] - Documentation screenshots must be redone</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-240'>UIMA-240</a>] - Fixup Readme - needs to have other material in it, and should have a file extension I think</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-254'>UIMA-254</a>] - Create Release Notes</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-260'>UIMA-260</a>] - Set env vars in setUimaClasspath and the Eclipser run configs</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-295'>UIMA-295</a>] - Restore microscope icon as the window icon for our tools</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-296'>UIMA-296</a>] - Remove DocBook build files from source distribution</li>
+
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-299'>UIMA-299</a>] - Remove SNAPSHOT from version numbers prior to release</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-332'>UIMA-332</a>] - Fix copyrights, notice, status page for 2.1 release</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-333'>UIMA-333</a>] - Fix issues for Maven artifact packaging</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-334'>UIMA-334</a>] - Elimnate redundant LICENSE, NOTICE, DISCLAIMER files from source distribution</li>
+<li>[<a href='https://issues.apache.org/jira/browse/UIMA-335'>UIMA-335</a>] - Remove extra license file in src distr</li>
+</ul>      
+</body>
+</html>
\ No newline at end of file

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/blank.png
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/blank.png?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/blank.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/1.gif
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/1.gif?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/1.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/1.png
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/1.png?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/1.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/10.gif
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/10.gif?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/10.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/10.png
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/10.png?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/10.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/11.gif
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/11.gif?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/11.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/11.png
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/11.png?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/11.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/12.gif
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/12.gif?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/12.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/12.png
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/12.png?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/12.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/13.gif
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/13.gif?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/13.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/13.png
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/13.png?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/13.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/14.gif
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/14.gif?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/14.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/14.png
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/14.png?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/14.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/15.gif
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/15.gif?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/15.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/15.png
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/15.png?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/15.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/2.gif
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/2.gif?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/2.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/2.png
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/2.png?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/2.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/3.gif
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/3.gif?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/3.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/3.png
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/3.png?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/3.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/4.gif
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/4.gif?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/4.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/4.png
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/4.png?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/4.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/5.gif
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/5.gif?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/5.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/5.png
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/5.png?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/5.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/6.gif
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/6.gif?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/6.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/6.png
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/6.png?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/6.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/7.gif
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/7.gif?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/7.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/7.png
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/7.png?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/7.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/8.gif
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/8.gif?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/8.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/8.png
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/8.png?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/8.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/9.gif
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/9.gif?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/9.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/9.png
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/9.png?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/callouts/9.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/caution.gif
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/caution.gif?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/caution.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/caution.png
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/caution.png?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/caution.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/caution.svg
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/caution.svg?view=auto&rev=518354
==============================================================================
--- incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/caution.svg (added)
+++ incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/caution.svg Wed Mar 14 15:11:54 2007
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!-- Generator: Adobe Illustrator 9.0, SVG Export Plug-In  -->
+<!DOCTYPE svg [
+	<!ENTITY st0 "fill:#FFFFFF;stroke:none;">
+	<!ENTITY st1 "fill:#FFFFFF;stroke-width:6.6112;stroke-linecap:round;stroke-linejoin:round;">
+	<!ENTITY st2 "stroke:#FFFFFF;stroke-width:6.6112;">
+	<!ENTITY st3 "fill:none;stroke:none;">
+	<!ENTITY st4 "fill-rule:nonzero;clip-rule:nonzero;stroke:#000000;stroke-miterlimit:4;">
+	<!ENTITY st5 "stroke:none;">
+]>
+<svg  width="48pt" height="48pt" viewBox="0 0 48 48" xml:space="preserve" xmlns="http://www.w3.org/2000/svg">
+	<g id="Layer_x0020_3" style="&st4;">
+		<g>
+			<path style="&st2;" d="M41.7,35.3L26.6,9.4c-0.6-1-1.7-1.7-2.9-1.6c-1.2,0-2.3,0.7-2.9,1.7L6.3,35.4c-0.6,1-0.6,2.3,0,3.3c0.6,1,1.7,1.6,2.9,1.6h29.6c1.2,0,2.3-0.6,2.9-1.7c0.6-1,0.6-2.3,0-3.3z"/>
+			<path style="&st1;" d="M23.7,11L9.2,37h29.6L23.7,11z"/>
+			<path style="&st0;" d="M23.7,11.9L10.3,36.1h27.5l-14-24.1z"/>
+			<g>
+				<path style="&st5;" d="M24.1,34c-1.1,0-1.8-0.8-1.8-1.8c0-1.1,0.7-1.8,1.8-1.8c1.1,0,1.8,0.7,1.8,1.8c0,1-0.7,1.8-1.8,1.8h0z M22.9,29.3l-0.4-9.1h3.2l-0.4,9.1h-2.3z"/>
+			</g>
+		</g>
+	</g>
+	<g id="crop_x0020_marks" style="&st4;">
+		<path style="&st3;" d="M48,48H0V0h48v48z"/>
+	</g>
+</svg>

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/caution.tif
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/caution.tif?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/caution.tif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/draft.png
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/draft.png?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/draft.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/home.gif
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/home.gif?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/home.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/home.png
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/home.png?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/home.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/home.svg
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/home.svg?view=auto&rev=518354
==============================================================================
--- incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/home.svg (added)
+++ incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/home.svg Wed Mar 14 15:11:54 2007
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!-- Generator: Adobe Illustrator 9.0, SVG Export Plug-In  -->
+<!DOCTYPE svg [
+	<!ENTITY st0 "fill-rule:nonzero;clip-rule:nonzero;fill:#FFFFFF;stroke:#000000;stroke-miterlimit:4;">
+	<!ENTITY st1 "fill:none;stroke:none;">
+	<!ENTITY st2 "fill:#000000;">
+	<!ENTITY st3 "fill:none;stroke:#FFFFFF;stroke-width:6.3469;stroke-linejoin:round;">
+	<!ENTITY st4 "fill-rule:evenodd;clip-rule:evenodd;stroke:none;">
+	<!ENTITY st5 "fill-rule:nonzero;clip-rule:nonzero;stroke:#000000;stroke-miterlimit:4;">
+]>
+<svg  width="48pt" height="48pt" viewBox="0 0 48 48" xml:space="preserve" xmlns="http://www.w3.org/2000/svg">
+	<g id="Layer_x0020_3" style="&st0;">
+		<g style="&st4;">
+			<path style="&st3;" d="M22.9,7.1L5.1,21.8l0,0c-0.3,0.3-0.5,0.8-0.5,1.2c0,0.2,0,0.4,0.1,0.6c0.3,0.6,0.9,1,1.6,1c0,0,1.1,0,2.2,0c0,2.4,0,14.2,0,14.2c0,1.1,0.8,1.9,1.8,1.9h27.4c1.1,0,1.9-0.9,1.9-2c0,0,0-11.8,0-14.2c1,0,2,0,2,0c0.8,0,1.4-0.5,1.7-1.2
+				c0.1-0.2,0.1-0.4,0.1-0.6c0-0.5-0.2-1-0.7-1.4c0,0-3.6-3-4.5-3.7c0-1.2,0-6.9,0-6.9c0-1.2-0.8-2-2-2h-4.8c-1,0-1.7,0.6-1.9,1.5c-1.9-1.6-4.1-3.5-4.1-3.5l0.1,0.1c-0.7-0.7-1.8-0.8-2.7-0.1z"/>
+			<path style="&st2;" d="M22.9,7.1L5.1,21.8l0,0c-0.3,0.3-0.5,0.8-0.5,1.2c0,0.2,0,0.4,0.1,0.6c0.3,0.6,0.9,1,1.6,1c0,0,1.1,0,2.2,0c0,2.4,0,14.2,0,14.2c0,1.1,0.8,1.9,1.8,1.9h27.4c1.1,0,1.9-0.9,1.9-2c0,0,0-11.8,0-14.2c1,0,2,0,2,0c0.8,0,1.4-0.5,1.7-1.2
+				c0.1-0.2,0.1-0.4,0.1-0.6c0-0.5-0.2-1-0.7-1.4c0,0-3.6-3-4.5-3.7c0-1.2,0-6.9,0-6.9c0-1.2-0.8-2-2-2h-4.8c-1,0-1.7,0.6-1.9,1.5c-1.9-1.6-4.1-3.5-4.1-3.5l0.1,0.1c-0.7-0.7-1.8-0.8-2.7-0.1z"/>
+			<path style="&st2;" d="M41.8,22.8l-5.1-4.2v-0.1L31,13.7v0l-6.5-5.5C24.2,8,24,8,23.8,8.2L6.2,22.9c-0.1,0.1-0.1,0.3,0.1,0.3h1.6H10h28.1h1.2h2.3c0.2,0,0.4-0.2,0.2-0.4z"/>
+			<path d="M35.8,16.8l0-5.1c0-0.2-0.1-0.4-0.3-0.4h-3.2c-0.2,0-0.3,0.1-0.3,0.3v2.2l3.9,2.9z"/>
+			<path d="M11.9,24.7V37c0,0.3,0.1,0.4,0.3,0.4h23.6c0.3,0,0.4-0.2,0.4-0.4V24.7H11.9z"/>
+		</g>
+	</g>
+	<g id="crop_x0020_marks" style="&st5;">
+		<path style="&st1;" d="M48,48H0V0h48v48z"/>
+	</g>
+</svg>

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/important.gif
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/important.gif?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/important.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/important.png
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/important.png?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/important.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/important.svg
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/important.svg?view=auto&rev=518354
==============================================================================
--- incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/important.svg (added)
+++ incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/important.svg Wed Mar 14 15:11:54 2007
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!-- Generator: Adobe Illustrator 9.0, SVG Export Plug-In  -->
+<!DOCTYPE svg [
+	<!ENTITY st0 "fill:#FFFFFF;stroke:none;">
+	<!ENTITY st1 "fill:#FFFFFF;stroke-width:6.6112;stroke-linecap:round;stroke-linejoin:round;">
+	<!ENTITY st2 "stroke:#FFFFFF;stroke-width:6.6112;">
+	<!ENTITY st3 "fill:none;stroke:none;">
+	<!ENTITY st4 "fill-rule:nonzero;clip-rule:nonzero;stroke:#000000;stroke-miterlimit:4;">
+	<!ENTITY st5 "stroke:none;">
+]>
+<svg  width="48pt" height="48pt" viewBox="0 0 48 48" xml:space="preserve" xmlns="http://www.w3.org/2000/svg">
+	<g id="Layer_x0020_3" style="&st4;">
+		<g>
+			<path style="&st2;" d="M41.7,35.3L26.6,9.4c-0.6-1-1.7-1.7-2.9-1.6c-1.2,0-2.3,0.7-2.9,1.7L6.3,35.4c-0.6,1-0.6,2.3,0,3.3c0.6,1,1.7,1.6,2.9,1.6h29.6c1.2,0,2.3-0.6,2.9-1.7c0.6-1,0.6-2.3,0-3.3z"/>
+			<path style="&st1;" d="M23.7,11L9.2,37h29.6L23.7,11z"/>
+			<path style="&st0;" d="M23.7,11.9L10.3,36.1h27.5l-14-24.1z"/>
+			<g>
+				<path style="&st5;" d="M24.1,34c-1.1,0-1.8-0.8-1.8-1.8c0-1.1,0.7-1.8,1.8-1.8c1.1,0,1.8,0.7,1.8,1.8c0,1-0.7,1.8-1.8,1.8h0z M22.9,29.3l-0.4-9.1h3.2l-0.4,9.1h-2.3z"/>
+			</g>
+		</g>
+	</g>
+	<g id="crop_x0020_marks" style="&st4;">
+		<path style="&st3;" d="M48,48H0V0h48v48z"/>
+	</g>
+</svg>

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/important.tif
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/important.tif?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/important.tif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/next.gif
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/next.gif?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/next.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/next.png
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/next.png?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/next.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/next.svg
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/next.svg?view=auto&rev=518354
==============================================================================
--- incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/next.svg (added)
+++ incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/next.svg Wed Mar 14 15:11:54 2007
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!-- Generator: Adobe Illustrator 9.0, SVG Export Plug-In  -->
+<!DOCTYPE svg [
+	<!ENTITY st0 "fill:none;stroke:none;">
+	<!ENTITY st1 "fill:#FFFFFF;stroke:#FFFFFF;stroke-width:7.5901;stroke-linejoin:round;">
+	<!ENTITY st2 "fill-rule:nonzero;clip-rule:nonzero;stroke:#000000;stroke-miterlimit:4;">
+	<!ENTITY st3 "stroke:none;">
+]>
+<svg  width="48pt" height="48pt" viewBox="0 0 48 48" xml:space="preserve" xmlns="http://www.w3.org/2000/svg">
+	<g id="Layer_x0020_3" style="&st2;">
+		<g>
+			<path style="&st1;" d="M22.4,41.1c0,0.3,0.3,0.3,0.5,0.2l16.6-16.9c0.5-0.5,0.4-0.7,0-1L22.9,6.7c-0.1-0.1-0.4-0.1-0.4,0.1v10H8.9c-0.3,0-0.5,0.2-0.5,0.4l0,13.3C8.4,30.9,8.6,31,9,31h13.5l-0.1,10.1z"/>
+			<path style="&st3;" d="M22.4,41.1c0,0.3,0.3,0.3,0.5,0.2l16.6-16.9c0.5-0.5,0.4-0.7,0-1L22.9,6.7c-0.1-0.1-0.4-0.1-0.4,0.1v10H8.9c-0.3,0-0.5,0.2-0.5,0.4l0,13.3C8.4,30.9,8.6,31,9,31h13.5l-0.1,10.1z"/>
+		</g>
+	</g>
+	<g id="crop_x0020_marks" style="&st2;">
+		<path style="&st0;" d="M48,48H0V0h48v48z"/>
+	</g>
+</svg>

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/note.gif
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/note.gif?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/note.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/note.png
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/note.png?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/note.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/note.svg
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/note.svg?view=auto&rev=518354
==============================================================================
--- incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/note.svg (added)
+++ incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/note.svg Wed Mar 14 15:11:54 2007
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!-- Generator: Adobe Illustrator 9.0, SVG Export Plug-In  -->
+<!DOCTYPE svg [
+	<!ENTITY st0 "fill:none;stroke:#FFFFFF;stroke-width:12.1438;stroke-linejoin:round;">
+	<!ENTITY st1 "fill:none;stroke-width:1.2429;">
+	<!ENTITY st2 "fill:#FFFFFF;stroke:none;">
+	<!ENTITY st3 "fill:none;stroke:#FFFFFF;stroke-width:12.7649;stroke-linejoin:round;">
+	<!ENTITY st4 "fill:#FFFFFF;stroke-width:6.3824;stroke-linejoin:round;">
+	<!ENTITY st5 "fill:none;stroke:none;">
+	<!ENTITY st6 "fill-rule:nonzero;clip-rule:nonzero;stroke:#000000;stroke-miterlimit:4;">
+	<!ENTITY st7 "fill:#FFFFFF;stroke:#FFFFFF;stroke-width:12.7649;stroke-linejoin:round;">
+	<!ENTITY st8 "stroke:none;">
+	<!ENTITY st9 "fill:none;stroke-width:4.9715;stroke-linejoin:round;">
+]>
+<svg  xmlns="http://www.w3.org/2000/svg" width="48pt" height="48pt" viewBox="0 0 48 48" xml:space="preserve">
+	<g id="Layer_x0020_1" style="&st6;">
+		<path style="&st0;" d="M35.7,19.8v18.9H11V8.8h13.9l10.8,11z"/>
+		<path style="&st3;" d="M38.7,30.4L25,16.7l-7.7-3l2.7,8.7l13.3,13.4l5.4-5.4z"/>
+		<path style="&st7;" d="M35.7,8.8H11v29.9h24.7V8.8z"/>
+		<path style="&st4;" d="M35.7,8.8H11v29.9h24.7V8.8z"/>
+		<path style="&st2;" d="M35.7,8.8H11v29.9h24.7V8.8z"/>
+	</g>
+	<g id="Layer_x0020_4" style="&st6;">
+		<path style="&st9;" d="M38.7,30.4L25,16.7l-7.7-3l2.7,8.7l13.3,13.4l5.4-5.4z"/>
+		<path style="&st8;" d="M38.7,30.4L25,16.7l-7.7-3l2.7,8.7l13.3,13.4l5.4-5.4z"/>
+		<path style="&st8;" d="M20.6,14.7l-2.5,2.5L17,13.4l3.6,1.3z"/>
+		<path style="&st1;" d="M19.6,22.2l3-0.3l2.4-2.4l0.4-2.8"/>
+		<path style="&st2;" d="M20.4,14.9L18.3,17l1.6,5.2l2.7-0.3l2.4-2.4l0.3-2.4l-5-2.2z"/>
+	</g>
+	<g id="crop" style="&st6;">
+		<path style="&st5;" d="M48,48H0V0h48v48z"/>
+	</g>
+</svg>

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/note.tif
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/note.tif?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/note.tif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/overview_and_setup/conceptual_overview_files/image002.png
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/overview_and_setup/conceptual_overview_files/image002.png?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/overview_and_setup/conceptual_overview_files/image002.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/overview_and_setup/conceptual_overview_files/image004.png
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/overview_and_setup/conceptual_overview_files/image004.png?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/overview_and_setup/conceptual_overview_files/image004.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/overview_and_setup/conceptual_overview_files/image006.png
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/overview_and_setup/conceptual_overview_files/image006.png?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/overview_and_setup/conceptual_overview_files/image006.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/overview_and_setup/conceptual_overview_files/image008.png
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/overview_and_setup/conceptual_overview_files/image008.png?view=auto&rev=518354
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/site/trunk/uima-website/xdocs/downloads/releaseDocs/2.1.0-incubating/docs/html/images/overview_and_setup/conceptual_overview_files/image008.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream