summaryrefslogtreecommitdiff
path: root/daemon/ParseFTPList.c
Commit message (Collapse)AuthorAgeFilesLines
* ftp: Fix dir listing for windows long datesRoss Lagerwall2015-03-081-1/+1
| | | | | | | | Fix from upstream: http://hg.mozilla.org/mozilla-central/rev/e10a2ca070e6 https://bugzilla.mozilla.org/show_bug.cgi?id=1061898 https://bugzilla.gnome.org/show_bug.cgi?id=601583
* ftp: Fix FTP date parsing of midnight for DOS formatRoss Lagerwall2015-03-081-0/+2
| | | | | | | | Fix from upstream: http://hg.mozilla.org/mozilla-central/rev/2c21b94a7775 https://bugzilla.mozilla.org/show_bug.cgi?id=961346 https://bugzilla.gnome.org/show_bug.cgi?id=601583
* ftp: Update license of ParseFTPListRoss Lagerwall2015-03-081-36/+4
| | | | | | | | Synced from upstream commit: http://hg.mozilla.org/mozilla-central/rev/f4157e8c4107 https://bugzilla.mozilla.org/show_bug.cgi?id=716478 https://bugzilla.gnome.org/show_bug.cgi?id=601583
* ftp: Fix directory parsing error on AIX.Ross Lagerwall2015-03-081-6/+15
| | | | | | | | Fix from upstream: http://hg.mozilla.org/mozilla-central/rev/b623418ab1de https://bugzilla.mozilla.org/show_bug.cgi?id=543805 https://bugzilla.gnome.org/show_bug.cgi?id=601583
* Fixed parsing of CMU/VMS-IP FTP style listing (upstream)Benjamin Otte2009-11-131-6/+19
| | | | | | | upstream references: http://bugzilla.mozilla.org/show_bug.cgi?id=515583 http://hg.mozilla.org/mozilla-central/rev/98330c8132a9 http://hg.mozilla.org/mozilla-central/rev/cade5b705114
* Bug 576229 – Doesn't handle files with leading space (upstream)Michal Novotny2009-08-101-19/+46
| | | | | | | | | ParseFTPList can't handle regular unix ls -l listing of filenames starting with spaces upstream references: http://bugzilla.mozilla.org/show_bug.cgi?id=484684 http://hg.mozilla.org/mozilla-central/rev/179c6f22d6f2
* "The FTP folder won't open!" (upstream)Michal Novotny2009-08-101-13/+37
| | | | | | | | | | | | | - space and tab at the end of filename in Unix and DOS style listings - date in DOS listing, short variants of year 00-80 were badly converted to 100-180, years 81+ weren't changed at all - enhanced logic when searching for symlink name in Unix style listing - regular files with sequence " -> " in name aren't now incorrectly detected as symlinks (DOS and Unix style listing only) upstream references: http://bugzilla.mozilla.org/show_bug.cgi?id=365133 http://hg.mozilla.org/mozilla-central/rev/b79bc71c6832
* get rid of modelines The modelines were inconsistent and caused issuesBenjamin Otte2008-04-221-1/+0
| | | | | | | | | * */*.[ch]: get rid of modelines The modelines were inconsistent and caused issues when used in different editors. svn path=/trunk/; revision=1756
* Trivial C89 patch, fixes #520339. Patch from Jens Granseuer.A. Walton2008-03-041-1/+1
| | | | | | | | | | | 2008-03-04 A. Walton <awalton@svn.gnome.org> * daemon/ParseFTPList.c (ParseFTPList): Trivial C89 patch, fixes #520339. Patch from Jens Granseuer. svn path=/trunk/; revision=1548
* rewrite directory enumeration and query_info by using the LIST parsingBenjamin Otte2008-03-011-0/+1843
2008-03-01 Benjamin Otte <otte@gnome.org> * daemon/Makefile.am: * daemon/ParseFTPList.c: * daemon/ParseFTPList.h: * daemon/gvfsbackendftp.c: (ftp_connection_cd), (process_line), (run_list_command), (do_query_info), (do_enumerate): rewrite directory enumeration and query_info by using the LIST parsing code from Mozilla. It was the only code I could find that was LGPL licensed, even though it looks way out of date. Also, error messages are handled way better and the code even copes somewhat with symlinks. svn path=/trunk/; revision=1463