You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ch...@apache.org on 2019/03/05 02:01:30 UTC

svn commit: r32757 - in /dev/commons/text: ./ binaries/ source/

Author: chtompki
Date: Tue Mar  5 02:01:30 2019
New Revision: 32757

Log:
Adding previously staged 1.6

Added:
    dev/commons/text/HEADER.html
    dev/commons/text/README.html
    dev/commons/text/RELEASE-NOTES.txt
    dev/commons/text/binaries/
    dev/commons/text/binaries/commons-text-1.6-bin.tar.gz   (with props)
    dev/commons/text/binaries/commons-text-1.6-bin.tar.gz.asc
    dev/commons/text/binaries/commons-text-1.6-bin.tar.gz.sha256
    dev/commons/text/binaries/commons-text-1.6-bin.tar.gz.sha512
    dev/commons/text/binaries/commons-text-1.6-bin.zip   (with props)
    dev/commons/text/binaries/commons-text-1.6-bin.zip.asc
    dev/commons/text/binaries/commons-text-1.6-bin.zip.sha256
    dev/commons/text/binaries/commons-text-1.6-bin.zip.sha512
    dev/commons/text/binaries/header.html
    dev/commons/text/binaries/readme.html
    dev/commons/text/source/
    dev/commons/text/source/commons-text-1.6-src.tar.gz   (with props)
    dev/commons/text/source/commons-text-1.6-src.tar.gz.asc
    dev/commons/text/source/commons-text-1.6-src.tar.gz.sha256
    dev/commons/text/source/commons-text-1.6-src.tar.gz.sha512
    dev/commons/text/source/commons-text-1.6-src.zip   (with props)
    dev/commons/text/source/commons-text-1.6-src.zip.asc
    dev/commons/text/source/commons-text-1.6-src.zip.sha256
    dev/commons/text/source/commons-text-1.6-src.zip.sha512
    dev/commons/text/source/header.html
    dev/commons/text/source/readme.html

Added: dev/commons/text/HEADER.html
==============================================================================
--- dev/commons/text/HEADER.html (added)
+++ dev/commons/text/HEADER.html Tue Mar  5 02:01:30 2019
@@ -0,0 +1,12 @@
+
+<h2>Apache Commons Project Distributions</h2>
+
+<p>The most recent source and binary releases for the Apache Commons project are available from this directory listing. For older releases, please use the <a href="http://archive.apache.org/dist/commons/">archives</a>. </p>
+
+<h2>Important Notices</h2>
+
+<ul>
+<li><a href="#mirrors">Download from your nearest mirror site!</a></li>
+<li><a href="#sig">PGP/GPG Signatures</a></li>
+</ul>
+

Added: dev/commons/text/README.html
==============================================================================
--- dev/commons/text/README.html (added)
+++ dev/commons/text/README.html Tue Mar  5 02:01:30 2019
@@ -0,0 +1,51 @@
+
+<h1>Apache Commons Text v1.6</h1>
+
+<p>This is the 1.6 version of Apache Commons Text. It is available in both binary and source distributions.</p>
+
+
+<p><font color="red" size="+2">Note:</font>
+The tar files in the distribution use GNU tar extensions
+and must be untarred with a GNU compatible version of tar. The version
+of tar on Solaris and Mac OS X will not work with these files</p>
+
+<a name="changes"><h2>Changes</h2></a>
+
+<p>The changes in this release are detailed in the release notes.</p>
+
+<p>Thank you for using <a href="http://commons.apache.org/text/">Text</a>.</p>
+
+<p>From the Apache Commons Project<br><a href="http://commons.apache.org/">http://commons.apache.org/</a></p>
+
+<h2><a name="mirrors">Download from your
+    <a href="http://www.apache.org/dyn/closer.cgi/commons/">nearest mirror site!</a></a></h2>
+
+<p>
+    Do not download from www.apache.org.  Please use a mirror site
+    to help us save apache.org bandwidth.
+    <a href="http://www.apache.org/dyn/closer.cgi/commons/">Go
+      here to find your nearest mirror.</a>
+</p>
+
+<a name="sig"><h2>Signatures</h2></a>
+
+<p>Many of the files have been digitally signed using GnuPG.  If so,
+there will be an accompanying <samp><em>file</em>.asc</samp> signature
+file in the same directory as the file (binaries/ or source/).  The
+signing keys can be found in the distribution directory at &lt;<a
+HREF="http://www.apache.org/dist/commons/KEYS"><samp>http://www.apache.org/dist/commons/KEYS</samp></a>&gt;.</p>
+
+<p><b>Always download the KEYS file directly from the Apache site, never from a mirror site.</b></p>
+
+
+<pre>Always test available signatures, <i>e.g.</i>,
+$ pgpk -a KEYS
+$ pgpv commons-text-1.6-bin.tar.gz.asc
+or,
+$ pgp -ka KEYS
+$ pgp commons-text-1.6-bin.tar.gz.asc
+or,
+$ gpg --import KEYS
+$ gpg --verify commons-text-1.6-bin.tar.gz.asc
+</pre>
+<p>

