svn commit: r1870516 - in /uima/site/trunk/uima-website: docs/doc-uimaj-cookbook.html docs/index.html xdocs/dev-eclipse-plugin-archiving.xml xdocs/doc-uimaj-cookbook.xml xdocs/index.xml

2019-11-27 Thread schor
Author: schor
Date: Wed Nov 27 17:06:18 2019
New Revision: 1870516

URL: http://svn.apache.org/viewvc?rev=1870516=rev
Log:
no jira - replace some http: with https:

Modified:
uima/site/trunk/uima-website/docs/doc-uimaj-cookbook.html
uima/site/trunk/uima-website/docs/index.html
uima/site/trunk/uima-website/xdocs/dev-eclipse-plugin-archiving.xml
uima/site/trunk/uima-website/xdocs/doc-uimaj-cookbook.xml
uima/site/trunk/uima-website/xdocs/index.xml

Modified: uima/site/trunk/uima-website/docs/doc-uimaj-cookbook.html
URL: 
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/doc-uimaj-cookbook.html?rev=1870516=1870515=1870516=diff
==
--- uima/site/trunk/uima-website/docs/doc-uimaj-cookbook.html (original)
+++ uima/site/trunk/uima-website/docs/doc-uimaj-cookbook.html Wed Nov 27 
17:06:18 2019
@@ -306,14 +306,14 @@
covering type, then you can stop iterating as soon as the start 
position you reach, + the largest span, is less than
the start of the annotation you're trying to cover.
 This is used internally in version 3's 
-   http://uima.apache.org/d/uimaj-current/version_3_users_guide.html#uv3.select.annot.subselect;>select
 framework
+   https://uima.apache.org/d/uimaj-current/version_3_users_guide.html#uv3.select.annot.subselect;>select
 framework
to speed up 
the covering kind of iteration.
 There are many other 
examples, but the principle is the same: start the iteration "close to" the 
right spot, 
   perhaps moving backwards instead of forwards, and end the iteration 
as soon as you can logically say that
   no more suitable feature structures would be found. 
 Use UIMA Version 3's 
select framework
-The http://uima.apache.org/d/uimaj-current/version_3_users_guide.html#uv3.select;>select
 framework 
+The https://uima.apache.org/d/uimaj-current/version_3_users_guide.html#uv3.select;>select
 framework 
incorporates many of the popular use cases for doing iterations 
that we've seen, into a Java friendly approach that
automatically uses optimized iterators and can produce Java 
Streams, as well.
 
@@ -399,11 +399,11 @@
 other way around.
 To make this work, you need 
to specify the type priorities. This is a global setting for your application.
 See 
-http://uima.apache.org/d/uimaj-current/references.html#ugr.ref.xml.component_descriptor.aes.primitive;>
+https://uima.apache.org/d/uimaj-current/references.html#ugr.ref.xml.component_descriptor.aes.primitive;>
   type priorities (scroll down to find it) for 
how to specify this.
 Avoiding type 
priorities
 Often, the use of type 
priorities gets in the way.  With UIMA Version 3, the 
-http://uima.apache.org/d/uimaj-current/version_3_users_guide.html#uv3.select;>select
 framework
+https://uima.apache.org/d/uimaj-current/version_3_users_guide.html#uv3.select;>select
 framework
