From 7e669566dfb9b6adb4746f1d709b802b075b6796 Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Thu, 4 Jul 2019 10:00:21 -0400 Subject: [PATCH] Use HTTPS links to Apache. --- RELEASE-NOTES.txt | 26 +++++++++---------- pom.xml | 2 +- src/site/xdoc/index.xml | 4 +-- src/site/xdoc/mail-lists.xml | 2 +- src/site/xdoc/user-guide.xml | 24 ++++++++--------- .../org/apache/commons/csv/CSVParserTest.java | 4 +-- 6 files changed, 31 insertions(+), 31 deletions(-) diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt index 3c686140..7f342119 100644 --- a/RELEASE-NOTES.txt +++ b/RELEASE-NOTES.txt @@ -36,14 +36,14 @@ o CSV-237: Update to Java 8. Thanks to Gary Gregory. o Update tests from H2 1.4.198 to 1.4.199. Thanks to Gary Gregory. -Historical list of changes: http://commons.apache.org/proper/commons-csv/changes-report.html +Historical list of changes: https://commons.apache.org/proper/commons-csv/changes-report.html For complete information on Apache Commons CSV, including instructions on how to submit bug reports, patches, or suggestions for improvement, see the Apache Apache Commons CSV website: -http://commons.apache.org/proper/commons-csv/ +https://commons.apache.org/proper/commons-csv/ -Download it from http://commons.apache.org/proper/commons-csv/download_csv.cgi +Download it from https://commons.apache.org/proper/commons-csv/download_csv.cgi Have fun! -Apache Commons CSV team @@ -150,12 +150,12 @@ o CSV-187: Update platform requirement from Java 6 to 7. Thanks to Gary Gregory. o CSV-201: Do not use RuntimeException in CSVParser.iterator().new Iterator() {...}.getNextRecord(). Thanks to Benedikt Ritter, Gary Gregory. -Historical list of changes: http://commons.apache.org/proper/commons-csv/changes-report.html +Historical list of changes: https://commons.apache.org/proper/commons-csv/changes-report.html For complete information on Apache Commons CSV, including instructions on how to submit bug reports, patches, or suggestions for improvement, see the Apache Apache Commons CSV website: -http://commons.apache.org/proper/commons-csv/ +https://commons.apache.org/proper/commons-csv/ Have fun! -Apache Commons CSV team @@ -194,12 +194,12 @@ o CSV-181: Make CSVPrinter.print(Object) GC-free. Thanks to Gary Gregory. o CSV-183: Drop ferc.gov tests. -Historical list of changes: http://commons.apache.org/proper/commons-csv/changes-report.html +Historical list of changes: https://commons.apache.org/proper/commons-csv/changes-report.html For complete information on Apache Commons CSV, including instructions on how to submit bug reports, patches, or suggestions for improvement, see the Apache Apache Commons CSV website: -http://commons.apache.org/proper/commons-csv/ +https://commons.apache.org/proper/commons-csv/ Have fun! -Apache Commons CSV team @@ -286,12 +286,12 @@ o CSV-145: CSVFormat.with* methods clear the header comments. Thanks to Frank U o CSV-156: Incorrect Javadoc on QuoteMode.NONE. Thanks to Jason Steenstra-Pickens. -Historical list of changes: http://commons.apache.org/proper/commons-csv/changes-report.html +Historical list of changes: https://commons.apache.org/proper/commons-csv/changes-report.html For complete information on Apache Commons CSV, including instructions on how to submit bug reports, patches, or suggestions for improvement, see the Apache Apache Commons CSV website: -http://commons.apache.org/proper/commons-csv/ +https://commons.apache.org/proper/commons-csv/ Have fun! -Apache Commons CSV team @@ -332,12 +332,12 @@ Changes: o [CSV-124] Improve toString() implementation of CSVRecord. Thanks to Kalyan. o [CSV-134] Unified parameter validation. Thanks to wu wen. -Historical list of changes: http://commons.apache.org/proper/commons-csv/changes-report.html +Historical list of changes: https://commons.apache.org/proper/commons-csv/changes-report.html For complete information on Apache Commons CSV, including instructions on how to submit bug reports, patches, or suggestions for improvement, see the Apache Apache Commons CSV website: -http://commons.apache.org/proper/commons-csv/ +https://commons.apache.org/proper/commons-csv/ Have fun! -Apache Commons CSV team @@ -427,12 +427,12 @@ o CSV-26: ExtendedBufferedReader does too much o CSV-27: Decide whether to keep the csv.writer subpackage -Historical list of changes: http://commons.apache.org/proper/commons-csv/changes-report.html +Historical list of changes: https://commons.apache.org/proper/commons-csv/changes-report.html For complete information on Apache Commons CSV, including instructions on how to submit bug reports, patches, or suggestions for improvement, see the Apache Apache Commons CSV website: -http://commons.apache.org/proper/commons-csv/ +https://commons.apache.org/proper/commons-csv/ Have fun! -Apache Commons CSV team diff --git a/pom.xml b/pom.xml index 3fe5469b..4be375a3 100644 --- a/pom.xml +++ b/pom.xml @@ -25,7 +25,7 @@ commons-csv 1.8-SNAPSHOT Apache Commons CSV - http://commons.apache.org/proper/commons-csv/ + https://commons.apache.org/proper/commons-csv/ The Apache Commons CSV library provides a simple interface for reading and writing CSV files of various types. diff --git a/src/site/xdoc/index.xml b/src/site/xdoc/index.xml index 3b364583..9c42c79f 100644 --- a/src/site/xdoc/index.xml +++ b/src/site/xdoc/index.xml @@ -67,7 +67,7 @@ The git repository can be