Added: dev/commons/text/RELEASE-NOTES.txt
==============================================================================
--- dev/commons/text/RELEASE-NOTES.txt (added)
+++ dev/commons/text/RELEASE-NOTES.txt Tue Mar  5 02:01:30 2019
@@ -0,0 +1,353 @@
+                          Apache Commons Text
+                              Version 1.6
+                             Release Notes
+
+INTRODUCTION
+============
+
+This document contains the release notes for the 1.6 version of Apache Commons
+Text. Commons Text is a set of utility functions and reusable components for
+the purpose of processing and manipulating text that should be of use in a Java
+environment.
+
+This component requires Java 8.
+
+CHANGES
+=======
+
+o TEXT-144:  Add the resource string bundle string lookup to the default set of lookups
+o TEXT-145:  Add StringLookupFactory methods for the URL encoder and decoder string lookups
+o TEXT-146:  org.apache.commons.text.lookup.StringLookupFactory.interpolatorStringLookup() should reuse a singleton instance
+o TEXT-147:  Add a Base64 encoder string lookup.
+
+Historical list of changes: http://commons.apache.org/proper/commons-text/changes-report.html
+
+For complete information on Apache Commons Text, including instructions on how to submit bug reports,
+patches, or suggestions for improvement, see the Apache Apache Commons Text website:
+
+http://commons.apache.org/proper/commons-text
+
+=============================================================================
+
+                          Apache Commons Text
+                              Version 1.5
+                             Release Notes
+
+INTRODUCTION
+============
+
+This document contains the release notes for the 1.5 version of Apache Commons
+Text. Commons Text is a set of utility functions and reusable components for 
+the purpose of processing and manipulating text that should be of use in a Java
+environment.
+
+This component requires Java 8.
+
+NEW FEATURES
+============
+
+o TEXT-133:  Add a XML file XPath string lookup.
+o TEXT-134:  Add a Properties file string lookup.
+o TEXT-135:  Add a script string lookup.
+o TEXT-136:  Add a file string lookup.
+o TEXT-137:  Add a URL string lookup.
+o TEXT-140:  Add a Base64 string lookup.
+o TEXT-141:  Add org.apache.commons.text.lookup.StringLookupFactory.resourceBundleStringLookup(String).
+o TEXT-142:  Add URL encoder and decoder string lookups.
+o TEXT-143:  Add constant string lookup like the one in Apache Commons Configuration.
+
+FIXED BUGS
+==========
+
+o TEXT-139:  Improve JaccardSimilarity computational cost Thanks to Nick Wong.
+o TEXT-118:  JSON escaping incorrect for the delete control character Thanks to Nandor Kollar.
+o TEXT-130:  Fixes JaroWinklerDistance: Wrong results due to precision of transpositions Thanks to Jan Martin Keil.
+o TEXT-131:  JaroWinklerDistance: Calculation deviates from definition Thanks to Jan Martin Keil.
+
+CHANGES
+=======
+
+o TEXT-132:  Update Apache Commons Lang from 3.7 to 3.8.1
+
+=============================================================================
+
+                          Apache Commons Text
+                              Version 1.4
+                             Release Notes
+
+INTRODUCTION
+============
+
+This document contains the release notes for the 1.4 version of Apache Commons
+Text. Commons Text is a set of utility functions and reusable components for 
+the purpose of processing and manipulating text that should be of use in a Java
+environment.
+
+This component requires Java 8.
+
+
+Changes in this version include:
+    
+Fixed Bugs:
+o TEXT-120:  StringEscapeUtils#unescapeJson does not unescape double quotes and forward slash.
+o TEXT-119:  Remove mention of SQL escaping from user guide.
+o TEXT-123:  WordUtils.wrap throws StringIndexOutOfBoundsException when wrapLength is Integer.MAX_VALUE. Thanks to Takanobu Asanuma.
+                
+Changes:
+o TEXT-121:  Update Java requirement from version 7 to 8. Thanks to pschumacher.
+o TEXT-122:  Allow full customization with new API org.apache.commons.text.lookup.StringLookupFactory.interpolatorStringLookup(Map<String, StringLookup>, StringLookup, boolean).
+
+=============================================================================
+
+                          Apache Commons Text
+                              Version 1.3
+                             Release Notes
+
+INTRODUCTION
+============
+
+This document contains the release notes for the 1.3 version of Apache Commons
+Text. Commons Text is a set of utility functions and reusable components for 
+the purpose of processing and manipulating text that should be of use in a Java
+environment.
+
+This component requires Java 7.
+
+NEW FEATURES
+=============
+
+o Add Automatic-Module-Name MANIFEST entry for Java 9 compatibility  Issue: TEXT-110. 
+o Add an interpolator string lookup: StringLookupFactory#interpolatorStringLookup()  Issue: TEXT-113. 
+o Add a StrSubstitutor replacement based on interfaces: StringSubstitutor  Issue: TEXT-114. 
+o Add a StrBuilder replacement based on the StringMatcher interface: TextStringBuilder  Issue: TEXT-115. 
+o Add a StrTokenizer replacement based on the StringMatcher interface: StringTokenizer  Issue: TEXT-116. 
+o Add a local host string lookup: LocalHostStringLookup  Issue: TEXT-117. 
+
+FIXED BUGS
+==========
+
+o Build failure with java 9-ea+159  Issue: TEXT-70. 
+o StrLookup API confusing  Issue: TEXT-80. 
+
+=============================================================================
+
+                          Apache Commons Text
+                              Version 1.2
+                             Release Notes
+
+INTRODUCTION
+============
+
+This document contains the release notes for the 1.2 version of Apache Commons
+Text. Commons Text is a set of utility functions and reusable components for 
+the purpose of processing and manipulating text that should be of use in a Java
+environment.
+
+This component requires Java 7.
+
+JAVA 9 SUPPORT
+==============
+
+At our time of release of 1.1, our build succeeds with Java 9-ea build 159,
+and we believe all of our features to be Java 9 compatible. However, when we
+run "mvn clean site" we have failures.
+
+NEW FEATURES
+=============
+
+o TEXT-74:   StrSubstitutor: Ability to turn off substitution in values. Thanks to Ioannis Sermetziadis.
+o TEXT-97:   RandomStringGenerator able to pass multiple ranges to .withinRange(). Thanks to Amey Jadiye.
+o TEXT-89:   WordUtils.initials support for UTF-16 surrogate pairs. Thanks to Arun Vinud S S.
+o TEXT-90:   Add CharacterPredicates for ASCII letters (uppercase/lowercase) and arabic numerals.
+o TEXT-85:   Added CaseUtils class with camel case conversion support. Thanks to Arun Vinud S S.
+o TEXT-91:   RandomStringGenerator should be able to generate a String with a random length.
+o TEXT-102:  Add StrLookup.resourceBundleLookup(ResourceBundle).
+
+FIXED BUGS
+==========
+
+o TEXT-106:  Exception thrown in ExtendedMessageFormat using quotes with custom registry. Thanks to Benoit Moreau.
+o TEXT-100:  StringEscapeUtils#UnEscapeJson doesn't recognize escape signs correctly. Thanks to Don Jeba.
+o TEXT-105:  Typo in LongestCommonSubsequence#logestCommonSubsequence. Thanks to Abrasha.
+
+CHANGES
+=======
+
+o TEXT-107:  Upversion commons-lang to 3.7.
+o TEXT-98:   Deprecate isDelimiter and use HashSets for delimiter checks. Thanks to Arun Vinud S S.
+o TEXT-88:   WordUtils should treat an empty delimiter array as no delimiters. Thanks to Amey Jadiye.
+o TEXT-93:   Update RandomStringGenerator to accept a list of valid characters. Thanks to Amey Jadiye.
+o TEXT-92:   Update commons-lang dependency to version 3.6.
+o TEXT-83:   Document that commons-csv should be used in preference to CsvTranslators. Thanks to Amey Jadiye.
+o TEXT-67:   NumericEntityUnescaper.options - fix TODO.
+o TEXT-84:   RandomStringGenerator claims to be immutable, but isn't.
+
+=============================================================================
+
+                        Release Notes for version 1.1
+
+JAVA 9 SUPPORT
+==============
+
+At our time of release of 1.1, our build succeeds with Java 9-ea build 159,
+and we believe all of our features to be Java 9 compatible. However, when we 
+run "mvn clean site" we have failures.
+
+NEW FEATURES
+============
+
+o TEXT-41:   WordUtils.abbreviate support Thanks to Amey Jadiye.
+o TEXT-82:   Putting WordUtils back in to the codebase Thanks to Amey Jadiye.
+o TEXT-81:   Add RandomStringGenerator Thanks to djones.
+o TEXT-36:   RandomStringGenerator: allow users to provide source of randomness
+             Thanks to Raymond DeCampo.
+                
+FIXED BUGS
+==========
+
+o TEXT-76:   Correct round issue in Jaro Winkler implementation
+o TEXT-72:   Similar to LANG-1025, clirr fails site build.
+                
+CHANGES
+=======
+
+o TEXT-39:   WordUtils should use toXxxxCase(int) rather than toXxxxCase(char) 
+             Thanks to Amey Jadiye.
+
+=============================================================================
+
+                        Release Notes for version 1.0
+
+INCOMPATIBLE CHANGES
+====================
+
+All package names changed from org.apache.commons.text.beta in 1.0-beta-1 to
+org.apache.commons.text in 1.0.
+
+Methods StringEscapeUtils#escapeHtml3Once and StringEscapeUtils#escapeHtml4Once
+have been removed; see TEXT-40
+
+JAVA 9 SUPPORT
+==============
+
+At our time of release of 1.0, our build succeeds with Java 9-ea build 158,
+and we believe all of our features to be Java 9 compatible. However, when we run
+"mvn clean site" we have failures.
+
+FIXED BUGS
+==========
+
+o TEXT-64:   Investigate locale issue in ExtendedMessageFormatTest. Thanks to
+             chtompki.
+o TEXT-69:   Resolve PMD/CMD Violations
+o TEXT-65:   Fixing the 200 checkstyle errors present in 1.0-beta-1.
+o TEXT-63:   Mutable fields should be private.
+
+REMOVED
+=======
+
+o TEXT-40:   Escape HTML characters only once: revert.
+
+=============================================================================
+
+                        Release Notes for version 1.0-beta-1
+
+
+A NOTE ON THE HISTORY OF THE CODE
+=================================
+
+The codebase began in the fall of 2014 as a location for housing algorithms for
+operating on Strings that seemed to have a more complex nature than those which
+would be considered a needed extension to java.lang. Thus, a new component,
+different from Apache Commons Lang was warranted. As the project evolved, it was
+noticed that Commons Lang had considerable more text manipulation tools than
+the average Java application developer would need or even want. So, we have
+decided to move the more esoteric String processing algorithms out of Commons
+Lang into Commons Text.
+
+JAVA 9 SUPPORT
+==============
+
+At our time of release of 1.0-beta-1, our build succeeds with Java 9-ea build 153,
+and we believe all of our features to be Java 9 compatible.
+
+NEW FEATURES
+============
+
+o TEXT-56:   Move CvsTranslators out of StringEscapeUtils and make them DRY
+             Thanks to Jarek Strzeleck.
+o TEXT-40:   Escape HTML characters only once Thanks to Sampanna Kahu.
+o TEXT-32:   Add LCS similarity and distance
+o TEXT-34:   Add class to generate random strings
+o TEXT-29:   Add a builder to StringEscapeUtils
+o TEXT-28:   Add shell/XSI escape/unescape support
+o TEXT-2:    Add Jaccard Index and Jaccard Distance Thanks to Don Jeba.
+o TEXT-27:   Move org.apache.commons.lang3.StringEscapeUtils.java into text
+o TEXT-23:   Moving from commons-lang, the package org.apache.commons.lang3.text
+o TEXT-10:   A more complex Levenshtein distance Thanks to Don Jeba.
+o TEXT-24:   Add coveralls and Travis.ci integration
+o TEXT-19:   Add alphabet converter Thanks to Eyal Allweil.
+o TEXT-13:   Create Commons Text logo
+o TEXT-7:    Write user guide
+o TEXT-15:   Human name parser
+o TEXT-3:    Add Cosine Similarity and Cosine Distance
+o TEXT-4:    Port Myers algorithm from [collections]
+o TEXT-1:    Add Hamming distance
+o TEXT-9:    Incorporate String algorithms from Commons Lang Thanks to britter.
+
+FIXED BUGS
+==========
+
+Note. We recognize the curiosity of a new component having "fixed bugs," but a
+considerable number of files were migrated over from Commons Lang, some of which
+needed fixes.
+
+o TEXT-62:   Incorporate suggestions from RC2 into 1.0 release.
+o TEXT-60:   Upgrading Jacoco for Java 9-ea compatibility. Thanks to Lee Adcock.
+o TEXT-52:   Possible attacks through StringEscapeUtils.escapeEcmaScrip better
+             javadoc
+o TEXT-37:   Global vs local source of randomness
+o TEXT-38:   Fluent API in "RandomStringBuilder"
+o TEXT-26:   Fix JaroWinklerDistance in the manner of LUCENE-1297
+o TEXT-35:   Unfinished class Javadoc for CosineDistance
+o TEXT-22:   LevenshteinDistance reduce memory consumption
+o TEXT-5:    IP clearance for the names package
+o TEXT-11:   Work on the string metric, distance, and similarity definitions for
+             the project
+o TEXT-12:   Create StringDistanceFrom class that contains a StringMetric and
+             the "left" side string. This would have a method that accepts the
+             "right" side string to test. Thanks to Jonathan baker.
+o TEXT-8:    Change (R) StringMetric.compare(CS left, CS right) to "apply" so
+             that it is consistent with BiFunction. Thanks to Jonathan Baker.
+o TEXT-6:    Allow extra information (e.g. Levenshtein threshold) to be stored
+             as (final) fields in the StringMetric instance. Thanks to Jonathan
+             Baker.
+
+CHANGES
+=======
+
+o TEXT-61:   Naming packages org.apache.commons.text.beta Thanks to Lee Adcock.
+o TEXT-58:   Refactor EntityArrays to have unmodifiableMaps in leu of String[][]
+o TEXT-53:   Prepare site for 1.0 release
+o TEXT-50:   Upgrade from commons-parent version 41 to version 42
+o TEXT-33:   Consolidating since tags at 1.0, removing deprecated methods
+o TEXT-16:   Improve HumanNameParser
+
+REMOVED
+=======
+
+o TEXT-55:   Remove WordUtils to be added back in an upcoming 1.X release
+o TEXT-51:   Remove RandomStringGenerator to be added back in the 1.1 release
+o TEXT-31:   Remove org.apache.commons.text.names, for later release than 1.0
+
+
+Historical list of changes: http://commons.apache.org/text/changes-report.html
+
+For complete information on Apache Commons Text, including instructions on how
+to submit bug reports, patches, or suggestions for improvement, see the Apache
+Apache Commons Text website:
+
+http://commons.apache.org/text/
+
+Have fun!
+-Apache Commons Text team
\ No newline at end of file

