You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2016/05/23 20:42:58 UTC

svn commit: r1745265 - in /commons/proper/csv/trunk/src/site/xdoc: index.xml user-guide.xml

Author: ggregory
Date: Mon May 23 20:42:58 2016
New Revision: 1745265

URL: http://svn.apache.org/viewvc?rev=1745265&view=rev
Log:
Add missing entries in CSVFormat list. Branding.

Modified:
    commons/proper/csv/trunk/src/site/xdoc/index.xml
    commons/proper/csv/trunk/src/site/xdoc/user-guide.xml

Modified: commons/proper/csv/trunk/src/site/xdoc/index.xml
URL: http://svn.apache.org/viewvc/commons/proper/csv/trunk/src/site/xdoc/index.xml?rev=1745265&r1=1745264&r2=1745265&view=diff
==============================================================================
--- commons/proper/csv/trunk/src/site/xdoc/index.xml (original)
+++ commons/proper/csv/trunk/src/site/xdoc/index.xml Mon May 23 20:42:58 2016
@@ -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:
   <ul>
     <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://tools.ietf.org/html/rfc4180">RFC 4180</a></li>
     <li><a href="http://en.wikipedia.org/wiki/Tab-separated_values">TDF</a></li>

Modified: commons/proper/csv/trunk/src/site/xdoc/user-guide.xml
URL: http://svn.apache.org/viewvc/commons/proper/csv/trunk/src/site/xdoc/user-guide.xml?rev=1745265&r1=1745264&r2=1745265&view=diff
==============================================================================
--- commons/proper/csv/trunk/src/site/xdoc/user-guide.xml (original)
+++ commons/proper/csv/trunk/src/site/xdoc/user-guide.xml Mon May 23 20:42:58 2016
@@ -18,7 +18,7 @@ limitations under the License.
 <document>
   <properties>
     <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>
   <body>
     <!-- ================================================== -->
@@ -35,8 +35,8 @@ limitations under the License.
       
       <dl>
         <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_CSV</dt><dd>Informix CSV UNLOAD format used by the <code>UNLOAD TO file_name</code> operation (escaping is disabled.)</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 <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>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>