See the -Download Page +Download Page for the latest releases.

diff --git a/src/site/xdoc/mail-lists.xml b/src/site/xdoc/mail-lists.xml index 30670fa0..d7bce4e9 100644 --- a/src/site/xdoc/mail-lists.xml +++ b/src/site/xdoc/mail-lists.xml @@ -49,7 +49,7 @@ limitations under the License.

Apache Commons CSV shares mailing lists with all the other - Commons Components. + Commons Components. To make it easier for people to only read messages related to components they are interested in, the convention in Commons is to prefix the subject line of messages with the component's name, for example: diff --git a/src/site/xdoc/user-guide.xml b/src/site/xdoc/user-guide.xml index af3e92ff..9ccbf649 100644 --- a/src/site/xdoc/user-guide.xml +++ b/src/site/xdoc/user-guide.xml @@ -34,18 +34,18 @@ limitations under the License. The CSVFormat class provides some commonly used CSV variants:

-
DEFAULT
Standard Comma Separated Value format, as for RFC4180 but allowing empty lines.
-
EXCEL
The Microsoft Excel CSV format.
-
INFORMIX_UNLOAD1.3
Informix UNLOAD format used by the UNLOAD TO file_name operation.
-
INFORMIX_UNLOAD_CSV1.3
Informix CSV UNLOAD format used by the UNLOAD TO file_name operation (escaping is disabled.)
-
MONGO_CSV1.7
MongoDB CSV format used by the mongoexport operation.
-
MONGO_TSV1.7
MongoDB TSV format used by the mongoexport operation.
-
MYSQL
The MySQL CSV format.
-
ORACLE1.6
Default Oracle format used by the SQL*Loader utility.
-
POSTGRESSQL_CSV1.5
Default PostgreSQL CSV format used by the COPY operation.
-
POSTGRESSQL_TEXT1.5
Default PostgreSQL text format used by the COPY operation.
-
RFC-4180
The RFC-4180 format defined by RFC-4180.
-
TDF
A tab delimited format.
+
DEFAULT
Standard Comma Separated Value format, as for RFC4180 but allowing empty lines.
+
EXCEL
The Microsoft Excel CSV format.
+
INFORMIX_UNLOAD1.3
Informix UNLOAD format used by the UNLOAD TO file_name operation.
+
INFORMIX_UNLOAD_CSV1.3
Informix CSV UNLOAD format used by the UNLOAD TO file_name operation (escaping is disabled.)
+
MONGO_CSV1.7
MongoDB CSV format used by the mongoexport operation.
+
MONGO_TSV1.7
MongoDB TSV format used by the mongoexport operation.
+
MYSQL
The MySQL CSV format.
+
ORACLE1.6
Default Oracle format used by the SQL*Loader utility.
+
POSTGRESSQL_CSV1.5
Default PostgreSQL CSV format used by the COPY operation.
+
POSTGRESSQL_TEXT1.5
Default PostgreSQL text format used by the COPY operation.
+
RFC-4180
The RFC-4180 format defined by RFC-4180.
+
TDF
A tab delimited format.
diff --git a/src/test/java/org/apache/commons/csv/CSVParserTest.java b/src/test/java/org/apache/commons/csv/CSVParserTest.java index 8953e388..53198939 100644 --- a/src/test/java/org/apache/commons/csv/CSVParserTest.java +++ b/src/test/java/org/apache/commons/csv/CSVParserTest.java @@ -1012,7 +1012,7 @@ public class CSVParserTest { @Test(expected = IllegalArgumentException.class) public void testParserUrlNullCharsetFormat() throws Exception { - try (final CSVParser parser = CSVParser.parse(new URL("http://commons.apache.org"), null, CSVFormat.DEFAULT)) { + try (final CSVParser parser = CSVParser.parse(new URL("https://commons.apache.org"), null, CSVFormat.DEFAULT)) { Assert.fail("This test should have thrown an exception."); } } @@ -1026,7 +1026,7 @@ public class CSVParserTest { @Test(expected = IllegalArgumentException.class) public void testParseUrlCharsetNullFormat() throws Exception { - try (final CSVParser parser = CSVParser.parse(new URL("http://commons.apache.org"), Charset.defaultCharset(), null)) { + try (final CSVParser parser = CSVParser.parse(new URL("https://commons.apache.org"), Charset.defaultCharset(), null)) { Assert.fail("This test should have thrown an exception."); } }