Added: dev/commons/text/binaries/commons-text-1.6-bin.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: dev/commons/text/binaries/commons-text-1.6-bin.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/commons/text/binaries/commons-text-1.6-bin.tar.gz.asc
==============================================================================
--- dev/commons/text/binaries/commons-text-1.6-bin.tar.gz.asc (added)
+++ dev/commons/text/binaries/commons-text-1.6-bin.tar.gz.asc Tue Mar  5 02:01:30 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEtuc9hOpPzEcWYIclP6rSzV7LsxQFAlvBTaEACgkQP6rSzV7L
+sxQaqg/+LVm+2sAnwkALQkU+cfYzl0l914bqY9GgJFLgSFDYdGq/gdboxY4QEgbc
+pBqDL5sExjX1G1UoUaUQzAe3zqdyg2ChIRKyi2loMjyQ6yQKukO/FGdozl8CFQr4
+3sqWs1at5rPTQqfT68QNIPm9L1Ec4z70557enn7MqwUQmt9SL9KUDhhIiTRWvzUZ
+ZmMsNga2VnnEuxO6PODM6dtK6evqju78jlb721yTNjjIZQnttsQbTfok9txVGsJu
+9sVat/jz5iDHSV0vnZwmKhA8NAsbLjP+33Jn9uIVhvlX7JseBo1VUnxNWWuPfJS1
+z6H2OgaD0uhk8CX0H1B6USUG5L4qKARJgSFH3HSjB6sVJVSXP1z47JHF2GUa5vXg
+l5UmkAsAhLEiTEVUuVuwvQ9bVoNlRhm0SQWJlo+1Zu7wHOxHXaX2md9FT7aUvd6I
+IDrZD5REnSiRwdv5kc+pwJm5sbxn1g7lXeQ6oDs4AbHsmz/rKdv5QnSKT6jFE9xF
+usaUk31cA/cOUB0rzbsFhj8TRxUd5SRzuUCM9Ig+Gvl0dtFV1zM/Hg7jTimx8uaX
+JfpFComZWcWW0RsfDzXWV7QwCwaPV0zuObuAN3dbtyjftz5rJgQpG7xZCi8gDktp
+czlRVcdVwARm33XuOfyX4Xf8la5rtsNTRdgxF0jTKw5SO57GgsQ=
+=kH4A
+-----END PGP SIGNATURE-----

