# HG changeset patch # User masneyb # Date 1163731506 0 # Node ID e30271d473536a6981d807084e75814b60c1085e # Parent 5e300592337430299bad9e26bc62c7186f9b3526 2006-11-16 Brian Masney * docs/gftp-faq.sgml - added FAQ entry on how to transfer HTML files in binary mode using the FTP protocol. * docs/website/screenshots.html - updated this webpage diff -r 5e3005923374 -r e30271d47353 ChangeLog --- a/ChangeLog Fri Nov 17 02:24:14 2006 +0000 +++ b/ChangeLog Fri Nov 17 02:45:06 2006 +0000 @@ -1,4 +1,9 @@ 2006-11-16 Brian Masney + * docs/gftp-faq.sgml - added FAQ entry on how to transfer HTML files in + binary mode using the FTP protocol. + + * docs/website/screenshots.html - updated this webpage + * lib/gftp.h lib/protocols.c lib/local.c - added support for detecting recursive symbolic links. This currently only works when uploading files. It will only work when downloading files if the inode and device @@ -3724,7 +3729,7 @@ * cvsclean - added this script - * *.[ch] - added $Id: ChangeLog,v 1.501 2006/11/17 02:24:03 masneyb Exp $ tags + * *.[ch] - added $Id: ChangeLog,v 1.502 2006/11/17 02:45:03 masneyb Exp $ tags * debian/* - updated files from Debian maintainer diff -r 5e3005923374 -r e30271d47353 docs/gftp-faq.sgml --- a/docs/gftp-faq.sgml Fri Nov 17 02:24:14 2006 +0000 +++ b/docs/gftp-faq.sgml Fri Nov 17 02:45:06 2006 +0000 @@ -6,7 +6,7 @@ - $Date: 2004/10/27 22:18:29 $ + $Date: 2006/11/17 02:45:04 $ gFTP FAQ @@ -304,6 +304,31 @@ + +I can't transfer certain file types in binary mode using the FTP protocol. + + +Edit your ~/.gftp/gftprc file and look at the ext= lines towards the bottom of the file. These lines control what icon is used for each file type. It also controls what mode is used for the file transfer. For example, to transfer all HTML files as binary, change the following two lines: + + + +ext=.htm:world.xpm:A: +ext=.html:world.xpm:A: + + + +to the following: + + + +ext=.htm:world.xpm:B: +ext=.html:world.xpm:B: + + + + + +