by default ignores type priorites when doing its operations; but 
this can be overridden as needed.
 
 
@@ -535,7 +535,7 @@ my_cas.protectIndexes(() - {
  
 The first copying can be 
omitted, by moving the logic of what to include into the first iteration, and 
producing the second
 list directly.
-In UIMA Version 3, you can 
make use of the http://uima.apache.org/d/uimaj-current/version_3_users_guide.html#uv3.select;>select
 framework.
+In UIMA Version 3, you can 
make use of the https://uima.apache.org/d/uimaj-current/version_3_users_guide.html#uv3.select;>select
 framework.
 It already has many of the use-cases where you 
might want to start or exit an iteration, accounted for.
 You can also use its ability to produce streams, 
and combine that with Java's takeWhile method, to exit a stream early.
  

Modified: uima/site/trunk/uima-website/docs/index.html
URL: 
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/index.html?rev=1870516=1870515=1870516=diff
==
--- 

svn commit: r1870515 - in /uima/site/trunk/uima-website: docs/index.html xdocs/index.xml

2019-11-27 Thread schor
Author: schor
Date: Wed Nov 27 15:36:11 2019
New Revision: 1870515

URL: http://svn.apache.org/viewvc?rev=1870515=rev
Log:
no jira, tweak

Modified:
uima/site/trunk/uima-website/docs/index.html
uima/site/trunk/uima-website/xdocs/index.xml

Modified: uima/site/trunk/uima-website/docs/index.html
URL: 
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/index.html?rev=1870515=1870514=1870515=diff
==
--- uima/site/trunk/uima-website/docs/index.html (original)
+++ uima/site/trunk/uima-website/docs/index.html Wed Nov 27 15:36:11 2019
@@ -332,8 +332,8 @@
the UIMA Java SDK core.
   
 An extensive rule-based 
scripting language
-(RUTA), an associated analysis engine built on 
top of UIMA, and an Eclipse-based tooling (Workbench) for interactively
-developing the rules, is part of this project.
+(RUTA), an associated analysis engine built on 
top of UIMA, and an Eclipse-based tooling workbench for interactively
+developing and testing the rules, is part of this project.
   
 
 Additional infrastructure support components include a simple

Modified: uima/site/trunk/uima-website/xdocs/index.xml
URL: 
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/xdocs/index.xml?rev=1870515=1870514=1870515=diff
==
--- uima/site/trunk/uima-website/xdocs/index.xml (original)
+++ uima/site/trunk/uima-website/xdocs/index.xml Wed Nov 27 15:36:11 2019
@@ -140,8 +140,8 @@
   
   
   An extensive rule-based scripting language
-(RUTA), an associated analysis engine built on 
top of UIMA, and an Eclipse-based tooling (Workbench) for interactively
-developing the rules, is part of this project.
+(RUTA), an associated analysis engine built on 
top of UIMA, and an Eclipse-based tooling workbench for interactively
+developing and testing the rules, is part of this project.
   
   
 Additional infrastructure support components include a simple




svn commit: r1870514 - in /uima/site/trunk/uima-website: docs/index.html xdocs/index.xml

2019-11-27 Thread schor
Author: schor
Date: Wed Nov 27 15:34:00 2019
New Revision: 1870514

URL: http://svn.apache.org/viewvc?rev=1870514=rev
Log:
no jira, add ref to RUTA at top level description

Modified:
uima/site/trunk/uima-website/docs/index.html
uima/site/trunk/uima-website/xdocs/index.xml

Modified: uima/site/trunk/uima-website/docs/index.html
URL: 
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/index.html?rev=1870514=1870513=1870514=diff
==
--- uima/site/trunk/uima-website/docs/index.html (original)
+++ uima/site/trunk/uima-website/docs/index.html Wed Nov 27 15:34:00 2019
@@ -331,6 +331,10 @@
 https://github.com/apache/uima-uimaj/network/dependents?package_id=UGFja2FnZS0xNzk4MzkxNTI%3D;>900
 repositories that have dependencies on 
the UIMA Java SDK core.
   
+An extensive rule-based 
scripting language
+(RUTA), an associated analysis engine built on 
top of UIMA, and an Eclipse-based tooling (Workbench) for interactively
+developing the rules, is part of this project.
+  
 
 Additional infrastructure support components include a simple
 server that can receive REST requests and return annotation 
results,

Modified: uima/site/trunk/uima-website/xdocs/index.xml
URL: 
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/xdocs/index.xml?rev=1870514=1870513=1870514=diff
==
--- uima/site/trunk/uima-website/xdocs/index.xml (original)
+++ uima/site/trunk/uima-website/xdocs/index.xml Wed Nov 27 15:34:00 2019
@@ -138,7 +138,11 @@

href="https://github.com/apache/uima-uimaj/network/dependents?package_id=UGFja2FnZS0xNzk4MzkxNTI%3D;>900
 repositories that have dependencies on 
the UIMA Java SDK core.
   
-
+  
+  An extensive rule-based scripting language
+(RUTA), an associated analysis engine built on 
top of UIMA, and an Eclipse-based tooling (Workbench) for interactively
+developing the rules, is part of this project.
+  
   
 Additional infrastructure support components include a simple
 server that can receive REST requests and return annotation 
results,




svn commit: r1870513 - in /uima/site/trunk/uima-website: docs/index.html xdocs/index.xml

2019-11-27 Thread schor
Author: schor
Date: Wed Nov 27 15:17:01 2019
New Revision: 1870513

URL: http://svn.apache.org/viewvc?rev=1870513=rev
Log:
no jira, for uima home page, remove out-of-date news copy, replace with link to 
News, add link to > 900 github.com repos depending on uimaj-core.

Modified:
uima/site/trunk/uima-website/docs/index.html
uima/site/trunk/uima-website/xdocs/index.xml

Modified: uima/site/trunk/uima-website/docs/index.html
URL: 
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/index.html?rev=1870513=1870512=1870513=diff
==
--- uima/site/trunk/uima-website/docs/index.html (original)
+++ uima/site/trunk/uima-website/docs/index.html Wed Nov 27 15:17:01 2019
@@ -327,6 +327,9 @@
 their own annotators, or configure and use pre-existing 
 annotators.  Some annotators are available as part of this 
project;
 others are contained in various 
repositories on the internet.
+GitHub.com lists over 
+https://github.com/apache/uima-uimaj/network/dependents?package_id=UGFja2FnZS0xNzk4MzkxNTI%3D;>900
 repositories that have dependencies on 
+   the UIMA Java SDK core.
   
 
 Additional infrastructure support components include a simple
@@ -347,224 +350,7 @@
   
   
 
-
-   
- 
-26 Apr 2019: Apache UIMA-DUCC 
3.0.0 released
-  
-  
-16 Apr 2019: Apache uimaFIT 
3.0.0 released
-  
-  
-10 Apr 2019: Apache UIMA Java 
SDK 3.0.2 released
-  
-  
-24 Feb 2019: Apache UIMA 
Ruta 2.7.0 released
-  
-   
-  
-17 Apr 2018: Apache 
UIMA-AS 2.10.3 released
-  
-
-
-  
-19 Mar 2018: Apache 
UIMA-DUCC 2.2.2 released
-  
-
-  
-07 Feb 2018: Apache 
UIMA-AS 2.10.2 released
-  
-
-  
-14 Nov 2017: Apache 
uimaFIT 2.4.0 released
-  
-  
-30 Aug 2017: Apache 
UIMA-DUCC 2.2.1 released
-  
-  
-24 July 2017: Apache UIMA 
Ruta 2.6.1 released
-  
-  
-4 April 2017: Apache UIMA 
Java SDK 2.10.0 released
- 
-  
-29 Mar 2017: Apache 
uimaFIT 2.3.0 released
-  
-  
-10 Mar 2017: Apache UIMA 
Ruta 2.6.0 released
-  
-  
-23 Feb 2017: Apache 
UIMA-DUCC 2.2.0 released
-  
-  
-15 Dec 2016: Apache 
UIMA-AS 2.9.0 released
-  
-  
-28 Sep 2016: Apache UIMA 
Ruta 2.5.0 released
-  
-  
-11 August 2015: Apache 
UIMA Java SDK 2.9.0 released
- 
-  
-08 Aug 2016: Apache 
UIMA-DUCC 2.1.0 released
-  
-  
-20 May 2016: Apache 
UIMA-AS 2.8.1 released
-  
-  
-06 April 2016: Apache 
uimaFIT 2.2.0 released
-  
-  
-15 February 2016: Apache 
UIMA Ruta 2.4.0 released
-  
-  
-26 October 2015: 
Apache UIMA DUCC 2.0.1 released
- 
- 
-25 August 2015: Apache 
UIMA Ruta 2.3.1 released
-  
-  
-11 August 2015: Apache 
UIMA DUCC 2.0.0 released
- 
-  
-11 August 2015: Apache 
UIMA Java SDK 2.8.1 released
- 
- 
-22 July 2015: Apache UIMA 
Java SDK 2.8.0 released
-  
- 
-08 June 2015: Apache UIMA 
Ruta 2.3.0 released
-  
-  
-06 March 2015: Apache 
UIMA SDK 2.7.0 released
-  
- 
-23 October 2014: 
Apache UIMA DUCC 1.1.0 released
-  
- 
-23 September 2014: 
Apache UIMA Ruta 2.2.1 released
-  
-  
-16 June 2014: Apache 
UIMA-AS 2.6.0 released
-  
-  
-12 June 2014: Apache 
uimaFIT 2.1.0 released
-  
-  
-12 May 2014: Apache UIMA 
SDK 2.6.0 released
-  
- 
-15 April 2014: Apache 
UIMA Ruta 2.2.0 released
-  
-   
-  
-10 April 2014: Upcoming 
UIMA Workshop at COLING 2014
-  
-
-  
-30 January 2014: 
Apache UIMA DUCC 1.0.0 released
-  
-   
-  
-14 January 2014: 
Apache UIMA SDK 2.5.0 released
-  
-  
-20 September 2013: 
Apache UIMA Ruta 2.1.0 released
-  
-  
-31 August 2013: Apache 
uimaFIT 2.0.0 released
-  
-  
-

svn commit: r1870510 - in /uima/ruta/trunk/ruta-docbook/src/docbook: tools.ruta.language.expressions.xml tools.ruta.language.xml

2019-11-27 Thread vmorari
Author: vmorari
Date: Wed Nov 27 14:17:10 2019
New Revision: 1870510

URL: http://svn.apache.org/viewvc?rev=1870510=rev
Log:
rc2 review: corrected some typos/errors

Modified:
uima/ruta/trunk/ruta-docbook/src/docbook/tools.ruta.language.expressions.xml
uima/ruta/trunk/ruta-docbook/src/docbook/tools.ruta.language.xml

Modified: 
uima/ruta/trunk/ruta-docbook/src/docbook/tools.ruta.language.expressions.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/ruta-docbook/src/docbook/tools.ruta.language.expressions.xml?rev=1870510=1870509=1870510=diff
==
--- 
uima/ruta/trunk/ruta-docbook/src/docbook/tools.ruta.language.expressions.xml 
(original)
+++ 
uima/ruta/trunk/ruta-docbook/src/docbook/tools.ruta.language.expressions.xml 
Wed Nov 27 14:17:10 2019
@@ -19,8 +19,8 @@
 
   Expressions
   
-UIMA Ruta provides five different kinds of expressions. These are
-type expressions, number expressions, string expressions,
+UIMA Ruta provides six different kinds of expressions. These are
+type expressions, annotations expressions, number expressions, string 
expressions,
 boolean expressions and list expressions.
   
   

Modified: uima/ruta/trunk/ruta-docbook/src/docbook/tools.ruta.language.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/ruta-docbook/src/docbook/tools.ruta.language.xml?rev=1870510=1870509=1870510=diff
==
--- uima/ruta/trunk/ruta-docbook/src/docbook/tools.ruta.language.xml (original)
+++ uima/ruta/trunk/ruta-docbook/src/docbook/tools.ruta.language.xml Wed Nov 27 
14:17:10 2019
@@ -899,7 +899,7 @@ WORDTABLE presidentsOfUSA = "" + package
 ]]>
   
   
