annotate docs/gftp.1 @ 303:3b9d5797050f

2003-11-2 Brian Masney <masneyb@gftp.org> * lib/rfc2068.c (rfc2068_chunked_read) - more improvements to this function so that it will parse more chunked file transfers correctly. * lib/misc.c lib/gftp.h lib/rfc2068.c src/gtk/bookmarks.c src/gtk/dnd.c - removed remove_double_slashes(). Call gftp_build_path() to build the paths. This now allows Novell directory listings with //server * lib/protocols.c src/gtk/transfer.c lib/gftp.h - added variable conn_error_no_timeout to gftp_transfer structure. If this is enabled, if the remote connection to the server timed out, don't wait and immediately reconnect. So far, the only time this is used is when the user was editing a file and it is to be uploaded back to the server. * src/gtk/gftp-gtk.h src/gtk/transfer.c - add_file_transfer() now returns the struct gftp_transfer that was just added. * src/gtk/misc-gtk.c (update_directory_download_progress) - don't make the window a popup and remove the window decorations * src/text/gftp-text.c - don't populate the transfer_direction variable in struct gftp_transfer. This is only needed by the GTK+ port and will hopefully be taken out soon. * lib/gftp.h - remove gftp_transfer_type enum. It wasn't used anymore.
author masneyb
date Mon, 03 Nov 2003 02:14:05 +0000
parents 8b1883341c6f
children f3d499134cf7
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1 .TH GFTP 1 "FEBURARY 2001"
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
2 .SH NAME
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
3 gftp - a graphical ftp client
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
4 .SH SYNOPSIS
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
5 .B gftp [options] [[proto://][
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
6 .I user
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
7 .B :
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
8 .I [pass]
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
9 .B @]
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
10 .I site
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
11 .B [:
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
12 .I port
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
13 .B ][/
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
14 .I directory
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
15 .B ]]
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
16 .SH DESCRIPTION
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
17 gFTP is a multiprotocol file transfer program for X Windows and the console. It features support for the FTP, SSH, HTTP, and local file system protocols, simultaneous downloads, resuming of interrupted file transfers, file transfer queues, downloading of entire directores, ftp and http proxy support, remote directory caching, bookmarks menu, stop button and many more features
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
18 .SH OPTIONS
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
19 You may enter a url on the command line that gFTP will automatically connect
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
20 to when it starts up.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
21 .IP "\-\-help, \-h"
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
22 Display program usage, and quit
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
23 .IP "\-\-version, \-v"
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
24 This will display the current version of gFTP, and exit
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
25 .IP "\-\-download, \-d"
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
26 This tells gFTP to download the files and directories specified in the url passed on the command line.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
27 .IP user
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
28 This is the username that you will login as to the remote site. If no username
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
29 is supplied, the default is to login as anonymous.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
30 .IP pass
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
31 This is the password you will use to login to the remotesite. If you do not
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
32 enter a password, then gFTP will ask you for one when it starts up. I do not
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
33 recommend entering your password on the command prompt. Anyone that has
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
34 access to your machine will be able to see your username and password with
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
35 the
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
36 .BR ps(1)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
37 command. If you are logging in as anonymous, you do not need to pass a password since gFTP will automatically send your email address as your password.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
38 .IP site
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
39 This is the remote site you want to connect to
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
40 .IP port
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
41 This is the port that the remote server is listening on. If you do not
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
42 enter a port, it will default to using the ftp port listed in the
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
43 .BR services(5)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
44 file. If the entry doesn't exist there, it will default to port
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
45 21.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
46 .IP directory
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
47 This is the default directory to change to once you are connected to the
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
48 remote server.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
49 .SH FILES
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
50 .I ~/.gftp/gftprc
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
51 .RS
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
52 Per user configuration file. This file is commented very well, so that is
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
53 why there isn't a manpage for it. Most of the options in here can be set
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
54 inside gFTP itself.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
55 .SH BUGS
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
56 If you find any bugs in gFTP, please report them directly to the author.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
57 .SH AUTHOR
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
58 Brian Masney <masneyb@gftp.org> - http://www.gftp.org/