Added: dev/commons/text/binaries/commons-text-1.6-bin.tar.gz.sha256
==============================================================================
--- dev/commons/text/binaries/commons-text-1.6-bin.tar.gz.sha256 (added)
+++ dev/commons/text/binaries/commons-text-1.6-bin.tar.gz.sha256 Tue Mar  5 02:01:30 2019
@@ -0,0 +1 @@
+5d6615fc89b9a8934da89e876069a44e475cf3db0fee91ab32da1c1f0e8908b0

Added: dev/commons/text/binaries/commons-text-1.6-bin.tar.gz.sha512
==============================================================================
--- dev/commons/text/binaries/commons-text-1.6-bin.tar.gz.sha512 (added)
+++ dev/commons/text/binaries/commons-text-1.6-bin.tar.gz.sha512 Tue Mar  5 02:01:30 2019
@@ -0,0 +1 @@
+3fe8e275bd9e569a168d2a1def8ddbc0ea2d1d71d35d76d9a409c33891d435555a7aa7eeaabbfca5a0bd22d2945d4120d9cd51db6e712ebaf8ad19de87049b3b

Added: dev/commons/text/binaries/commons-text-1.6-bin.zip
==============================================================================
Binary file - no diff available.

Propchange: dev/commons/text/binaries/commons-text-1.6-bin.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/commons/text/binaries/commons-text-1.6-bin.zip.asc
==============================================================================
--- dev/commons/text/binaries/commons-text-1.6-bin.zip.asc (added)
+++ dev/commons/text/binaries/commons-text-1.6-bin.zip.asc Tue Mar  5 02:01:30 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEtuc9hOpPzEcWYIclP6rSzV7LsxQFAlvBTaIACgkQP6rSzV7L
+sxStww//YnPPSBQN5pl7XuUtm9IWLm1nagGGMiGX4xWHfWbni+N/2TCVYqbpPK4p
+K8jXBk9KoTSnXra+7R2I4peKt+T+1jqZaX36knZU0vvVT5Xb6y+ELpCefF1r/CEY
+XL0P7MZjMKUKxgBR2ZHuvm821wK9eorLIptdb+dUB03fwSxWu6LyZ5neMVhHxfZV
+1Udn6g6QlCD3vIb8BJUclZ+2JKd/awUvWmy/+q2HzMLdsvb7H5lE2Oc7wQDv8Sdq
+zPmvK9eNOZhcQ3DOFsbMN+W4QZmboFZg0H1+DtALSzqMzmUsmtNQTV8SToe/kRmz
+3pzunw3PFspVGAZm6pKp1wCzsdFkEjsARiZ8/MGR/PUtDbHgpoJZ6hBf9m+ihVH+
+Lzzl1Wz//tw795O+S0FjMQGwG/DJlucSFfDY5GgGiD3kyDLse/lJp7RPt9Vkw4L9
+tITj0DIA4pIg0CIPONo0ZBFrj8rph/6CqLUoCF+tYFj1yda1k/tW0lwy/vC6CqrI
+ygnB87iMbC9CdkTJYjaxwnjLnf1Zzp3SJmKaTat47LFxihluYs+UW8Lhd9nl4LKY
+8UqwYJoShlTin8xCUITdqjAaT9YXLcMmQ9XKkxrtWcOyWlU5FFL/QBLrJxakFb/a
+oF35a67+g5QnrJ7WpFHIRBOFpe/V7otP3B/PC2b8Up+vwmMevZk=
+=maV1
+-----END PGP SIGNATURE-----