-By default, whitespaces are removed by the activated parameter 
dictRemoveWS 
+By default, whitespaces are removed by activating the parameter 
dictRemoveWS 
 for WORDLIST and WORDTABLE when the dictionary is loaded. In the 
special case when whitespace are relevant, e.g., 
 specific patterns of whitespaces need to be detected by the dictionary 
lookup, 
 then the analysis engine needs to be configured differently. 




svn commit: r1870492 - in /uima/uv3/ruta-v3/trunk: README RELEASE_NOTES.html

2019-11-27 Thread pkluegl
Author: pkluegl
Date: Wed Nov 27 08:25:50 2019
New Revision: 1870492

URL: http://svn.apache.org/viewvc?rev=1870492=rev
Log:
no jira - fix readme/release-notes according rc review

Modified:
uima/uv3/ruta-v3/trunk/README
uima/uv3/ruta-v3/trunk/RELEASE_NOTES.html

Modified: uima/uv3/ruta-v3/trunk/README
URL: 
http://svn.apache.org/viewvc/uima/uv3/ruta-v3/trunk/README?rev=1870492=1870491=1870492=diff
==
--- uima/uv3/ruta-v3/trunk/README (original)
+++ uima/uv3/ruta-v3/trunk/README Wed Nov 27 08:25:50 2019
@@ -20,7 +20,7 @@ change the command to
 
