You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by sc...@apache.org on 2005/04/18 04:57:04 UTC

svn commit: r161712 - jakarta/commons/proper/net/trunk/src/java/org/apache/commons/net/ftp/parser/UnixFTPEntryParser.java

Author: scohen
Date: Sun Apr 17 19:57:04 2005
New Revision: 161712

URL: http://svn.apache.org/viewcvs?view=rev&rev=161712
Log:
make UnixFTPEntryParser.NUMERIC_DATE_FORMAT public and add a comment.

Modified:
    jakarta/commons/proper/net/trunk/src/java/org/apache/commons/net/ftp/parser/UnixFTPEntryParser.java

Modified: jakarta/commons/proper/net/trunk/src/java/org/apache/commons/net/ftp/parser/UnixFTPEntryParser.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/net/trunk/src/java/org/apache/commons/net/ftp/parser/UnixFTPEntryParser.java?view=diff&r1=161711&r2=161712
==============================================================================
--- jakarta/commons/proper/net/trunk/src/java/org/apache/commons/net/ftp/parser/UnixFTPEntryParser.java (original)
+++ jakarta/commons/proper/net/trunk/src/java/org/apache/commons/net/ftp/parser/UnixFTPEntryParser.java Sun Apr 17 19:57:04 2005
@@ -47,7 +47,19 @@
     static final String NUMERIC_DATE_FORMAT 
 		= "yyyy-MM-dd HH:mm"; //2001-11-09 20:06
 
-    static final FTPClientConfig NUMERIC_DATE_CONFIG =
+    /**
+     * Some Linux distributions are now shipping an FTP server which formats
+     * file listing dates in an all-numeric format: 
+     * <code>"yyyy-MM-dd HH:mm</code>.  
+     * This is a very welcome development,  and hopefully it will soon become 
+     * the standard.  However, since it is so new, for now, and possibly 
+     * forever, we merely accomodate it, but do not make it the default.
+     * <p>
+     * For now end users may specify this format only via 
+     * <code>UnixFTPEntryParser(FTPClientConfig)</code>.
+     * Steve Cohen - 2005-04-17
+     */
+    public static final FTPClientConfig NUMERIC_DATE_CONFIG =
         new FTPClientConfig(
                 FTPClientConfig.SYST_UNIX,
                 NUMERIC_DATE_FORMAT,



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org