Added: dev/commons/text/binaries/commons-text-1.6-bin.zip.sha256
==============================================================================
--- dev/commons/text/binaries/commons-text-1.6-bin.zip.sha256 (added)
+++ dev/commons/text/binaries/commons-text-1.6-bin.zip.sha256 Tue Mar  5 02:01:30 2019
@@ -0,0 +1 @@
+102448b113144edd3a64168826abd33ea36f1890a1e6af17aeb126c0ca794fac

Added: dev/commons/text/binaries/commons-text-1.6-bin.zip.sha512
==============================================================================
--- dev/commons/text/binaries/commons-text-1.6-bin.zip.sha512 (added)
+++ dev/commons/text/binaries/commons-text-1.6-bin.zip.sha512 Tue Mar  5 02:01:30 2019
@@ -0,0 +1 @@
+80645f7e33c0356e677b5e6935e5393cd14c4f32d97fb106afc9933bc52dea8274a96b36586335f2d334117611a3d472ee0ddef0e580efdd6b19249e65d5411b

Added: dev/commons/text/binaries/header.html
==============================================================================
--- dev/commons/text/binaries/header.html (added)
+++ dev/commons/text/binaries/header.html Tue Mar  5 02:01:30 2019
@@ -0,0 +1,12 @@
+
+<h2>Apache Commons Project Distributions</h2>
+
+<p>The most recent source and binary releases for the Apache Commons project are available from this directory listing. For older releases, please use the <a href="http://archive.apache.org/dist/commons/">archives</a>. </p>
+
+<h2>Important Notices</h2>
+
+<ul>
+<li><a href="#mirrors">Download from your nearest mirror site!</a></li>
+<li><a href="#sig">PGP/GPG Signatures</a></li>
+</ul>
+

