Skip to content

Commit

Permalink
Use HTTPS links to commons.apache.org.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gary Gregory committed Jul 4, 2019
1 parent 326f869 commit d21a59b
Show file tree
Hide file tree
Showing 31 changed files with 146 additions and 146 deletions.
20 changes: 10 additions & 10 deletions RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Lang 3.9 and onwards now targets Java 8.0, making use of features that arrived w

For the advice on upgrading from 2.x to 3.x, see the following page:

http://commons.apache.org/lang/article3_0.html
https://commons.apache.org/lang/article3_0.html

Apache Commons Lang, a package of Java utility classes for the
classes that are in java.lang's hierarchy, or are considered to be so
Expand All @@ -40,12 +40,12 @@ o LANG-1436: Consolidate the StringUtils equals and equalsIgnoreCase Javadoc and
o (doc) Fix javadoc for 'startIndex' parameter of StringUtils.join() methods. GitHub PR #412. Thanks to Andrei Troie aft90.


Historical list of changes: http://commons.apache.org/proper/commons-lang/changes-report.html
Historical list of changes: https://commons.apache.org/proper/commons-lang/changes-report.html

For complete information on Apache Commons Lang, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Apache Commons Lang website:

http://commons.apache.org/proper/commons-lang/
https://commons.apache.org/proper/commons-lang/

=============================================================================

Expand All @@ -64,7 +64,7 @@ Lang 3.0 and onwards now targets Java 7.0, making use of features that arrived w

For the advice on upgrading from 2.x to 3.x, see the following page:

http://commons.apache.org/lang/article3_0.html
https://commons.apache.org/lang/article3_0.html

Apache Commons Lang, a package of Java utility classes for the
classes that are in java.lang's hierarchy, or are considered to be so
Expand Down Expand Up @@ -95,7 +95,7 @@ Lang 3.0 and onwards now targets Java 7.0, making use of features that arrived w

For the advice on upgrading from 2.x to 3.x, see the following page:

http://commons.apache.org/lang/article3_0.html
https://commons.apache.org/lang/article3_0.html

Apache Commons Lang, a package of Java utility classes for the
classes that are in java.lang's hierarchy, or are considered to be so
Expand Down Expand Up @@ -155,7 +155,7 @@ variable arguments, autoboxing, concurrency and formatted output.

For the advice on upgrading from 2.x to 3.x, see the following page:

http://commons.apache.org/lang/article3_0.html
https://commons.apache.org/lang/article3_0.html

Apache Commons Lang, a package of Java utility classes for the
classes that are in java.lang's hierarchy, or are considered to be so
Expand Down Expand Up @@ -201,7 +201,7 @@ only required Java 1.6.

For the advice on upgrading from 2.x to 3.x, see the following page:

http://commons.apache.org/lang/article3_0.html
https://commons.apache.org/lang/article3_0.html

HIGHLIGHTS
==========
Expand Down Expand Up @@ -231,7 +231,7 @@ o The methods org.apache.commons.lang3.StringUtils.getJaroWinklerDistance and

For more information see the Commons Text website:

http://commons.apache.org/text
https://commons.apache.org/text

The class org.apache.commons.lang3.CharEncoding has been deprecated in favor of
java.nio.charset.StandardCharsets.
Expand Down Expand Up @@ -1280,13 +1280,13 @@ o LANG-715: CharSetUtils.squeeze() speedup.
o LANG-716: swapCase and *capitalize speedups.


Historical list of changes: http://commons.apache.org/lang/changes-report.html
Historical list of changes: https://commons.apache.org/lang/changes-report.html

For complete information on Commons Lang, including instructions on how to
submit bug reports, patches, or suggestions for improvement, see the
Apache Commons Lang website:

http://commons.apache.org/lang/
https://commons.apache.org/lang/

Have fun!
-Apache Commons Lang team
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
standard as to justify existence in java.lang.
</description>

<url>http://commons.apache.org/proper/commons-lang/</url>
<url>https://commons.apache.org/proper/commons-lang/</url>

