You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Sebb (JIRA)" <ji...@apache.org> on 2009/09/13 14:37:58 UTC

[jira] Updated: (NET-294) UnixFTPEntryParser fails to parse some entries

     [ https://issues.apache.org/jira/browse/NET-294?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Sebb updated NET-294:
---------------------

    Description: 
The regex does match the entry but the resulting groups are wrong for exemple, with
{code}
-rwxrwx---   1 ftp      ftp-admin 816026400 Oct  5  2008 bloplab 7 cd1.img
{code}
the unix group name group will match "ftp-admin 816026400 Oct" file size group will match "5" first date group will match "2008 bloplab" then the year group will match "7" and the file name group will match "cd1.img"
in this listing :
{code}
-rwxrwx---   1 ftp      ftp-admin      771 Oct  5  2008 bloplab 7 cd1.ccd
-rwxrwx---   1 ftp      ftp-admin       76 Oct  5  2008 bloplab 7 cd1.cue
-rwxrwx---   1 ftp      ftp-admin 816026400 Oct  5  2008 bloplab 7 cd1.img
-rwxrwx---   1 ftp      ftp-admin 33307200 Oct  5  2008 bloplab 7 cd1.sub
-rwxrwx---   1 ftp      ftp-admin      772 Oct  5  2008 bloplab 7 cd2.ccd
-rwxrwx---   1 ftp      ftp-admin       76 Oct  5  2008 bloplab 7 cd2.cue
-rwxrwx---   1 ftp      ftp-admin 413902608 Oct  5  2008 bloplab 7 cd2.img
-rwxrwx---   1 ftp      ftp-admin 16893984 Oct  5  2008 bloplab 7 cd2.sub
{code}
the 4 entries in which groupname and file size are only separated by one space wont be parsed properly, the others work

  was:
The regex does match the entry but the resulting groups are wrong for exemple, with
-rwxrwx---   1 ftp      ftp-admin 816026400 Oct  5  2008 bloplab 7 cd1.img
the unix group name group will match "ftp-admin 816026400 Oct" file size group will match "5" first date group will match "2008 bloplab" then the year group will match "7" and the file name group will match "cd1.img"
in this listing :
-rwxrwx---   1 ftp      ftp-admin      771 Oct  5  2008 bloplab 7 cd1.ccd
-rwxrwx---   1 ftp      ftp-admin       76 Oct  5  2008 bloplab 7 cd1.cue
-rwxrwx---   1 ftp      ftp-admin 816026400 Oct  5  2008 bloplab 7 cd1.img
-rwxrwx---   1 ftp      ftp-admin 33307200 Oct  5  2008 bloplab 7 cd1.sub
-rwxrwx---   1 ftp      ftp-admin      772 Oct  5  2008 bloplab 7 cd2.ccd
-rwxrwx---   1 ftp      ftp-admin       76 Oct  5  2008 bloplab 7 cd2.cue
-rwxrwx---   1 ftp      ftp-admin 413902608 Oct  5  2008 bloplab 7 cd2.img
-rwxrwx---   1 ftp      ftp-admin 16893984 Oct  5  2008 bloplab 7 cd2.sub
the 4 entries in which groupname and file size are only separated by one space wont be parsed properly, the others work


Add markup to ensure spaces are preserved in the listings

> UnixFTPEntryParser fails to parse some entries
> ----------------------------------------------
>
>                 Key: NET-294
>                 URL: https://issues.apache.org/jira/browse/NET-294
>             Project: Commons Net
>          Issue Type: Bug
>    Affects Versions: 2.0
>            Reporter: Gilles Duboscq
>
> The regex does match the entry but the resulting groups are wrong for exemple, with
> {code}
> -rwxrwx---   1 ftp      ftp-admin 816026400 Oct  5  2008 bloplab 7 cd1.img
> {code}
> the unix group name group will match "ftp-admin 816026400 Oct" file size group will match "5" first date group will match "2008 bloplab" then the year group will match "7" and the file name group will match "cd1.img"
> in this listing :
> {code}
> -rwxrwx---   1 ftp      ftp-admin      771 Oct  5  2008 bloplab 7 cd1.ccd
> -rwxrwx---   1 ftp      ftp-admin       76 Oct  5  2008 bloplab 7 cd1.cue
> -rwxrwx---   1 ftp      ftp-admin 816026400 Oct  5  2008 bloplab 7 cd1.img
> -rwxrwx---   1 ftp      ftp-admin 33307200 Oct  5  2008 bloplab 7 cd1.sub
> -rwxrwx---   1 ftp      ftp-admin      772 Oct  5  2008 bloplab 7 cd2.ccd
> -rwxrwx---   1 ftp      ftp-admin       76 Oct  5  2008 bloplab 7 cd2.cue
> -rwxrwx---   1 ftp      ftp-admin 413902608 Oct  5  2008 bloplab 7 cd2.img
> -rwxrwx---   1 ftp      ftp-admin 16893984 Oct  5  2008 bloplab 7 cd2.sub
> {code}
> the 4 entries in which groupname and file size are only separated by one space wont be parsed properly, the others work

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.