Author: rec
Date: Tue Jun 28 09:55:23 2022
New Revision: 1902306
URL: http://svn.apache.org/viewvc?rev=1902306&view=rev
Log:
[UIMA-6449] Ruta 3.2.0 release
Added:
uima/site/trunk/uima-website/docs/d/ruta-current/README.md
uima/site/trunk/uima-website/docs/d/ruta-current/RELEASE_NOTES.md
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/css/
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/css/maven-base.css
(with props)
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/css/maven-theme.css
(with props)
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/css/print.css
(with props)
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/css/site.css
(with props)
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/collapsed.gif
(with props)
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/expanded.gif
(with props)
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/external.png
(with props)
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/icon_error_sml.gif
(with props)
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/icon_info_sml.gif
(with props)
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/icon_success_sml.gif
(with props)
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/icon_warning_sml.gif
(with props)
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/logos/
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/logos/build-by-maven-black.png
(with props)
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/logos/build-by-maven-white.png
(with props)
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/logos/maven-feather.png
(with props)
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/newwindow.png
(with props)
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/jira-report.html
(with props)
Modified:
uima/site/trunk/uima-website/docs/d/ruta-current/tools.ruta.book.html
uima/site/trunk/uima-website/docs/d/ruta-current/tools.ruta.book.pdf
uima/site/trunk/uima-website/docs/downloads.html
uima/site/trunk/uima-website/docs/news.html
uima/site/trunk/uima-website/xdocs/news.xml
uima/site/trunk/uima-website/xdocs/stylesheets/project.xml
Added: uima/site/trunk/uima-website/docs/d/ruta-current/README.md
URL:
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/d/ruta-current/README.md?rev=1902306&view=auto
==============================================================================
--- uima/site/trunk/uima-website/docs/d/ruta-current/README.md (added)
+++ uima/site/trunk/uima-website/docs/d/ruta-current/README.md Tue Jun 28
09:55:23 2022
@@ -0,0 +1,166 @@
+[](https://search.maven.org/search?q=g:org.apache.uima%20a:ruta*)
+
+[](https://ci-builds.apache.org/job/UIMA/job/uima-ruta/job/main/)
[](https://ci-builds.apache.org/job/UIMA/job/uima-ruta/job/main-v2/)
+
+What is Apache UIMA Ruta?
+-------------------------
+
+Apache UIMA Ruta⢠is a rule-based script language supported by Eclipse-based
tooling. The language is designed to enable rapid development of text
processing applications within Apache UIMAâ¢. A special focus lies on the
intuitive and flexible domain specific language for defining patterns of
annotations. Writing rules for information extraction or other text processing
applications is a tedious process. The Eclipse-based tooling for UIMA Ruta,
called the Apache UIMA Ruta Workbench, was created to support the user and to
facilitate every step when writing UIMA Ruta rules. Both the Ruta rule language
and the UIMA Ruta Workbench integrate smoothly with Apache UIMA.
+
+
+Rule Language
+-------------
+
+The UIMA Ruta language is an imperative rule language extended with scripting
elements. A rule defines a
+pattern of annotations with additional conditions. If this pattern applies,
then the actions of the rule are performed
+on the matched annotations. A rule is composed of a sequence of rule elements
and a rule element usually consists of four parts:
+A matching condition, an optional quantifier, a list of conditions and a list
of actions.
+The matching condition is typically a type of an annotation by which the rule
element matches on the covered text of one of those annotations.
+The quantifier specifies, whether it is necessary that the rule element
successfully matches and how often the rule element may match.
+The list of conditions specifies additional constraints that the matched text
or annotations need to fulfill. The list of actions defines
+the consequences of the rule and often creates new annotations or modifies
existing annotations.
+
+
+The following example rule consists of three rule elements. The first one
(`ANY...`) matches on every token, which has a covered text that occurs in a
word lists, named `MonthsList`.
+The second rule element (`PERIOD?`) is optional and does not need to be
fulfilled, which is indicated by the quantifier `?`. The last rule element
(`NUM...`) matches
+on numbers that fulfill the regular expression `REGEXP(".{2,4}")` and are
therefore at least two characters to a maximum of four characters long.
+If this rule successfully matches on a text passage, then its three actions
are executed: An annotation of the type `Month` is created for the first rule
element,
+an annotation of the type `Year` is created for the last rule element and an
annotation of the type `Date`
+is created for the span of all three rule elements. If the word list contains
the correct entries, then this rule matches on strings like
+`Dec. 2004`, `July 85` or `11.2008` and creates the corresponding annotations.
+
+~~~~
+(ANY{INLIST(MonthsList) -> Month} PERIOD? @NUM{REGEXP(".{2,4}") -> Year}){->
Date};
+~~~~
+
+Here is a short overview of additional features of the rule language:
+
+* Expressions and variables
+* Import and execution of external components
+* Flexible matching with filtering
+* Modularization in different files or blocks
+* Control structures, e.g., for windowing
+* Score-based extraction
+* Modification
+* Html support
+* Dictionaries
+* Extensible language definition
+
+
+Workbench
+---------
+
+The UIMA Ruta Workbench was created to facilitate all steps in creating
Analysis Engines based on the UIMA Ruta language.
+Here is a short overview of included features:
+
+**Editing support:** The full-featured editor for the UIMA Ruta language
provides syntax and semantic highlighting,
+syntax checking, context-sensitive auto-completion, template-based completion,
open declaration and more.
+
+**Rule Explanation:** Each step in the matching process can be explained: This
includes how often a rule was applied,
+which condition was not fulfilled, or by which rule a specific annotation was
created. Additionally, profile information
+about the runtime performance can be accessed.
+
+**Automatic Validation:** UIMA Ruta scripts can automatically validated
against a set of annotated documents (F1 score, test-driven development)
+and even against unlabeled documents (constraint-driven evaluation).
+
+**Rule learning:** The supervised learning algorithms of the included
TextRuler framework are able to induce rules
+and, therefore, enable semi-automatic development of rule-based components.
+
+**Query:** Rules can be used as query statements in order to investigate
annotated documents.
+
+
+The UIMA Ruta Workbench can be installed via Eclipse update sites:
+
+* for UIMA 2: <a
href="https://downloads.apache.org/uima/eclipse-update-site/">https://downloads.apache.org/uima/eclipse-update-site/</a>
+* for UIMA 3: <a
href="https://downloads.apache.org/uima/eclipse-update-site-v3/">https://downloads.apache.org/uima/eclipse-update-site-v3/</a>
+
+
+Building from the Source Distribution
+-------------------------------------
+
+We use Maven 3.0 and Java 8 or later for building; download this if needed,
+and set the environment variable MAVEN_OPTS to -Xmx800m.
+
+Then do the build by going into the UIMA Ruta directory, and issuing the
command
+
+ mvn clean install
+
+This builds everything except the ...source-release.zip file. If you want that,
+change the command to
+
+ mvn clean install -Papache-release
+
+For more details, please see https://uima.apache.org/building-uima.html
+
+
+How to Get Involved
+-------------------
+
+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
+[http://uima.apache.org/get-involved.html](http://uima.apache.org/get-involved.html).
+
+
+How to Report Issues
+--------------------
+
+The Apache UIMA project uses JIRA for issue tracking. Please report any issues
you find at
+[our issue tracker](http://issues.apache.org/jira/browse/uima).
+
+
+Useful tips
+-----------
+
+This product was originally released as Apache UIMA TextMarker. The UIMA Ruta
Workbench provides
+a command for updating old projects. Please right-click on a project and
select "UIMA Ruta -> Update Project".
+
+The UIMA Ruta analysis engine requires type priorities for the correct
execution of rules.
+If a CAS is created using the CasCreationUtils, please provide the type
priorities, e.g., by:
+
+ URL tpUrl =
this.getClass().getResource("/org/apache/uima/ruta/engine/TypePriorities.xml");
+ TypePriorities typePriorities =
UIMAFramework.getXMLParser().parseTypePriorities(
+ new XMLInputSource(tpUrl));
+ CAS cas = CasCreationUtils.createCas(descriptor, typePriorities, new
FsIndexDescription[0]);
+
+Using the `jcasgen-maven-plugin` may cause problems if it creates duplicate
classes for the
+internal UIMA Ruta types (overwriting the implementation of RutaBasic).
Depending on the location
+of the type system descriptors, the plugin should be configured to be limited
on the project,
+or the UIMA Ruta type system descriptors should explicitly be excluded:
+
+ <configuration>
+ <typeSystemExcludes>
+ <typeSystemExclude>/**/BasicTypeSystem.xml</typeSystemExclude>
+ <typeSystemExclude>/**/InternalTypeSystem.xml</typeSystemExclude>
+ </typeSystemExcludes>
+ </configuration>
+
+
+Useful links
+------------
+
+* [Apache UIMA](https://uima.apache.org)
+* [Apache UIMA Ruta
Documentation](https://uima.apache.org/d/ruta-current/tools.ruta.book.html)
+* [Averbis Ruta Training material](https://github.com/averbis/ruta-training)
(external)
+
+
+Reference
+---------
+
+If you use UIMA Ruta to support academic research, then please consider citing
the following paper as appropriate:
+
+~~~~
+@article{NLE:10051335,
+ author = {Kluegl, Peter and Toepfer, Martin and Beck, Philip-Daniel and
Fette, Georg and Puppe, Frank},
+ title = {UIMA Ruta: Rapid development of rule-based information extraction
applications},
+ journal = {Natural Language Engineering},
+ volume = {22},
+ issue = {01},
+ month = {1},
+ year = {2016},
+ issn = {1469-8110},
+ pages = {1--40},
+ numpages = {40},
+ doi = {10.1017/S1351324914000114},
+ URL = {https://journals.cambridge.org/article_S1351324914000114},
+}
+~~~~
\ No newline at end of file
Added: uima/site/trunk/uima-website/docs/d/ruta-current/RELEASE_NOTES.md
URL:
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/d/ruta-current/RELEASE_NOTES.md?rev=1902306&view=auto
==============================================================================
--- uima/site/trunk/uima-website/docs/d/ruta-current/RELEASE_NOTES.md (added)
+++ uima/site/trunk/uima-website/docs/d/ruta-current/RELEASE_NOTES.md Tue Jun
28 09:55:23 2022
@@ -0,0 +1,59 @@
+<!--
+***************************************************************
+* Licensed to the Apache Software Foundation (ASF) under one
+* or more contributor license agreements. See the NOTICE file
+* distributed with this work for additional information
+* regarding copyright ownership. The ASF licenses this file
+* to you under the Apache License, Version 2.0 (the
+* "License"); you may not use this file except in compliance
+* with the License. You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing,
+* software distributed under the License is distributed on an
+* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+* KIND, either express or implied. See the License for the
+* specific language governing permissions and limitations
+* under the License.
+***************************************************************
+-->
+
+# Apache UIMA Ruta (TM) v3.2.0
+
+Apache UIMA Ruta™ is a rule-based script language supported by
Eclipse-based tooling.
+The language is designed to enable rapid development of text processing
applications within Apache UIMA™.
+A special focus lies on the intuitive and flexible domain specific language
for defining
+patterns of annotations. The Eclipse-based tooling for Ruta, called the Ruta
Workbench,
+was created to support the user and to facilitate every step when writing Ruta
rules. Both the
+Ruta rule language and the Ruta Workbench integrate smoothly with Apache UIMA.
+
+This is a feature and bugfix release.
+
+## Notable changes in this release
+
+* [UIMA-6411] - Avoid creation of `RutaBasics` for bad annotations
+* [UIMA-6406] - Removing an annotation inside a `BLOCK` only takes effect
outside the block
+* [UIMA-6408] - No type check of features in `TRANSFER`
+* [UIMA-6409] - Possible endless wildcard lookahead in combination with
subtokens
+* [UIMA-6414] - Missing match for optional after sidestep out of composed
+* [UIMA-6404] - `@` with quantifier ignores matches
+* [UIMA-6405] - Local variable not captured properly in a wildcard matching
condition.
+* [UIMA-6461] - Wrong argument to `contains()`
+* [UIMA-6399] - `RutaPatternCache` prevents `CPEEngine` from terminating
+* [UIMA-6383] - TRIE - Wordlist entry not annotated
+* [UIMA-6394] - Label assignment in alternative match causes problems
+
+A [full list of
issues](https://issues.apache.org/jira/issues/?jql=project%20%3D%20UIMA%20AND%20fixVersion%20%3D%203.2.0ruta)
addressed in this release can be found on issue tracker.
+
+Please use the [mailing lists](https://uima.apache.org/mail-lists.html) for
feedback and the [issue tracker](https://issues.apache.org/jira/browse/uima) to
report bugs.
+
+
+## Supported Platforms
+
+UIMA Ruta 3.2.0 should be used in combination with
+
+- Java 1.8 or higher
+- UIMA Java SDK 3.3.0 or higher
+- uimaFIT 3.3.0 or higher
+- Spring Framework 5.3.20 or higher
Added:
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/css/maven-base.css
URL:
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/css/maven-base.css?rev=1902306&view=auto
==============================================================================
---
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/css/maven-base.css
(added)
+++
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/css/maven-base.css
Tue Jun 28 09:55:23 2022
@@ -0,0 +1,155 @@
+body {
+ margin: 0px;
+ padding: 0px;
+}
+img {
+ border:none;
+}
+table {
+ padding:0px;
+ width: 100%;
+ margin-left: -2px;
+ margin-right: -2px;
+}
+acronym {
+ cursor: help;
+ border-bottom: 1px dotted #feb;
+}
+table.bodyTable th, table.bodyTable td {
+ padding: 2px 4px 2px 4px;
+ vertical-align: top;
+}
+div.clear{
+ clear:both;
+ visibility: hidden;
+}
+div.clear hr{
+ display: none;
+}
+#bannerLeft, #bannerRight {
+ font-size: xx-large;
+ font-weight: bold;
+}
+#bannerLeft img, #bannerRight img {
+ margin: 0px;
+}
+.xleft, #bannerLeft img {
+ float:left;
+}
+.xright, #bannerRight {
+ float:right;
+}
+#banner {
+ padding: 0px;
+}
+#banner img {
+ border: none;
+}
+#breadcrumbs {
+ padding: 3px 10px 3px 10px;
+}
+#leftColumn {
+ width: 170px;
+ float:left;
+ overflow: auto;
+}
+#bodyColumn {
+ margin-right: 1.5em;
+ margin-left: 197px;
+}
+#legend {
+ padding: 8px 0 8px 0;
+}
+#navcolumn {
+ padding: 8px 4px 0 8px;
+}
+#navcolumn h5 {
+ margin: 0;
+ padding: 0;
+ font-size: small;
+}
+#navcolumn ul {
+ margin: 0;
+ padding: 0;
+ font-size: small;
+}
+#navcolumn li {
+ list-style-type: none;
+ background-image: none;
+ background-repeat: no-repeat;
+ background-position: 0 0.4em;
+ padding-left: 16px;
+ list-style-position: outside;
+ line-height: 1.2em;
+ font-size: smaller;
+}
+#navcolumn li.expanded {
+ background-image: url(../images/expanded.gif);
+}
+#navcolumn li.collapsed {
+ background-image: url(../images/collapsed.gif);
+}
+#navcolumn li.none {
+ text-indent: -1em;
+ margin-left: 1em;
+}
+#poweredBy {
+ text-align: center;
+}
+#navcolumn img {
+ margin-top: 10px;
+ margin-bottom: 3px;
+}
+#poweredBy img {
+ display:block;
+ margin: 20px 0 20px 17px;
+}
+#search img {
+ margin: 0px;
+ display: block;
+}
+#search #q, #search #btnG {
+ border: 1px solid #999;
+ margin-bottom:10px;
+}
+#search form {
+ margin: 0px;
+}
+#lastPublished {
+ font-size: x-small;
+}
+.navSection {
+ margin-bottom: 2px;
+ padding: 8px;
+}
+.navSectionHead {
+ font-weight: bold;
+ font-size: x-small;
+}
+.section {
+ padding: 4px;
+}
+#footer {
+ padding: 3px 10px 3px 10px;
+ font-size: x-small;
+}
+#breadcrumbs {
+ font-size: x-small;
+ margin: 0pt;
+}
+.source {
+ padding: 12px;
+ margin: 1em 7px 1em 7px;
+}
+.source pre {
+ margin: 0px;
+ padding: 0px;
+}
+#navcolumn img.imageLink, .imageLink {
+ padding-left: 0px;
+ padding-bottom: 0px;
+ padding-top: 0px;
+ padding-right: 2px;
+ border: 0px;
+ margin: 0px;
+}
Propchange:
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/css/maven-base.css
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/css/maven-base.css
------------------------------------------------------------------------------
svn:mime-type = text/css
Added:
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/css/maven-theme.css
URL:
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/css/maven-theme.css?rev=1902306&view=auto
==============================================================================
---
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/css/maven-theme.css
(added)
+++
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/css/maven-theme.css
Tue Jun 28 09:55:23 2022
@@ -0,0 +1,141 @@
+body {
+ padding: 0px 0px 10px 0px;
+}
+body, td, select, input, li{
+ font-family: Verdana, Helvetica, Arial, sans-serif;
+ font-size: 13px;
+}
+code{
+ font-family: Courier, monospace;
+ font-size: 13px;
+}
+a {
+ text-decoration: none;
+}
+a:link {
+ color:#36a;
+}
+a:visited {
+ color:#47a;
+}
+a:active, a:hover {
+ color:#69c;
+}
+#legend li.externalLink {
+ background: url(../images/external.png) left top no-repeat;
+ padding-left: 18px;
+}
+a.externalLink, a.externalLink:link, a.externalLink:visited,
a.externalLink:active, a.externalLink:hover {
+ background: url(../images/external.png) right center no-repeat;
+ padding-right: 18px;
+}
+#legend li.newWindow {
+ background: url(../images/newwindow.png) left top no-repeat;
+ padding-left: 18px;
+}
+a.newWindow, a.newWindow:link, a.newWindow:visited, a.newWindow:active,
a.newWindow:hover {
+ background: url(../images/newwindow.png) right center no-repeat;
+ padding-right: 18px;
+}
+h2 {
+ padding: 4px 4px 4px 6px;
+ border: 1px solid #999;
+ color: #900;
+ background-color: #ddd;
+ font-weight:900;
+ font-size: x-large;
+}
+h3 {
+ padding: 4px 4px 4px 6px;
+ border: 1px solid #aaa;
+ color: #900;
+ background-color: #eee;
+ font-weight: normal;
+ font-size: large;
+}
+h4 {
+ padding: 4px 4px 4px 6px;
+ border: 1px solid #bbb;
+ color: #900;
+ background-color: #fff;
+ font-weight: normal;
+ font-size: large;
+}
+h5 {
+ padding: 4px 4px 4px 6px;
+ color: #900;
+ font-size: normal;
+}
+p {
+ line-height: 1.3em;
+ font-size: small;
+}
+#breadcrumbs {
+ border-top: 1px solid #aaa;
+ border-bottom: 1px solid #aaa;
+ background-color: #ccc;
+}
+#leftColumn {
+ margin: 10px 0 0 5px;
+ border: 1px solid #999;
+ background-color: #eee;
+}
+#navcolumn h5 {
+ font-size: smaller;
+ border-bottom: 1px solid #aaaaaa;
+ padding-top: 2px;
+ color: #000;
+}
+
+table.bodyTable th {
+ color: white;
+ background-color: #bbb;
+ text-align: left;
+ font-weight: bold;
+}
+
+table.bodyTable th, table.bodyTable td {
+ font-size: 1em;
+}
+
+table.bodyTable tr.a {
+ background-color: #ddd;
+}
+
+table.bodyTable tr.b {
+ background-color: #eee;
+}
+
+.source {
+ border: 1px solid #999;
+}
+dl {
+ padding: 4px 4px 4px 6px;
+ border: 1px solid #aaa;
+ background-color: #ffc;
+}
+dt {
+ color: #900;
+}
+#organizationLogo img, #projectLogo img, #projectLogo span{
+ margin: 8px;
+}
+#banner {
+ border-bottom: 1px solid #fff;
+}
+.errormark, .warningmark, .donemark, .infomark {
+ background: url(../images/icon_error_sml.gif) no-repeat;
+}
+
+.warningmark {
+ background-image: url(../images/icon_warning_sml.gif);
+}
+
+.donemark {
+ background-image: url(../images/icon_success_sml.gif);
+}
+
+.infomark {
+ background-image: url(../images/icon_info_sml.gif);
+}
+
Propchange:
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/css/maven-theme.css
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/css/maven-theme.css
------------------------------------------------------------------------------
svn:mime-type = text/css
Added:
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/css/print.css
URL:
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/css/print.css?rev=1902306&view=auto
==============================================================================
--- uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/css/print.css
(added)
+++ uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/css/print.css
Tue Jun 28 09:55:23 2022
@@ -0,0 +1,7 @@
+#banner, #footer, #leftcol, #breadcrumbs, .docs #toc, .docs .courtesylinks,
#leftColumn, #navColumn {
+ display: none !important;
+}
+#bodyColumn, body.docs div.docs {
+ margin: 0 !important;
+ border: none !important
+}
Propchange:
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/css/print.css
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/css/print.css
------------------------------------------------------------------------------
svn:mime-type = text/css
Added: uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/css/site.css
URL:
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/css/site.css?rev=1902306&view=auto
==============================================================================
--- uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/css/site.css
(added)
+++ uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/css/site.css
Tue Jun 28 09:55:23 2022
@@ -0,0 +1 @@
+/* You can override this file with your own styles */
\ No newline at end of file
Propchange:
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/css/site.css
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/css/site.css
------------------------------------------------------------------------------
svn:mime-type = text/css
Added:
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/collapsed.gif
URL:
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/collapsed.gif?rev=1902306&view=auto
==============================================================================
Binary file - no diff available.
Propchange:
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/collapsed.gif
------------------------------------------------------------------------------
svn:mime-type = image/gif
Added:
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/expanded.gif
URL:
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/expanded.gif?rev=1902306&view=auto
==============================================================================
Binary file - no diff available.
Propchange:
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/expanded.gif
------------------------------------------------------------------------------
svn:mime-type = image/gif
Added:
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/external.png
URL:
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/external.png?rev=1902306&view=auto
==============================================================================
Binary file - no diff available.
Propchange:
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/external.png
------------------------------------------------------------------------------
svn:mime-type = image/png
Added:
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/icon_error_sml.gif
URL:
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/icon_error_sml.gif?rev=1902306&view=auto
==============================================================================
Binary file - no diff available.
Propchange:
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/icon_error_sml.gif
------------------------------------------------------------------------------
svn:mime-type = image/gif
Added:
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/icon_info_sml.gif
URL:
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/icon_info_sml.gif?rev=1902306&view=auto
==============================================================================
Binary file - no diff available.
Propchange:
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/icon_info_sml.gif
------------------------------------------------------------------------------
svn:mime-type = image/gif
Added:
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/icon_success_sml.gif
URL:
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/icon_success_sml.gif?rev=1902306&view=auto
==============================================================================
Binary file - no diff available.
Propchange:
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/icon_success_sml.gif
------------------------------------------------------------------------------
svn:mime-type = image/gif
Added:
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/icon_warning_sml.gif
URL:
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/icon_warning_sml.gif?rev=1902306&view=auto
==============================================================================
Binary file - no diff available.
Propchange:
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/icon_warning_sml.gif
------------------------------------------------------------------------------
svn:mime-type = image/gif
Added:
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/logos/build-by-maven-black.png
URL:
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/logos/build-by-maven-black.png?rev=1902306&view=auto
==============================================================================
Binary file - no diff available.
Propchange:
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/logos/build-by-maven-black.png
------------------------------------------------------------------------------
svn:mime-type = image/png
Added:
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/logos/build-by-maven-white.png
URL:
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/logos/build-by-maven-white.png?rev=1902306&view=auto
==============================================================================
Binary file - no diff available.
Propchange:
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/logos/build-by-maven-white.png
------------------------------------------------------------------------------
svn:mime-type = image/png
Added:
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/logos/maven-feather.png
URL:
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/logos/maven-feather.png?rev=1902306&view=auto
==============================================================================
Binary file - no diff available.
Propchange:
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/logos/maven-feather.png
------------------------------------------------------------------------------
svn:mime-type = image/png
Added:
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/newwindow.png
URL:
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/newwindow.png?rev=1902306&view=auto
==============================================================================
Binary file - no diff available.
Propchange:
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/images/newwindow.png
------------------------------------------------------------------------------
svn:mime-type = image/png
Added:
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/jira-report.html
URL:
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/jira-report.html?rev=1902306&view=auto
==============================================================================
---
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/jira-report.html
(added)
+++
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/jira-report.html
Tue Jun 28 09:55:23 2022
@@ -0,0 +1,163 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2022-06-10 -->
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+ <head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+ <title>JIRA Report - JIRA Report</title>
+ <style type="text/css" media="all">
+ @import url("./css/maven-base.css");
+ @import url("./css/maven-theme.css");
+ @import url("./css/site.css");
+ </style>
+ <link rel="stylesheet" href="./css/print.css" type="text/css"
media="print" />
+ <meta name="Date-Revision-yyyymmdd" content="20220610" />
+ <meta http-equiv="Content-Language" content="en" />
+
+ </head>
+ <body class="composite">
+ <div id="banner">
+ <div class="clear">
+ <hr/>
+ </div>
+ </div>
+ <div id="breadcrumbs">
+
+
+ <div class="xleft">
+ <span id="publishDate">Last Published: 2022-06-10</span>
+ | <span id="projectVersion">Version:
${project.version}</span>
+ </div>
+ <div class="xright">
+
+ </div>
+ <div class="clear">
+ <hr/>
+ </div>
+ </div>
+ <div id="leftColumn">
+ <div id="navcolumn">
+
+
+ <a href="http://maven.apache.org/"
title="Built by Maven" class="poweredBy">
+ <img class="poweredBy" alt="Built by Maven"
src="./images/logos/maven-feather.png" />
+ </a>
+
+
+ </div>
+ </div>
+ <div id="bodyColumn">
+ <div id="contentBox">
+ <div class="section">
+<h2>JIRA Report<a name="JIRA_Report"></a></h2>
+<table border="0" class="bodyTable">
+<tr class="a">
+<th>Type</th>
+<th>Key</th>
+<th>Status</th>
+<th>Summary</th></tr>
+<tr class="b">
+<td>Bug</td>
+<td><a class="externalLink"
href="https://issues.apache.org/jira/browse/UIMA-6383">UIMA-6383</a></td>
+<td>Resolved</td>
+<td>Ruta: TRIE - Wordlist entry not annotated</td></tr>
+<tr class="a">
+<td>Bug</td>
+<td><a class="externalLink"
href="https://issues.apache.org/jira/browse/UIMA-6387">UIMA-6387</a></td>
+<td>Resolved</td>
+<td>Update p2 repo URLs from http to https</td></tr>
+<tr class="b">
+<td>Bug</td>
+<td><a class="externalLink"
href="https://issues.apache.org/jira/browse/UIMA-6394">UIMA-6394</a></td>
+<td>Resolved</td>
+<td>Ruta: label assignment in alternative match causes problems</td></tr>
+<tr class="a">
+<td>Bug</td>
+<td><a class="externalLink"
href="https://issues.apache.org/jira/browse/UIMA-6396">UIMA-6396</a></td>
+<td>Resolved</td>
+<td>uimaFIT maven plugin mixes up test and compile scopes</td></tr>
+<tr class="b">
+<td>Bug</td>
+<td><a class="externalLink"
href="https://issues.apache.org/jira/browse/UIMA-6399">UIMA-6399</a></td>
+<td>Resolved</td>
+<td>RutaPatternCache prevents CPEEngine from terminating</td></tr>
+<tr class="a">
+<td>Bug</td>
+<td><a class="externalLink"
href="https://issues.apache.org/jira/browse/UIMA-6404">UIMA-6404</a></td>
+<td>Resolved</td>
+<td>Ruta: @ with quantifier ignores matches</td></tr>
+<tr class="b">
+<td>Bug</td>
+<td><a class="externalLink"
href="https://issues.apache.org/jira/browse/UIMA-6405">UIMA-6405</a></td>
+<td>Resolved</td>
+<td>Local variable not captured properly in a wildcard matching
condition.</td></tr>
+<tr class="a">
+<td>Bug</td>
+<td><a class="externalLink"
href="https://issues.apache.org/jira/browse/UIMA-6406">UIMA-6406</a></td>
+<td>Resolved</td>
+<td>Removing an annotation inside a BLOCK only takes effect outside the
block</td></tr>
+<tr class="b">
+<td>Bug</td>
+<td><a class="externalLink"
href="https://issues.apache.org/jira/browse/UIMA-6408">UIMA-6408</a></td>
+<td>Resolved</td>
+<td>Ruta: No type check of features in TRANSFER</td></tr>
+<tr class="a">
+<td>Bug</td>
+<td><a class="externalLink"
href="https://issues.apache.org/jira/browse/UIMA-6409">UIMA-6409</a></td>
+<td>Resolved</td>
+<td>Ruta: possible endless wildcard lookahead in combination with
subtokens</td></tr>
+<tr class="b">
+<td>Bug</td>
+<td><a class="externalLink"
href="https://issues.apache.org/jira/browse/UIMA-6414">UIMA-6414</a></td>
+<td>Resolved</td>
+<td>Ruta: missing match for optional after sidestep out of composed</td></tr>
+<tr class="a">
+<td>Bug</td>
+<td><a class="externalLink"
href="https://issues.apache.org/jira/browse/UIMA-6458">UIMA-6458</a></td>
+<td>Resolved</td>
+<td>Spurious "parsedVersion.osgiVersion" in file names in
target</td></tr>
+<tr class="b">
+<td>Bug</td>
+<td><a class="externalLink"
href="https://issues.apache.org/jira/browse/UIMA-6461">UIMA-6461</a></td>
+<td>Resolved</td>
+<td>Wrong argument to contains()</td></tr>
+<tr class="a">
+<td>Bug</td>
+<td><a class="externalLink"
href="https://issues.apache.org/jira/browse/UIMA-6462">UIMA-6462</a></td>
+<td>Resolved</td>
+<td>Avoid deploy broken checksum files for p2content.xml and artifacts.xml in
feature modules</td></tr>
+<tr class="b">
+<td>Improvement</td>
+<td><a class="externalLink"
href="https://issues.apache.org/jira/browse/UIMA-6411">UIMA-6411</a></td>
+<td>Resolved</td>
+<td>Ruta: avoid creation of RutaBasics for bad annotations</td></tr>
+<tr class="a">
+<td>Improvement</td>
+<td><a class="externalLink"
href="https://issues.apache.org/jira/browse/UIMA-6426">UIMA-6426</a></td>
+<td>Resolved</td>
+<td>Upgrade to UIMA Java SDK 3.3.0</td></tr>
+<tr class="b">
+<td>Improvement</td>
+<td><a class="externalLink"
href="https://issues.apache.org/jira/browse/UIMA-6443">UIMA-6443</a></td>
+<td>Resolved</td>
+<td>Fresh Eclipse update site for every release</td></tr>
+<tr class="a">
+<td>Improvement</td>
+<td><a class="externalLink"
href="https://issues.apache.org/jira/browse/UIMA-6447">UIMA-6447</a></td>
+<td>Resolved</td>
+<td>Update dependencies (Ruta 3.2.0)</td></tr></table></div>
+ </div>
+ </div>
+ <div class="clear">
+ <hr/>
+ </div>
+ <div id="footer">
+ <div class="xright">
+ Copyright © All Rights Reserved.
+
+ </div>
+ <div class="clear">
+ <hr/>
+ </div>
+ </div>
+ </body>
+</html>
Propchange:
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/jira-report.html
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/jira-report.html
------------------------------------------------------------------------------
svn:mime-type = text/html