Added: dev/commons/text/binaries/readme.html
==============================================================================
--- dev/commons/text/binaries/readme.html (added)
+++ dev/commons/text/binaries/readme.html Tue Mar  5 02:01:30 2019
@@ -0,0 +1,51 @@
+
+<h1>Apache Commons Text v1.4</h1>
+
+<p>This is the 1.4 version of Apache Commons Text. It is available in both binary and source distributions.</p>
+
+
+<p><font color="red" size="+2">Note:</font>
+The tar files in the distribution use GNU tar extensions
+and must be untarred with a GNU compatible version of tar. The version
+of tar on Solaris and Mac OS X will not work with these files</p>
+
+<a name="changes"><h2>Changes</h2></a>
+
+<p>The changes in this release are detailed in the release notes.</p>
+
+<p>Thank you for using <a href="http://commons.apache.org/text/">Text</a>.</p>
+
+<p>From the Apache Commons Project<br><a href="http://commons.apache.org/">http://commons.apache.org/</a></p>
+
+<h2><a name="mirrors">Download from your
+    <a href="http://www.apache.org/dyn/closer.cgi/commons/">nearest mirror site!</a></a></h2>
+
+<p>
+    Do not download from www.apache.org.  Please use a mirror site
+    to help us save apache.org bandwidth.
+    <a href="http://www.apache.org/dyn/closer.cgi/commons/">Go
+      here to find your nearest mirror.</a>
+</p>
+
+<a name="sig"><h2>Signatures</h2></a>
+
+<p>Many of the files have been digitally signed using GnuPG.  If so,
+there will be an accompanying <samp><em>file</em>.asc</samp> signature
+file in the same directory as the file (binaries/ or source/).  The
+signing keys can be found in the distribution directory at &lt;<a
+HREF="http://www.apache.org/dist/commons/KEYS"><samp>http://www.apache.org/dist/commons/KEYS</samp></a>&gt;.</p>
+
+<p><b>Always download the KEYS file directly from the Apache site, never from a mirror site.</b></p>
+
+
+<pre>Always test available signatures, <i>e.g.</i>,
+$ pgpk -a KEYS
+$ pgpv commons-text-1.4-bin.tar.gz.asc
+or,
+$ pgp -ka KEYS
+$ pgp commons-text-1.4-bin.tar.gz.asc
+or,
+$ gpg --import KEYS
+$ gpg --verify commons-text-1.4-bin.tar.gz.asc
+</pre>
+<p>