<issueManagement>
<system>jira</system>
Expand Down
2 changes: 1 addition & 1 deletion src/changes/changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -769,7 +769,7 @@ The <action> type attribute can be add,update,fix,remove.
<action type="add" issue="LANG-351">Extension to ClassUtils: Obtain the primitive class from a wrapper.</action>
<action type="fix" issue="LANG-399">Javadoc bugs - cannot find object.</action>
<action type="add" issue="LANG-345">Optimize HashCodeBuilder.append(Object).</action>
<action type="fix" issue="LANG-385">http://commons.apache.org/lang/developerguide.html "Building" section is incorrect and incomplete.</action>
<action type="fix" issue="LANG-385">https://commons.apache.org/lang/developerguide.html "Building" section is incorrect and incomplete.</action>
<action type="fix" issue="LANG-410">Ambiguous / confusing names in StringUtils replace* methods.</action>
<action type="add" issue="LANG-257">Add new splitByWholeSeparatorPreserveAllTokens() methods to StringUtils.</action>
<action type="add" issue="LANG-356">Add getStartTime to StopWatch.</action>
Expand Down
2 changes: 1 addition & 1 deletion src/changes/release-notes.vm
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Lang 3.9 and onwards now targets Java 8.0, making use of features that arrived w

For the advice on upgrading from 2.x to 3.x, see the following page:

http://commons.apache.org/lang/article3_0.html
https://commons.apache.org/lang/article3_0.html

