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.");
}
}