mvn clean install -Papache-release

-For more details, please see http://uima.apache.org/building-uima.html   
+For more details, please see https://uima.apache.org/building-uima.html   
 
 
 -

Modified: uima/uv3/ruta-v3/trunk/RELEASE_NOTES.html
URL: 
http://svn.apache.org/viewvc/uima/uv3/ruta-v3/trunk/RELEASE_NOTES.html?rev=1870492=1870491=1870492=diff
==
--- uima/uv3/ruta-v3/trunk/RELEASE_NOTES.html (original)
+++ uima/uv3/ruta-v3/trunk/RELEASE_NOTES.html Wed Nov 27 08:25:50 2019
@@ -75,15 +75,15 @@
 The Apache UIMA Ruta 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.
+https://uima.apache.org/get-involved.html;>
+  https://uima.apache.org/get-involved.html.
 
   
 4. How to Report Issues
 
 The Apache UIMA project uses JIRA for issue tracking.  Please report any 
 issues you find at 
-http://issues.apache.org/jira/browse/uima;>http://issues.apache.org/jira/browse/uima
+https://issues.apache.org/jira/browse/uima;>https://issues.apache.org/jira/browse/uima
 
   
 5. List of JIRA Issues Fixed in this Release




svn commit: r1870491 - in /uima/ruta/trunk: README RELEASE_NOTES.html