$introduction.replaceAll("(?<!\015)\012", "
").replaceAll("(?m)^ +","")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
/**
* <p>Extends {@link java.math} for business mathematical classes.
* This package is intended for business mathematical use, not scientific use.
* See <a href="http://commons.apache.org/math/">Commons Math</a> for a more complete set of mathematical classes.
* See <a href="https://commons.apache.org/math/">Commons Math</a> for a more complete set of mathematical classes.
* These classes are immutable, and therefore thread-safe.</p>
*
* <p>Although Commons Math also exists, some basic mathematical functions are contained within Lang.
Expand Down
20 changes: 10 additions & 10 deletions src/main/java/org/apache/commons/lang3/text/WordUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -83,14 +83,14 @@ public WordUtils() {
* <td>"Here is one line of\ntext that is going\nto be wrapped after\n20 columns."</td>
* </tr>
* <tr>
* <td>"Click here to jump to the commons website - http://commons.apache.org"</td>
* <td>"Click here to jump to the commons website - https://commons.apache.org"</td>
* <td>20</td>
* <td>"Click here to jump\nto the commons\nwebsite -\nhttp://commons.apache.org"</td>
* <td>"Click here to jump\nto the commons\nwebsite -\nhttps://commons.apache.org"</td>
* </tr>
* <tr>
* <td>"Click here, http://commons.apache.org, to jump to the commons website"</td>
* <td>"Click here, https://commons.apache.org, to jump to the commons website"</td>
* <td>20</td>
* <td>"Click here,\nhttp://commons.apache.org,\nto jump to the\ncommons website"</td>
* <td>"Click here,\nhttps://commons.apache.org,\nto jump to the\ncommons website"</td>
* </tr>
* </table>
*
Expand Down Expand Up @@ -155,14 +155,14 @@ public static String wrap(final String str, final int wrapLength) {
* <td>"Here is one line of" + systemNewLine + "text that is going" + systemNewLine + "to be wrapped after" + systemNewLine + "20 columns."</td>
* </tr>
* <tr>
* <td>"Click here to jump to the commons website - http://commons.apache.org"</td>
* <td>"Click here to jump to the commons website - https://commons.apache.org"</td>
* <td>20</td>
* <td>"\n"</td>
* <td>false</td>
* <td>"Click here to jump\nto the commons\nwebsite -\nhttp://commons.apache.org"</td>
* <td>"Click here to jump\nto the commons\nwebsite -\nhttps://commons.apache.org"</td>
* </tr>
* <tr>
* <td>"Click here to jump to the commons website - http://commons.apache.org"</td>
* <td>"Click here to jump to the commons website - https://commons.apache.org"</td>
* <td>20</td>
* <td>"\n"</td>
* <td>true</td>
Expand Down Expand Up @@ -238,15 +238,15 @@ public static String wrap(final String str, final int wrapLength, final String n
* <td>"Here is one line of" + systemNewLine + "text that is going" + systemNewLine + "to be wrapped after" + systemNewLine + "20 columns."</td>
* </tr>
* <tr>
* <td>"Click here to jump to the commons website - http://commons.apache.org"</td>
* <td>"Click here to jump to the commons website - https://commons.apache.org"</td>
* <td>20</td>
* <td>"\n"</td>
* <td>false</td>
* <td>" "</td>
* <td>"Click here to jump\nto the commons\nwebsite -\nhttp://commons.apache.org"</td>
* <td>"Click here to jump\nto the commons\nwebsite -\nhttps://commons.apache.org"</td>
* </tr>
* <tr>
* <td>"Click here to jump to the commons website - http://commons.apache.org"</td>
* <td>"Click here to jump to the commons website - https://commons.apache.org"</td>
* <td>20</td>
* <td>"\n"</td>
* <td>true</td>
Expand Down
2 changes: 1 addition & 1 deletion src/site/resources/lang2-lang3-clirr-report.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<body class="composite">
<div id="banner">
<div id="bannerLeft">
<a href="http://commons.apache.org/" title="Apache Commons logo">
<a href="https://commons.apache.org/" title="Apache Commons logo">
<img src="./images/commons-logo.png" alt="Apache Commons logo"/>
</a>
</div><!-- id="bannerLeft" -->
Expand Down
2 changes: 1 addition & 1 deletion src/site/resources/release-notes/RELEASE-NOTES-2.4.txt
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ BUG FIXES IN 2.4:
* [LANG-372] - ToStringBuilder: MULTI_LINE_STYLE does not print anything from appendToString methods.
* [LANG-380] - infinite loop in Fraction.reduce when numerator == 0
* [LANG-381] - NumberUtils.min(floatArray) returns wrong value if floatArray[0] happens to be Float.NaN
* [LANG-385] - http://commons.apache.org/lang/developerguide.html "Building" section is incorrect and incomplete
* [LANG-385] - https://commons.apache.org/lang/developerguide.html "Building" section is incorrect and incomplete
* [LANG-393] - EqualsBuilder don't compare BigDecimals correctly
* [LANG-399] - Javadoc bugs - cannot find object
* [LANG-410] - Ambiguous / confusing names in StringUtils replace* methods
Expand Down
2 changes: 1 addition & 1 deletion src/site/resources/release-notes/RELEASE-NOTES-3.0.1.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ variable arguments, autoboxing, concurrency and formatted output.

For the advice on upgrading from 2.x to 3.x, see the following page:

http://commons.apache.org/lang/article3_0.html
https://commons.apache.org/lang/article3_0.html

CHANGES IN 3.0.1
================
Expand Down
2 changes: 1 addition & 1 deletion src/site/resources/release-notes/RELEASE-NOTES-3.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ variable arguments, autoboxing, concurrency and formatted output.

For the latest advice on upgrading, see the following page:

http://commons.apache.org/lang/article3_0.html
https://commons.apache.org/lang/article3_0.html

ADDITIONS IN 3.0
================
Expand Down
2 changes: 1 addition & 1 deletion src/site/resources/release-notes/RELEASE-NOTES-3.1.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ variable arguments, autoboxing, concurrency and formatted output.

For the advice on upgrading from 2.x to 3.x, see the following page:

http://commons.apache.org/lang/article3_0.html
https://commons.apache.org/lang/article3_0.html

CHANGES IN 3.1
================
Expand Down
6 changes: 3 additions & 3 deletions src/site/resources/release-notes/RELEASE-NOTES-3.2.1.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ at least requires Java 6.0.

For the advice on upgrading from 2.x to 3.x, see the following page:

http://commons.apache.org/lang/article3_0.html
https://commons.apache.org/lang/article3_0.html

BUG FIXES
===========
Expand Down Expand Up @@ -404,13 +404,13 @@ o LANG-715: CharSetUtils.squeeze() speedup.
o LANG-716: swapCase and *capitalize speedups.


Historical list of changes: http://commons.apache.org/lang/changes-report.html
Historical list of changes: https://commons.apache.org/lang/changes-report.html

For complete information on Commons Lang, including instructions on how to
submit bug reports, patches, or suggestions for improvement, see the
Apache Commons Lang website:

http://commons.apache.org/lang/
https://commons.apache.org/lang/

Have fun!
-Apache Commons Lang team
Expand Down
6 changes: 3 additions & 3 deletions src/site/resources/release-notes/RELEASE-NOTES-3.2.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ at least requires Java 6.0.

For the advice on upgrading from 2.x to 3.x, see the following page:

http://commons.apache.org/lang/article3_0.html
https://commons.apache.org/lang/article3_0.html

COMPATIBILITY WITH 3.1
========================
Expand Down Expand Up @@ -392,13 +392,13 @@ o LANG-715: CharSetUtils.squeeze() speedup.
o LANG-716: swapCase and *capitalize speedups.


Historical list of changes: http://commons.apache.org/lang/changes-report.html
Historical list of changes: https://commons.apache.org/lang/changes-report.html

For complete information on Commons Lang, including instructions on how to
submit bug reports, patches, or suggestions for improvement, see the
Apache Commons Lang website:

http://commons.apache.org/lang/
https://commons.apache.org/lang/

Have fun!
-Apache Commons Lang team
Expand Down
6 changes: 3 additions & 3 deletions src/site/resources/release-notes/RELEASE-NOTES-3.3.1.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ at least requires Java 6.0.

For the advice on upgrading from 2.x to 3.x, see the following page:

http://commons.apache.org/lang/article3_0.html
https://commons.apache.org/lang/article3_0.html

FIXED BUGS
============
Expand Down Expand Up @@ -483,13 +483,13 @@ o LANG-715: CharSetUtils.squeeze() speedup.
o LANG-716: swapCase and *capitalize speedups.


Historical list of changes: http://commons.apache.org/lang/changes-report.html
Historical list of changes: https://commons.apache.org/lang/changes-report.html

For complete information on Commons Lang, including instructions on how to
submit bug reports, patches, or suggestions for improvement, see the
Apache Commons Lang website:

http://commons.apache.org/lang/
https://commons.apache.org/lang/

Have fun!
-Apache Commons Lang team
Expand Down
6 changes: 3 additions & 3 deletions src/site/resources/release-notes/RELEASE-NOTES-3.3.2.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ at least requires Java 6.0.

For the advice on upgrading from 2.x to 3.x, see the following page:

http://commons.apache.org/lang/article3_0.html
https://commons.apache.org/lang/article3_0.html


NEW FEATURES
Expand Down Expand Up @@ -496,13 +496,13 @@ o LANG-715: CharSetUtils.squeeze() speedup.
o LANG-716: swapCase and *capitalize speedups.


Historical list of changes: http://commons.apache.org/lang/changes-report.html
Historical list of changes: https://commons.apache.org/lang/changes-report.html

For complete information on Commons Lang, including instructions on how to
submit bug reports, patches, or suggestions for improvement, see the
Apache Commons Lang website:

http://commons.apache.org/lang/
https://commons.apache.org/lang/

Have fun!
-Apache Commons Lang team
Expand Down
6 changes: 3 additions & 3 deletions src/site/resources/release-notes/RELEASE-NOTES-3.3.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ at least requires Java 6.0.

For the advice on upgrading from 2.x to 3.x, see the following page:

http://commons.apache.org/lang/article3_0.html
https://commons.apache.org/lang/article3_0.html

NEW FEATURES
==============
Expand Down Expand Up @@ -469,13 +469,13 @@ o LANG-715: CharSetUtils.squeeze() speedup.
o LANG-716: swapCase and *capitalize speedups.


Historical list of changes: http://commons.apache.org/lang/changes-report.html
Historical list of changes: https://commons.apache.org/lang/changes-report.html

For complete information on Commons Lang, including instructions on how to
submit bug reports, patches, or suggestions for improvement, see the
Apache Commons Lang website:

http://commons.apache.org/lang/
https://commons.apache.org/lang/

Have fun!
-Apache Commons Lang team
Expand Down
6 changes: 3 additions & 3 deletions src/site/resources/release-notes/RELEASE-NOTES-3.4.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ at least requires Java 6.0.

For the advice on upgrading from 2.x to 3.x, see the following page:

http://commons.apache.org/lang/article3_0.html
https://commons.apache.org/lang/article3_0.html


COMPATIBILITY
Expand Down Expand Up @@ -629,13 +629,13 @@ o LANG-715: CharSetUtils.squeeze() speedup.
o LANG-716: swapCase and *capitalize speedups.


Historical list of changes: http://commons.apache.org/lang/changes-report.html
Historical list of changes: https://commons.apache.org/lang/changes-report.html

For complete information on Commons Lang, including instructions on how to
submit bug reports, patches, or suggestions for improvement, see the
Apache Commons Lang website:

http://commons.apache.org/lang/
https://commons.apache.org/lang/

Have fun!
-Apache Commons Lang team
Expand Down
4 changes: 2 additions & 2 deletions src/site/resources/release-notes/RELEASE-NOTES-3.5.txt
Original file line number Diff line number Diff line change
Expand Up @@ -927,13 +927,13 @@ o LANG-715: CharSetUtils.squeeze() speedup.
o LANG-716: swapCase and *capitalize speedups.


Historical list of changes: http://commons.apache.org/lang/changes-report.html
Historical list of changes: https://commons.apache.org/lang/changes-report.html

For complete information on Commons Lang, including instructions on how to
submit bug reports, patches, or suggestions for improvement, see the
Apache Commons Lang website:

http://commons.apache.org/lang/
https://commons.apache.org/lang/

Have fun!
-Apache Commons Lang team
Expand Down
Loading

0 comments on commit d21a59b

Please sign in to comment.