Add missing entries in CSVFormat list. Branding.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1745265 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2016-05-23 20:42:58 +00:00
parent 739c122d9f
commit 305beea60f
2 changed files with 5 additions and 3 deletions

View File

@ -27,6 +27,8 @@ limitations under the License.
<p>The most common CSV formats are predefined in the <a href="apidocs/org/apache/commons/csv/CSVFormat.html">CSVFormat</a> class: <p>The most common CSV formats are predefined in the <a href="apidocs/org/apache/commons/csv/CSVFormat.html">CSVFormat</a> class:
<ul> <ul>
<li>Microsoft Excel</li> <li>Microsoft Excel</li>
<li><a href="http://www.ibm.com/support/knowledgecenter/SSBJG3_2.5.0/com.ibm.gen_busug.doc/c_fgl_InOutSql_UNLOAD.htm">Informix UNLOAD</a></li>
<li><a href="http://www.ibm.com/support/knowledgecenter/SSBJG3_2.5.0/com.ibm.gen_busug.doc/c_fgl_InOutSql_UNLOAD.htm">Informix UNLOAD CSV</a></li>
<li><a href="http://dev.mysql.com/doc/refman/5.0/en/mysqldump-delimited-text.html">MySQL</a></li> <li><a href="http://dev.mysql.com/doc/refman/5.0/en/mysqldump-delimited-text.html">MySQL</a></li>
<li><a href="http://tools.ietf.org/html/rfc4180">RFC 4180</a></li> <li><a href="http://tools.ietf.org/html/rfc4180">RFC 4180</a></li>
<li><a href="http://en.wikipedia.org/wiki/Tab-separated_values">TDF</a></li> <li><a href="http://en.wikipedia.org/wiki/Tab-separated_values">TDF</a></li>

View File

@ -18,7 +18,7 @@ limitations under the License.
<document> <document>
<properties> <properties>
<title>User Guide</title> <title>User Guide</title>
<author email="dev@commons.apache.org">Commons Documentation Team</author> <author email="dev@commons.apache.org">Apache Commons Documentation Team</author>
</properties> </properties>
<body> <body>
<!-- ================================================== --> <!-- ================================================== -->
@ -35,8 +35,8 @@ limitations under the License.
<dl> <dl>
<dt>EXCEL</dt><dd>The Microsoft Excel CSV format.</dd> <dt>EXCEL</dt><dd>The Microsoft Excel CSV format.</dd>
<dt>INFORMIX_UNLOAD</dt><dd>Informix CSV UNLOAD format used by the <code>UNLOAD TO file_name</code> operation.</dd> <dt>INFORMIX_UNLOAD</dt><dd>Informix <a href="http://www.ibm.com/support/knowledgecenter/SSBJG3_2.5.0/com.ibm.gen_busug.doc/c_fgl_InOutSql_UNLOAD.htm">UNLOAD</a> format used by the <code>UNLOAD TO file_name</code> operation.</dd>
<dt>INFORMIX_UNLOAD_CSV</dt><dd>Informix CSV UNLOAD format used by the <code>UNLOAD TO file_name</code> operation (escaping is disabled.)</dd> <dt>INFORMIX_UNLOAD_CSV</dt><dd>Informix <a href="http://www.ibm.com/support/knowledgecenter/SSBJG3_2.5.0/com.ibm.gen_busug.doc/c_fgl_InOutSql_UNLOAD.htm">CSV UNLOAD</a> format used by the <code>UNLOAD TO file_name</code> operation (escaping is disabled.)</dd>
<dt>MYSQL</dt><dd>The Oracle MySQL CSV format.</dd> <dt>MYSQL</dt><dd>The Oracle MySQL CSV format.</dd>
<dt>RFC-4180</dt><dd>The RFC-4180 format defined by <a href="https://tools.ietf.org/html/rfc4180">RFC-4180</a></dd> <dt>RFC-4180</dt><dd>The RFC-4180 format defined by <a href="https://tools.ietf.org/html/rfc4180">RFC-4180</a></dd>
<dt>TDF</dt><dd>A tab delimited format</dd> <dt>TDF</dt><dd>A tab delimited format</dd>