[ http://issues.apache.org/jira/browse/NET-114?page=comments#action_12442207 ] David Kocher commented on NET-114: ----------------------------------
[[ Old comment, sent by email on Sun, 27 Aug 2006 16:53:31 +0200 (CEST) ]] (This is an automated response you will receive only once.) I am currently travelling and emails are replied to with a considerable time lag only. If you are having trouble with Cyberduck, please have a look at the help pages [1] and discuss your problem on the forum [2]. If you discovered a bug or would like to request a feature, please open a ticket [3] for it, so I don't forget about. If you are curious about my journey, have a look at my blog [4] which might reveal some tidbits ;) Thanks for your patience! ~David Kocher [1] http://help.cyberduck.ch/ [2] http://forum.cyberduck.ch/ [3] http://trac.cyberduck.ch/newticket/ [4] http://sudo.ch/~dkocher/ > [net] Unix parser not handling filenames beginning with whitespace > ------------------------------------------------------------------ > > Key: NET-114 > URL: http://issues.apache.org/jira/browse/NET-114 > Project: Commons Net > Issue Type: Bug > Environment: Operating System: Mac OS X 10.3 > Platform: All > Reporter: David Kocher > Priority: Minor > > Filenames beginning with whitespace (such as " filename") are not parsed > correctly. Currently any > whitespace between the date and filename is ignored. However one can probably > assume there is only > one whitespace character between the date and the filename and any additional > whitespace is part of > the filename. (This is an assumption made from my experience with different > ftp server > implementations) > =============================================================== > ==== > --- UnixFTPEntryParser.java (revision 208907) > +++ UnixFTPEntryParser.java (working copy) > @@ -101,9 +101,9 @@ > year (for non-recent standard format) > or time (for numeric or recent standard format > */ > - + "(\\d+(?::\\d+)?)\\s+" > + + "(\\d+(?::\\d+)?)\\s" > > - + "(\\S*)(\\s*.*)"; > + + "(\\s*\\S*)(\\s*.*)"; > > > /** -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