2019-11-27 Thread pkluegl
Author: pkluegl
Date: Wed Nov 27 08:21:10 2019
New Revision: 1870491

URL: http://svn.apache.org/viewvc?rev=1870491=rev
Log:
no jira - fix readme/release-notes according rc review

Modified:
uima/ruta/trunk/README
uima/ruta/trunk/RELEASE_NOTES.html

Modified: uima/ruta/trunk/README
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/README?rev=1870491=1870490=1870491=diff
==
--- uima/ruta/trunk/README (original)
+++ uima/ruta/trunk/README Wed Nov 27 08:21:10 2019
@@ -6,7 +6,7 @@ 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 -XX:MaxPermSize=256m.
+and set the environment variable MAVEN_OPTS to -Xmx800m.
 
 Then do the build by going into the UIMA Ruta directory, and issuing the 
command

@@ -17,7 +17,7 @@ change the command to
 
mvn clean install -Papache-release

-For more details, please see http://uima.apache.org/building-uima.html   
+For more details, please see https://uima.apache.org/building-uima.html   
 
 
 -

Modified: uima/ruta/trunk/RELEASE_NOTES.html
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/RELEASE_NOTES.html?rev=1870491=1870490=1870491=diff
==
--- uima/ruta/trunk/RELEASE_NOTES.html (original)
+++ uima/ruta/trunk/RELEASE_NOTES.html Wed Nov 27 08:21:10 2019
@@ -57,7 +57,7 @@
   
The analysis engine is able to generate debug information about 
inlined rules which includes also an extension of the ruta type system.
 Type expressions in dot notation for annotation expressions a new 
supported: a1:ANY a2:ANY{a1.type==a2.type -> Type};
-Matching on string literals is no more restricted to single RutaBasic 
annotations, e.g., it is not possible to write: "This is a test"{-> Test};
+Matching on string literals is no more restricted to single RutaBasic 
annotations, e.g., it is now possible to write: "This is a test"{-> Test};
 Dictionary matching is now more robust concerning white spaces in the 
word list. The parameter dictRemoveWS is now also set to true by default.
 Fixed anchors at composed rule elements.
 Labels at macro actions are supported now.
@@ -77,15 +77,15 @@
 The Apache UIMA Ruta 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.
+https://uima.apache.org/get-involved.html;>
+  https://uima.apache.org/get-involved.html.
 
   
 4. How to Report Issues
 
 The Apache UIMA project uses JIRA for issue tracking.  Please report any 
 issues you find at 
-http://issues.apache.org/jira/browse/uima;>http://issues.apache.org/jira/browse/uima
+https://issues.apache.org/jira/browse/uima;>https://issues.apache.org/jira/browse/uima
 
   
 5. List of JIRA Issues Fixed in this Release