Added: dev/commons/text/source/commons-text-1.6-src.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: dev/commons/text/source/commons-text-1.6-src.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/commons/text/source/commons-text-1.6-src.tar.gz.asc
==============================================================================
--- dev/commons/text/source/commons-text-1.6-src.tar.gz.asc (added)
+++ dev/commons/text/source/commons-text-1.6-src.tar.gz.asc Tue Mar  5 02:01:30 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEtuc9hOpPzEcWYIclP6rSzV7LsxQFAlvBTaIACgkQP6rSzV7L
+sxReahAAhvrOl//FZrUPVOfEgHpNkCxROlK78+yigB6MFUlAtczv4yF00IEBsGo6
+lID1ehi3xehRdW19PyurITxnQRVz6/qLO4KmW43Gx0UHKz79uwindwM2yQFo5WBw
+qYxekdNLtF9P1ezzkJ3qFIzNdWXzC4Q2lCUXL3xACLtEOjx7OsNryxbXrgQhLECq
+SMcJRvJfl4rKOAuV6dHuoV++AFAEEuUsFiy9yB180Zd4oGCItnxIyRVG71NxjA/0
+ZfEpcfxXvegtoNNmxF+mVLKelhGMJxN6LNK4saLzAKY+7pnGjhacyP1rKuz1ecCy
+I2xTAV7CQ+v4IVB7V9aWDx36Xf91QD3Qa47uC+P8Y76S800dErb6l8QpMlp1xjrS
+RrS+Y49JhxMRwQ0Cn9SkIf180xCjoC5VaUwP5PJfvC53EQWr93s4ueNNxa1vvnV3
+kwKUM/TN/5dTcyqU3JGdBZiWN5wSIMxmbRXOrvkIkkoDdasneQFUvrJ55GUlQcIA
+zaeiD0KH0DBzPJRI8rA6jFE7OI3fPpFs8x2Nks7Yic/4g9OjO+Cff8W1NtTKvt+u
+F5Wr9ItH73rDF1C/aBeR57sKeCLftT8KJevDlcWu4OYj/txke3P4adJjAGSGFPpK
+/pZk5B2e8YwUI/9OHXFUgpCaXcyrTgMF3xPEAyCq0LUxGuMvY5I=
+=ik9U
+-----END PGP SIGNATURE-----

Added: dev/commons/text/source/commons-text-1.6-src.tar.gz.sha256
==============================================================================
--- dev/commons/text/source/commons-text-1.6-src.tar.gz.sha256 (added)
+++ dev/commons/text/source/commons-text-1.6-src.tar.gz.sha256 Tue Mar  5 02:01:30 2019
@@ -0,0 +1 @@
+643e64ef7c7fd3a91875a1e33abc5648b057fe9729b466ddc6b7dbd7ec2b7c7a

Added: dev/commons/text/source/commons-text-1.6-src.tar.gz.sha512
==============================================================================
--- dev/commons/text/source/commons-text-1.6-src.tar.gz.sha512 (added)
+++ dev/commons/text/source/commons-text-1.6-src.tar.gz.sha512 Tue Mar  5 02:01:30 2019
@@ -0,0 +1 @@
+3e495ae0e819a6dbf69467d916d6a757a1d450efb324dce645d0eefb351ed70dc2fc9af7c499984ea7a745c9b5fa5b64172e7abf6706802cf41c0a5eb96284d1

Added: dev/commons/text/source/commons-text-1.6-src.zip
==============================================================================
Binary file - no diff available.

Propchange: dev/commons/text/source/commons-text-1.6-src.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/commons/text/source/commons-text-1.6-src.zip.asc
==============================================================================
--- dev/commons/text/source/commons-text-1.6-src.zip.asc (added)
+++ dev/commons/text/source/commons-text-1.6-src.zip.asc Tue Mar  5 02:01:30 2019
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEtuc9hOpPzEcWYIclP6rSzV7LsxQFAlvBTaIACgkQP6rSzV7L
+sxS5hA/9HfyhUsLiw7uwWjMznhZQZlaK24H16aHBC4upNQJ7D72+Jpw6aC0x1vcu
+i+kuTgmSB3MNkAGkZhAJA17g0hti8IfDoWi+oKsi9RL0xkwtqgCfmjMIVTGWtNnQ
+eG5DCaZVPHqhFX2yFFy0ZiTX4fgjiin8RIXuooMljhysFpplufcCzZSMgBI0wITW
+h2PuYBDXCH5etnoSt+eP5wa4mkMiVLNEqCIJqSr6R9GOkl2+gwRsE3/PtcCCh5Mk
+QXVqiIxWD4YY55bnbHXa1z3S6CVLMruAQZBsiTXXfnmmhAqi0utDz0rRLGolr1Wn
+uHu+19Pe9JrEWGAYdHtJEMVWcBwp5wXMfS3Sdj5nkT5ti00DAPw/l2vPbeNUH5Rp
+AbHcQ4kJFfTVGfMzZEGp7WHx+HJgVbJInbE/LuAcL/GvdDCCPMZpYBSn9+j2khdb
+KagdonfhUf+TxKjeQTbM9/2upYETfbBjN/JDW3X4GXPHrOl6aBr5Zd8j++swJKMS
+Xgz4LMYSrQ8F1fWDxyEOq3+0AraSttUB7cR2AzjBZbAmH2zudMXPZkn6F6/NC/8v
+FSN/L5mli9Mo1obx8R5TqWIiPC11CmwTyY4CF6ZjL7HCs6Dsrp9QwmRa+lxvg7eh
+CD5v+xMLUGTRNl0qqQ57oy8uDY0izVnZiBgQ0WK1p51/fOU1l2A=
+=ElYA
+-----END PGP SIGNATURE-----

Added: dev/commons/text/source/commons-text-1.6-src.zip.sha256
==============================================================================
--- dev/commons/text/source/commons-text-1.6-src.zip.sha256 (added)
+++ dev/commons/text/source/commons-text-1.6-src.zip.sha256 Tue Mar  5 02:01:30 2019
@@ -0,0 +1 @@
+b9a155e6f2522749b6968fff8da52913dd0d59ed7b9d924381e26c706fe088d5

Added: dev/commons/text/source/commons-text-1.6-src.zip.sha512
==============================================================================
--- dev/commons/text/source/commons-text-1.6-src.zip.sha512 (added)
+++ dev/commons/text/source/commons-text-1.6-src.zip.sha512 Tue Mar  5 02:01:30 2019
@@ -0,0 +1 @@
+ad6d365fc11a3f2de8c1c61434e55f8ab51b859bc55a4b0ff78e533277eb9457097f93a1e2082cb094c7cfb2ef1a98472db3e8a691060ff785fc9b0d99214503

Added: dev/commons/text/source/header.html
==============================================================================
--- dev/commons/text/source/header.html (added)
+++ dev/commons/text/source/header.html Tue Mar  5 02:01:30 2019
@@ -0,0 +1,12 @@
+
+<h2>Apache Commons Project Distributions</h2>
+
+<p>The most recent source and binary releases for the Apache Commons project are available from this directory listing. For older releases, please use the <a href="http://archive.apache.org/dist/commons/">archives</a>. </p>
+
+<h2>Important Notices</h2>
+
+<ul>
+<li><a href="#mirrors">Download from your nearest mirror site!</a></li>
+<li><a href="#sig">PGP/GPG Signatures</a></li>
+</ul>
+

Added: dev/commons/text/source/readme.html
==============================================================================
--- dev/commons/text/source/readme.html (added)
+++ dev/commons/text/source/readme.html Tue Mar  5 02:01:30 2019
@@ -0,0 +1,51 @@
+
+<h1>Apache Commons Text v1.4</h1>
+
+<p>This is the 1.4 version of Apache Commons Text. It is available in both binary and source distributions.</p>
+
+
+<p><font color="red" size="+2">Note:</font>
+The tar files in the distribution use GNU tar extensions
+and must be untarred with a GNU compatible version of tar. The version
+of tar on Solaris and Mac OS X will not work with these files</p>
+
+<a name="changes"><h2>Changes</h2></a>
+
+<p>The changes in this release are detailed in the release notes.</p>
+
+<p>Thank you for using <a href="http://commons.apache.org/text/">Text</a>.</p>
+
+<p>From the Apache Commons Project<br><a href="http://commons.apache.org/">http://commons.apache.org/</a></p>
+
+<h2><a name="mirrors">Download from your
+    <a href="http://www.apache.org/dyn/closer.cgi/commons/">nearest mirror site!</a></a></h2>
+
+<p>
+    Do not download from www.apache.org.  Please use a mirror site
+    to help us save apache.org bandwidth.
+    <a href="http://www.apache.org/dyn/closer.cgi/commons/">Go
+      here to find your nearest mirror.</a>
+</p>
+
+<a name="sig"><h2>Signatures</h2></a>
+
+<p>Many of the files have been digitally signed using GnuPG.  If so,
+there will be an accompanying <samp><em>file</em>.asc</samp> signature
+file in the same directory as the file (binaries/ or source/).  The
+signing keys can be found in the distribution directory at &lt;<a
+HREF="http://www.apache.org/dist/commons/KEYS"><samp>http://www.apache.org/dist/commons/KEYS</samp></a>&gt;.</p>
+
+<p><b>Always download the KEYS file directly from the Apache site, never from a mirror site.</b></p>
+
+
+<pre>Always test available signatures, <i>e.g.</i>,
+$ pgpk -a KEYS
+$ pgpv commons-text-1.4-bin.tar.gz.asc
+or,
+$ pgp -ka KEYS
+$ pgp commons-text-1.4-bin.tar.gz.asc
+or,
+$ gpg --import KEYS
+$ gpg --verify commons-text-1.4-bin.tar.gz.asc
+</pre>
+<p>