Mercurial > gftp.yaz
annotate ChangeLog @ 852:5e3005923374
2006-11-16 Brian Masney <masneyb@gftp.org>
* 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
are properly populated. I need to check but it may be possible to get
this information from the SSH and FSP protocols. (closes #172499)
author | masneyb |
---|---|
date | Fri, 17 Nov 2006 02:24:14 +0000 |
parents | 83d39217749c |
children | e30271d47353 |
rev | line source |
---|---|
849 | 1 2006-11-16 Brian Masney <masneyb@gftp.org> |
852 | 2 * lib/gftp.h lib/protocols.c lib/local.c - added support for detecting |
3 recursive symbolic links. This currently only works when uploading | |
4 files. It will only work when downloading files if the inode and device | |
5 are properly populated. I need to check but it may be possible to get | |
6 this information from the SSH and FSP protocols. (closes #172499) | |
7 | |
8 * lib/local.c lib/misc.c - moved uint_hash_compare() and | |
9 uint_hash_function() from local.c to misc.c | |
10 | |
851 | 11 * lib/protocols.c - backed out last change where hidden files aren't |
12 transferred in the subdirectories if the show_hidden_files option is | |
13 disabled. | |
14 | |
850 | 15 * lib/protocols.c - skip over the hidden files when doing a recursive |
16 transfer if the shown_hidden_files option is disabled. (closes #321573) | |
17 | |
849 | 18 * lib/sshv2.c (sshv2_initialize_string_with_path) - make sure the endpos |
19 variable is pointing to the position after the string. This fixes an | |
20 issue with the current CVS code where files could not be transferred. | |
21 (closes #371615) | |
22 | |
841 | 23 2006-11-2 Brian Masney <masneyb@gftp.org> |
847 | 24 * lib/ftpcommon.h lib/ftps.c lib/rfc959.c - use the encoded filename |
25 length to determine how many bytes should be sent in the command to the | |
26 remote server. Don't use the strlen() function since there may be a | |
27 NUL character in the filename. | |
28 | |
29 ATTENTION INTERNATIONAL USERS: If you have time, can you test the | |
30 filename encoding in CVS? All of the necessary changes were made to the | |
31 local, FTP and SSH protocols. Let me know if you see any problems. | |
32 | |
846 | 33 * src/text/gftp-text.c src/text/gftp-text.h src/text/textui.c - |
34 use gftp_string_from_utf8() for the conversion between the | |
35 various character sets. | |
36 | |
845 | 37 * lib/gftp.h lib/local.c lib/misc.c lib/protocols.c lib/rfc959.c |
38 lib/sshv2.c - added gftp_filename_to_utf8() and | |
39 gftp_filename_from_utf8(). | |
40 (gftp_string_from_utf8) - added argument that will force the local | |
41 encoding to be used. | |
42 | |
844 | 43 * src/gtk/bookmarks.c - removed UTF-8 check since the string is already |
44 in that format | |
45 | |
843 | 46 * lib/local.c lib/misc.c lib/sshv2.c - more improvements to make sure |
47 that the filename is encoded in the proper character set. | |
48 | |
842 | 49 * lib/gftp.h lib/protocols.c - added _do_convert_string(), which is |
50 the common code that was in gftp_string_to_utf8() and | |
51 gftp_string_from_utf8(). | |
52 | |
841 | 53 * lib/local.c (local_chdir) - fixed double free of the utf8 variable. |
54 This only occured in the CVS version. | |
55 | |
56 * src/uicommon/gftpui.c (gftpui_common_process_command) - fixes for | |
57 detecting empty lines | |
58 | |
838 | 59 2006-10-31 Brian Masney <masneyb@gftp.org> |
840 | 60 * lib/sshv2.c - added i18n support so that the files are encoded |
61 properly | |
62 | |
839 | 63 * lib/sshv2.c (sshv2_add_string_to_buf) - added length argument to |
64 this function. | |
65 | |
838 | 66 * lib/gftp.h lib/local.c lib/misc.c lib/protocols.c lib/rfc959.c |
67 src/gtk/misc-gtk.c src/text/gftp-text.c - added length argument to | |
68 gftp_string_from_utf8() and gftp_string_to_utf8() | |
69 | |
70 * src/uicommon/gftpui.c - warning fixes | |
71 | |
72 2006-10-19 Brian Masney <masneyb@gftp.org> | |
832 | 73 * lib/fsp.c lib/gftp.h lib/local.c lib/protocols.c lib/rfc2068.c |
74 lib/rfc959.c lib/sshv2.c - added use_local_encoding variable to the | |
75 gftp_request structure. This will determine if the filename should | |
76 be converted to the local or remote character set. | |
77 | |
831 | 78 * lib/local.c - convert the file or directory to the proper locale |
79 | |
830 | 80 * src/gtk/gtkui.c src/gtk/gtkui_transfer.c src/gtk/misc-gtk.c lib/gftp.h |
81 lib/misc.c lib/protocols.c - removed code that converts the filename to | |
82 UTF8. This will be handled by the library. Removed utf8_file member from | |
83 the gftp_file structure. | |
84 | |
85 * lib/rfc959.c - convert the file or directory from UTF8 to the proper | |
86 locale when sending a command to the server. | |
87 | |
88 * src/uicommon/gftpui.c src/gtk/menu-items.c lib/misc.c lib/gftp.h | |
89 (gftp_gen_ls_string) - convert the filename from UTF8 to the proper | |
90 locale before it is displayed to the user. | |
91 | |
825 | 92 2006-10-15 Brian Masney <masneyb@gftp.org> |
829 | 93 * src/gtk/transfer.c - split the code that checks for finished view and |
94 edit processes into smaller functions. | |
95 | |
96 * src/gtk/transfer.c - after a local file is edited, refresh the local | |
97 file status (from Nathaniel M Nelson <xatmes@.net>) (closes #311166) | |
98 | |
828 | 99 * lib/fsplib/lock.c (client_init_key) - renamed the sun local variable |
100 to su. This was causing compile problems under Solaris. | |
101 | |
102 * lib/fsplib/lock.h - include ../../config.h | |
103 | |
827 | 104 * src/gtk/delete_dialog.c (askdel) - fixes displaying the proper number |
105 of directories that will be deleted to the user when there are no files | |
106 to delete | |
107 | |
108 * src/uicommon/gftpui.c - removed debugging statements | |
109 | |
826 | 110 * lib/protocols.c (gftp_get_all_subdirs) - use S_ISDIR macro instead of |
111 checking the bitmask against S_IFDIR. | |
112 | |
825 | 113 * src/uicommon/gftpui.c - split the code that transfers files into |
114 smaller functions. | |
115 | |
819 | 116 2006-10-1 Brian Masney <masneyb@gftp.org> |
821 | 117 * lib/gftp.h lib/misc.c lib/protocols.c src/gtk/misc-gtk.c |
118 src/uicommon/gftpuicallbacks.c (gftp_match_filespec) - look at the | |
119 show_hidden_files option inside this function. Use the option's value | |
120 to determine if the file should be shown to the user. | |
121 | |
820 | 122 * lib/ftpcommon.h lib/ftps.c lib/rfc959.c - automatically reconnect to |
123 the server if a timeout occurs. | |
124 | |
125 * src/uicommon/gftpui.c (_gftpui_common_thread_callback) - removed | |
126 checks for the timeouts. This is now transparently handled in the | |
127 FTP[S]* protocols. I need to check for timeouts in the other protocols. | |
128 | |
819 | 129 * src/gtk/transfer.c src/uicommon/gftpui.c src/uicommon/gftpui.h - added |
130 new functions for canceling and skipping file transfers | |
131 | |
816 | 132 2006-9-26 Brian Masney <masneyb@gftp.org> |
818 | 133 * lib/rfc959.c (rfc959_end_transfer) - close the data connection before |
134 the control connection is closed. (rfc959_put_next_file_chunk) - make | |
135 sure the entire block is properly written to the server. This is due to | |
136 the ASCII conversion (if necessary) is performed in this function. | |
137 Removed rfc959_set_file_time(). | |
138 | |
817 | 139 * lib/protocols.c (gftp_fd_read, gftp_fd_write) - make sure the return |
140 value properly matches what was actually read or written to the socket | |
141 | |
816 | 142 * lib/rfc959.c - added rfc959_close_data_connection() |
143 | |
813 | 144 2006-9-15 Brian Masney <masneyb@gftp.org> |
145 * lib/protocols.c (gftp_fd_write, gftp_fd_read, | |
146 gftp_fd_set_sockblocking) - added checks to make sure the file | |
147 descriptor is not set to -1 (gftp_abort_transfer) - added FIXME | |
148 comment | |
149 | |
811 | 150 2006-9-14 Brian Masney <masneyb@gftp.org> |
151 * src/uicommon/gftpui.c - added _do_transfer_file(). This will take | |
152 care of the actual file transfer. It will also make sure that the | |
153 entire buffer has been transmitted properly. | |
154 | |
155 * lib/protocols.c lib/rfc959.c (*_put_next_file_chunk) - removed | |
156 unneeded code that checks for a block size of 0 | |
157 | |
158 * lib/rfc959.c (rfc959_syst) - disable show_hidden_files and | |
159 resolve_remote_symlinks if the remote system type is OS/400. | |
160 | |
806 | 161 2006-8-10 Brian Masney <masneyb@gftp.org> |
808 | 162 * lib/options.h src/gtk/gftp-gtk.c (_gftp_exit) - added new option: |
163 remember_last_directory. This will control whether or not the last | |
164 directory is remembered when the application is closed. I had a lot | |
165 of people ask for this option. I personally find it annoying, which | |
166 is why I left the option disabled by default. | |
167 | |
807 | 168 * src/gtk/gtkui.c (gftpui_refresh) - delete the cache entry before |
169 checking to see if it needs to reconnect to the remote server | |
170 | |
806 | 171 * src/uicommon/gftpui.c (gftpui_common_cmd_site) - make sure the |
172 toggled state is enabled so that the command is prepended with the | |
173 SITE command | |
174 | |
805 | 175 2006-09-07 Pema Geyleg <pgeyleg@gmail.com> |
176 | |
177 * configure.in: Added dz to ALL_LINGUAS | |
178 | |
803 | 179 2006-08-27 Abel Cheung <abel@oaka.org> |
180 | |
181 * configure.in: Added 'zh_HK' to ALL_LINGUAS. | |
182 | |
801 | 183 2006-08-21 Raivis Dejus <orvils@gmail.com> |
184 | |
185 * configure.in: Added "lv" (Latvian) to ALL_LINGUAS. | |
186 * po/lv.po: Added Latvian Translation. | |
187 | |
798 | 188 2006-8-8 Brian Masney <masneyb@gftp.org> |
189 * lib/protocols.c (gftp_parse_ls_unix) - fixes whenever a smaller than | |
190 expected attribute field is returned (gftp_get_line) - make sure the | |
191 end of the buffer is nul terminated properly | |
192 | |
795 | 193 2006-8-2 Brian Masney <masneyb@gftp.org> |
796 | 194 * src/gtk/misc-gtk.c (MakeYesNoDialog, MakeEditDialog) - use |
195 gtk_grab_add() to make sure these dialogs have exclusive focus in | |
196 gftp (closes #340436) | |
197 | |
795 | 198 * src/uicommon/gftpui.c (gftpui_common_add_file_transfer) - don't |
199 prompt the user about what to do with the file(s) that already exist if | |
200 the overwrite_default option is enabled. This option is disabled by | |
201 default. (closes #336232) | |
202 | |
791 | 203 2006-7-29 Brian Masney <masneyb@gftp.org> |
793 | 204 * src/gtk/gftp-gtk.c src/gtk/transfer.c - removed some unnecessary |
205 updates to the toolbar | |
206 | |
792 | 207 * lib/gftp.h lib/options.h lib/protocols.c src/gtk/gftp-gtk.c |
208 src/gtk/misc-gtk.c src/text/gftp-text.c - removed the | |
209 startup_directory option. Added local_startup_directory and | |
210 remote_startup_directory_options. These options are automatically | |
211 saved whenever gftp exits. | |
212 | |
791 | 213 * src/gtk/bookmarks.c (edit_bookmarks) - fixed the keybindings in the |
214 bookmarks dialog. Also added mnemonics to all of the entries. | |
215 (closes #329820) | |
216 | |
217 * src/gtk/gftp-gtk.c (CreateMenus) - added keybindings to most of the | |
218 entries in the local and remote menus. Also added mnemonics to all of | |
219 the entries. | |
220 | |
788 | 221 2006-7-28 Brian Masney <masneyb@gftp.org> |
789 | 222 * src/gtk/gftp-gtk.h src/gtk/gftp-gtk.c - remember the last protocol |
791 | 223 that was used in the toolbar (closes #314330) |
789 | 224 |
788 | 225 * src/gtk/gftp-gtk.c src/gtk/gftp-gtk.h src/gtk/misc-gtk.c - warning |
226 fixes when creating the system menus. Removed some unused global | |
227 variables. | |
228 | |
787 | 229 2006-7-27 Brian Masney <masneyb@gftp.org> |
230 * lib/protocols.c (gftp_get_all_subdirs) - split this function into | |
231 several smaller functions. Added support for getting the true file | |
232 size if it is a symlink. Added more error handling. Fixed a segfault | |
233 that may occur when transferring deeply nested directories | |
234 | |
235 * lib/fsp.c lib/gftp.h lib/local.c lib/protocols.c lib/rfc2068.c | |
236 lib/rfc959.c lib/sshv2.c (*_chdir) - removed support for passing | |
237 the request->directory into this function. There is no longer a | |
238 need for this. (*_stat_filename) - added support for getting the | |
239 file size | |
240 | |
783 | 241 2006-7-21 Brian Masney <masneyb@gftp.org> |
785 | 242 * src/gtk/transfer.c (transfer_done) - fixed race condition that |
243 would occur when selecting Stop Transfer and then Start Transfer | |
244 (from Matthieu Crapet <mcrapet@gmail.com>) (closes #348140) | |
245 | |
784 | 246 * src/gtk/gftp-gtk.c - renamed OpenURL dialog to Open Location |
247 | |
783 | 248 * src/gtk/misc-gtk.c (update_window_info) - fixed the default protocol |
249 dropdown when some protocols are disabled (from | |
250 Aurelien Jarno <aurelien@aurel32.net>) (closes #348177) | |
251 | |
252 * src/uicommon/gftpui.c (_gftpui_common_thread_callback) - don't use | |
253 pause(). This causes a problem on systems that use NPTL. Use nanosleep() | |
254 instead (from Aurelien Jarno <aurelien@aurel32.net>) (closes #320883) | |
255 | |
781 | 256 2006-7-20 Brian Masney <masneyb@gftp.org> |
257 * configure.in - added configure check for fsplib. Also, removed | |
258 intl/Makefile and po/Makefile.in from AC_OUTPUT() | |
259 | |
769 | 260 2006-7-19 Brian Masney <masneyb@gftp.org> |
780 | 261 * configure.in - updated version number to 2.0.19pre1. I have a long |
262 ways to go though before I can put out a new release of gftp. I want | |
263 to close a lot of the bugs in Bugzilla | |
264 | |
265 * docs/sample.gftp/disconnect.xpm docs/sample.gftp/gftp-mini-logo.png - | |
266 added more pixmaps to CVS | |
267 | |
779 | 268 * lib/misc.c (gftp_copy_request) - updated patch that makes sure the |
783 | 269 request->hostp structure is copied properly (from Aurelien Jarno |
779 | 270 <aurelien@aurel32.net>) (closes #314626) |
271 | |
778 | 272 * src/gtk/transfer.c (check_done_process) - make sure the temporary |
273 files are removed in all cases (from Madhan Raj | |
274 <raj_madan@rediffmail.com>) (closes #171459) | |
275 | |
777 | 276 * lib/misc.c (gftp_copy_request) - fixes when doing an IPv6 transfer or |
277 using ignore PASV address (from (from Aurelien Jarno | |
278 <aurelien@aurel32.net>) (closes #169671) | |
279 | |
776 | 280 * lib/protocols.c (gftp_get_all_subdirs) - make sure that the memory is |
281 properly allocated for the directory. This fixes a crash when stopping a | |
282 file transfer (from Rob Wilkens <robwilkens@optonline.net>) | |
283 (closes #303779) | |
284 | |
775 | 285 * src/gtk/gtkui.c src/text/textui.c src/uicommon/gftpui.c |
286 src/uicommon/gftpui.h - change the cursor to a busy cursor when | |
287 the protocol functions are used (from Scott Reeves <sreeves@novell.com>) | |
288 (closes #305927) | |
289 | |
774 | 290 * src/uicommon/gftpui.c - make sure the directories have the proper |
291 permissions when "preserve file permissions" is enabled | |
292 (from Aurelien Jarno <aurelien@aurel32.net>) (closes #312722) | |
293 | |
773 | 294 * src/gtk/gftp-gtk.c - fixed the default protocol dropdown when some |
295 protocols are disabled (from Aurelien Jarno <aurelien@aurel32.net>) | |
296 (closes #312724) | |
297 | |
772 | 298 * src/gtk/bookmarks.c - fixed segfault in the bookmarks editor (from |
299 Grant Hammond <grant@f1fox.net>) (closes #329261 and #169617) | |
300 | |
771 | 301 * src/gtk/gftp-gtk.c - added patch that makes the menus closer to other |
302 GNOME apps (from Alan Horkan <horkana@maths.tcd.ie>) (closes #329826) | |
303 | |
770 | 304 * src/gtk/transfer.c (remove_file) - fixes for when the viewed file can |
305 be removed if an invalid program is specified (closes #330182) | |
306 | |
769 | 307 * lib/sslcommon.c - added support for wildcard SSL certificates (from |
308 Kai Blaschke <webmaster@thw-theorie.de>) (closes #339663) | |
309 | |
765 | 310 2006-7-13 Brian Masney <masneyb@gftp.org> |
767 | 311 * src/gtk/bookmarks.c src/gtk/delete_dialog.c src/gtk/dnd.c |
312 src/gtk/gftp-gtk.c src/gtk/gftp-gtk.h src/gtk/gtkui.c | |
313 src/gtk/menu-items.c src/gtk/misc-gtk.c src/gtk/options_dialog.c | |
314 src/gtk/transfer.c src/gtk/view_dialog.c - fixed a few minor warnings | |
315 from splint. | |
316 | |
766 | 317 * src/text/textui.c src/uicommon/gftpui.c - fixed a few minor warnings |
318 from splint. | |
319 | |
765 | 320 * lib/cache.c lib/config_file.c lib/fsp.c lib/ftps.c lib/gftp.h |
321 lib/local.c lib/misc.c lib/options.h lib/protocols.c lib/rfc2068.c | |
322 lib/rfc959.c lib/sshv2.c - started to add some annotations for splint. | |
323 Fixed a few minor warnings from splint. | |
324 | |
764 | 325 2006-7-7 Brian Masney <masneyb@gftp.org> |
326 * lib/protocols.c (gftp_get_transfer_status) - split this function into | |
327 several smaller functions. Fixed bug where the number of retries wasn't | |
328 being honored | |
329 | |
760 | 330 2006-6-23 Brian Masney <masneyb@gftp.org> |
331 * lib/fsplib/fsplib.c (fsp_readdir_native) - fixed possible heap | |
332 overflow on operating systems that have MAXNAMLEN > 256 | |
333 (from Joerg Sonnenberger <joerg@netbsd.org>) | |
334 | |
753 | 335 2006-6-22 Brian Masney <masneyb@gftp.org> |
759 | 336 * gftp.spec.in - updated the install path for the desktop file |
337 (closes #171711) | |
338 | |
758 | 339 * src/gtk/gftp-gtk.c (CreateMenus) - updated the shortcut to the |
340 Add Bookmark dialog (closes #301310) | |
341 | |
757 | 342 * lib/rfc959.c (rfc959_syst) - disable the show_hidden_files and |
343 resolve_symlinks options when connecting to a VMS server | |
344 | |
756 | 345 * lib/pty.c (_gftp_ptys_open) - fixes for setting up the slave pty |
346 under HPUX (closes #303066) | |
347 | |
755 | 348 * src/gtk/gtkui.c (gftpui_prompt_username) - don't create the widget as |
349 a password widget (closes #313746) | |
350 | |
754 | 351 * src/gtk/bookmarks.c (new_item_entry) - fixed the title of the new item |
352 dialog (closes #329660) | |
353 | |
753 | 354 * src/gtk/transfer.c - split update_file_status() into another function. |
355 Updated the string that is displayed to the user with information on | |
356 whether or not the file is being downloaded or updated. (closes #163750) | |
357 | |
738 | 358 2006-5-14 Brian Masney <masneyb@gftp.org> |
748 | 359 * lib/rfc959.c (rfc959_syst) - disable the show_hidden_files and |
360 resolve_symlinks options if the remote server is a VMS server. | |
361 (closes #170524) | |
362 | |
747 | 363 * lib/sshv2.c - make sure the 64 bit data is transformed into network |
364 byte order (from Aurelien Jarno <aurelien@aurel32.net>) (closes #168466) | |
365 | |
746 | 366 * lib/sshv2.c (sshv2_get_file) - use SSH_FXF_READ instead of |
367 SSH_FXP_OPEN to open the file. This ensures the file can be downloaded | |
368 even if the user doesn't have write access to the file. | |
369 (from Owen Roberts <owen.roberts@sun.com>) (closes #301106) | |
370 | |
745 | 371 * docs/sample.gftp/bookmarks - added Mandriva bookmarks |
372 (from mpol@gmx.net) (closes #322942) | |
373 | |
744 | 374 * docs/gftp.1 - fixed typo in man page (from Aurelien Jarno |
375 <aurelien@aurel32.net>) (closes #300721) | |
376 | |
377 * docs/website/screenshots.html - updated HTML file | |
378 | |
742 | 379 * src/gtk/bookmarks.c (delete_entry) - fixed typo (closes #312795) |
380 | |
741 | 381 * docs/gftp.desktop - fixes so that desktop-file-validate processes |
382 the file with no errors (from Vincent Fretin <vincent.fretin@gmail.com>) | |
383 (closes #316167) | |
384 | |
740 | 385 * lib/pty.c (_gftp_ptym_open) - fixes for using the grantpt() function |
386 under HP/UX. (from Allyn Fratkin <allyn@fratkin.com>) (closes #301979) | |
387 | |
739 | 388 * lib/fsplib/fsplib.c lib/fsplib/fsplib.h - updated with FSPLIB 0.8 |
389 | |
738 | 390 * lib/fsplib/lock.c lib/pty.c - compile fixes under NetBSD |
391 (from Matthias Scheler tron@zhadum.de>) (closes #168984) | |
392 | |
736 | 393 2006-04-17 Kjartan Maraas <kmaraas@gnome.org> |
394 | |
395 * configure.in: Remove obsolete entry for no_NO. | |
396 * po/no.po: And the translation. | |
397 | |
732 | 398 2006-4-10 Brian Masney <masneyb@gftp.org> |
399 * configure.in - added he to ALL_LINGUAS | |
400 | |
731 | 401 2006-03-31 Žygimantas BeruÄka <zygis@gnome.org> |
402 | |
403 * configure.in: Added lt to ALL_LINGUAS. | |
404 | |
726 | 405 2005-12-06 Kjartan Maraas <kmaraas@gnome.org> |
406 | |
407 * configure.in: Add nb to ALL_LINGUAS. | |
408 | |
712 | 409 2005-07-21 Pawan Chitrakar <pawan@nplinux.org> |
410 | |
411 * configure.in: Added ne in ALL_LINGUAS | |
412 | |
709 | 413 2005-06-09 Ignacio Casal Quinteiro <nacho.resa@gmail.com> |
414 | |
415 * configure.in: Added 'gl' to ALL_LINGUAS. | |
416 | |
707 | 417 2005-4-30 Brian Masney <masneyb@gftp.org> |
418 * docs/website/gftp-screenshot.png - added new screenshot of gFTP for | |
419 the website. It is from Richard Stellingwerff <remenic@gmail.com> and | |
420 the theme is the Clearlooks theme | |
421 | |
704
65f55c815252
Added new Language, Kinyarwanda (rw), to this package
smurphy
parents:
703
diff
changeset
|
422 2005-04-01 Steve Murphy <murf@e-tools.com> |
65f55c815252
Added new Language, Kinyarwanda (rw), to this package
smurphy
parents:
703
diff
changeset
|
423 * configure.in: Added "rw" to ALL_LINGUAS. |
65f55c815252
Added new Language, Kinyarwanda (rw), to this package
smurphy
parents:
703
diff
changeset
|
424 |
703 | 425 2005-3-31 Brian Masney <masneyb@gftp.org> |
426 * src/gtk/transfer.c (check_done_process) - make sure the local file is | |
427 not removed if the editor is set to a non-existent editor | |
428 | |
702 | 429 2005-3-29 Brian Masney <masneyb@gftp.org> |
430 * src/text/gftp-text.c src/gtk/options_dialog.c - compiler fixes for | |
431 GTK+ 1.2 | |
432 | |
694 | 433 2005-2-14 Brian Masney <masneyb@gftp.org> |
434 * Changelog-Old - updated security fix line with the CVE ID | |
435 CAN-2005-0372 | |
436 | |
692 | 437 2005-2-13 Brian Masney <masneyb@gftp.org> |
693 | 438 * lib/fsplib/fsplib.c - include stdint.h if HAVE_STDINT_H is defined |
439 | |
692 | 440 * lib/fsplib/fsplib.c - updated to use fsplib 0.4. Fixes compilation |
441 errors under Solaris/IRIX | |
442 | |
682 | 443 2005-2-4 Brian Masney <masneyb@gftp.org> |
685 | 444 * docs/website/announce.txt - updated announcement with release of |
445 2.0.18 | |
446 | |
684 | 447 * debian/changelog configure.in - updated version number to 2.0.18 |
448 | |
449 * configure.in - commented out AM_TYPE_PTRDIFF_T for now. I don't have | |
450 this automake macro installed on my system | |
451 | |
683 | 452 * ChangeLog-old - updated with changes since 2.0.18rc1 |
453 | |
454 * docs/website/index.html.in - added link to the FSP homepage | |
455 | |
682 | 456 * lib/misc.c (gftp_get_transfer_action) - added the following FIXME |
457 comments: add code to compare the file times and make a decision based | |
458 on that. Also if overwrite_default is enabled and the file sizes/dates | |
459 are the same, then skip the file | |
460 | |
679 | 461 2005-1-25 Brian Masney <masneyb@gftp.org> |
462 * src/gtk/gtkui.c (gftpui_run_function_callback) - after the needed | |
463 information is retrieved from the dialog, destroy the dialog before | |
464 the callback function is called | |
465 | |
675 | 466 2005-1-24 Brian Masney <masneyb@gftp.org> |
678 | 467 * configure.in - added AM_TYPE_PTRDIFF_T |
468 (from Helmut Jarausch <jarausch@igpm.rwth-aachen.de>) | |
469 | |
677 | 470 * lib/protocols.c lib/rfc959.c src/gtk/dnd.c src/gtk/gftp-gtk.c |
471 src/gtk/gtkui.c src/gtk/menu-items.c src/gtk/misc-gtk.c | |
472 src/gtk/transfer.c src/gtk/view-dialog.c src/uicommon/gftpui.c - make | |
473 sure the logging level gftp_logging_error is used for all error messages | |
474 | |
676 | 475 * lib/protocols.c (gftp_parse_url) - rewrote the URL parser so that the |
476 URL is parsed from right to left instead of left to right. There are | |
477 more checks done to the URL. | |
478 | |
675 | 479 * src/text/gftp-text.c (gftp_text_ask_question, gftp_text_write_string) |
480 - convert the string from UTF8 to the users' current locale before it is | |
481 displayed | |
482 | |
483 * src/text/gftp-text.c src/text/gftp-text.h - fixed signed/unsigned | |
484 mismatch when calculating the window size | |
485 | |
486 * src/gtk/transfer.c (update_file_status) - expanded the maximum length | |
487 of the dlstr variable | |
488 | |
672 | 489 2005-1-23 Brian Masney <masneyb@gftp.org> |
490 * po/POTFILES.in - added lib/fsp.c | |
491 | |
666 | 492 2005-1-18 Brian Masney <masneyb@gftp.org> |
667 | 493 * lib/fsplib/fsplib.[ch] - updated files from FSPLIB 0.3 |
494 | |
666 | 495 * lib/protocols.c (gftp_get_next_file) - if the remote server sends a |
496 path with the filename, then strip the path off of the filename. If the | |
497 path didn't match the current directory, then give the user a warning. | |
498 A malicious server could change the path of the downloaded by adding | |
499 /../ to the path | |
500 | |
659 | 501 2005-1-16 Brian Masney <masneyb@gftp.org> |
663 | 502 * configure.in lib/Makefile.am src/gtk/Makefile.am src/text/Makefile.am |
503 lib/fsp.c - added FSP to the build system | |
504 | |
505 * lib/fsp.c - removed unused variables | |
506 | |
507 * autogen.sh - s/gFTP/$PROJECT/ | |
508 | |
662 | 509 * lib/fsplib/COPYING lib/fsplib/Makefile.am lib/fsplib/fsplib.c |
510 lib/fsplib/fsplib.h lib/fsplib/lock.c lib/fsplib/lock.h - added FSPLIB | |
511 This library is written by Radim Kolar <hsn@netmag.cz> and was included | |
512 with his permission | |
513 | |
661 | 514 * lib/fsp.c lib/options.h lib/gftp.h - added support for the FSP |
515 protocol (from Radim Kolar <hsn@netmag.cz>). Note, I need to update | |
516 the build system for gftp to compile properly | |
517 | |
660 | 518 * src/gtk/dnd.c (openurl_get_drag_data) - if the client is busy with |
519 the server, then don't process the drop request (closes #162773) | |
520 (from Aurelien Jarno <aurelien@aurel32.net>) | |
521 | |
659 | 522 * src/gtk/misc-gtk.c (MakeEditDialog, MakeYesNoDialog) - use |
523 g_malloc0() instead of g_malloc() to allocate the structures. This | |
524 ensures that all of the pointers are initialized to NULL (closes | |
525 #162762) | |
526 | |
649 | 527 2004-12-31 Brian Masney <masneyb@gftp.org> |
654 | 528 * lib/sshv2.c (sshv2_read_response) - added debugging messages if |
529 compiled with -DDEBUG. Added sshv2_response_return_code() | |
530 and sshv2_buffer_get_int64(). (sshv2_buffer_get_int32) - added | |
531 check_response argument to this function. This suppresses a | |
532 signed/unsigned mismatch warning from gcc. | |
533 (sshv2_decode_file_attributes) - decode all of the attributes that | |
534 are returned from the server. (sshv2_get_next_file) - don't look at | |
535 the long file name returned from the server. This also fixes a bug | |
536 where no files were being returned to the user when the remote server | |
537 was running the commercial SSH daemon | |
538 | |
653 | 539 * lib/misc.c (gftp_info) - when displaying the OpenSSL information, |
540 display OPENSSL_VERSION_TEXT instead of OPENSSL_VERSION_NUMBER | |
541 | |
542 * src/gtk/transfer.c (update_file_status) - expand the length of the | |
543 total transfered buffer. The total transfered was being truncated in | |
544 some languages by g_snprintf() (from Pavel Vainerman <pv@etersoft.ru>) | |
545 | |
652 | 546 * src/uicommon/gftpui.c (gftpui_common_transfer_files) - check the |
547 return status of gftp_end_transfer() to see if there was an error | |
548 closing the remote file | |
549 | |
651 | 550 * src/uicommon/gftpui.c - added dir and ldir commands to the command |
551 line interface | |
552 | |
650 | 553 * lib/rfc959.c (rfc959_init) - enable the need_username option for this |
554 protocol. This fixes a problem with the text port not prompting for the | |
555 username from the command line | |
556 | |
649 | 557 * lib/gftp.h - when using HPUX, define the size of off_t as size long |
558 | |
559 * configure.in - HPUX thread fixes | |
560 | |
648 | 561 2004-12-24 Brian Masney <masneyb@gftp.org> |
562 * src/gtk/chmod-dialog.c (dochmod) - fixes for the group execute | |
563 permission. If that checkbox was active, then write permissions for | |
564 others was enabled | |
565 | |
646 | 566 2004-12-20 Brian Masney <masneyb@gftp.org> |
647 | 567 * lib/rfc959.c lib/ftpcommon.h - removed the quote filename |
568 functionality in the SITE CHMOD and SITE UTIME commands | |
569 | |
646 | 570 * lib/protocols.c (gftp_parse_bookmark) - if the bookmark's password is |
571 set to @EMAIL@, expand it to the users' email address | |
572 | |
640 | 573 2004-12-12 Brian Masney <masneyb@gftp.org> |
643 | 574 * lib/rfc959.c - renamed pasv_behind_router option to |
575 ignore_pasv_address. This is a better explanation of what it does | |
576 | |
642 | 577 * lib/rfc959.c - added pasv_behind_router option. If this is enabled, |
578 then the IP address that is in the PASV response will be ignored. | |
579 Instead the IP address of the remote host will be used. This is a patch | |
580 from Jasper van Veghel <vanveghel@home.nl> that I made some changes to | |
581 (closes #161037) | |
582 | |
641 | 583 * lib/gftp.h lib/protocols.c (gftp_connect_server) - if getaddrinfo() |
584 is not defined in the system, save the current index of the host that we | |
585 are connected to | |
586 | |
640 | 587 * src/gtk/gftp-gtk.c (toolbar_hostedit) - use gftp_disconnect() instead |
588 of gftpui_disconnect(). The gftpui_disconnect() function will clear out | |
589 the directory in the request structure | |
590 | |
631 | 591 2004-12-2 Brian Masney <masneyb@gftp.org> |
633 | 592 * src/gtk/gtkui.c (gftpui_run_function_callback) |
593 src/uicommon/gftpui.h - added toggled variable to the | |
594 gftpui_callback_data structure. If the edit dialog had a checkbox | |
595 in it, then put the checkbox value in the toggled variable | |
596 | |
597 * src/gtk/gtkui.c (gftpui_site_dialog) | |
598 src/uicommon/gftpuicallbacks.c (gftpui_common_run_site) - allow the user | |
599 to not send the prepend the command with the SITE keyword | |
600 | |
601 * docs/website/index.html.in docs/website/bats.gif | |
602 docs/website/generate-gftp-website.pl - updated bug reporting section. | |
603 Added link and graphic for the National Speleological Society (NSS) | |
604 | |
632 | 605 * lib/sshv2.c (sshv2_rename) - fixed segfault that could occur (from |
606 Aurelien Jarno <aurelien@aurel32.net >) (closes #159963) | |
607 | |
631 | 608 * src/gtk/gtkui_transfer.c (gftpui_ask_transfer) - fixes for the first |
609 character of the filename being stripped off when it already existed on | |
610 the remote side and it was being uploaded to the root directory. Note, | |
611 the file truncation only occured in it being displayed to the user. It | |
612 was not stripping the filename when it was being transfered (from | |
632 | 613 Aurelien Jarno <aurelien@aurel32.net >) (closes #158713) |
631 | 614 |
630
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
615 2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com> |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
616 * src/gtk/options_dialog.c: GNOME HIG fixes for the GTK+2 |
632 | 617 version of the Options and Add/Edit dialogs. (closes #158642) |
630
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
618 |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
619 Changes for the Options dialog: |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
620 * Use proper GNOME HIG widget spacing and padding |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
621 * Use proper GNOME HIG button order for action area |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
622 * Remove dialog separator |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
623 |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
624 FTP tab: |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
625 * Indent the text view below the "Proxy server type" |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
626 entry and wrap it in a scrolled window |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
627 |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
628 Local Hosts tab: |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
629 * Use stock add, edit, and delete buttons |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
630 * Toggle sensitivity of edit and delete buttons |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
631 |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
632 Changes for the Add/Edit Host dialog: |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
633 * Use proper GNOME HIG widget sapcing and padding |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
634 * Use proper GNOME HIG button order for action area |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
635 * Use proper GNOME HIG capitalization |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
636 * Remove dialog separator |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
637 * Add mnemonics to labels |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
638 * Set dialog's window icon |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
639 * Moved host type (i.e. Network or Domain radio |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
640 buttons) to top of dialog, because these toggle |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
641 the sensitivity of the other widgets |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
642 * Indent the Network address, Netmask, and Domain |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
643 entries, because the sensitivity of these widgets |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
644 is toggled by the host type radio buttons |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
645 * Toggle the sensitivity of the labels when |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
646 changing host type |
b3a0cccb1cd6
2004-11-18 Dennis Cranston <dennis_cranston@yahoo.com>
masneyb
parents:
629
diff
changeset
|
647 |
629 | 648 2004-11-28 Brian Masney <masneyb@gftp.org> |
649 * lib/pty.c - if HAVE_GRANTPT is defined, then don't include stropts.h | |
650 if it is being compiled on FreeBSD (from Radim Kolar <hsn@sendmail.cz>) | |
651 | |
622 | 652 2004-11-11 Brian Masney <masneyb@gftp.org> |
624 | 653 * lib/protocols.c (gftp_connect_server) - if the system does not have |
654 getaddrinfo(), removed erronous g_return_val_if_fail() that was always | |
655 causing the function to fail and not connect to the server | |
656 (from samn@sun.com) | |
657 | |
623 | 658 * configure.in - fixes for HP/UX |
659 (from "H.Merijn Brand" <h.m.brand@hccnet.nl>) | |
660 | |
661 * lib/gftp.h - fixes for large files under HP/UX | |
662 (from "H.Merijn Brand" <h.m.brand@hccnet.nl>) | |
663 | |
664 * lib/protocols.c (gftp_list_files) - if ENABLE_NLS is disabled, then | |
665 do not use setlocale() | |
666 | |
622 | 667 * docs/website/index.html.in - fixed several typos on the website. |
668 Updated introduction paragraph | |
669 | |
670 * docs/website/generate-gftp-website.pl - fixes for getting the version | |
671 number from configure with newer versions of autoconf | |
672 | |
673 * docs/website/announce.txt - updated announcement file for 2.0.18rc1 | |
674 | |
620 | 675 2004-11-9 Brian Masney <masneyb@gftp.org> |
621 | 676 * debian/gftp-gtk.install - updated the path of the gftp.desktop file |
677 | |
620 | 678 * configure.in debian/changelog - updated version number to 2.0.18rc1 |
679 | |
680 * TODO - updated | |
681 | |
618 | 682 2004-11-7 Brian Masney <masneyb@gftp.org> |
683 * ChangeLog-old - updated with a summary of list of changes since 2.0.17 | |
684 | |
685 * doc/website/index.html.in - added bug reporting section | |
686 | |
612 | 687 2004-11-4 Brian Masney <masneyb@gftp.org> |
616 | 688 * lib/options.h src/gtk/gftp-gtk.c src/gtk/misc-gtk.c - whenever gftp |
689 is started, show in the toolbar the last connection details (except the | |
690 password) | |
691 | |
615 | 692 * src/gtk/gftp-gtk.c - added mnemonics for the host and user field |
693 in the toolbar | |
694 | |
614 | 695 * docs/sample.gftp/gftprc - updated the default config file |
696 | |
613 | 697 * src/gtk/bookmarks.c (entry_apply_changes) - more cleanups to this |
698 function. Fixes for renaming bookmark entries | |
699 | |
612 | 700 * src/gtk/bookmarks.c (build_bookmarks_tree) - greatly simplified |
701 this function. Added helper function _add_tree_node() | |
702 | |
703 * lib/misc.c (gftp_free_bookmark) - free the path and oldpath | |
704 variables | |
705 | |
609 | 706 2004-11-3 Brian Masney <masneyb@gftp.org> |
611 | 707 * docs/gftp.desktop - fixed parse error in the desktop file |
708 | |
609 | 709 * lib/config_file.c (gftp_bookmarks_destroy) |
710 src/gtk/bookmarks.c (bm_apply_changes) - cleaned up the tree parsing | |
711 code | |
712 | |
713 * lib/gftp.h lib/misc.c lib/config_file.c src/gtk/bookmarks.c - added | |
714 free_node argument to gftp_free_bookmark() | |
715 | |
716 * lib/gftp.h src/gtk/bookmarks.c - added oldpath variable to the | |
717 gftp_bookmarks structure. | |
718 | |
600 | 719 2004-11-1 Brian Masney <masneyb@gftp.org> |
607 | 720 * lib/config_file.c (gftp_write_bookmarks_file) - if a folder has no |
721 children, make sure the entry has a / appended to the end of the | |
722 description. Don't write out any of the other unneeded fields | |
723 | |
606 | 724 * src/gtk/bookmarks.c (build_bookmarks_tree) - fixes for adding toplevel |
725 folders that are empty | |
726 | |
605 | 727 * lib/config_file.c (gftp_add_bookmark) - if the bookmark path ends in |
728 /, then force the entry to be a folder | |
729 | |
604 | 730 * src/gtk/gftp-gtk.c src/gtk/gftp-gtk.h src/gtk/misc-gtk.c - added a |
731 tooltip to the button on the top left of the GUI | |
732 | |
733 * src/gtk/gtkui.c (gftpui_disconnect) - call update_window_info() | |
734 instead of update_window() so that the toolbar tooltip is updated | |
735 properly | |
736 | |
603 | 737 * src/gtk/bookmarks.c - don't allow the main bookmarks dialog to be |
738 closed if a child entry is being edited. Fixes for a toplevel folder | |
739 that has no children | |
740 | |
602 | 741 * src/gtk/transfer.c (update_file_status) - if the % transferred goes |
742 over 100%, then set the update string to unknown percentage transfered. | |
743 This will occur whenever the reported transfer size is different than | |
744 what is actually being transfered. This occurs whenever a symlink is | |
745 being transfered | |
746 | |
601 | 747 * lib/protocols.c (gftp_parse_ls_novell) - fixes for parsing directory |
748 listings that have a space in their username | |
749 | |
600 | 750 * lib/config_file.c (gftp_read_config_file) - fixes for creating the |
751 protocol dropdown when SSL support is disabled | |
752 (from Aurelien Jarno <aurelien@aurel32.net>) | |
753 | |
598 | 754 2004-10-29 Brian Masney <masneyb@gftp.org> |
599 | 755 * lib/protocols.c (gftp_put_file) - don't do any kind of character |
756 set conversion on the filename. After looking into this some more, | |
757 this wasn't the proper place to do this. | |
758 | |
598 | 759 * lib/gftp.h lib/misc.c lib/protocols.c lib/rfc2068.c lib/rfc959.c |
760 lib/sshv2.c src/gtk/dnd.c src/gtk/view_dialog.c src/uicommon/gftpui.c | |
761 src/uicommon/gftpuicallbacks.c - removed free_fdata(). Added | |
762 free_it parameter to gftp_file_destroy() | |
763 | |
597 | 764 2004-10-27 Brian Masney <masneyb@gftp.org> |
765 * docs/website/index.html.in - updated the list of available | |
766 translations | |
767 | |
768 * docs/gftp-faq.sgml - added section about the font size being | |
769 too small | |
770 | |
592 | 771 2004-10-7 Brian Masney <masneyb@gftp.org> |
593 | 772 * src/gtk/bookmarks.c (entry_apply_changes) - convert all /'s |
773 in the entry description to spaces so that sub menus are not | |
774 created | |
775 | |
592 | 776 * src/gtk/gftpuicallbacks.c (gftpui_common_run_ls) - if the .. |
777 directory was not found and an entry is to be created, make sure | |
778 the attributes are set to drwx------ (previously it was d---------) | |
779 | |
586 | 780 2004-10-5 Brian Masney <masneyb@gftp.org> |
588 | 781 * src/gtk/menu-items.c (dosavelog, viewlog) - make sure the entire |
782 log is written out when multibyte characters are used | |
783 | |
784 * src/gtk/view_dialog.c - small improvements to the way text is | |
785 inserted in the gtk+ 2.x port | |
786 | |
587 | 787 * src/gtk/gftp-gtk.c src/gtk/gftp-gtk.h src/gtk/misc-gtk.c - disable the |
788 upload/download buttons whenever the user is not connected to the | |
789 server (closes #153374) | |
790 | |
586 | 791 * src/gtk/misc-gtk.c src/gtk/gftp-gtk.c - disable the items in the |
792 transfer menu when the user is not connected. (Patch partially from | |
793 Frank Anderson <fanson@gmail.com>) | |
794 | |
582 | 795 2004-10-4 Brian Masney <masneyb@gftp.org> |
796 * lib/protocols.c (gftp_string_from_utf8,gftp_string_to_utf8) - added | |
797 more printf() functions whenever there is a problem converting a string | |
798 | |
799 * src/gtk/gtkui_transfer.c (gftpui_ask_transfer) - make sure the | |
800 filename that is to be displayed to the user is encoded in UTF8 | |
801 | |
579 | 802 2004-10-3 Brian Masney <masneyb@gftp.org> |
803 * lib/protocols.c (gftp_string_to_utf8) - if the current string is | |
804 already in UTF-8, always return NULL, even if the iconv module is | |
805 initialized for this session. If there is an error converting the | |
806 non-UTF8 string to the current locale, then display a message to the | |
807 user | |
808 | |
578 | 809 2004-10-2 Brian Masney <masneyb@gftp.org> |
810 * lib/protocols.c (gftp_parse_bookmark) - convert the local and remote | |
811 directories from UTF8 to the current locale specified in the | |
812 remote_charsets option | |
813 | |
570 | 814 2004-9-29 Brian Masney <masneyb@gftp.org> |
576 | 815 * configure.in - removed intl/Makefile po/Makefile.in from AC_OUTPUT |
816 since automake will add these | |
817 | |
575 | 818 * docs/website/index.html.in - added CVS Id tag to the bottom of the |
819 page | |
820 | |
821 * docs/website/update-gftp-cvs.sh - added script to autobuild a tarball | |
822 from the latest CVS code | |
823 | |
574 | 824 * lib/sshv2.c (sshv2_set_config_options) set the request->need_password |
825 to be the value of the option ssh_need_userpass | |
826 | |
827 * src/text/gftp-text.c (main) - run gftp_shutdown() before the program | |
828 exits | |
829 | |
830 * src/uicommon/gftpui.c (gftpui_common_cmd_set) - toggle | |
831 gftp_configuration_changed whenever the user changes a configuration | |
832 item | |
833 | |
573 | 834 * src/text/gftp-text.c src/uicommon/gftpui.c - make sure that extra |
835 newlines are not displayed to the user when certain commands are run | |
836 from the text console | |
837 | |
572 | 838 * lib/rfc959.c lib/protocols.c lib/gftp.h - when making an IPv6 |
839 FTP connection, make sure the proper addrinfo structure is used. | |
840 Added more error checks to the EPSV parsing | |
841 | |
571 | 842 * lib/sshv2.c - log to the user which directory entries gftp could |
843 not parse | |
844 | |
845 * src/gtk/bookmarks.c - removed unused function clear_bookmarks_tree() | |
846 | |
570 | 847 * src/gtk/bookmarks.c - make sure the items of type GtkItemFactoryEntry |
848 are fully initialized (fixes compiler warnings). Fixed several | |
849 segfaults that could occur in the bookmarks editor | |
850 | |
851 * lib/gftp.h lib/rfc959.c src/gtk/bookmarks.c - added | |
852 GFTP_ANONYMOUS_USER that defines the username to use for anonymous | |
853 FTP connections | |
854 | |
567 | 855 2004-9-27 Brian Masney <masneyb@gftp.org> |
569 | 856 * lib/protocols.c (gftp_put_file) docs/gftp-faq.sgml - use |
857 gftp_string_from_utf8() to encode the filename. This will use the | |
858 remote_charsets option instead of the GLIB environment variable | |
859 | |
568 | 860 * lib/protocols.c (gftp_string_from_utf8) - fixes for encoding the |
861 strings in the users' locale | |
862 | |
567 | 863 * lib/rfc959.c (rfc959_connect) - return GFTP_EFATAL if the initial FTP |
864 response is not 2xx | |
865 | |
866 * docs/gftp-faq.sgml - removed sections that have not been relevant for | |
867 a long time. Added section about changing the encoding of filenames | |
868 | |
566 | 869 2004-9-26 Brian Masney <masneyb@gftp.org> |
870 * lib/protocols.c (gftp_put_file) - use g_filename_from_utf8() to | |
871 change the encoding of the filename (if needed) | |
872 | |
559 | 873 2004-9-22 Brian Masney <masneyb@gftp.org> |
562 | 874 * src/gtk/gftp-gtk.c - removed ellipsis from menu items that do not |
875 require user input. This makes it conform to GNOME HIG. | |
876 (from Subrahmanyam Madduri <smadduri@novell.com>) | |
877 | |
561 | 878 * lib/options.h - fixed misspelling |
879 | |
560 | 880 * lib/options.h src/uicommon/gftpui.c - added option to preserve the |
881 file time. In the past, it would save the file time if saving the file | |
882 permissions was enabled. | |
883 | |
559 | 884 * src/gtk/transfer.c (check_done_process) - if the process returned an |
885 error code, then remove the file and don't prompt the user to upload the | |
886 file if it was changed | |
887 | |
555 | 888 2004-9-17 Brian Masney <masneyb@gftp.org> |
556 | 889 * src/gtk/transfer.c (check_done_process) - make sure the return code |
890 from the process is reported correctly to the user | |
891 | |
892 * docs/gftp-faq.sgml - added section about troubleshooting files not | |
893 being uploaded | |
894 | |
895 * src/gtk/gtkui.c - fixed compiler warning | |
896 | |
555 | 897 * lib/misc.c lib/cache.c lib/config_file.c lib/gftp.h lib/protocols.c |
898 lib/rfc2068.c lib/sshv2.c src/gtk/bookmarks.c src/gtk/dnd.c | |
899 src/gtk/gftp-gtk.c src/gtk/gtkui.c src/gtk/menu-items.c | |
900 src/gtk/misc-gtk.c src/gtk/transfer.c src/uicommon/gftpui.c - added | |
901 gftp_request argument to gftp_build_path() and expand_path(). Renamed | |
902 expand_path() to gftp_expand_path() | |
903 | |
904 * lib/gftp.h - fixed compile error in gftp_need_username macro | |
905 | |
553 | 906 2004-9-14 Brian Masney <masneyb@gftp.org> |
554 | 907 * docs/gftp-faq.sgml - updated SSH section |
908 | |
553 | 909 * lib/gftp.h lib/bookmark.c lib/local.c lib/rfc2068.c lib/rfc959.c |
910 lib/sshv2.c src/gtk/transfer.c src/uicommon/gftpui.c - removed | |
911 need_userpass from the gftp_request structure. Added need_username and | |
912 need_password in it's place | |
913 | |
914 * autogen.sh - updated CFLAGS variable that is passed to configure | |
915 | |
544 | 916 2004-9-6 Brian Masney <masneyb@gftp.org> |
548 | 917 * lib/gftp.h - make sure the _GNU_SOURCE is always defined. |
918 | |
547 | 919 * lib/gftp.h lib/misc.c lib/protocols.c lib/rfc959.c - fixes for |
920 hosts that have IPv6 and IPv4 hostnames and a IPv6 connection cannot | |
921 be made | |
922 | |
923 * lib/rfc2068.c - removed unused variable | |
924 | |
546 | 925 * lib/protocols.c lib/sshv2.c lib/sslcommon.c - cleanups to the |
926 functions that write/read to/from the network. Retry the operation | |
927 if EAGAIN is returned | |
928 | |
929 * lib/ftps.c - return an error if the SSL session cannot be setup | |
930 properly | |
931 | |
545 | 932 * autogen.sh - updated autogen.sh so that it will work with newer |
933 versions of automake/autoconf | |
934 | |
544 | 935 * src/gtk/bookmarks.c - make sure that edit_bookmarks_dialog is |
936 initialized to NULL | |
937 | |
541 | 938 2004-8-21 Brian Masney <masneyb@gftp.org> |
542 | 939 * lib/gftp.h lib/options.h lib/protocols.c - added |
940 gftp_protocol_default_port() that will return the default port for | |
941 the current protocol | |
942 | |
943 * src/gtk/misc-gtk.c (update_window_info) - when updating the toolbar | |
944 with the connection status, if the current connection is using the | |
945 default port for it's protocol, then leave the port field blank. This | |
946 should help users who want to reconnect to the current site using a | |
947 different protocol | |
948 | |
949 * src/gtk/gftp-gtk.c (CreateConnectToolbar) - expanded the size of | |
950 the Port input box | |
951 | |
541 | 952 * lib/rfc959.c lib/ftpcommon.h - added internal option to quote |
953 the filename in the SITE command. This is only enabled for servers | |
954 that return UNIX in the SYST output. It is disabled if it is a BSD | |
955 based FTP server | |
956 | |
957 * lib/sshv2.c (sshv2_start_login_sequence) - pass the search strings | |
958 through gettext so that logins will work properly for non-english | |
959 users | |
960 | |
961 * lib/pty.c (gftp_exec) - redirect STDERR of the child process to the | |
962 opened pty so that stderr is shown properly in the log window | |
963 | |
531 | 964 2004-8-17 Brian Masney <masneyb@gftp.org> |
538 | 965 * lib/sshv2.c - renamed read_buffer in sshv2_params to |
966 transfer_buffer. In sshv2_put_next_file_chunk(), dynamically allocate | |
967 memory for transfer_buffer instead of using a fixed buffer on the | |
968 stack. This allows for large transfer buffer sizes. | |
969 | |
537 | 970 * lib/sshv2.c - added sshv2_open_file(). sshv2_get_file() and |
971 sshv2_put_file() now use this function | |
972 | |
536 | 973 * src/gtk/gftp-gtk.c - removed local shortcuts for Disconnect |
974 and Open URL. These conflicted with other items | |
975 | |
535 | 976 * lib/misc.c - when sorting by file, user or group, do a case |
977 insensitive sort | |
978 | |
534 | 979 * docs/gftp.desktop docs/Makefile.am - updated desktop file. Install |
980 the desktop file in $datadir/applications (from <m777@canada.com>) | |
981 | |
533 | 982 * lib/rfc959.c (rfc959_set_file_time, rfc959_chmod) - enclose the |
983 filename in "quotes" | |
984 | |
532 | 985 * lib/gftp.h lib/misc.c lib/protocols.c lib/rfc2068.c lib/rfc959.c - |
986 added #defines for encoding and decoding file sizes that will work | |
987 properly for large files (GFTP_OFF_T_HEX_PRINTF_MOD, | |
988 GFTP_OFF_T_INTL_PRINTF_MOD, GFTP_OFF_T_PRINTF_MOD, | |
989 GFTP_OFF_T_11PRINTF_MOD and gftp_parse_file_size). Fixed file size | |
990 not being displayed properly when the system does not support the ' | |
991 printf formatter | |
992 | |
993 * acinclude.m4 (AC_INTL_PRINTF) - check to see if _LARGEFILE_SOURCE | |
994 is defined. If so, use %'lld instead of %'ld | |
995 | |
531 | 996 * lib/rfc959.c lib/sshv2.c - removed unneeded code in the *_chmod() |
997 functions | |
998 | |
526 | 999 2004-8-9 Brian Masney <masneyb@gftp.org> |
529 | 1000 * lib/sshv2.c - fixes so that file permissions are preserved properly |
1001 on file upload. Fixes so that the Utime and Chmod commands are shown | |
1002 in the log window | |
1003 | |
528 | 1004 * lib/sshv2.c (sshv2_setup_file_offset) - added buf argument to this |
1005 function so that uploading files will work again | |
1006 | |
527 | 1007 * lib/options.h src/uicommon/gftpui.c - added ability to change the |
1008 block size on the fly of the transfered files. | |
1009 | |
526 | 1010 * lib/config_file.c lib/options.h lib/rfc959.c - fixed warnings about |
1011 unitialized members in the structure | |
1012 | |
1013 * lib/pty.c (gftp_exec) - setup stderr when running the program | |
1014 | |
1015 * lib/sshv2.c src/uicommon/gftpui.h - fixed signed/unsigned integer | |
1016 comparisions | |
1017 | |
1018 * lib/sshv2.c - added sshv2_copy_param_options() | |
1019 | |
1020 * src/gtk/options_dialog.c - compile fix when compiling against GTK+ | |
1021 1.2 | |
1022 | |
525 | 1023 2004-8-1 Brian Masney <masneyb@gftp.org> |
1024 * lib/sshv2.c - treat all integers from the remote server as | |
1025 unsigned | |
1026 | |
1027 * src/gtk/delete_dialog.c - fixed memory leak | |
1028 | |
1029 * src/gtk/chmod_dialog.c src/gtk/delete_dialog.c src/gtk/dnd.c | |
1030 src/gtk/gftp-gtk.c src/gtk/gftp-gtk.h src/gtk/gtkui.c | |
1031 src/gtk/menu-items.c src/gtk/transfer.c - added | |
1032 gftp_gtk_get_list_selection() macro | |
1033 | |
517 | 1034 2004-7-27 Brian Masney <masneyb@gftp.org> |
521 | 1035 * lib/rfc959.c src/gtk/misc-gtk.c src/gtk/view_dialog.c - fixed more |
1036 comparsions between signed and unsigned integers | |
1037 | |
1038 * lib/sshv2.c (sshv2_buffer_get_int32) - allow an expected response | |
1039 value of 0. If it does not match, call sshv2_wrong_response(). | |
1040 SSH_FX_OK is set to 0, so this value was not being checked | |
1041 | |
1042 * src/gtk/gtkui.c src/text/textui.c src/uicommon/gftpui.h - renamed the | |
1043 clear_cache argument of gftpui_refresh() to clear_cache_entry. There is | |
1044 already a function named clear_cache() | |
1045 | |
520 | 1046 * lib/gftp.h lib/local.c lib/protocols.c lib/sshv2.c - changed |
1047 declaration of gftp_stat_filename() so that the mode of the filename | |
1048 is returned as a parameter instead of the function return value. | |
1049 The mode_t type is unsigned and the error codes could not be reported | |
1050 properly | |
1051 | |
519 | 1052 * lib/sshv2.c - fixed SSHV2 transfers so that they work again |
1053 (they were busted in the last CVS commit due to the wrong file | |
1054 offset being sent over) | |
1055 | |
1056 * src/gtk/misc-gtk.c - fix for the log window so that the contents | |
1057 are properly shown. (this was busted in the last CVS commit) | |
1058 | |
518 | 1059 * lib/protocols.c lib/rfc2068.c lib/rfc959.c lib/sshv2.c |
1060 src/gtk/bookmarks.c src/gtk/dnd.c src/gtk/gftp-gtk.c src/gtk/gtui.c | |
1061 src/gtk/menu-items.c src/misc-gtk.c src/gtk/options_dialog.c | |
1062 src/gtk/transfer.c src/text/gftp-text.c src/uicommon/gftpui.c - | |
1063 various fixes found through a static code analysis. (some | |
1064 signed/unsigned fixes, removed unneeded casts, indentation fixes, | |
1065 added static declaration to some functions) | |
1066 | |
517 | 1067 * lib/rfc2068.c lib/sshv2.c src/gtk/bookmarks.c src/gtk/chmod_dialog.c |
1068 src/gtk/gtkui.c src/gtk/transfer.c src/uicommon/gftpui.c - removed | |
1069 unused variables | |
1070 | |
1071 * src/gtk/misc-gtk.c (progress_timeout) - fixed implicit integer to | |
1072 float conversion | |
1073 | |
515 | 1074 2004-7-26 Brian Masney <masneyb@gftp.org> |
516 | 1075 * lib/config_file.c lib/local.c lib/ftps.c lib/gftp.h lib/httpcommon.h |
1076 lib/https.c lib/misc.c lib/protocols.c lib/pty.c lib/rfc2068.c | |
1077 lib/rfc959.c lib/sshv2.c - various fixes found through a static code | |
1078 analysis checker. (some signed/unsigned fixes, removed unneeded casts, | |
1079 removed unneeded variables, more consistency, largefile fixes). Thanks | |
1080 to Derek M Jones for running the static code analysis for me | |
1081 | |
1082 * lib/cache.c - s/remove/del_entry/g | |
1083 | |
1084 * lib/bookmark.c lib/protocols.c (gftp_parse_bookmark) - allow | |
1085 the third parameter of this function to be a NULL pointer | |
1086 | |
515 | 1087 * lib/pty.c - give the grantpt pty implementation more priority over |
1088 using openpty() | |
1089 | |
511 | 1090 2004-7-25 Brian Masney <masneyb@gftp.org> |
514 | 1091 * src/gtk/bookmarks.c src/gtk/gftp-gtk.c src/gtk/gtkui.c |
1092 src/gtk/transfer.c src/text/textui.c src/uicommon/gftpui.c | |
1093 src/uicommon/gftpui.h - added clear_cache argument to gftpui_refresh() | |
1094 Don't clear the cache when changing directories | |
1095 | |
1096 * src/uicommon/gftpuicallbacks.c (_gftpui_common_rm_list) - return | |
1097 0 on success | |
1098 | |
1099 * src/gtk/delete_dialog.c - refresh the directory listing after the | |
1100 operation was successful | |
1101 | |
513 | 1102 * lib/rfc959.c - added rfc959_set_file_time(). This uses the SITE UTIME |
1103 command. Not many FTP servers appear to support this extension | |
1104 | |
512 | 1105 * lib/protocols.c (gftp_get_transfer_status) - don't force the user to |
1106 wait to reconnect if the connection to the server timed out | |
1107 | |
511 | 1108 * src/gtk/transfer.c - when spawning a thread to get the |
1109 subdirectories, don't refresh the local directory listing. Also added | |
1110 custom connect/disconnect functions so that timeouts can be handled | |
1111 properly. | |
1112 | |
1113 * src/gtk/delete_dialog.c - make sure that 2 connections to the server | |
1114 don't get established | |
1115 | |
1116 * src/uicommon/gftpui.c src/uicommon/gftpui.h - added dont_refresh | |
1117 variable to gftpui_callback_data structure. If this is true, then it | |
1118 will not run gftpui_refresh() after the thread terminates | |
1119 | |
509 | 1120 2004-7-24 Brian Masney <masneyb@gftp.org> |
510 | 1121 * src/uicommon/gftpui.c src/uicommon/gftpui.h - added support for |
1122 a custom connect and disconnect function in the thread callback | |
1123 | |
1124 * lib/local.c (local_connect) - don't step on request->directory if | |
1125 it is already set to the current working directory | |
1126 | |
509 | 1127 * lib/protocols.c (gftp_get_all_subdirs) - if there is an error in the |
1128 protocol function, make sure the error code is returned as is. This is | |
1129 so that timeouts can be detected properly | |
1130 | |
505 | 1131 2004-7-19 Brian Masney <masneyb@gftp.org> |
508 | 1132 * src/gtk/transfer.c src/uicommon/gftpui.h - use the new thread callback |
1133 functions for retrieving the list of subdirectories | |
1134 | |
507 | 1135 * src/gtk/delete_dialog.c src/uicommon/gftpuicallbacks.c - use the |
1136 new thread callback functions for deleting items from the GTK+ GUI | |
1137 | |
506 | 1138 * src/gtk/delete_dialog.c src/gtk/transfer.c src/gtk/gftp-gtk.h - |
1139 added gftp_gtk_get_subdirs() to get the list of subdirectories in a | |
1140 child thread | |
1141 | |
505 | 1142 * src/gtk/gftp-gtk.c src/gtk/gftp-gtk.h - renamed some functions so that |
1143 they are clearer on what they do. Did some small code cleanups | |
1144 | |
503 | 1145 2004-7-18 Brian Masney <masneyb@gftp.org> |
504 | 1146 * lib/local.c lib/protocols.c lib/rfc959.c src/uicommon/gftpui.c - fixes |
1147 for the *_chmod() functions to use the datatype mode_t for storing | |
1148 the file attributes | |
1149 | |
503 | 1150 * acinclude.m4 - quote the definition of the automake functions. This |
1151 fixes warnings from automake 1.8 | |
1152 | |
502 | 1153 * acinclude.m4 - removed AC_SYS_LARGEFILE. This is provided by newer |
1154 versions of automake | |
1155 | |
1156 * configure.in - added pa to ALL_LINGUAS. Updated version to 2.0.18pre1 | |
1157 | |
499 | 1158 2004-7-13 Brian Masney <masneyb@gftp.org> |
500 | 1159 * lib/gftp.h lib/local.c lib/protocols.c lib/rfc2068.c lib/rfc959.c |
1160 lib/sshv2.c - added gftp_stat_filename(). This will retrieve the | |
1161 attributes for the selected file. When downloading a list of items, | |
1162 if one of the items is a symlink, check to see if it points to a | |
1163 directory or file | |
1164 | |
1165 * src/gtk/misc-gtk.c - fix for displaying the folder icon for | |
1166 directories | |
1167 | |
499 | 1168 * lib/gftp.h lib/local.c lib/misc.c lib/protocols.c lib/rfc2068.c |
1169 lib/rfc959.c lib/sshv2.c src/gtk/chmod_dialog.c src/gtk/delete_dialog.c | |
1170 src/gtk/dnd.c src/gtk/gftp-gtk.c src/gtk/gtkui_transfer.c | |
1171 src/gtk/menu-items.c src/gtk/misc-gtk.c src/gtk/view_dialog.c | |
1172 src/text/textui.c src/uicommon/gftpui.c src/uicommon/gftpuicallbacks.c - | |
1173 represent the file attributes as a mode_t variable instead of a | |
1174 character string | |
1175 | |
497 | 1176 2004-7-12 Brian Masney <masneyb@gftp.org> |
498 | 1177 * lib/sshv2.c - added sshv2_decode_file_attributes(). This is used |
1178 by sshv2_get_next_file() and sshv2_get_file_size(). | |
1179 (sshv2_get_next_file_chunk) - if the error SSH_FX_FAILURE was returned, | |
1180 then do not return wrong message received from server to the user | |
1181 | |
1182 * lib/protocols.c (gftp_get_transfer_status) - when there is a | |
1183 transfer error, make sure that an incoming signal does not | |
1184 interrupt the timeout | |
1185 | |
1186 * src/gtk/gftp-gtk.c src/uicommon/gftpui.c - make sure the SIGCHLD | |
1187 signal handler reaps the zombies in the text port. | |
1188 | |
497 | 1189 * docs/rfcs/* - added RFCs that are used by this program |
1190 | |
496 | 1191 2004-7-11 Brian Masney <masneyb@gftp.org> |
1192 * src/gtk/gftp-gtk.c src/gtk/gftp-gtk.h src/gtk/gtkui.c | |
1193 src/gtk/transfer.c - removed use_cache argument to ftp_list_files() | |
1194 This was not being used | |
1195 | |
1196 * src/gtk/gftp-gtk.c - compile fix when compiling against GTK 1.2 | |
1197 | |
493 | 1198 2004-7-6 Brian Masney <masneyb@gftp.org> |
1199 * lib/sshv2.c - added sshv2_wrong_message(). Changed the wrong message | |
1200 log messages to call this function instead | |
1201 | |
489 | 1202 2004-6-27 Brian Masney <masneyb@gftp.org> |
1203 * lib/sshv2.c - did more code cleanups | |
1204 | |
487 | 1205 2004-6-22 Brian Masney <masneyb@gftp.org> |
1206 * lib/sshv2.c - did more code cleanups | |
1207 | |
484 | 1208 2004-6-15 Brian Masney <masneyb@gftp.org> |
485 | 1209 * lib/protocols.c - added supported for multiline VMS directory |
1210 listings. Also, parse the date correctly for single line VMS | |
1211 directory listings | |
1212 | |
1213 * lib/gftp.h lib/local.c lib/rfc2068.c lib/rfc959.c lib/sshv.c - | |
1214 added function pointer get_next_dirlist_line to gftp_request structure. | |
1215 This will retrieve the next line of input for the directory listing. | |
1216 This is only implemented in the FTP protocol at the moment. It shouldn't | |
1217 be needed in the other protocols | |
1218 | |
484 | 1219 * lib/gftp.h lib/sshv2.c src/gtk/gtkui.c src/text/textui.c - added |
1220 support for RSA SecurID passwords | |
1221 | |
1222 * lib/sshv2.c - cleaned up the SSH login sequence even more. Removed | |
1223 ssh2_sftp_path and sshv2_use_sftp_subsys options. The sftp subsystem | |
1224 is now always used. | |
1225 | |
483 | 1226 2004-6-13 Brian Masney <masneyb@gftp.org> |
1227 * lib/gftp.h lib/misc.c src/gtk/Makefile.am src/gtk/menu-items.c | |
1228 src/gtk/misc-gtk.c src/text/Makefile.am src/uicommon/Makefile.am | |
1229 src/uicommon/gftpui.c - added support to override the value of | |
1230 SHARE_DIR during runtime with the GFTP_SHARE_DIR environment | |
1231 variable | |
1232 | |
478 | 1233 2004-6-6 Brian Masney <masneyb@gftp.org> |
480 | 1234 * lib/protocols.c (gftp_set_username) - allow a NULL username |
1235 | |
1236 * configure.in - if gftp is being compiled on HPUX, check for sem_init | |
1237 in librt | |
1238 | |
479 | 1239 * lib/protocols.c (parse_time) - if there is an error parsing the |
1240 time format, don't return a fatal error | |
1241 | |
478 | 1242 * acinclude.m4 configure.in - added AC_TYPE_INTPTR_T that will define |
1243 intptr_t if it does not exist on the system | |
1244 | |
1245 * lib/gftp.h lib/protocols.c lib/rfc959.c | |
1246 src/uicommon/gftpuicallbacks.c - added specify site argument to | |
1247 rfc959_site(). If this is set, then SITE will be prepended to the | |
1248 command | |
1249 | |
472 | 1250 2004-5-26 Brian Masney <masneyb@gftp.org> |
474 | 1251 * docs/gftp.desktop - make desktop item follow HIG (closes #142005) |
1252 | |
473 | 1253 * lib/protocols.c lib/options.h - added remote_lc_time option. The |
1254 value of LC_TIME can now be overridden on a per site basis. This will | |
1255 fix problems parsing the dates in the remote directory listings | |
1256 | |
472 | 1257 * src/gtk/dnd.c - when a URL is dropped on the connect button, log the |
1258 URL that is received | |
1259 | |
1260 * src/gtk/gftp-gtk.c src/gtk/options_dialog.c - more 64 bit cleanups | |
1261 | |
469 | 1262 2004-5-16 Brian Masney <masneyb@gftp.org> |
470 | 1263 * src/gtk/gftp-gtk.c src/gtk/gftp-gtk.h src/gtk/transfer.c - fixed |
1264 detection of SIGCHLD when viewing/editing a file (from | |
1265 Aurelien Jarno <aurelien@aurel32.net>) | |
1266 | |
1267 * src/gtk/gtkui.c - expand the path on the client side when changing | |
1268 the remote directory (i.e. CHDIR /home/.. becomes /home) | |
1269 (from Aurelien Jarno <aurelien@aurel32.net>) | |
1270 | |
469 | 1271 * src/uicommon/gftpui.c lib/gftp.h - added |
1272 gftpui_protocol_update_timeout() | |
1273 | |
1274 * lib/protocols.c - 64 bit fixes. Check to see if the remote site | |
1275 disconnected | |
1276 | |
463 | 1277 2004-4-14 Brian Masney <masneyb@gftp.org> |
1278 * lib/protocols.c lib/rfc959.c src/gtk/transfer.c - AMD64 fixes | |
1279 | |
460 | 1280 2004-4-14 Brian Masney <masneyb@gftp.org> |
1281 * lib/sshv2.c lib/gftp.h src/text/textui.c src/gtk/gtkui.c - when | |
1282 connecting with the SSH protocol, if the user is asked a question, | |
1283 relay that question back to the user and allow them to answer it. | |
1284 | |
1285 * doc/gftp-faq.sgml - moved the SSH troubleshooting section to the | |
1286 issues for older releases section. All of the issues that this talks | |
1287 about have been fixed in CVS. | |
1288 | |
1289 * src/gtk/gftp-gtk.c (main) - call gdk_threads_init() on startup | |
1290 | |
1291 * lib/cache.c lib/config_file.c lib/misc.c lib/protocols.c | |
1292 lib/rfc2068.c lib/rfc959.c - removed some uses of strlen() so that | |
1293 they only occur once on a string instead of multiple times in some | |
1294 cases | |
1295 | |
1296 * lib/sslcommon.c - fixed typo | |
1297 | |
1298 * configure.in lib/gftp.h - added configure check for inttypes.h | |
1299 | |
1300 * docs/gftp.lsm - updated with 2.0.17 information | |
1301 | |
459 | 1302 2004-04-10 Adam Weinberger <adamw@gnome.rog> |
1303 | |
1304 * en_CA.po: Added en_CA to ALL_LINGUAS. | |
1305 | |
458 | 1306 2004-4-10 Brian Masney <masneyb@gftp.org> |
1307 * lib/gftp.h lib/pty.c lib/sshv2.c - added gftp_exec() that will always | |
1308 open a pseudo terminal and a separate socket pair for the stdin/stdout | |
1309 file descriptors. The banner and password request will come through the | |
1310 pseudo terminal while the sftp protocol specific data will always come | |
1311 through the socket pair. This allows for a much cleaner SSH login | |
1312 sequence that does not require echo xsftp to capture a login banner. | |
1313 Removed option ssh_use_askpass since it is no longer needed. | |
1314 This code is based off of a suggestion from Gertjan Halkes | |
1315 | |
1316 * src/text/gftp-text.c - removed setting the options ssh_use_askpass | |
1317 and sshv2_use_sftp_subsys | |
1318 | |
455 | 1319 2004-03-30 Gareth Owen <gowen72@yahoo,com> |
1320 | |
1321 * configure.in: Added en_GB to ALL_LINGUAS | |
1322 | |
452 | 1323 2004-3-28 Brian Masney <masneyb@gftp.org> |
453 | 1324 * debian/changelog configure.in ChangeLog-old - incremented version |
1325 number to 2.0.17 | |
1326 | |
1327 * docs/website/announce.txt - updated announcement to reflect 2.0.17 | |
1328 release | |
1329 | |
452 | 1330 * src/gtk/bookmarks.c - only allow one instance of the bookmarks editor |
1331 | |
451 | 1332 2004-3-26 Brian Masney <masneyb@gftp.org> |
1333 * lib/ftps.c lib/gftp.h lib/rfc959.c - when reestablishing a connection | |
1334 to a FTPS host, make sure the initial commands are sent over in | |
1335 plaintext | |
1336 | |
1337 * lib/protocols.c - make sure the port is displayed to the user in the | |
1338 proper byte order when getaddrinfo() is not included on the system | |
1339 | |
1340 * lib/misc.c (gftp_copy_request) - make sure req->init is not NULL | |
1341 before attempting to initialize the new request structure. This fixes | |
1342 a segfault that happened when viewing/editing a local file | |
1343 (from Chelban Vasile <mail4509@pochtamt.ru>) | |
1344 | |
1345 * docs/website/generate-gftp-website.pl - updated the STABLE_I386DEB | |
1346 filename | |
1347 | |
1348 * docs/website/index.html.in - updated the main website | |
1349 | |
1350 * docs/website/announce.txt - announcement for the 2.0.17 release | |
1351 | |
443 | 1352 2004-3-21 Brian Masney <masneyb@gftp.org> |
449 | 1353 * lib/ftps.c (ftps_auth_tls_start) - if the server rejects the |
1354 PROT C command, disconnect from the server | |
1355 | |
447 | 1356 * src/gtk/gftp-gtk.c - initialize the read/write color functions before |
1357 gftp is initialized | |
1358 | |
445 | 1359 * src/gtk/menu-items.c (chdir_edit) - ignore the number of items that |
1360 are selected in the listbox | |
1361 | |
444 | 1362 * src/gtk/view_dialog.c src/gtk/menu-items.c - cleanups to the view |
1363 log code | |
1364 | |
443 | 1365 * src/uicommon/gftpuicallbacks.c (gftpui_common_run_ls) - if there |
1366 is an error, make sure that the exact error code is returned | |
1367 | |
1368 * lib/protocols.c (gftp_transfer_files) - if the connection timed | |
1369 out, reconnect immediately | |
1370 | |
1371 * lib/rfc959.c - if the connection timed out to the server, make | |
1372 sure GFTP_ETIMEDOUT is returned | |
1373 | |
441 | 1374 2004-3-20 Brian Masney <masneyb@gftp.org> |
442 | 1375 * lib/gftp.h src/uicommon/gftpui.c lib/rfc959.c - if the connection |
1376 timed out to the server, return GFTP_ETIMEDOUT. In the UI, if this | |
1377 error code is returned, immediately reconnect to the server and retry | |
1378 the operation | |
1379 | |
1380 * lib/rfc959.c - if the return value from rfc959_send_command() is | |
1381 < 0, then make sure the exact value is returned instead of | |
1382 GFTP_ERETRYABLE | |
1383 | |
441 | 1384 * src/gtk/chmod_dialog.c - use gftpui_common_run_callback_function() |
1385 to do the chmod operation. This will spawn a thread if necessary | |
1386 | |
440 | 1387 * debian/gftp-text.prerm - missing debian package file |
1388 | |
1389 * Makefile.am - updated with EXTRA_DIST variable with the list of the | |
1390 Debian package files | |
1391 | |
439 | 1392 * debian/* - updated Debian package files from |
1393 Aurelien Jarno <aurelien@aurel32.net> | |
1394 | |
441 | 1395 2004-3-19 Brian Masney <masneyb@gftp.org> |
437 | 1396 * lib/gftp.h - if _LARGEFILE_SOURCE is defined, but _LARGEFILE64_SOURCE |
1397 is not defined, define it | |
1398 | |
434 | 1399 2004-3-18 Brian Masney <masneyb@gftp.org> |
435 | 1400 * lib/gftp.h configure.in - #define _LARGEFILE_SOURCE if sizeof(off_t) |
1401 is greater than 4 and _LARGEFILE_SOURCE is not defined. | |
1402 _LARGEFILE_SOURCE does not get defined under *BSD | |
1403 | |
434 | 1404 * lib/local.c (local_{get,put}_file) - compiling fix for FreeBSD. |
1405 _LARGEFILE_SOURCE is defined, but O_LARGEFILE is not defined | |
1406 | |
427 | 1407 2004-3-17 Brian Masney <masneyb@gftp.org> |
433 | 1408 * lib/options.h src/gtk/transfer.c - added start file transfers option |
1409 | |
432 | 1410 * lib/ftpcommon.h lib/ftps.c - removed encrypted_connection variable |
1411 from the rfc959_parms structure | |
1412 | |
1413 * lib/rfc959.c (rfc959_copy_param_options) - fix for FTPS protocol | |
1414 so that the proper read/write function is setup whenever the request | |
1415 structure is copied | |
1416 | |
431 | 1417 * lib/sslcommon.c - fix so that the option verify_ssl_peer can be |
1418 toggled while gftp is running and on a per connection basis | |
1419 | |
430 | 1420 * docs/gftp-faq.sgml - added SSL Issues section |
1421 | |
1422 * docs/sample.gftp/gftprc - updated config file that has all | |
1423 of the new options added since 2.0.16 | |
1424 | |
1425 * lib/options.h - disable show_trans_in_title by default | |
1426 | |
429 | 1427 * lib/config_file.c lib/gftp.h lib/misc.c lib/protocols.c |
1428 src/gtk/bookmarks.c (gftp_copy_local_options) - in the new | |
1429 options that are copied, update the the number of options that are | |
1430 stored. | |
1431 | |
427 | 1432 * lib/rfc2068.c (parse_html_line) - fix for parsing file sizes |
1433 | |
1434 * ChangeLog-old - updated with summary of changes since 2.0.16 | |
1435 | |
1436 * docs/website/index.html.in - updated the list of translations | |
1437 available | |
1438 | |
425 | 1439 2004-3-16 Brian Masney <masneyb@gftp.org> |
426 | 1440 * lib/ftpcommon.h lib/gftp.h lib/rfc959.c src/uicommon/gftpui.c - |
1441 fixes so that FXP transfers work again | |
1442 | |
425 | 1443 * src/gtk/misc-gtk.c src/gtk/gftp-gtk.h - added destroy_dialog() |
1444 function | |
1445 | |
1446 * src/gtk/gftp-gtk.c - destroy the openurl dialog before attempting to | |
1447 connect to the server | |
1448 | |
423 | 1449 2004-3-15 Brian Masney <masneyb@gftp.org> |
424 | 1450 * src/gtk/misc-gtk.c (update_directory_download_progress) - center the |
1451 progress dialog (closes #136370) | |
1452 | |
423 | 1453 * lib/gftp.h - if _FILE_OFFSET_BITS is > 32 and _LARGEFILE_SOURCE is |
1454 not defined, define it | |
1455 | |
425 | 1456 * lib/protocols.c (gftp_string_{to|from}_utf8 - don't alter the contents |
1457 of the remote_charsets option. Instead, make a copy of that and alter | |
423 | 1458 that copy |
1459 | |
422 | 1460 2004-3-14 Brian Masney <masneyb@gftp.org> |
1461 * lib/misc.c (expand_path) - skip over paths that are empty | |
1462 | |
1463 * lib/misc.c (gftp_sort_filelist) - fixed NULL pointer dereference | |
1464 that would occur when attempting to sort an empty filelist | |
1465 (from Hans-J?rgen Sch?ler <hjschaeler@t-online.de>) | |
1466 | |
1467 * src/uicommon/gftpui.c (_gftpui_common_thread_callback) - fix so that | |
1468 retries would occur properly after a timeout | |
1469 (from Nam SungHyun <namsh@kldp.org>) | |
1470 | |
1471 * src/gtk/Makefile.am - removed unneeded localedir defination | |
1472 (from Nam SungHyun <namsh@kldp.org>) | |
1473 | |
1474 * lib/gftp.h lib/protocols.c src/gtk/gftp-gtk.c src/text/gftp-text.c - | |
1475 added gftp_setup_startup_directory(). This function will expand the | |
1476 startup directory so that ~ directories will work properly | |
1477 | |
1478 * lib/rfc959.c - removed invalid response error message if the user | |
1479 enters an invalid password | |
1480 | |
1481 * src/gtk/bookmarks.c - only allow one bookmark entry to be edited at a | |
1482 time. This is a design flaw in my code and I'll remove this restriction | |
1483 until I have time to recode this. Also, fixed segfault that would occur | |
1484 when renaming a bookmark | |
1485 | |
1486 * src/gtk/view_dialog.c - when editing a file, make sure the file has | |
1487 the right suffix so that syntax highlighting works | |
1488 | |
415 | 1489 2004-3-1 Brian Masney <masneyb@gftp.org> |
416 | 1490 * lib/sslcommon.c - added verify_ssl_peer option |
1491 | |
415 | 1492 * lib/ftps.c - set the protocol number to GFTP_FTPS_NUM |
1493 | |
1494 * lib/https.c - set the protocol number to GFTP_HTTPS_NUM | |
1495 | |
1496 * lib/rfc959.c lib/rfc2068.c - remove references to checking for | |
1497 GFTP_FTP_NUM and GFTP_HTTP_NUM | |
1498 | |
411 | 1499 2004-2-29 Brian Masney <masneyb@gftp.org> |
1500 * lib/rfc959.c - in several instances, if an invalid response is | |
1501 received from the server, make sure an error message is logged to the | |
1502 user before they are disconnected from the site | |
1503 | |
408 | 1504 2004-02-21 Paisa Seeluangsawat <paisa@users.sf.net> |
1505 | |
1506 * configure.in: Added Thai (th) to ALL_LINGUAS. | |
1507 | |
402 | 1508 2004-2-16 Brian Masney <masneyb@gftp.org> |
404 | 1509 * configure.in - added ta.po to ALL_LINGUIS |
1510 | |
402 | 1511 * src/gtk/view_dialog.c - call mkstemps() to create the temporary |
1512 file. This is so that the extension of the file will be preserved | |
1513 so that syntax highlighting will still work (from | |
1514 Aurelien Jarno <aurelien@aurel32.net>) | |
1515 | |
1516 * lib/Makefile.am lib/gftp.h lib/mkstemps.c po/POTFILES.in - | |
1517 added mksteps() from the GNU C Library (from | |
1518 Aurelien Jarno <aurelien@aurel32.net>) | |
1519 | |
401 | 1520 2004-2-16 Brian Masney <masneyb@gftp.org> |
1521 * src/gtk/misc-gtk.c - compile fix for GTK+ 1.2 | |
1522 | |
1523 * po/POTFILES.in - added ftps.c and ftpcommon.h and httpcommon.h | |
1524 | |
399 | 1525 2004-2-15 Brian Masney <masneyb@gftp.org> |
400 | 1526 * debian/changelog debian/copyright debian/gftp-text.postinst |
1527 debian/gftp-text.prerm - updated Debian packaging files from | |
1528 Aurelien Jarno <aurelien@aurel32.net> | |
1529 | |
399 | 1530 * lib/sshv2.c (sshv2_put_file) - fix for resuming SSHv2 uploads |
1531 | |
1532 * src/text/gftp-text.c - fixed compiler error when being compiled | |
1533 without gettext | |
1534 | |
1535 2004-2-8 Brian Masney <masneyb@gftp.org> | |
1536 * src/gtk/gftp-gtk.h src/gtk/gtkui.c - added | |
1537 gftpui_gtk_get_utf8_file_pos() that will return the file in UTF8 | |
1538 format if it is available | |
1539 | |
1540 * src/gtk/gtkui_transfer.c src/gtk/transfer.c - call | |
1541 gftpui_gtk_get_utf8_file_pos() to display the file in the file transfer | |
1542 status. This fixes a bug where non-UTF8 files were being chopped off | |
1543 | |
1544 * src/text/textui.c src/uicommon/gftpui.c src/uicommon/gftpui.h | |
1545 src/text/gtkui_transfer.c - updated declaration of | |
1546 gftpui_add_file_to_transfer() | |
1547 | |
1548 * lib/protocols.c (gftp_swap_socks) - swap the SSL sockets between | |
1549 the two request structures | |
1550 | |
1551 * lib/ftps.c - added ftps_get_next_file() that will pull items from | |
1552 the cache properly | |
1553 | |
1554 * lib/Makefile.am - updated LOCALE_DIR declaration | |
1555 (from Sung-Hyun Nam <namsh@kldp.org>) | |
1556 | |
1557 * ChangeLog-old - updated summary of changes since 2.0.16 | |
1558 | |
1559 * TODO - removed several items that were completed | |
1560 | |
1561 2004-2-4 Brian Masney <masneyb@gftp.org> | |
396 | 1562 * docs/website/index.html.in - updated main website |
1563 | |
395 | 1564 * src/gtk/gftp-gtk.c - allow pasting a URL in the host box |
1565 | |
394 | 1566 * lib/Makefile.am - added ftpcommon.h to noinst_HEADERS |
1567 | |
399 | 1568 2004-2-3 Brian Masney <masneyb@gftp.org> |
390 | 1569 * lib/ftpcommon.h lib/ftps.c lib/rfc959.c - added pointers to |
1570 read/write functions to the rfc959_params structure for the data | |
1571 connection. For now, this is always set to the plaintext version. | |
1572 | |
389 | 1573 * lib/Makefile.am lib/gftp.h lib/options.h lib/rfc959.c lib/ftpcommon.h |
1574 lib/ftps.c - added support for the FTPS protocol. This currently is only | |
1575 for the control connection. (draft-murray-auth-ftp-ssl-09.txt) | |
1576 | |
399 | 1577 2004-2-2 Brian Masney <masneyb@gftp.org> |
388 | 1578 * docs/website/index.html.in - updated main gftp website |
1579 | |
387 | 1580 * lib/config_file.c lib/gftp.h src/uicommon/gftpui.c |
1581 src/gtk/gftp-gtk.c - updated the format of the config file | |
1582 write_functions so that the value isn't written to a file descriptor. | |
1583 Instead, it is written to a buffer. | |
1584 | |
1585 * src/text/gftp-text.c (gftp_text_log) - search for newlines in the | |
1586 string and split on those characters first | |
1587 | |
1588 * src/text/textui.c (gftpui_disconnect) - disconnect from the host | |
1589 | |
1590 * src/uicommon/gftpui.c - removed calls to printf() functions. Instead | |
1591 print the values out using the logging function | |
1592 | |
1593 * src/uicommon/gftpuicallbacks.c (gftpui_common_run_ls) - if we are | |
1594 connected to a local site, lookup the options local_sortasds and | |
1595 local_sortcol. Otherwise, lookup remove_sortasds and remote_sortcol. | |
1596 | |
1597 * autogen.sh - disable maintainer mode | |
1598 | |
1599 * TODO - updated | |
1600 | |
385 | 1601 2004-02-01 Alastair McKinstry <mckinstry@computer.org> |
1602 | |
1603 * configure.in: Add Irish ("ga") to ALL_LINGUAS | |
1604 | |
399 | 1605 2004-2-1 Brian Masney <masneyb@gftp.org> |
382 | 1606 * src/gtk/dnd.c - whenever a file(s)/directories are dropped onto |
1607 gftp, allow resuming the file transfers | |
1608 | |
381 | 1609 * lib/protocols.c (gftp_get_dir_listing, gftp_get_all_subdirs) - don't |
1610 modify the file variable if it begins with a /. Do not touch the | |
1611 destfile variable if it already exists | |
1612 | |
399 | 1613 2004-1-28 Brian Masney <masneyb@gftp.org> |
380 | 1614 * src/gtk/bookmarks.c src/gtk/dnd.c src/gtk/gftp-gtk.c |
1615 src/gtk/gftp-gtk.h src/gtk/gtkui.c src/gtk/menu-items.c | |
1616 src/gtk/transfer.c - renamed disconnect() to gftpui_disconnect() | |
1617 | |
1618 * src/gtk/gtkui.c src/text/textui.c src/uicommon/gftpui.c - improved | |
1619 prompting for the username/password | |
1620 | |
1621 * src/gtk/gtkui.c src/text/textui.c src/uicommon/gftpui.c - call | |
1622 gftpui_disconnect() after a command is run and if we are no longer | |
1623 connected to the remote host | |
1624 | |
1625 * src/text/gftp-text.c - parse the command line arguments for the host | |
1626 to connect to | |
1627 | |
1628 * src/text/textui.c (gftpui_refresh) - clear the cache. | |
1629 (gftpui_ask_transfer) - check for carriage return or empty string | |
1630 | |
1631 * src/uicommon/gftp.h - define gftpui_common_cmd_m{get,put}_file() | |
1632 | |
1633 * lib/sshv2.c - removed temporary "fix" | |
1634 | |
399 | 1635 2004-1-27 Brian Masney <masneyb@gftp.org> |
378 | 1636 * lib/gftp.h lib/misc.c src/gtk/gtkui_transfer.c src/text/textui.c - |
1637 added gftp_get_transfer_action(). When a file is to be transfered and | |
1638 already exists, this will return the default action that should be | |
1639 taken. | |
1640 | |
1641 * src/text/textui.c (gftpui_ask_transfer) - implemented this function | |
1642 so that whenever a file exists and is to be transfered, the user will | |
1643 be prompted on whether or not to overwrite/skip/resume | |
1644 | |
1645 * src/text/gftp-text.c (gftp_text_ask_question) - fixups for inputing | |
1646 a single character | |
1647 | |
399 | 1648 2004-1-23 Brian Masney <masneyb@gftp.org> |
377 | 1649 * src/text/gftp-text.c src/uicommon/gftpui.c - added file transfer |
1650 functions to the command line. | |
1651 | |
1652 * src/uicommon/gftpui_transfer.c src/uicommon/gftpui.h src/text/textui.c | |
1653 src/gtk/gtkui_transfer.c - added | |
1654 gftpui_{start,update,finish}_current_file_in_transfer() functions | |
1655 that will be called throughout the lifetime of a file transfer. | |
1656 Also, gftpui_start_transfer() that will be called whenever a file | |
1657 transfer is created | |
1658 | |
1659 * src/uicommon/gftpui.h src/uicommon/gftpui.c src/gtk/gftp-gtk.c | |
1660 src/gtk/transfer.c - added other_uidata and other_request arguments | |
1661 to all of the command line functions | |
1662 | |
1663 * lib/protocols.c lib/gftp.h - set the filespec argument to | |
1664 gftp_get_next_file to be a constant | |
1665 | |
1666 * lib/gftp.h - added tot_file_trans variable to gftp_transfer struct | |
1667 | |
399 | 1668 2004-1-21 Brian Masney <masneyb@gftp.org> |
374 | 1669 * lib/config_file.c lib/gftp.h - set the character string arguments to |
1670 const for the following functions: gftp_lookup_global_option(), | |
1671 gftp_lookup_request_option(), gftp_lookup_bookmark_option(), | |
1672 gftp_set_global_option(), gftp_set_request_option(), | |
1673 gftp_set_bookmark_option() | |
1674 | |
1675 * lib/misc.c lib/gftp.h - set the character string arguments to const | |
1676 for the function gftp_match_filespec() | |
1677 | |
1678 * src/gtk/gftp-gtk.c src/gtk/menu-items.c src/uicommon/gftpui.c - moved | |
1679 more UI independant parts to the uicommon directory. Moved some GUI | |
1680 specific functionality into gftp-gtk.c | |
1681 | |
1682 * src/text/gftp-text.c src/gtk/gftp-gtk.c src/uicommon/gftpui.c - pass | |
1683 the local/remote uidata/request structures to process_command(). Removed | |
1684 old function gftpui_common_init(). Added new gftpui_common_init() that | |
1685 sets up common functionality for a port. | |
1686 | |
1687 * src/gtk/gtkui.c src/gtk/gtkui_transfer.c - moved | |
1688 gftpui_add_file_to_transfer() to gtkui_transfer.c | |
1689 | |
1690 * src/gtk/gtkui_transfer.c - cleaned up these functions some and made | |
1691 them more modular | |
1692 | |
1693 * src/uicommon/gftpui.c src/uicommon/gftpui.h - for all of the command | |
1694 line functions, make the command argument a constant | |
1695 | |
399 | 1696 2004-1-18 Brian Masney <masneyb@gftp.org> |
372 | 1697 * lib/misc.c lib/protocols.c lib/rfc2068.c lib/rfc959.c - if |
1698 _LARGEFILE_SOURCE is defined, explicitly cast the file sizes to | |
1699 long long so that the %lld format will be correct | |
1700 | |
371 | 1701 * src/gtk/gtkui_transfer.c - gtk+ specific file transfer code. |
1702 Forgot to attach this with the last commit | |
1703 | |
370 | 1704 * lib/rfc959.c (rfc959_connect) - if the username is anonymous and a |
1705 password is already supplied, don't clobber it. | |
1706 | |
369 | 1707 * lib/misc.c (gftp_build_path) - when checking for already existing |
1708 /'s, not only look at the end of the currently built string, but look | |
1709 at the beginning of the token that is about to be added | |
1710 (from Aurelien Jarno <aurel32@debian.org>) | |
1711 | |
1712 * lib/rfc2068.c (rfc2068_list_files) - if the current directory is /, | |
1713 just send the hostname over to the HTTP server. This was broken on some | |
1714 HTTP servers. | |
1715 (from Aurelien Jarno <aurel32@debian.org>) | |
1716 | |
368 | 1717 * lib/gftp.h lib/misc.c src/gtk/delete_dialog.c src/gtk/transfer.c |
1718 src/gtk/view_dialog.c src/uicommon/gftpui.c - renamed all instances of | |
1719 copy_request() to gftp_copy_request(). Removed second argument | |
1720 (copy_local_options), the options are always copied now. | |
1721 | |
367 | 1722 * lib/protocols.c (gftp_parse_url) - if the URL is the local filesystem, |
1723 skip over the whitespace at the beginning. | |
1724 | |
1725 * lib/rfc959.c (rfc959_syst) - allow the string MVS and OS/MVS for the | |
1726 MVS directory listings. | |
1727 | |
1728 * src/gtk/gtkui_transfer.c src/gtk/transfer.c src/gtk/gftpui.c - | |
1729 started to move the transfer functionality into the uicommon directory. | |
1730 Added the text and GTK+ UI specific transfer functions. | |
1731 | |
1732 * src/gtk/Makefile.am po/POTFILES.in - added gtkui_transfer.c | |
1733 | |
1734 * src/gtk/dnd.c src/gtk/gtkui_transfer.c src/gtk/view_dialog.c - | |
1735 s/add_file_transfer/gtkui_common_add_file_transfer/ | |
1736 | |
1737 * src/gtk/gftp-gtk.c src/gtk/gftp-gtk.h - removed transfer_mutex | |
1738 | |
1739 * src/gtk/gtkui.c src/text/textui.c - added | |
1740 gftpui_add_file_to_transfer() | |
1741 | |
1742 * src/uicommon/gftpui_callbacks.c src/uicommon/gftpui.c - in all of the | |
1743 thread callback functions, don't alter the return value in the function. | |
1744 Return it as is. | |
1745 | |
366 | 1746 * src/gtk/bookmarks.c - don't allow an item to be dropped onto the root |
1747 node or items that are not a folder | |
1748 (from Aurelien Jarno <aurel32@debian.org>) | |
1749 | |
399 | 1750 2004-1-7 Brian Masney <masneyb@gftp.org> |
359 | 1751 * lib/protocols.c (parse_time) - insert the right year for files that |
1752 are from last year and the year is not shown in the ls output. | |
1753 | |
366 | 1754 * src/uicommon/gftpui.c (_gftpui_common_thread_callback) |
1755 src/uicommon/gftpui.h - added a retries variable to the cdata structure | |
1756 | |
1757 * src/uicommon/gftpui.c (gftpui_common_cmd_open) src/uicommon/gftpui.c | |
1758 - actually connect to the remote server | |
1759 | |
1760 * src/uicommon/gftpuicallbacks.c src/uicommon/gftpui.c - in the | |
1761 callback functions, don't change the return value | |
1762 | |
1763 * src/text/textui.c (gftpui_generic_thread) - don't spawn a thread, | |
1764 just call the function directly | |
359 | 1765 |
399 | 1766 2004-1-6 Brian Masney <masneyb@gftp.org> |
358 | 1767 * lib/gftp.h lib/protocols.c lib/rfc959.c - added MVS directory parsing |
1768 support. Also, in the VMS and EPLF directory formats, update the | |
1769 default file/directory perms to be -rw-r--r-- and drwx-r-xr-x | |
1770 respectively. | |
1771 | |
399 | 1772 2004-1-5 Brian Masney <masneyb@gftp.org> |
356 | 1773 * lib/gftp.h lib/misc.c src/gtk/gftpui.c - added GFTP_URL_USAGE |
1774 that is the sytax for a valid URL. | |
1775 | |
1776 * lib/protocols.c (gftp_set_password) - allow the password to be NULL | |
1777 | |
1778 * src/gtk/gtkui.c src/text/textui.c src/uicommon/gftpui.h - added | |
1779 gftpui_prompt_username() and gftpui_promot_password() to each UI | |
1780 | |
1781 * src/text/gftp-text.c (gftp_text_ask_question) - don't display a | |
1782 : at the end of the question here. | |
1783 | |
1784 * src/text/gftp-text.h - added declaration of gftp_text_ask_question() | |
1785 | |
1786 * src/uicommon/gftpui.c - added gftpui_common_cmd_open(). This still | |
1787 needs a little bit more work done to it. | |
1788 | |
355 | 1789 * src/gtk/gftp-gtk.h src/gtk/gtkui.c - when spawning a thread, |
1790 make sure that the GUI will be updated properly as soon as the thread | |
1791 is finished. | |
1792 | |
1793 * src/uicommon/gftpuicallbacks.c src/uicommon/gftpui.h - added | |
1794 gftpui_common_run_ls() | |
1795 | |
1796 * src/uicommon/gftpui.c (gftpui_common_cmd_ls) | |
1797 src/gtk/transfer.c (ftp_list_files) - converted these functions | |
1798 over to use gftpui_common_run_ls() | |
1799 | |
354 | 1800 * lib/gftp.h src/gtk/misc-gtk.c src/text/gftp-text.c - added logging |
1801 level type gftp_logging_misc_nolog. If a message is logged with this | |
1802 level, it will be displayed to the screen but, it will not be logged | |
1803 to disk. | |
1804 | |
1805 * src/uicommon/gftpui.c - log the directory listings with the log level | |
1806 gftp_logging_misc_nolog | |
1807 | |
1808 * src/gtk/gtkui.c (gftpui_generic_thread) - fixed segfault. Pass | |
1809 cdata structure instead of wdata. | |
1810 | |
399 | 1811 2004-1-4 Brian Masney <masneyb@gftp.org> |
352 | 1812 * src/text/Makefile.am src/gtk/Makefile.am - added @LIBINTL@ to LDADD |
1813 line of Makefile.am | |
1814 | |
351 | 1815 * configure.in - added src/uicommon/Makefile to the list of files to |
1816 be generated. | |
1817 | |
1818 * configure.in lib/gftp.h - check for sys/mkdev.h header file. If it is | |
1819 found, include it. Solaris needs this for major() and minor() | |
1820 | |
350 | 1821 * src/uicommon/gftpui.c src/uicommon/gftpui.h |
1822 src/uicommon/gftpuicallbacks.c - when switching between ascii/binary, | |
1823 set the option on a global basis. Converted chdir, chmod, delete, | |
1824 rename, rmdir commands over to using the new command run format so that | |
1825 it will work in the different UIs. Added site command to the command | |
1826 line. | |
1827 | |
349 | 1828 * lib/misc.c (gftp_parse_command_line) - unified this function so that |
1829 it is consistent for all arguments. | |
1830 | |
1831 * lib/protocols.c (gftp_file_destroy) - fixed memory leak (utf8_file | |
1832 was not being freed) | |
1833 | |
348 | 1834 * docs/gftp-faq.sgml - updated link to the (old) threaded version of |
1835 XFree86 libraries | |
1836 | |
431 | 1837 2003-12-29 Brian Masney <masneyb@gftp.org> |
343 | 1838 * po/POTFILES.in - added the new uicommon files to this file |
1839 | |
431 | 1840 2003-12-28 Brian Masney <masneyb@gftp.org> |
342 | 1841 * src/gtk/gtkui.c src/text/textui.c - necessary UI related files for |
1842 each port of gftp. The uicommon code will call these functions. | |
1843 | |
431 | 1844 2003-12-28 Brian Masney <masneyb@gftp.org> |
341 | 1845 **** NOTE: this commit breaks a lot of functionality in gftp. I **** |
1846 **** still have more work to do on this. Please don't email me **** | |
1847 **** saying that the CVS code is broken. **** | |
1848 | |
1849 * lib/bookmark.c lib/gftp.h lib/local.c lib/options.h lib/rfc2068.c | |
1850 lib/rfc959.c lib/sshv2.c - moved the use_threads option from the | |
1851 request structure over to the protocol declaration in options.h. | |
1852 | |
1853 * lib/options.h src/gtk/gftp-gtk.c - added cmd_in_gui option. When this | |
1854 option is enabled, a new toolbar will be shown in the GTK+ port that | |
1855 will allow you to control the GUI by entering manual commands. | |
1856 | |
1857 * src/Makefile.am - added uicommon directory | |
1858 | |
1859 * src/gtk/Makefile.am src/text/Makefile.am - link in the uicommon | |
1860 library. | |
1861 | |
1862 * src/uicommon/* src/text/gftp-text.c - moved most of the functionality | |
1863 of the text port over to the uicommon directory. Made this code a little | |
1864 more generic so that the GTK+ port can have a text interface | |
1865 associated with it. | |
1866 | |
1867 * src/gtk/gtkui.c src/gtk/gftp-gtk.c src/gtk/mkdir_dialog.c | |
1868 src/gtk/rename_dialog.c src/gtk/menu-items.c src/gtk/misc-gtk.c - | |
1869 started to clean up the callback functions and make them more tightly | |
1870 integrated with the uicommon code. | |
1871 | |
1872 * src/gtk/bookmarks.c src/gtk/chmod_dialog.c src/gtk/delete_dialog.c | |
1873 src/gtk/gftp-gtk.c src/gtk/menu-items.c src/gtk/misc-gtk.c | |
1874 src/gtk/transfer.c - | |
1875 s/refresh/gftpui_refresh/g | |
1876 s/jmp_environment/gftpui_common_jmp_environment/g | |
1877 s/request->use_threads/gftpui_common_use_threads (request)/g | |
1878 | |
1879 * src/gtk/options_dialog.c (apply_changes) - whenever the options are | |
1880 saved, check to see if the command entry needs to be shown or hidden. | |
1881 | |
431 | 1882 2003-12-10 Brian Masney <masneyb@gftp.org> |
339 | 1883 * lib/rfc959.c - fix IPv6 compile problem when IPv6 support is not |
1884 available on the system. | |
1885 | |
338 | 1886 * lib/gftp.h src/text/gftp-text.h src/gtk/gftp-gtk.h - added |
1887 GFTP_LOG_FUNCTION_ATTRIBUTES that is only defined when compiled | |
1888 against gcc. When this is set, it will specify the function is | |
1889 printf() type function so that extra checks can be done by the | |
1890 compiler. This is to fix problems with older Sun compilers. | |
1891 | |
337 | 1892 * src/gtk/gftp-gtk.c src/gtk/menu-items.c src/gtk/misc-gtk.c - check |
1893 for a timeout from the remote server when refreshing the directory | |
1894 listing and changing directores. If it did, reconnect to the server. | |
1895 | |
336 | 1896 * lib/rfc2068.c - set the default file attributes to -rw-r--r-- for |
1897 all files. | |
1898 | |
431 | 1899 2003-12-7 Brian Masney <masneyb@gftp.org> |
332 | 1900 * lib/options.h lib/config_file.c - removed scramble_passwords |
1901 option. Instead, make this the default action all the time. This | |
1902 is to avoid having too many unnecessary options. Also put a note | |
1903 at the top of the bookmarks file stating the passwords are being | |
1904 scrambled. | |
1905 | |
330 | 1906 * lib/config_file.c lib/gftp.h lib/misc.c lib/options.h - added |
1907 scramble passwords option. This patch is mostly from Aurelien Jarno | |
1908 <lists@aurel32.net>, but it was modified by me quite a bit. This is | |
1909 not safe, and can be broken. That is why it's labeled scrambled | |
1910 passwords instead of encrypt passwords. | |
1911 | |
1912 * acinclude.m4 - fix to AC_INTL_PRINTF | |
1913 | |
329 | 1914 * src/gtk/dnd.c (openurl_get_drag_data) - if we are connected to a |
1915 remote site, disconnect before parsing the URL. This fixes a bug where | |
1916 the directory was not being refreshed properly (from Aurelien Jarno | |
1917 <lists@aurel32.net>) | |
1918 | |
328 | 1919 * configure.in acinclude.m4 lib/misc.c - added AC_INTL_PRINTF macro. |
1920 If the printf family of functions supports %'ld, then HAVE_INTL_PRINTF | |
1921 will be defined. The appropriate version of insert_commas() can be | |
1922 used. | |
1923 | |
431 | 1924 2003-12-4 Brian Masney <masneyb@gftp.org> |
326 | 1925 * src/gftp.in - check for the bin_dir for the binary location |
1926 | |
325 | 1927 * lib/cache.c lib/misc.c lib/protocols.c lib/rfc2068.c lib/rfc959.c |
1928 lib/sshv2.c lib/sslcommon.c src/text/gftp-text.c src/gtk/chmod_dialog.c | |
1929 src/gtk/gftp-gtk.c src/gtk/menu-items.c src/gtk/misc-gtk.c | |
1930 src/gtk/mkdir_dialog.c src/gtk/rename_dialog.c src/gtk/transfer.c - | |
1931 when calling gftp_lookup_global_option() or | |
1932 gftp_lookup_request_option(), if the value is an integer, declare | |
1933 the variable type to be intptr_t. This fixes a bug on 64bit platforms | |
1934 (from Gwenole Beauchesne <gbeauchesne@mandrakesoft.com>) | |
1935 | |
1936 * lib/config_file.c (gftp_config_file_read_float) - 64bit fixup | |
1937 | |
1938 * configure.in - increment version to 2.0.17pre0. Undefine _GNU_SOURCE. | |
1939 Check for stdint.h. | |
1940 | |
1941 * lib/gftp.h - include stdint.h if it is found on the system. | |
1942 | |
1943 * src/gtk/gftp-gtk.c (CreateToolbar) - on startup, have the host edit | |
1944 box grab the keyboard focus | |
1945 | |
431 | 1946 2003-11-30 Brian Masney <masneyb@gftp.org> |
321 | 1947 * lib/sshv2.c - cleaned up some of the code. Added a temporary fix for |
1948 an upload crash that is happening on FreeBSD. | |
1949 | |
320 | 1950 * src/gtk/transfer.c - shows status information in title bar. (patch |
1951 from Jamil Geor <jamil_geor@yahoo.co.nz>, cleaned up by me some) | |
1952 | |
1953 * lib/options.h - added show_trans_in_title option. | |
1954 | |
431 | 1955 2003-11-25 Brian Masney <masneyb@gftp.org> |
320 | 1956 * lib/misc.c (gftp_locale_init) - call bindtextdomain() so that the |
1957 directory is setup properly | |
1958 | |
1959 * lib/misc.c lib/gftp.h lib/config_file.c - move copyfile() to | |
1960 config_file.c and declare it to be static. On the destination file, | |
1961 set the flag O_EXCL | |
1962 | |
431 | 1963 2003-11-23 Brian Masney <masneyb@gftp.org> |
319 | 1964 * src/gtk/transfer.c - when transfering a file, if the file being |
1965 transfered is greater in the destination than in the source, overwrite | |
1966 it | |
1967 | |
1968 * lib/rfc959.c (rfc959_ipv6_data_connection_new) - when parsing the | |
1969 output, parse the integers as unsigned. | |
1970 | |
431 | 1971 2003-11-9 Brian Masney <masneyb@gftp.org> |
313 | 1972 * lib/options.h lib/protoocols.c - added enable_ipv6 option. |
1973 | |
1974 * lib/rfc959.c lib/protocols.c - if there is an error creating a socket, | |
1975 log a more informative error about what kind of socket was attempted | |
1976 to be created. | |
1977 | |
312 | 1978 * debian/* - updated Debian package files from |
1979 Aurelien Jarno <aurel32@debian.org> | |
1980 | |
431 | 1981 2003-11-9 Brian Masney <masneyb@gftp.org> |
319 | 1982 * Officially released 2.0.16 |
1983 | |
311 | 1984 * debian/ChangeLog - incremented version to 2.0.16 |
1985 | |
310 | 1986 * docs/Makefile.am - clean up documentation in clean target |
1987 | |
1988 * docs/website/generate-gftp-website.pl docs/website/index.html.in - | |
1989 copy README/FAQ that is automatically generated to the website. | |
1990 | |
1991 * docs/website/install.html docs/website/faq.html - no longer needed | |
1992 anymore. | |
1993 | |
1994 * docs/website/index.html.in - updated the list of languages | |
1995 | |
1996 * ChangeLog-old - updated with brief list of changes since 2.0.15 | |
1997 | |
431 | 1998 2003-11-7 Brian Masney <masneyb@gftp.org> |
309 | 1999 * lib/gftp.h lib/local.c lib/protocols.c lib/rfc2068.c lib/rfc959.c |
2000 lib/sshv2.c - added copy_param_options method to gftp_request | |
2001 structure. When a gftp_request structure is copied, if a | |
2002 copy_param_options method exists, this will be called so that the | |
2003 local protocol data can be copied over. This is only used by the | |
2004 FTP protocol at the moment to save the current state of Ascii or | |
2005 Binary transfers. | |
2006 | |
2007 * src/gtk/transfer.c (transfer_done) - when a transfer is | |
2008 completed, copy the local protocol options back to the main window | |
2009 | |
2010 * lib/rfc959.c (gftp_set_data_type) - check the return value of | |
2011 rfc959_send_command() and if there is an error, return that | |
2012 error. | |
2013 | |
2014 * configure.in - added 'hr' to ALL_LINGUAS | |
2015 | |
431 | 2016 2003-11-5 Brian Masney <masneyb@gftp.org> |
307 | 2017 * TODO - updated |
2018 | |
2019 * configure.in - updated version to 2.0.16. | |
2020 | |
2021 * configure.in docs/Makefile.am - Added check for the db2html | |
2022 command (from gtk+ configure) | |
2023 | |
310 | 2024 * docs/gftp-faq.sgml - updated with more information |
307 | 2025 |
2026 * docs/website/index.html.in - updated list of translations | |
2027 | |
2028 * lib/misc.c (expand_path) - expand paths with double slashes | |
2029 properly to support Novell directory listings. | |
2030 (gftp_build_path) - better checking of paths that end in /. | |
2031 (gftp_info) - show if _REENTRANT was defined when it was compiled. | |
2032 | |
2033 * README - removed, this is automatically generated now. | |
2034 | |
431 | 2035 2003-11-3 Brian Masney <masneyb@gftp.org> |
306 | 2036 * docs/gftp-faq.sgml docs/Makefile.am - added initial SGML version |
2037 of the gFTP FAQ. I used the same format as the GTK+ FAQ. | |
2038 | |
305 | 2039 * lib/gftp.h src/gtk/transfer.c src/gtk/delete_dialog.c - removed |
2040 transfer_direction variable from gftp_transfer structure. Cleaned | |
2041 up the code that did checks based on the value of this variable. | |
2042 | |
2043 * lib/rfc959.c (rfc959_syst) - added a check for Novell FTP servers | |
2044 | |
2045 * src/gtk/transfer.c (add_file_transfer) - check the value of the option | |
2046 one_transfer and if that is disabled, do not append the file transfers. | |
2047 (transfer_done) - refresh the destination window correctly after a | |
2048 transfer is completed. | |
2049 | |
431 | 2050 2003-11-2 Brian Masney <masneyb@gftp.org> |
304 | 2051 * lib/rfc2068.c (rfc2068_get_file) - if there is any data in the current |
2052 read buffer, grab that data first. Otherwise, read from the socket. | |
2053 | |
303 | 2054 * lib/rfc2068.c (rfc2068_chunked_read) - more improvements to this |
2055 function so that it will parse more chunked file transfers correctly. | |
2056 | |
2057 * lib/misc.c lib/gftp.h lib/rfc2068.c src/gtk/bookmarks.c | |
2058 src/gtk/dnd.c - removed remove_double_slashes(). Call gftp_build_path() | |
2059 to build the paths. This now allows Novell directory listings with | |
2060 //server | |
2061 | |
2062 * lib/protocols.c src/gtk/transfer.c lib/gftp.h - added variable | |
2063 conn_error_no_timeout to gftp_transfer structure. If this is enabled, | |
2064 if the remote connection to the server timed out, don't wait and | |
2065 immediately reconnect. So far, the only time this is used is when the | |
2066 user was editing a file and it is to be uploaded back to the server. | |
2067 | |
2068 * src/gtk/gftp-gtk.h src/gtk/transfer.c - add_file_transfer() now | |
2069 returns the struct gftp_transfer that was just added. | |
2070 | |
2071 * src/gtk/misc-gtk.c (update_directory_download_progress) - don't | |
2072 make the window a popup and remove the window decorations | |
2073 | |
2074 * src/text/gftp-text.c - don't populate the transfer_direction variable | |
2075 in struct gftp_transfer. This is only needed by the GTK+ port and will | |
2076 hopefully be taken out soon. | |
2077 | |
2078 * lib/gftp.h - remove gftp_transfer_type enum. It wasn't used anymore. | |
2079 | |
431 | 2080 2003-10-27 Brian Masney <masneyb@gftp.org> |
301 | 2081 * lib/rfc959.c (gftp_get_next_file_chunk) - fixed ASCII file corruption |
2082 bug. | |
2083 | |
300 | 2084 * TODO - the top of this file now contains a list of items that needs |
2085 to be completed before 2.0.16 can be released. If I missed something | |
2086 important, please drop me an email. | |
2087 | |
431 | 2088 2003-10-26 Brian Masney <masneyb@gftp.org> |
299 | 2089 * lib/rfc959.c (gftp_{get,put}_next_file_chunk) - check whether or not |
2090 this is an ascii file transfer properly. | |
2091 | |
298 | 2092 * lib/rfc959.c - convert the PASS command from UTF8 using |
2093 gftp_convert_from_utf8() | |
2094 | |
297 | 2095 * src/gtk/gftp-gtk.h src/gtk/transfer.c - (create_transfer, |
2096 transfer_done) - added more checks whenever a transfer is created and | |
2097 stopped to make sure we don't log into the same remote host twice. This | |
2098 is mainly for DnD. | |
2099 | |
296 | 2100 * lib/misc.c (copy_request) - don't copy over the hostp pointer. This |
2101 fixes a segfault in DnD | |
2102 | |
2103 * lib/sshv2.c - cleaned up the ssh2_params structure some | |
2104 | |
2105 * src/gtk/dnd.c - cleaned up the DND code some. | |
2106 | |
431 | 2107 2003-10-25 Brian Masney <masneyb@gftp.org> |
295 | 2108 * src/gtk/menu-items.c (dosave_directory_listing) - when saving the |
2109 directory listing, skip over the files that are not shown based on the | |
2110 current filespec. | |
2111 | |
294 | 2112 * src/gtk/transfer.c src/gtk/gftp-gtk.h src/gtk/view_dialog.c - when |
2113 editing a remote file, if the user chooses to upload the changes, make | |
2114 sure the upload is not sent to the current directory on the remote | |
2115 server. | |
2116 | |
2117 * lib/rfc2068.c - set the shown attributes to be -rw------- instead of | |
2118 ----------. The HTTP server doesn't send the attributes over, so I just | |
2119 have to make something up. | |
2120 | |
2121 * src/gtk/options_dialog.c - make sure all of the tooltips text is | |
2122 passed to gettext() | |
2123 | |
2124 * lib/protocols.c - if the file transfer is to be throttled, only | |
2125 display the throttle message once. | |
2126 | |
2127 * lib/local.c (local_get_next_file) - if the file is a symlink, grab | |
2128 file size and attributes from the file this symlink points to. | |
2129 | |
431 | 2130 2003-10-22 Brian Masney <masneyb@gftp.org> |
293 | 2131 * lib/rfc2068.c - fixed parsing some chunked file transfers |
2132 | |
431 | 2133 2003-10-19 Brian Masney <masneyb@gftp.org> |
292 | 2134 * lib/rfc959.c - abort a file transfer properly. When a transfer is |
2135 aborted, you will not be disconnected from the remote site. | |
2136 | |
291 | 2137 * lib/protocols.c lib/gftp.h - added gftp_string_from_utf8(). Also, make |
2138 gftp_string_{to,from}_utf8() be defined all the time. When using | |
2139 glib 1.2, the functions will always return NULL. | |
2140 | |
2141 * lib/protocols.c - when creating a directory or renaming files, make | |
2142 sure the new name is converted from UTF8 to the local character set | |
2143 or the charset specified in the remote_charsets option. | |
2144 | |
2145 * src/gtk/misc-gtk.c (update_window_info) - when showing the directory | |
2146 we are currently in, make sure it is converted to UTF8 | |
2147 | |
431 | 2148 2003-10-18 Brian Masney <masneyb@gftp.org> |
290 | 2149 * lib/misc.c lib/gftp.h src/text/gftp-text.c src/gtk/gftp-gtk.c - added |
2150 gftp_locale_init(). | |
2151 | |
2152 * src/gtk/Makefile.am src/text/Makefile.am - removed declaration of | |
2153 LOCALE_DIR | |
2154 | |
2155 * lib/Makefile.am - added declaration of LOCALE_DIR | |
2156 | |
289 | 2157 * lib/misc.c (insert_commas) - if _GNU_SOURCE is defined, instead of |
2158 using my builtin function for formatting numbers, use glibc's %'ld | |
2159 (or %'lld) format to print the numbers out. This is more portable for | |
2160 other locales. | |
2161 | |
431 | 2162 2003-10-17 Brian Masney <masneyb@gftp.org> |
288 | 2163 * lib/rfc959.c (rfc959_ipv[46]_data_connection_new) - when there is an |
2164 error establishing a connection to the remote server, make sure that | |
2165 GFTP_ERETRYABLE is returned. | |
2166 | |
431 | 2167 2003-10-13 Brian Masney <masneyb@gftp.org> |
287 | 2168 * src/gtk/options_dialog.c - when specifying a FTP proxy config in the |
2169 GTK+ 2.0 port, the last character was getting chopped off. | |
2170 | |
431 | 2171 2003-10-12 Brian Masney <masneyb@gftp.org> |
286 | 2172 * lib/rfc959.c - when logging in to the server, if a 5xx code is |
2173 returned, don't attempt to log in again. | |
2174 | |
285 | 2175 * src/gtk/bookmarks.c - disconnect from the site before we parse the |
2176 bookmarks (from Aurelien Jarno <lists@aurel32.net>) | |
2177 | |
284 | 2178 * lib/sshv2.c - fixed crash when deleting subdirectories with the SSH2 |
2179 protocol. | |
2180 | |
431 | 2181 2003-10-4 Brian Masney <masneyb@gftp.org> |
281 | 2182 * lib/protocols.c - fix for CRAY directory listings. Some UNIX directory |
2183 listings with files containing spaces could be misinterpreted. | |
2184 | |
2185 * cvsclean - purge the m4 directory, but save the largefile.m4 file. | |
2186 (from Nathan Robertson <nathanr@nathanr.net>) | |
2187 | |
431 | 2188 2003-10-03 Marcel Telka <marcel@telka.sk> |
280 | 2189 |
2190 * configure.in (ALL_LINGUAS): Added sk. | |
2191 | |
431 | 2192 2003-10-2 Brian Masney <masneyb@gftp.org> |
278 | 2193 * lib/rfc959.c - fixed rename bug (from |
2194 Aurelien Jarno <aurel32@debian.org>) | |
2195 | |
2196 * src/gtk/gftp-gtk.c - make the help menu left aligned so that it is | |
2197 more consistent with other GNOME apps | |
2198 (from Miguel Ibarra <mibarra@ximian.com>) | |
2199 | |
2200 * src/gtk/transfer.c - right after the pointer to the next transfer | |
2201 is moved, set the current transfer size back to 0. The user could | |
2202 briefly (< 1 sec) see the old size transfered on the next file. | |
2203 | |
431 | 2204 2003-09-23 Taneem Ahmed <taneem@bengalinux.org> |
277 | 2205 |
2206 * configure.in: Added "bn" to ALL_LINGUAS. | |
2207 | |
431 | 2208 2003-9-21 Brian Masney <masneyb@gftp.org> |
276 | 2209 * src/gtk/menu-items.c (dosave_directory_listing) - fixed a bug that |
2210 would occur when saving directory listings to a file, the last filename | |
2211 in the list was never written to the file | |
2212 (from Aurelien Jarno <aurel32@debian.org>) | |
2213 | |
275 | 2214 * lib/protocols.c (gftp_parse_bookmark) lib/gftp.h lib/bookmark.c |
2215 src/gtk/bookmarks.c - added pointer to refresh_local variable that is | |
2216 enabled if the local directory was changed. In src/gtk/bookmarks.c, if | |
2217 the local directory was changed, refresh the directory listing. | |
2218 | |
274 | 2219 * lib/local.c src/gtk/transfer.c src/text/gftp-text.c - if there is a |
2220 dangling symlink in the current directory, don't bail out. This was | |
2221 causing directory listings to appear truncated. | |
2222 | |
2223 * configure.in - increment version to 2.0.16pre0 | |
2224 | |
273 | 2225 * lib/rfc959.c - if there is a login failure, return GFTP_ERETRYABLE |
2226 (from winkey <rush@winkey.oompah.org>) | |
2227 | |
431 | 2228 2003-09-01 Metin Amiroff <metin@karegen.com> |
268 | 2229 |
2230 configure.in: Added "az" in ALL_LINGUAS. | |
2231 | |
431 | 2232 2003-8-21 Brian Masney <masneyb@gftp.org> |
274 | 2233 * Officially released 2.0.15 |
2234 | |
431 | 2235 2003-8-20 Brian Masney <masneyb@gftp.org> |
261 | 2236 * lib/gftp.h lib/protocols.c - largefile fixes |
2237 | |
2238 * configure.in debian/changelog - updated version | |
2239 | |
2240 * cvsclean - clean up after ourselves a little more | |
2241 | |
2242 * ChangeLog-old README TODO docs/website/index.html.in - updated | |
2243 | |
431 | 2244 2003-8-17 Brian Masney <masneyb@gftp.org> |
260 | 2245 * lib/protocols.c (parse_time) - when parsing timestamps that are not in |
2246 the current locale, skip over the proper amount of tokens. This is so | |
2247 that the filename is returned properly. | |
2248 | |
2249 * lib/misc.c (gftp_info) - show the protocols that are installed. | |
2250 | |
431 | 2251 2003-8-11 Brian Masney <masneyb@gftp.org> |
255 | 2252 * lib/local.c (local_get_next_file) - fix for directories that are |
2253 symlinks | |
2254 | |
2255 * src/gtk/*.[ch] - updated copyright dates to 2003 on all of the files | |
2256 | |
254 | 2257 * src/gtk/menu-items.c lib/rfc959.c - fix for selecting ASCII/Binary |
2258 transfers | |
2259 | |
253 | 2260 * src/gtk/delete_dialog.c - don't attempt to clear the cache for the |
2261 protocols that have the cache disabled | |
2262 | |
2263 * lib/local.c (local_chdir) - if request->directory == directory, | |
2264 don't free the request->directory and run getcwd(). This fixes a double | |
2265 free in the delete dialog in the GTK+ port | |
2266 | |
2267 * lib/gftp.h - added FIXME comment | |
2268 | |
2269 * lib/cache.c (gftp_delete_cache_entry) - added assertion | |
2270 | |
431 | 2271 2003-8-7 Brian Masney <masneyb@gftp.org> |
250 | 2272 * configure.in - HPUX fix |
2273 | |
2274 * debian/changelog - incremented version | |
2275 | |
2276 * Officially release 2.0.15rc2 | |
2277 | |
431 | 2278 2003-8-7 Brian Masney <masneyb@gftp.org> |
249 | 2279 * lib/cache.c lib/misc.c lib/protocols.c lib/pty.c - make sure a NUL |
2280 byte appears at the end of the buffer after the call to strncpy | |
2281 | |
2282 * lib/rfc959.c - increased buffer size to directory parsing routine | |
2283 | |
248 | 2284 * lib/protocols.c (gftp_fd_write) - use a signed variable to store the |
2285 result from write(). Write errors were not being caught properly. | |
2286 | |
431 | 2287 2003-8-6 Brian Masney <masneyb@gftp.org> |
247 | 2288 * lib/misc.c (gftp_build_path) - fixed initial path beginning with //. |
2289 (expand_path) - when the path is empty at the end, set it to /. This | |
2290 would happen for directories like /etc/.. | |
2291 | |
431 | 2292 2003-8-4 Brian Masney <masneyb@gftp.org> |
246 | 2293 * src/gtk/transfer.c (update_file_status) - fix possible division by 0 |
2294 | |
431 | 2295 2003-8-4 Brian Masney <masneyb@gftp.org> |
245 | 2296 * src/gtk/gftp-gtk.c (CreateMenus) - on startup, select the proper |
2297 ASCII/binary radio button (looks like an old bug!) | |
2298 | |
2299 * lib/misc.c lib/gftp.h - renamed my version of g_build_path() (was | |
2300 used only in glib 1.2 only) to gftp_build_path() and it's compiled in | |
2301 all the time now | |
2302 | |
2303 * lib/protocols.c lib/sshv2.c src/gtk/dnd.c src/gtk/menu-items.c - | |
2304 instead of using g_build_path(), use gftp_build_path() | |
2305 | |
431 | 2306 2003-8-3 Brian Masney <masneyb@gftp.org> |
244 | 2307 * lib/local.c (local_put_file) - specify an initial file creation mode |
2308 of 0644 | |
2309 | |
2310 * lib/misc.c lib/gftp.h - added gftp_parse_file_size(). This function | |
2311 works correctly for files greater than 2.1GB | |
2312 | |
2313 * lib/rfc959.c (rfc959_get_file) lib/protocols.c lib/rfc2068.c | |
2314 lib/rfc959.c - use gftp_parse_file_size() | |
2315 | |
2316 * lib/protocols.c lib/gftp.h (gftp_get_file, gftp_put_file, | |
2317 gftp_transfer_file) - changed type of startsize paramter from size_t | |
2318 to off_t | |
2319 | |
431 | 2320 2003-7-31 Brian Masney <masneyb@gftp.org> |
243 | 2321 * lib/sshv2.c - fix blocking problem reading the error message from the |
2322 remote server when there was an error establishing a connection | |
2323 | |
2324 * lib/misc.c (copy_fdata) - copy utf8_file variable in gftp_file | |
2325 structure. (fix double free that was only in development version) | |
2326 | |
2327 * lib/misc.c - added --info argument to the command line. This will | |
2328 call gftp_info(), which will print out some information about how | |
2329 gftp was compiled. | |
2330 | |
2331 * lib/protocols.c lib/bookmarks.c lib/gftp.h src/gtk/bookmarks.c - | |
2332 added local_request parameter to gftp_parse_bookmark(). If this is not | |
2333 NULL, and this bookmark specifies a local directory, it will change to | |
2334 it. | |
2335 | |
2336 * configure.in - increment version to 2.0.15rc2 | |
2337 | |
431 | 2338 2003-07-30 Dmitry G. Mastrukov <dmitry@taurussoft.org> |
242 | 2339 |
2340 * configure.in: Added Belarusian to ALL_LINGUAS. | |
2341 | |
431 | 2342 2003-7-29 Brian Masney <masneyb@gftp.org> |
239 | 2343 * src/gtk/options_dialog.c - fix crash that would occur when hitting |
2344 apply, then ok | |
2345 | |
431 | 2346 2003-7-25 Brian Masney <masneyb@gftp.org> |
236 | 2347 * configure.in - define HAVE_OPENPTY if openpty() is found in libutil |
2348 | |
235 | 2349 * lib/gftp.h lib/pty.c - moved including of some PTY related header |
2350 files to pty.c. Hopefully should fix build problems under FreeBSD | |
2351 | |
431 | 2352 2003-7-25 Brian Masney <masneyb@gftp.org> |
234 | 2353 * src/gtk/transfer.c - changed looking up of overwrite_by_default to |
2354 overwrite_default | |
2355 | |
2356 * src/text/gftp-text.h - fix for when the readline library was not | |
2357 found on the local system | |
2358 | |
431 | 2359 2003-7-25 Brian Masney <masneyb@gftp.org> |
232 | 2360 * lib/pty.c - prefer to use openpty() instead of grantpt() if it is |
2361 available (for FreeBSD) | |
2362 | |
2363 * lib/sshv2.c - fixes for FreeBSD password prompt (from Oliver Lehmann | |
2364 <oliver@FreeBSD.ORG>) | |
2365 | |
2366 * src/gtk/gftp-gtk.h src/text/gftp-text.h - added | |
2367 __attribute__((format(printf, 3, 4))) to logging functions (from | |
2368 Oliver Lehmann <oliver@FreeBSD.ORG>) | |
2369 | |
431 | 2370 2003-7-25 Brian Masney <masneyb@gftp.org> |
232 | 2371 * lib/pty.c - prefer to use openpty() instead of grantpt() if it is |
2372 available (for FreeBSD) | |
2373 | |
2374 * lib/sshv2.c - fixes for FreeBSD password prompt (from Oliver Lehmann | |
2375 <oliver@FreeBSD.ORG>) | |
2376 | |
2377 * src/gtk/gftp-gtk.h src/text/gftp-text.h - added | |
2378 __attribute__((format(printf, 3, 4))) to logging functions (from | |
2379 Oliver Lehmann <oliver@FreeBSD.ORG>) | |
2380 | |
431 | 2381 2003-7-23 Brian Masney <masneyb@gftp.org> |
231 | 2382 * TODO - updated |
2383 | |
2384 * debian/* - new files from the Debian maintainer | |
2385 | |
2386 * docs/website/generate-gftp-website.pl - fixed generating changelog | |
2387 file | |
2388 | |
2389 * po/*.po - updated line numbers | |
2390 | |
431 | 2391 2003-7-23 Brian Masney <masneyb@gftp.org> |
230 | 2392 * configure.in - incremented version to 2.0.15rc1. Also, if readline |
2393 wasn't found on the system, the text port wasn't be built | |
2394 | |
2395 * ChangeLog-old - added summary of changes since version 2.0.14 | |
2396 | |
2397 * TODO - updated | |
2398 | |
2399 * src/text/gftp-text.c - build fixes if readline isn't present on the | |
2400 system | |
2401 | |
2402 * lib/sshv2.c - don't print out the network error as well when getting | |
2403 the error message from the remote server. The user is only interested | |
2404 in the error returned from the server. | |
2405 | |
431 | 2406 2003-7-22 Brian Masney <masneyb@gftp.org> |
229 | 2407 * lib/config_file.c lib/gftp.h - added gftp_lookup_bookmark_option() |
2408 and gftp_set_bookmark_option(). Also added _gftp_set_option_value() | |
2409 that is used by the set functions for bookmark and request structures | |
2410 | |
2411 * src/gtk/bookmarks.c - make sure the options are copied over to the | |
2412 new bookmarks. Also show all of the editable toptions for this bookmark | |
2413 entry | |
2414 | |
2415 * src/gtk/options_dialog.c src/gtk/gftp-gtk.h lib/config_file.c | |
2416 lib/gftp.h - improvements to overriding options for each bookmark | |
2417 entry. There is still one crash that is occuring that I have to track | |
2418 down. For the moment, don't edit the bookmarks twice in the same | |
2419 session. | |
2420 | |
431 | 2421 2003-7-20 Brian Masney <masneyb@gftp.org> |
227 | 2422 * lib/config_file.c lib/gftp.h - added compare_function to |
2423 gftp_config_vars structure. (gftp_set_global_option) use the compare | |
2424 function to see if the value was actually changed, and if so set the | |
2425 gftp_configuration_changed variable | |
2426 | |
2427 * lib/misc.c lib/gftp.h - For glib 1.2, added my version of | |
2428 g_build_path() since it's not there | |
2429 | |
2430 * lib/misc.c - GLIB/GTK+ 1.2 fixes | |
2431 | |
2432 * lib/protocols.c (gftp_fd_open) - cleaned up some | |
2433 | |
2434 * lib/rfc959.c (rfc959_init) - if the email address is blank, get the | |
2435 users address here instead of in register_module. It was being blanked | |
2436 out when the config file was being read | |
2437 | |
2438 * lib/options.h lib/rfc2068.c lib/rfc959.c lib/sshv2.c - mark the | |
2439 config variables that can show up in the bookmarks editor | |
2440 | |
2441 * src/text/gftp-text.c src/gtk/options_dialog.c - use | |
2442 gftp_set_global_option() to set the new configuration values | |
2443 | |
2444 * src/gtk/bookmarks.c - fixed crash in bookmarks dialog. Added notebook | |
2445 widget to the dialog as well. The options that can be edited for this | |
2446 site will show up in other tabs | |
2447 | |
2448 * src/gtk/gftp-gtk.c - fixes to the calls to gftp_set_global_option() | |
2449 | |
2450 * src/gtk/options_dialog.c - added gftp_gtk_setup_bookmark_options() | |
2451 to display all the editable options for this bookmark | |
2452 | |
431 | 2453 2003-7-11 Brian Masney <masneyb@gftp.org> |
222 | 2454 * lib/protocols.c (gftp_calc_kbs) - only call gettimeofday() at the |
2455 end only if we are throttling this connection | |
2456 | |
2457 * lib/cache.c lib/options.h docs/sample.gftp/gftprc - added cache_ttl | |
2458 option to determine the amount of time that cache entries will stay | |
2459 around | |
2460 | |
2461 * docs/gftp.xml docs/legal.xml docs/figures/* - documentation from | |
2462 Alexander Kirillov <kirillov@math.sunysb.edu> | |
2463 | |
2464 * docs/website - files for generating my main website. They aren't | |
2465 pretty, but hey it works. I'm mainly putting these in CVS just for | |
2466 backup purposes. | |
2467 | |
431 | 2468 2003-7-10 Brian Masney <masneyb@gftp.org> |
220 | 2469 * lib/misc.c (insert_commas) - improved calculating # of digits |
2470 in number. (Not sure if this worked properly for long long's, aka | |
2471 off_t when _LARGEFILE_SOURCE is defined) | |
2472 | |
2473 * src/gtk/transfer.c (update_file_status) - changed type of remaining | |
2474 field to be off_t. (hopefully fixes >2.1GB problem) | |
2475 | |
2476 * lib/protocols.c (gftp_calc_kbs) - improved throttling module. | |
2477 | |
431 | 2478 2003-7-9 Brian Masney <masneyb@gftp.org> |
219 | 2479 * lib/sshv2.c - if we are logging in to the server, and the message |
2480 size is too big from the server, assume that an error message follows | |
2481 and log the ASCII text to the log window | |
2482 | |
2483 * src/gtk/options_dialog.c - make sure the value is set properly for | |
2484 the textcomboedt option types (the FTP proxy server type uses this) | |
2485 | |
2486 * lib/rfc2068.c - HTTP proxy bug fixes. Also, moved rfc2068_connect() | |
2487 call to rfc2068_send_command() and removed it from the now unneeded | |
2488 places. Also, fix in call to HEAD command | |
2489 | |
2490 * src/text/gftp-text.c - fixed NULL pointer deference in changing | |
2491 directory | |
2492 | |
2493 * docs/sample.gftp/gftprc - enable require SSH user/pass by default | |
2494 | |
431 | 2495 2003-7-9 Brian Masney <masneyb@gftp.org> |
218 | 2496 * lib/config_file.c (gftp_write_config_file) - fix for writing out |
2497 list items to the config file. | |
2498 | |
2499 * lib/config_file.c lib/gftp.h - added gftp_free_proxy_hosts() and | |
2500 gftp_copy_proxy_hosts() | |
2501 | |
2502 * lib/protocols.c (gftp_connect_server) - look up dont_use_proxy | |
2503 instead of ext | |
2504 | |
2505 * lib/protocols.c lib/sshv2.c src/gtk/dnd.c src/gtk/menu-items.c - | |
2506 when calling g_build_path(), set the directory separator to / instead | |
2507 of G_DIR_SEPARATOR_S | |
2508 | |
2509 * src/gtk/gftp-gtk.c (toolbar_hostedit) - fixed crash | |
2510 | |
2511 * src/gtk/gftp-gtk.h - removed gotbytes from gftp_window_data | |
2512 structure | |
2513 | |
2514 * src/gtk/options_dialog.c - show proxy hosts in options dialog | |
2515 | |
2516 * docs/sample.gftp/gftprc - new default config file | |
2517 | |
431 | 2518 2003-7-7 Brian Masney <masneyb@gftp.org> |
215 | 2519 * configure.in src/gtk/Makefile.am src/text/Makefile.am - if the |
2520 OpenSSL libraries are available on the system, link them in and | |
2521 define USE_SSL. The generic SSL engine and the HTTPS protocol checks | |
2522 for this | |
2523 | |
2524 * lib/protocols.c (gftp_get_line) - small fix | |
2525 | |
2526 * lib/rfc2068.c - fixed several bugs in the handling of chunked | |
2527 messages that are spread across multiple packets (the HTTPS protocol | |
2528 unconvered all of these) | |
2529 | |
2530 * lib/sslcommon.c - several fixes and cleanups | |
2531 | |
431 | 2532 2003-7-6 Brian Masney <masneyb@gftp.org> |
213 | 2533 * lib/configure.in - check for getdtablesize() |
2534 | |
2535 * TODO - updated | |
2536 | |
431 | 2537 2003-7-6 Brian Masney <masneyb@gftp.org> |
211 | 2538 * lib/protocols.c lib/sshv2.c src/gtk/dnd.c src/gtk/menu-items.c - |
2539 instead of using g_strconcat to build the directory paths, use | |
2540 g_build_path. Fixes a bug when you was connected to a remote host, | |
2541 and you was in /, the path would show up as // | |
2542 (from Krzysztof Foltman <kfoltman@onet.pl>, slightly changed by me) | |
2543 | |
431 | 2544 2003-7-6 Brian Masney <masneyb@gftp.org> |
210 | 2545 * lib/pty.c lib/gftp.h - added gftp_exec_with_new_pty() and |
2546 gftp_exec_without_new_pty() | |
2547 | |
2548 * lib/sshv2.c - use the 2 new functions above | |
2549 | |
2550 * lib/pty.c lib/gftp.h - split open_ptys() to _gftp_ptym_open() | |
2551 and _gftp_ptys_open() | |
2552 | |
2553 * lib/sslcommon.c - don't do thread setup if we are compiling against | |
2554 glib 1.2. I do not want to link against the pthread library because | |
2555 that would make the text port dependant on pthreads being installed on | |
2556 the box | |
2557 | |
431 | 2558 2003-7-5 Brian Masney <masneyb@gftp.org> |
209 | 2559 * lib/protocols.c (gftp_get_line) - fixed bug where the read function |
2560 was being called one extra time after the end of file was reached | |
207 | 2561 |
209 | 2562 * lib/rfc2068.c - fixes for chunked file transfers. All known issues with the |
2563 HTTP protocol should be (hopefully) fixed now | |
2564 | |
2565 * lib/httpcommon.h (struct rfc2068_params_tag) - added eof variable | |
207 | 2566 |
431 | 2567 2003-7-1 Brian Masney <masneyb@gftp.org> |
207 | 2568 * lib/misc.c (base64_encode) - alphabet fix (+ wasn't a valid |
2569 character, it should have been /) (thanks to Holger Kiehl | |
2570 <Holger.Kiehl@dwd.de> for pointing this out) | |
2571 | |
2572 * lib/config_file.c lib/gftp.h - added copy function for options | |
2573 variables. The functions gftp_config_file_copy_text(), | |
2574 gftp_config_file_copy_ptr_contents() and gftp_config_file_copy_color() | |
2575 were added | |
2576 | |
2577 * lib/protocols.c - make sure the remote_charsets string is restored | |
2578 properly after it is used | |
2579 | |
2580 * src/gtk/bookmarks.c - remove memory leak comments, these are fixed | |
2581 now | |
2582 | |
2583 * src/gtk/transfer.c - removed start_file_transfers variable | |
2584 | |
2585 * src/gtk/misc-gtk.c src/gtk/gftp-gtk.h lib/misc.c lib/gftp.h - moved | |
2586 get_next_selection() to lib | |
2587 | |
2588 * acinclude.h (AC_TYPE_SOCKLEN_T) - AC_DEFINE fix (from | |
2589 Nathan Robertson <nathanr@nathanr.net>) | |
2590 | |
431 | 2591 2003-6-25 Brian Masney <masneyb@gftp.org> |
204 | 2592 * lib/misc.c (expand_path) - small improvements |
2593 | |
2594 * lib/rfc2068.c src/text/gftp-gtk.c - fixes for path handling, namely | |
2595 when changing directories to the parent (..) | |
2596 | |
431 | 2597 2003-6-25 Brian Masney <masneyb@gftp.org> |
203 | 2598 * lib/misc.c - fix warning if DMALLOC is disabled |
2599 | |
2600 * src/text/gftp-text.c - don't attempt to expand the local directory | |
2601 | |
2602 * TODO - updated | |
2603 | |
431 | 2604 2003-6-25 Brian Masney <masneyb@gftp.org> |
202 | 2605 * acinclude.m4 - added AC_TYPE_SOCKLEN_T. Thanks to |
2606 Nathan Robertson <nathanr@nathanr.net> for pointing this out | |
2607 | |
2608 * configure.in - call AC_TYPE_SOCKLEN_T. Updates to AC_OUTPUT | |
2609 | |
2610 * lib/gftp.h - remove check for HAVE_SOCKLEN_T | |
2611 | |
2612 * Makefile.am - formatting fixes | |
2613 | |
431 | 2614 2003-6-25 Brian Masney <masneyb@gftp.org> |
201 | 2615 * configure.in - added mk to ALL_LINGUAS |
2616 | |
2617 * lib/gftp.h - added several macros for dmalloc | |
2618 | |
2619 * lib/misc.c src/text/gftp-text.c src/gtk/gftp-gtk.c - added | |
2620 gftp_shutdown() to misc.c. This will write out the configuration | |
2621 file, clear the cache, and if dmalloc is enabled, free the memory | |
2622 that was allocated on startup | |
2623 | |
2624 * lib/config_file.c lib/gftp.h lib/misc.c lib/options.h - added | |
2625 gftp_configuration_changed parameter | |
2626 | |
2627 * lib/config_file.c lib/misc.c lib/protocols.c - added | |
2628 gftp_config_free_options() | |
2629 | |
2630 * lib/config_file.c src/gtk/bookmarks.c - added gftp_bookmarks() which | |
2631 is derived mostly from bm_close_dialog() | |
2632 | |
2633 * lib/rfc959.c - added rfc959_request_destroy(). Free the getline | |
2634 buffers in this function | |
2635 | |
2636 * src/gtk/misc-gtk.c (gftp_item_factory_translate) - remove double | |
2637 g_strdup() call | |
2638 | |
2639 * lib/config_file.c lib/gftp.h src/gtk/misc-gtk.c - moved | |
2640 get_xpm_path() to GTK+ port. No longer call it startup when reading | |
2641 the config file | |
2642 | |
431 | 2643 2003-6-24 Brian Masney <masneyb@gftp.org> |
199 | 2644 * lib/config_file.c lib/gftp.h lib/protocols.c - added backend for |
2645 overriding options on a per bookmark basis. Also added | |
2646 gftp_copy_local_options() to config_file.c | |
2647 | |
2648 * lib/gftp.h lib/misc.c src/gtk/bookmarks.c - added | |
2649 gftp_free_bookmark() to misc.c. It was taken from the function | |
2650 free_bookmark_entry_items() in bookmarks.c | |
2651 | |
2652 * lib/sslcommon.c - formatting fixes. Added thread functions (mostly | |
2653 from the OReilly SSL book) | |
2654 | |
431 | 2655 2003-6-22 Brian Masney <masneyb@gftp.org> |
198 | 2656 * lib/config_file.c lib/gftp.h - renamed parse_args to |
2657 gftp_config_parse_args() and removed the static declaration | |
2658 | |
2659 * lib/protocols.c (gftp_request_destroy) - fixed memory problem with | |
2660 the new local configuration interface | |
2661 | |
2662 * src/gtk/gftp-gtk.c - added gftp_gtk_config_(read|write)_color(). | |
2663 I am overriding the read and write functions for | |
2664 gftp_option_type_color to be these functions. This is so that I can | |
2665 use a GdkColor structure instead of a gftp_color structure | |
2666 | |
2667 * src/gtk/misc-gtk.c - when destroying the dialogs, set the pointers | |
2668 to NULL before we call the callback functions. This is to make sure | |
2669 that they aren't being used in the callbacks | |
2670 | |
2671 * TODO - updated | |
2672 | |
431 | 2673 2003-6-19 Brian Masney <masneyb@gftp.org> |
195 | 2674 * autogen.sh - updated to hopefully make it more portable across |
2675 various systems | |
2676 | |
2677 * lib/rfc959.c - change variable type of data_addr_len from size_t | |
2678 to socklen_t (fixed warnings on 64 bit machines) | |
2679 | |
2680 * src/gtk/chmod_dialog.c src/gtk/gftp-gtk.c src/gtk/menu-items.c | |
2681 src/gtk/misc-gtk.c src/gtk/mkdir_dialog.c src/gtk/options_dialog.c | |
2682 src/gtk/rename_dialog.c src/gtk/transfer.c - rather than casting | |
2683 from integer to pointer and vice versa, use GINT_TO_POINTER and | |
2684 GPOINTER_TO_INT. These macros do the exact same thing and I'm | |
2685 still getting compiler warnings on Debian Sparc64 with -m64, but at | |
2686 least I'll be able to fix the define in glib and then these warnings | |
2687 will be fixed then | |
2688 | |
431 | 2689 2003-6-18 Brian Masney <masneyb@gftp.org> |
191 | 2690 * lib/protocols.c - send right parameters to the logging function |
2691 (from Nam SungHyun <namsh@kldp.org>) | |
2692 | |
431 | 2693 2003-6-17 Brian Masney <masneyb@gftp.org> |
190 | 2694 * src/gtk/misc-gtk.c (ftp_log) - remote charset fixes for when the log |
2695 message is generated inside a child thread | |
2696 | |
2697 * lib/cache.c - don't complain about not being able to open index.db | |
2698 | |
431 | 2699 2003-6-16 Brian Masney <masneyb@gftp.org> |
188 | 2700 * lib/protocols.c (gftp_string_to_utf8) - return if request is NULL |
2701 | |
187 | 2702 * lib/protocols.c - run g_iconv_close() in gftp_disconnect() instead |
2703 of gftp_end_transfer() | |
2704 | |
186 | 2705 * lib/gftp.h src/text/gftp-text.c src/gtk/misc-gtk.c - changed 2nd |
2706 parameter of logging function to be a request structure, instead of | |
2707 request->user_data. In the logging functions, if the string isn't in | |
2708 UTF-8, convert it with gftp_string_to_utf8() | |
2709 | |
2710 * lib/bookmark.c lib/cache.c lib/gftp.h lib/https.c lib/local.c | |
2711 lib/protocols.c lib/rfc2068.c lib/rfc959.c lib/sshv2.c lib/sslcommon.c | |
2712 src/gtk/chmod_dialog.c src/gtk/delete_dialog.c src/gtk/gftp-gtk.h | |
2713 src/gtk/menu-items.c src/gtk/misc-gtk.c src/gtk/mkdir_dialog.c | |
2714 src/gtk/rename_dialog.c src/gtk/transfer.c src/text/gftp-text.c | |
2715 src/gtk/gftp-gtk.h src/text/gftp-text.h - pass request structure | |
2716 to logging function instead of request->user_data | |
2717 | |
185 | 2718 * lib/protocols.c (_gftp_get_next_charset) - set the separator for |
2719 remote charsets to be a comma | |
2720 | |
2721 * lib/options.h - updated description of remote charsets | |
2722 | |
184 | 2723 * lib/gftp.h lib/misc.c lib/options.h lib/protocols.c |
2724 src/gtk/misc-gtk.c - added remote_charsets option. Whenever a file is | |
2725 read in that is not in UTF-8, it will first attempt to convert it from | |
2726 the local charset, and if that fails, it will try each of the locales | |
2727 in this list. I have no idea if this even works, so if someone can test | |
2728 this, please let me know. | |
2729 | |
431 | 2730 2003-6-15 Brian Masney <masneyb@gftp.org> |
182 | 2731 * lib/cache.c lib/gftp.h - added gftp_generate_cache_description(). |
2732 | |
2733 * lib/cache.c lib/gftp.h src/text/gftp-text.c src/gtk/delete-dialog.c | |
2734 src/gtk/menu-items.c src/gtk/misc-gtk.c src/gtk/mkdir-dialog.c - Added | |
2735 description parameter to gftp_delete_cache_entry(). | |
2736 | |
2737 * lib/protocols.c lib/gftp.h - added gftp_fd_open(). It will call | |
2738 open() and then set the socket option close on exec | |
2739 | |
2740 * lib/cache.c lib/local.c lib/misc.c - use gftp_fd_open() instead of | |
2741 open() | |
2742 | |
2743 * lib/rfc959.c lib/protocols.c - on newly created sockets, make sure | |
2744 the close on exec socket option is set | |
2745 | |
2746 * lib/options.h src/text/gftp-text.c src/gtk/transfer.c - added | |
2747 preserve_permissions option | |
2748 | |
2749 * lib/protocols.c (gftp_parse_url) - allow an @ to be in the username | |
2750 | |
2751 * src/text/gftp-text.c - after transfering a file, honor | |
2752 preserve_permissions if it is set | |
2753 | |
2754 * src/gtk/delete-dialog.c - improvments to clearing the expired cache | |
2755 entries | |
2756 | |
431 | 2757 2003-6-14 Brian Masney <masneyb@gftp.org> |
179 | 2758 * lib/cache.c (gftp_delete_cache_entry) - fix for restoring newlines |
2759 | |
2760 * lib/gftp.h lib/protocols.c - added EOF flag for gftp_get_line() | |
2761 | |
2762 * lib/gftp.h lib/pty.c - added get_pty_impl() function for each PTY | |
2763 type | |
2764 | |
2765 * src/text/gftp-text.c - after removing files, clear the cache for | |
2766 that directory | |
2767 | |
431 | 2768 2003-6-11 Brian Masney <masneyb@gftp.org> |
178 | 2769 * lib/configure.in lib/gftp.h - portability fix for openpty(). (from |
2770 Nathan Robertson <nathanr@nathanr.net>, which he took from | |
2771 http://mail.python.org/pipermail/patches/2000-June/000953.html) | |
2772 | |
2773 * lib/pty.h - found out about #elif preprocessor macro ;) | |
2774 | |
431 | 2775 2003-6-9 Brian Masney <masneyb@gftp.org> |
177 | 2776 * lib/bookmark.c lib/gftp.h lib/local.c lib/protocols.c lib/rfc2068.c |
2777 lib/rfc959.c lib/sshv2.c - make return value of *_set_config_options() | |
2778 be an integer | |
2779 | |
2780 * lib/rfc2068.c lib/rfc959.c - return the error code of | |
2781 gftp_connect_server() if there was a connection problem | |
2782 | |
431 | 2783 2003-6-8 Brian Masney <masneyb@gftp.org> |
177 | 2784 * lib/rfc959.c lib/rfc2068.c - if gftp_connect_server() returns an |
2785 error, make sure the exact error code is returned | |
2786 | |
431 | 2787 2003-6-8 Brian Masney <masneyb@gftp.org> |
175 | 2788 * lib/sslcommon.c - added entropy_len option. Added |
2789 gftp_ssl_get_index(). Use SSL_get_ex_data() so that we can get the | |
2790 request structure, and error messages can be logged properly. Changed | |
2791 the verify depth from 4 to 9 | |
2792 | |
431 | 2793 2003-6-8 Brian Masney <masneyb@gftp.org> |
174 | 2794 * lib/gftp.h lib/sslcommon.c - added ssl_register_module(). This |
2795 function registers the configuration variables for the SSL engine. | |
2796 Right now, the only variable is the entropy source | |
2797 | |
2798 * lib/https.c (https_register_module) - call ssl_register_module(). | |
2799 Multiple protocols will be able to call this function, it will only | |
2800 be initialized once | |
2801 | |
431 | 2802 2003-6-8 Brian Masney <masneyb@gftp.org> |
173 | 2803 * lib/bookmark.c lib/gftp.h lib/https.c lib/local.c lib/misc.c |
2804 lib/protocols.c lib/rfc2068.c lib/rfc959.c lib/sshv2.c | |
2805 src/text/gftp-text.c src/gtk/gftp-gtk.c - made the init function for | |
2806 all the protocols return an integer instead of nothing. If there was an | |
2807 error setting up the protocol, GFTP_EFATAL should be returned and the | |
2808 connection should be aborted. The HTTPS protocol uses this to return if | |
2809 SSL support was not compiled in | |
2810 | |
2811 * lib/protocols.c src/text/gftp-text.c src/gtk/dnd.c | |
2812 src/gtk/gftp-gtk.c src/gtk/menu-items.c - have gftp_parse_url() log the | |
2813 error messages to the user. This shouldn't have been done in the | |
2814 individual ports | |
2815 | |
2816 * lib/https.c - only initialize the SSL engine the first time a SSL | |
2817 connection is made. | |
2818 | |
431 | 2819 2003-6-8 Brian Masney <masneyb@gftp.org> |
171 | 2820 * aclocal.m4 - removed, this file is automatically generated |
2821 | |
2822 * autogen.sh - just call automake and aclocal, instead of automake-1.4 | |
2823 and aclocal-1.4 (from Nathan Robertson <nathanr@nathanr.net>) | |
2824 | |
431 | 2825 2003-6-8 Brian Masney <masneyb@gftp.org> |
171 | 2826 * lib/https.c lib/options.h lib/sslcommon.c - make sure USE_SSL is |
2827 defined before using any SSL functions | |
2828 | |
2829 * lib/gftp.h lib/protocols.c lib/rfc2068.c lib/sshv2.c lib/sslcommon.c | |
2830 lib/rfc959.c - make sure we use request->datafd for the connection. Removed | |
2831 sockfd from gftp_request structure | |
2832 | |
2833 * lib/rfc959.c - add data_connection to rfc959_parms structure. Use | |
2834 this for the FTP data connection | |
2835 | |
2836 * src/text/gftp-text.c - fixes for username/password prompt | |
2837 | |
2838 * src/gtk/misc-gtk.c src/gtk/transfer.c - s/sockfd/datafd/g | |
2839 | |
2840 * configure.in - added lib/Makefile (forgot to commit last time) | |
2841 | |
2842 * Makefile.am - added intl to SUBDIRS | |
2843 | |
431 | 2844 2003-6-8 Brian Masney <masneyb@gftp.org> |
168 | 2845 * lib/gftp.h - if USE_SSL is defined, include the OpenSSL headers. |
2846 Added read_function, write_function and post_connect function pointers | |
2847 to gftp_request structure. Added SSL object to gftp_request structure | |
2848 if USE_SSL is defined. Added protocol number and init function | |
2849 declarations for the HTTPS protocol | |
2850 | |
2851 * lib/options.h - added HTTPS to the list of supported protocols | |
2852 | |
2853 * lib/protocols.c lib/cache.c lib/rfc2068.c lib/rfc959.c lib/sshv2.c - | |
2854 renamed gftp_read(), gftp_write() and gftp_set_sockblocking() to | |
2855 gftp_fd_read(), gftp_fd_write() and gftp_fd_set_sockblocking() | |
2856 respectively | |
2857 | |
2858 * lib/bookmark.c lib/local.c | |
2859 | |
2860 * lib/misc.c lib/rfc2068.c - moved base64_encode() to misc.c | |
166 | 2861 |
168 | 2862 * lib/protocols.c - improved parsing of URLs. Rather than calling |
2863 gftp_read() or gftp_write() directly, call the read_function or | |
2864 write_function that is set in the request structure. Expanded tabs | |
2865 to spaces. Cleanup for parsing of timestamps. In | |
2866 gftp_connect_server(), if a post_connect function pointer is set, | |
2867 call it after we are connected to the server. Improvements to | |
2868 gftp_get_line (). | |
2869 | |
2870 * lib/httpcommon.h lib/rfc2068.c - moved rfc2068_params structure to | |
2871 httpcommon.h. Fix for chunked file transfers, they were not handled | |
2872 at all before. Made the I/O calls a little more generic so that we can | |
2873 read from either a socket or a SSL connection. | |
2874 | |
2875 * lib/sslcommon.c - added generic SSL layer | |
2876 | |
2877 * lib/https.c - added support for the HTTPS protocol. It piggy backs | |
2878 off of the existing HTTP support and uses the generic SSL layer | |
2879 | |
2880 * src/gtk/bookmarks.c src/gtk/chmod_dialog.c src/gtk/gftp-gtk.c | |
2881 src/gtk/menu-items.c src/gtk/misc-gtk.c src/gtk/options_dialog.c | |
2882 src/gtk/view_dialog.c - set the window icon name to the gFTP <version> | |
2883 | |
2884 * configure.in - added lib back to SUBDIRS (oops) | |
2885 | |
2886 * lib/Makefile.am - added https.c, sslcommon.c and httpcommon.h | |
2887 | |
431 | 2888 2003-5-27 Brian Masney <masneyb@gftp.org> |
168 | 2889 * Makefile.am configure.in autogen.sh - build fixes |
2890 | |
2891 * src/text/gftp-text.c - if the protocol we are connecting to | |
2892 doesn't need a username/password, don't prompt the user for one | |
166 | 2893 |
431 | 2894 2003-5-22 Brian Masney <masneyb@gftp.org> |
168 | 2895 * lib/misc.c (gftp_usage) - updated usage statement |
162 | 2896 |
168 | 2897 * lib/options.h - put terminate options properly |
162 | 2898 |
431 | 2899 2003-05-06 Christian Rose <menthos@menthos.com> |
158 | 2900 |
2901 * configure.in: Added sr and sr@Latn to ALL_LINGUAS. | |
2902 | |
431 | 2903 2003-05-01 Hasbullah Bin Pit <sebol@ikhlas.com> |
154 | 2904 |
2905 * configure.in(ALL_LINGUAS): Added "ms". | |
2906 | |
431 | 2907 2003-4-27 Brian Masney <masneyb@gftp.org> |
151 | 2908 * lib/config_file.c (gftp_config_file_read_float) - use strtod instead |
2909 of strtof(). ANSI C describes strtod, and C99 describes strtof(). Some | |
2910 older systems don't have strtof() | |
2911 | |
2912 * lib/gftp.h - if HAVE_OPENPTY is defined, include pty.h. Fix for | |
2913 GFTP_GET_AI_FAMILY when request or request->hostp is NULL. Added | |
2914 free_hostp boolean to struct gftp_request | |
2915 | |
2916 * lib/misc.c src/gtk/delete_dialog.c src/gtk/transfer.c - added | |
2917 copy_local_options parameter. Add a pointer to newreq->hostp from the | |
2918 source request structure | |
2919 | |
2920 * lib/protocols.c - honor free_hostp | |
2921 | |
2922 * lib/rfc959.c - fix for IPV4/IPV6 detection | |
2923 | |
2924 * src/gtk/misc-gtk.c src/gtk/options_dialog.c - fixed compiler errors | |
2925 when compiling against GTK+ 1.2 | |
2926 | |
2927 * src/gtk/transfer.c - lookup option one_transfer instead of | |
2928 do_one_transfer_at_a_time | |
2929 | |
431 | 2930 2003-04-27 Christian Rose <menthos@menthos.com> |
149 | 2931 |
2932 * lib/rfc959.c: Fix bug #111090 by adding | |
2933 /* xgettext:no-c-format */ comment. This trivial bug prevented any | |
2934 full localization of gftp. | |
2935 | |
431 | 2936 2003-4-25 Brian Masney <masneyb@gftp.org> |
146 | 2937 * lib/rfc959.c - added IPV6 support (RFC2428). The only part of the |
2938 project that isn't IPV6 ready is the proxy comparsion functions. | |
2939 | |
2940 * lib/protocols.c - change the hints.ai_family paramater from AF_INET | |
2941 to PF_UNSPEC | |
2942 | |
2943 * lib/gftp.h lib/misc.c lib/pty.c - moved the functionality of | |
2944 pty[ms]_open() to pty.c. Combined these 2 functions into open_ptys(), | |
2945 and there is one defined for each system type (lots of #define's in | |
2946 this file!) | |
2947 | |
2948 * lib/Makefile.am po/POTFILES.in - added pty.c | |
2949 | |
2950 * lib/sshv2.c - when searching for the password prompt, omit the first | |
2951 character in case it is capitalized. Also, use the new function | |
2952 open_ptys() | |
2953 | |
2954 * configure.in - search for openpty in -lutil. Also, define | |
2955 HAVE_OPENPTY if this function is present on the system | |
2956 | |
2957 | |
431 | 2958 2003-4-23 Brian Masney <masneyb@gftp.org> |
143 | 2959 * Makefile.am - removed config.rpath from EXTRA_DIST |
2960 | |
2961 * configure.in - added 'sr' to ALL_LINGUAS. Incremented | |
2962 version to 2.0.15 (will be a little while before this is released. | |
2963 Still have lots to do) | |
2964 | |
2965 * docs/sample.gftp/gftprc - removed old unused SSH options. These were | |
2966 used by the SSH protocol I ripped out | |
2967 | |
2968 * lib/config_file.c - fix for gftp_set_request_option(). Implemented | |
2969 gftp_lookup_request_options(). Overriding of configuration options now | |
2970 works across the board :) | |
2971 | |
2972 * lib/protocols.c - extra checks for freeing memory | |
2973 | |
2974 * src/text/gftp-text.c - renamed ssh_use_sftp_subsys to the proper | |
2975 name of sshv2_use_sftp_subsys | |
2976 | |
2977 * src/gtk/transfer.c - renamed append_file_transfers option | |
2978 to the proper name of append_transfers. Also, added quick fix for | |
2979 start_file_transfers option that is still missing | |
2980 | |
2981 * debian/gftp-text.postinst - this will add add an alternative for the | |
2982 ftp command and point it to gftp-text | |
2983 | |
431 | 2984 2003-4-21 Brian Masney <masneyb@gftp.org> |
139 | 2985 * lib/gftp.h - added ui_cancel_function to struct gftp_option_type_var |
2986 | |
2987 * src/gtk/gftp-gtk.c - added custom_edit_value to struct | |
2988 gftp_textcomboedt_widget_data | |
2989 | |
2990 * src/gtk/options_dialog.c - fixups for gftp_option_type_textcomboedt. | |
2991 The value will always convert %n to \n when reading in and then do the | |
2992 opposite conversion when saving the variable. Also, added tooltips to | |
2993 the options | |
2994 | |
2995 * lib/rfc959.c - remove FIXME comment | |
2996 | |
431 | 2997 2003-4-18 Brian Masney <masneyb@gftp.org> |
136 | 2998 * lib/config_file.c lib/gftp.h - removed gftp_option_type_subtree, |
2999 gftp_option_type_table and gftp_option_type_newtable | |
3000 | |
3001 * lib/config_file.c - implemented gftp_set_request_option() | |
3002 | |
3003 * lib/gftp.h lib/config_file.c - changed declaration of | |
3004 ui_print_function in struct gftp_option_type. Also added | |
3005 ui_save_function field to this structure | |
3006 | |
3007 * lib/gftp.h added local_options_vars num_local_options_vars variables | |
3008 to gftp_request | |
3009 | |
3010 * lib/local.c (local_set_directory) - small improvements to this | |
3011 function | |
3012 | |
3013 * lib/misc.c - added gftp_copy_local_options() | |
3014 | |
3015 * lib/options.h - fix declaration of General tab | |
3016 | |
3017 * lib/protocols.c - free local options | |
3018 | |
3019 * lib/rfc2068.c - check to see if we're connecting to a FTP site via | |
3020 proxy | |
3021 | |
3022 * lib/rfc959.c lib/protocols.c - changes for CRAY directory listings | |
3023 | |
3024 * src/gtk/gftp-gtk.h - added struct gftp_options_dialog_data and | |
3025 struct gftp_textcomboedt_widget_data | |
3026 | |
3027 * src/gtk/options_dialog.c - start to use new configuration interface | |
3028 | |
3029 * src/gtk/transfer.c - remove FIXME note. This is already in | |
3030 lib/gftp.h | |
3031 | |
431 | 3032 2003-4-13 Brian Masney <masneyb@gftp.org> |
131 | 3033 * lib/config_file.c - fixed float config type |
3034 | |
3035 * lib/gftp.h lib/misc.c - added gftp_gen_ls_string() | |
3036 | |
3037 * src/gtk/menu-items.c (dosave_directory_listing) | |
3038 src/text/gftp-text.c (gftp_text_ls) - use | |
3039 gftp_gen_ls_string() | |
3040 | |
431 | 3041 2003-4-13 Brian Masney <masneyb@gftp.org> |
129 | 3042 * lib/config_file.c - implemented gftp_set_global_option() |
3043 | |
3044 * lib/gftp.h lib/misc.c - added gftp_tdata_new() | |
3045 | |
3046 * src/text/gftp-text.c src/gtk/transfer.c - use gftp_tdata_new() | |
3047 | |
3048 * src/gtk/bookmarks.c - In run_bookmark(), use gftp_parse_bookmark() | |
3049 function. Renamed all instances of gftp_bookmarks to | |
3050 gftp_bookmarks_var | |
3051 | |
3052 * src/gtk/gftp-gtk.[ch] - added global variables viewedit_processes | |
3053 and viewedit_processes_done. These used to be declared in | |
3054 lib/options.h | |
3055 | |
3056 * src/gtk/gftp-gtk.h (struct gftp_window_data) - removed sortcol and | |
3057 sortasds variables. Added prefix_col_str variable. This will either be | |
3058 local or remote | |
3059 | |
3060 * src/gtk/misc-gtk.c - removed r_gethostbyname() and r_getservbyname() | |
3061 | |
3062 * src/gtk/transfer.c - removed gftp_gtk_calc_kbs(), get_status() and | |
3063 parse_attribs(). These are in the lib/ directory now. Also, use | |
3064 g_static_mutex_*() functions from glib instead of pthread_mutex_*() | |
3065 | |
3066 * src/gtk/bookmark.c src/gtk/dnd.c src/gtk/menu-items.c | |
3067 src/gtk/transfer.c - use g_strdup() instead of g_malloc()/strcpy() | |
3068 | |
3069 * src/gtk/options_dialog.c - commented out large parts of this file. | |
3070 This file is busted at the moment | |
3071 | |
3072 * src/gtk/*.[ch] - Use new configuration interface in all source | |
3073 files. Updated copyright dates on all source files | |
3074 | |
431 | 3075 2003-4-9 Brian Masney <masneyb@gftp.org> |
126 | 3076 * lib/gftp.h lib/config_file.c - reordered config option types. Added |
3077 gftp_option_type_textcomboedt type | |
3078 | |
3079 * lib/options.h lib/rfc959.c - moved gftp_proxy_type to rfc959.c | |
3080 | |
3081 * lib/rfc959.c - added proxy_type that is | |
3082 gftp_option_type_textcomboedt. Consolidated help text into comment. | |
3083 In parse_ftp_proxy_string(), improve parsing of proxy config | |
3084 | |
431 | 3085 2003-4-8 Brian Masney <masneyb@gftp.org> |
125 | 3086 * src/text/gftp-text.c lib/misc.c - moved r_gethostbyname() and |
3087 r_getservbyname() to lib/misc.c. Now uses GMutex functions | |
3088 | |
3089 * lib/config_file.c lib/gftp.h lib/options.h - added config | |
3090 variable type textcombo. default_protocol uses this | |
3091 | |
3092 * lib/config_file.c (gftp_read_config_file) - when reading in the | |
3093 list of supported protocols, add the protocol names to the list | |
3094 associated with default_protocol. Also, don't try to have | |
3095 default_protocol fall back to FTP. The code that uses this will fall | |
3096 back properly | |
3097 | |
3098 * lib/gftp.h (struct gftp_transfer) - renamed node to user_data | |
3099 | |
3100 * lib/misc.c lib/gftp.h - moved parse_attribs() from | |
3101 src/gtk/transfer.c to misc.c. Renamed to gftp_parse_attribs() | |
3102 | |
3103 * lib/protocols.c lib/gftp.h - moved get_status() from | |
3104 src/gtk/transfer.c to protocols.c. Renamed to | |
3105 gftp_get_transfer_status(). Uses GMutex functions | |
3106 | |
3107 | |
431 | 3108 2003-4-7 Brian Masney <masneyb@gftp.org> |
125 | 3109 * src/gtk/bookmarks.c - renamed struct gftp_bookmarks to |
3110 gftp_bookmarks_var. In run_bookmark(), use gftp_parse_bookmark() | |
3111 | |
3112 * src/gtk/bookmarks.c src/gtk/dnd.c src/gtk/menu-items.c | |
3113 src/gtk/transfer.c - use g_strdup() instead of g_malloc()/strcpy() | |
3114 | |
3115 * src/gtk/dnd.c src/gtk/menu-items.c - don't use depreciated macros | |
3116 to access the request structure | |
3117 | |
3118 * src/gtk/*.c - use new gftp_lookup_global_option() and | |
3119 gftp_lookup_request_option() functions | |
3120 | |
3121 * src/gtk/gftp-gtk.h src/gtk/gftp-gtk.c - moved viewedit_processes and | |
3122 viewedit_process_done variables from lib/gftp.h and lib/options.h | |
3123 | |
3124 * src/gtk/transfer.c - removed gftp_gtk_calc_kbs(). This is now in | |
3125 lib/protocols.c. Removed Binary/Ascii conversion. This is all done in | |
3126 lib/rfc959.c | |
3127 | |
431 | 3128 2003-4-6 Brian Masney <masneyb@gftp.org> |
124 | 3129 * lib/config_file.c src/text/gftp-text.c - changed arguments of |
3130 gftp_read_config_file() and gftp_read_bookmarks() to take an argument | |
3131 to the path of the global config directory. The text/gtk+ port will | |
3132 just pass SHARE_DIR. The native MacOS X port that is in the works | |
3133 needs this (Nathan Robertson is currently working on this port) | |
3134 | |
3135 * lib/gftp.h lib/config_file.c - removed config variable type | |
3136 gftp_option_type_textarray | |
3137 | |
3138 * lib/gftp.h lib/config_file.c - removed copy_function from | |
3139 gftp_option_type_var. This is implemented with memcpy() instead | |
3140 | |
3141 * lib/rfc959.c - remember to rename all instances of firewall_* to | |
3142 ftp_proxy_* | |
3143 | |
3144 * lib/sshv2.c - improved generating the argument list for the ssh | |
3145 client | |
3146 | |
3147 * lib/sshv2.c lib/misc.c lib/gftp.h - added len argument to | |
3148 ptym_open() | |
3149 | |
3150 * lib/protocols.c lib/misc.c lib/config_file.c - use g_strdup() | |
3151 instead of g_malloc()/strcpy() | |
3152 | |
431 | 3153 2003-4-5 Brian Masney <masneyb@gftp.org> |
124 | 3154 * lib/config_file.c lib/options.h lib/gftp.h lib/rfc959.c |
3155 lib/rfc2068.c lib/ssh.c - added new internal configuration interface. | |
3156 Rather than having a global variable for each option, I have a global | |
3157 hash table (gftp_global_options_htable) that I can look up option names | |
3158 by name using gftp_lookup_global_option(). I also an options hash | |
3159 associated with a request structure, so I will be able to call | |
3160 gftp_lookup_request_option(). I will be able to override options with | |
3161 bookmarks or while transfers are in progress very easily now. Also, all | |
3162 options no longer have to appear in config_file.c, the per protocol | |
3163 options can appear inside their own file | |
3164 | |
3165 * lib/gftp.h lib/bookmarks.c lib/local.c lib/rfc959.c lib/rfc2068.c - | |
3166 remove set_data_type and protocol name from struct gftp_request | |
3167 | |
3168 * lib/rfc959.c - renamed all firewall_* variables to ftp_proxy_* in | |
3169 the config file | |
3170 | |
3171 * lib/gftp.h lib/protocols.c lib/rfc959.c - renamed all GFTP_TYPE_* | |
3172 vars to GFTP_DIRTYPE_* | |
3173 | |
3174 * lib/gftp.h - removed ascii field and renamed the node pointer to | |
3175 user_data in struct gftp_file. In gftp_request, removed any setting | |
3176 that is now stored in the global/local hash tables. Added | |
3177 register_module() pointer that will be called whenever the protocol is | |
3178 first loaded into gftp | |
3179 | |
3180 * lib/rfc959.c src/text/gftp-text.c - moved the ascii/binary | |
3181 translation to rfc959.c. Also, moved any instance of automatically | |
3182 setting the data type to rfc959.c as well. | |
3183 | |
3184 * lib/misc.c lib/sshv2.c - moved all ssh functions from misc.c to | |
3185 sshv2.c. I had these origionally in misc.c because I used to have 2 | |
3186 different SSH protocols | |
3187 | |
3188 * lib/protocols.c src/text/gftp-text.c - added gftp_calc_kbs() to | |
3189 = protocols.c. This no longer needs to be in the different ports | |
3190 | |
3191 * src/text/gftp-text.c - read/write options based on new configuration | |
3192 interface | |
3193 | |
3194 * Use new configuration interface in all source files | |
3195 | |
3196 * Updated copyright dates on all source files | |
3197 | |
3198 * Note: GTK+ port is completely broken at the moment. I'll upload | |
3199 those changes whenever I get them done | |
3200 | |
431 | 3201 2003-04-05 Duarte Loreto <happyguy_pt@hotmail.com> |
121
1b41e6945e9d
2003-04-05 Duarte Loreto <happyguy_pt@hotmail.com>
dnloreto
parents:
116
diff
changeset
|
3202 |
1b41e6945e9d
2003-04-05 Duarte Loreto <happyguy_pt@hotmail.com>
dnloreto
parents:
116
diff
changeset
|
3203 * configure.in: Added "pt" to ALL_LINGUAS. |
1b41e6945e9d
2003-04-05 Duarte Loreto <happyguy_pt@hotmail.com>
dnloreto
parents:
116
diff
changeset
|
3204 |
431 | 3205 2003-03-04 Yuriy Syrota <rasta renome.rovno.ua> |
116 | 3206 |
3207 * configure.in: Added Ukrainian (uk) to ALL_LINGUAS | |
3208 | |
431 | 3209 2003-2-25 Brian Masney <masneyb@gftp.org> |
115 | 3210 * src/gtk/gftp-gtk.c - use gtk_container_add() instead of |
3211 gtk_scrolled_window_add_with_viewport() | |
3212 (from Kang Jeong-Hee <Keizi@mail.co.kr>) | |
3213 | |
431 | 3214 2003-2-23 Brian Masney <masneyb@gftp.org> |
114 | 3215 * lib/cache.c - added function gftp_parse_cache_entry(). Save |
3216 request->server_type (output of SYST in FTP command) to the directory | |
3217 entry | |
3218 | |
3219 * lib/rfc959.c (rfc959_syst) - fix to parse the output correctly | |
3220 | |
3221 * src/{text,gtk}/Makefile.am - remove @LIBINTL@. The gettext.m4 | |
3222 macro should automatically add this to the LIBS variable | |
3223 | |
113 | 3224 * acinclude.m4 - put largefile.m4 in here |
3225 | |
431 | 3226 2003-02-21 Pablo Saratxaga <pablo@mandrakesoft.com> |
110 | 3227 * configure.in: Added Catalan (ca) to ALL_LINGUAS |
3228 | |
431 | 3229 2003-2-17 Brian Masney <masneyb@gftp.org> |
107 | 3230 * lib/protocols.c lib/rfc959.c - added VMS directory listing support |
3231 | |
3232 * lib/config_file.c lib/protocols.c - extra checks when stripping off | |
3233 carriage returns and linefeeds | |
3234 | |
431 | 3235 2003-2-9 Brian Masney <masneyb@gftp.org> |
105 | 3236 * lib/protocols.c (parse_time) - parse more time formats. Better |
3237 error checking. If there was an error parsing this time, | |
3238 skip ahead to the next token | |
3239 | |
3240 * lib/rfc2068.c - this was completely broken. This was broken whenever | |
3241 I did the conversion over to use the gftp_get_line() function. | |
3242 | |
3243 * lib/rfc959.c - use g_strdup instead of g_malloc/strcpy | |
3244 | |
431 | 3245 2003-2-6 Brian Masney <masneyb@gftp.org> |
102 | 3246 * lib/gftp.h lib/protocols.c lib/rfc2068.c - put in new |
3247 parse_time() function that should work across all locales. | |
3248 It uses strptime() internally. | |
3249 | |
3250 * lib/misc.c - remove note from close statement | |
3251 | |
101 | 3252 * lib/config_file.c lib/gftp.h lib/options.h - remove ssh1_sftp_path |
3253 option | |
3254 | |
431 | 3255 2003-02-03 Daniel Yacob <locales@geez.org> |
96 | 3256 * configure.ac: Added "am" (Amharic) to ALL_LINGUAS. |
3257 | |
431 | 3258 2003-1-21 Brian Masney <masneyb@gftp.org> |
93 | 3259 * configure.in - fix for Solaris. Move the initial declaration up |
3260 in the source file | |
3261 | |
431 | 3262 2003-1-21 Brian Masney <masneyb@gftp.org> |
91 | 3263 * lib/gftp.h - added server type defines. Added server_type field to |
3264 gftp_request | |
3265 | |
3266 * lib/local.c - use S_ISDIR and S_ISLINK macros | |
3267 | |
3268 * lib/protocols.c - (gftp_parse_ls*) - use hints from server_type for | |
3269 parsing directory listing | |
3270 | |
3271 * lib/rfc959.c - added function rfc959_syst. Call this on startup | |
3272 | |
3273 * lib/protocols.c lib/rfc959.c lib/sshv2.c - pass request structure | |
3274 to gftp_parse_ls | |
3275 | |
3276 * lib/sshv2.c - set server_type to be GFTP_TYPE_UNIX | |
3277 | |
431 | 3278 2003-1-11 Brian Masney <masneyb@gftp.org> |
88 | 3279 * autogen.sh - removed --intl and --no-changelog flags to gettextize |
3280 | |
3281 * aclocal.m4 - updated | |
3282 | |
3283 * configure.in - and intl and po directories to AC_OUTPUT | |
3284 | |
3285 * cvsclean - remove more stuff | |
3286 | |
3287 * lib/bookmark.c (bookmark_parse_url) - use gftp_parse_bookmark | |
3288 function | |
3289 | |
3290 * lib/cache.c - remove gftp_cache_get_url_prefix(). Use | |
3291 request->url_prefix instead | |
3292 | |
3293 * lib/config_file.c - use proper exit codes. Also complain if the | |
3294 default protocol specified in the config file is invalid | |
3295 | |
3296 * lib/gftp.h lib/local.c lib/protocols.c - removed isblock, ischar, | |
3297 issocket and isfifo in struct gftp_file (not used anymore) | |
3298 | |
3299 * lib/gftp.h lib/misc.c - removed file_countlf (not used anymore) | |
3300 | |
3301 * lib/local.c lib/misc.c lib/protocols.c - various small cleanups | |
3302 | |
3303 * lib/misc.c (string_hash_function) - check key[i] instead of key[0] | |
3304 | |
3305 * lib/protocols.c lib/gftp.h - added gftp_parse_bookmark() | |
3306 | |
3307 * lib/rfc2068.c - if we are connected to a FTP url via a proxy, set | |
3308 request->url_prefix to be ftp. Added rfc2068_destroy() to free | |
3309 url_prefix whenever the structure is to be freed | |
3310 | |
86 | 3311 2002-12-29 Brian Masney <masneyb@gftp.org> |
3312 * lib/gftp.h - don't include sys/sysmacros.h | |
3313 | |
3314 * src/gtk/transfer.c - more GFTP_EFATAL checks | |
3315 | |
84 | 3316 2002-12-29 Brian Masney <masneyb@gftp.org> |
3317 * lib/ssh.c lib/config_file.c lib/Makefile.am lib/gftp.h lib/options.h - | |
3318 removed old legacy SSH protocol and option to enable this protocol | |
3319 | |
3320 * lib/gftp.h - added GFTP_ERETRYABLE and GFTP_EFATAL error codes | |
3321 | |
3322 * lib/bookmark.c lib/local.c lib/protocols.c lib/rfc959.c lib/rfc2068.c | |
3323 lib/sshv2.c - return new error codes instead of -1 or -2 | |
3324 | |
3325 * lib/misc.c (gftp_*_sort_function_ds) - changed return values | |
3326 | |
3327 * src/gtk/transfer.c (connect_thread) - if return value of | |
3328 gftp_connect() is GFTP_EFATAL, don't attempt to retry the connection | |
3329 | |
81 | 3330 2002-12-11 Brian Masney <masneyb@gftp.org> |
3331 * configure.in - fix for enable/disable gtkport, textport and gtk20 | |
3332 | |
80 | 3333 2002-12-10 Brian Masney <masneyb@gftp.org> |
3334 * configure.in - check for grantpt function | |
3335 | |
3336 * lib/misc.c (pty[ms]_open) - use Unix98 PTY allocation if grantpt() | |
3337 is on the current system | |
3338 | |
3339 * lib/gftp.h - include stropts.h if grantpt is here | |
3340 | |
3341 2002-12-5 Brian Masney <masneyb@gftp.org> | |
3342 * Release final 2.0.14 | |
3343 | |
3344 * lib/Chagelog-old - brief updates since 2.0.13 | |
3345 | |
77 | 3346 2002-12-4 Brian Masney <masneyb@gftp.org> |
3347 * lib/misc.c (ssh_start_login_sequence) - if the word WARNING appears | |
3348 in the banner, don't log into the server | |
3349 | |
3350 * docs/sample.gftp/gftprc - removed use_default_dl_types line | |
3351 | |
76 | 3352 2002-12-4 Brian Masney <masneyb@gftp.org> |
3353 * lib/protocols.c (gftp_set_data_type) - return 0 if there is no | |
3354 protocol specific set_data_type function | |
3355 | |
3356 * src/gtk/transfer.c (gftp_gtk_transfer_files) - ascii/binary automatic | |
3357 switching fixes | |
3358 | |
3359 2002-12-3 Brian Masney <masneyb@gftp.org> | |
75 | 3360 * lib/config_file.c lib/gftp.h lib/protocols.c - removed |
3361 use_default_dl_types option. This is always enabled by default now. | |
3362 | |
3363 * src/gtk/dnd.c src/gtk/transfer.c - fix for files that should be | |
3364 transferred as ascii | |
3365 | |
73 | 3366 2002-12-2 Brian Masney <masneyb@gftp.org> |
3367 * src/gtk/bookmarks.c (run_bookmark) - don't override the value of | |
3368 need_userpass for SSH transfers | |
3369 | |
3370 * ChangeLog-old - clean up list of changes from 2.0.13 to 2.0.14rc1 | |
3371 | |
3372 * README - minor fixes | |
3373 | |
3374 * configure.in - increment version to 2.0.14 | |
3375 | |
3376 * debian/copyright - change my email address and webpage | |
3377 | |
3378 * debian/rules - 2 small changes | |
3379 | |
3380 * TODO - added 1 item | |
3381 | |
72 | 3382 2002-12-2 Brian Masney <masneyb@gftp.org> |
3383 * src/gtk/misc-gtk.c (MakeEditDialog) - bind to enter and esc keys | |
3384 | |
67 | 3385 2002-11-27 Brian Masney <masneyb@gftp.org> |
3386 * Officially release 2.0.14rc1 | |
3387 | |
3388 * lib/cache.c - take out a warning message | |
3389 | |
3390 * lib/misc.c lib/protocols.c lib/gftp.h lib/gtk/dnd.c lib/transfer.c - | |
3391 add second argument (free_request) to gftp_request_destroy | |
3392 | |
3393 * lib/protocols.c (gftp_parse_url) - make sure the request structure | |
3394 is cleared before we start to modify it | |
3395 | |
3396 * src/gtk/gftp-text.c - fixed crash if you didn't enter a username | |
3397 | |
66 | 3398 2002-11-26 Brian Masney <masneyb@gftp.org> |
3399 * configure.in - change version to 2.0.14rc1 | |
3400 | |
3401 * lib/local.c - fix for uploading files. Move setting of hostname | |
3402 from local_connect() to local_init() | |
3403 | |
3404 * lib/misc.c (gftp_request) - copy only select fields over instead of | |
3405 whole structure | |
3406 | |
3407 * lib/protocols.c (gftp_request_new) - set datafd and cachefd to -1 | |
3408 | |
3409 * lib/protocols.c (gftp_set_proxy_config) - allow a NULL proxy_config | |
3410 to be passed | |
3411 | |
3412 * src/gtk/misc-gtk.c (update_window) - don't show the hostname if we | |
3413 are connected via the local protocol | |
3414 | |
3415 * src/gtk/transfer.c (create_transfer) - check to see if this protocol | |
3416 is always connected | |
3417 | |
65 | 3418 2002-11-25 Brian Masney <masneyb@gftp.org> |
3419 * lib/misc.c (ssh_start_login_sequence) - fixes for when the initial | |
3420 SSH banner is bigger than 200 characters | |
3421 | |
3422 * lib/local.c (local_connect) - set request->hostname to local | |
3423 filesystem | |
3424 | |
3425 * lib/protocols.c (gftp_parse_url) - don't include 2 slashes for | |
3426 the directory when parsing a local URL | |
3427 | |
3428 * src/gtk/chmod_dialog.c (chmod_dialog) - allow multiple files to be | |
3429 selected | |
3430 | |
3431 * src/gtk/dnd.c - small fixes | |
3432 | |
64 | 3433 2002-11-23 Brian Masney <masneyb@gftp.org> |
3434 * lib/sshv2.c - added more error checking so that the user won't get | |
3435 disconnected if they enter files or directories that don't exist | |
3436 | |
3437 2002-11-23 Brian Masney <masneyb@gftp.org> | |
63 | 3438 * lib/local.c lib/rfc959.c lib/rfc2068.c lib/ssh.c lib/sshv2.c |
3439 lib/gftp.h - added swap_socks function to gftp_request structure | |
3440 | |
3441 * lib/misc.c lib/protocols.c - move swap_socks() from misc.c to | |
3442 protocols.c (renamed to gftp_swap_socks) | |
3443 | |
3444 * src/gtk/misc-gtk.c src/gtk/transfer.c - removed fix_display() | |
3445 | |
3446 * src/gtk/delete_dialog.c src/gtk/transfer.c - changed all occurances of | |
3447 swap_socks() to gftp_swap_socks() | |
3448 | |
3449 * src/gtk/gftp-gtk.c src/gtk/gftp-gtk.h - removed gftp_is_started | |
3450 variable | |
3451 | |
62 | 3452 2002-11-21 Brian Masney <masneyb@gftp.org> |
3453 * lib/local.c (local_put_file) - small fix | |
3454 | |
61 | 3455 2002-11-21 Brian Masney <masneyb@gftp.org> |
3456 * lib/misc.c lib/ssh.c lib/sshv2.c - improvements to the login | |
3457 sequence for SSH connections | |
3458 | |
3459 lib/sshv2.c - SSH transfers now works again | |
3460 | |
60 | 3461 2002-11-21 Brian Masney <masneyb@gftp.org> |
3462 * lib/protocols.c (gftp_get_next_line) - fixed several bugs | |
3463 | |
3464 * lib/cache.c - Don't do a cache lookup in gftp_new_cache_entry(). In | |
3465 gftp_find_cache_entry(), don't log an error to the user if we can't | |
3466 open up the cache file | |
3467 | |
3468 * lib/rfc959.c lib/rfc2068.c lib/protocols.c - small cache fixes | |
3469 | |
3470 * lib/cache.c lib/rfc2068.c lib/rfc959.c - pass full buffer size | |
3471 instead of buffer size - 1 to gftp_get_line | |
3472 | |
59 | 3473 2002-11-20 Brian Masney <masneyb@gftp.org> |
3474 * lib/config_file.c - don't check buf[-1] for blank newlines in | |
3475 gftp_read_config_file() and gftp_read_bookmarks_file() | |
3476 | |
3477 * lib/misc.c (string_hash_function) - Fixes if the string was less | |
3478 than 2 characters | |
3479 | |
3480 * src/gtk/transfer.c - unlock mutex before we destroy (for POSIX | |
3481 compliance) | |
3482 | |
3483 All 3 of these fixes are from Peter Osterlund <petero2@telia.com> | |
3484 | |
58 | 3485 2002-11-20 Brian Masney <masneyb@gftp.org> |
3486 * lib/protocols.c lib/gftp.h - added gftp_get_line(), gftp_read(), | |
3487 gftp_write(), gftp_writefmt(), and gftp_set_sockblocking() functions. | |
3488 Added struct_gftp_getline_buffer for gftp_get_line function() | |
3489 | |
3490 * lib/cache.c lib/gftp.h lib/local.c lib/misc.c lib/protocols.c | |
3491 lib/rfc2068.c lib/rfc959.c lib/ssh.c lib/sshv2.c - *_get_file() returns | |
3492 off_t instead of long. *_{get,put}_next_file_chunk returns ssize_t | |
3493 instead of size_t. Added *_set_config_options function to gftp_request | |
3494 structure and protocol files. Use the new network functions | |
3495 documented above. Convert usage of ANSI C IO (FILE *) to standard BSD | |
3496 sockets so that I can use timeouts properly with select | |
3497 | |
3498 * lib/misc.c (ssh_start_login_sequence) - use gftp_set_sockblock(), | |
3499 gftp_read() and gftp_write() functions | |
3500 | |
3501 * lib/protocols.c - move some protocol specific code to the protocol | |
3502 specific files | |
3503 | |
3504 * lib/local.c - log succesful messages to gftp_logging_misc instead | |
3505 of gftp_logging_error | |
3506 | |
3507 * lib/cache.c - log some more error conditions to the user | |
3508 | |
3509 * lib/rfc959.c - added rfc959_getcwd(). In, | |
3510 rfc959_accept_active_connection(), set set socket to blocking mode | |
3511 before calling accept() | |
3512 | |
3513 * src/text/gftk-text.c - If we get no files in gftp_text_ls(), | |
3514 return instead of segfaulting | |
3515 | |
3516 * src/gtk/gftp-gtk.c - expand the port field in the toolbar to be 45 | |
3517 pixels wide | |
3518 | |
3519 * src/text/gftp-text.c src/gtk/misc-gtk.c src/gtk/transfer.c | |
3520 src/gtk/view_dialog.c - changes for conversion of request->{sock,data} | |
3521 from ANSI C IO (FILE *) to standard BSD sockets | |
3522 | |
57 | 3523 2002-11-11 Brian Masney <masneyb@gftp.org> |
3524 * configure.in - compile GTK+ 2.0 port by default | |
3525 | |
56 | 3526 2002-11-11 Brian Masney <masneyb@gftp.org> |
3527 * src/gtk/dnd.c - fixes to DnD code | |
3528 | |
3529 * src/gtk/gftp-gtk.[ch] - added main_thread_id variable | |
3530 | |
3531 * src/gtk/misc-gtk.c (ftp_log) - don't check the user_data to see if | |
3532 we're in a child thread, instead compare the value of pthread_self() | |
3533 with main_thread_id | |
3534 | |
3535 * src/gtk/chmod_dialog.c src/gtk/delete_dialog.c src/gtk/menu-items.c | |
3536 src/gtk/mkdir_dialog.c src/gtk/rename_dialog.c src/gtk/transfer.c - | |
3537 don't set user_data to 0x1 if we're in a child thread | |
3538 | |
3539 * lib/gftp.h src/gtk/misc-gtk.c src/text/gftp-text.c - make | |
3540 r_getservbyname() available even if HAVE_GERADDRINFO is defined | |
3541 | |
3542 * lib/misc.c (make_ssh_exec_args) - if port is zero, lookup the default | |
3543 port for the ssh service | |
3544 | |
3545 * lib/protocols.c (gftp_connect_server) - if the port is zero, store | |
3546 the default port for that protocol there | |
3547 | |
3548 * src/gtk/transfer.c - added function update_window_transfer_bytes(). | |
3549 Be able to update the directory download progress in window1 now | |
3550 | |
3551 * lib/config_file.c lib/misc.c lib/protocols.c lib/ssh.c lib/sshv2.c | |
3552 src/text/gftp-text.c - use g_strdup() instead of g_strconcat() where | |
3553 needed | |
3554 | |
54 | 3555 2002-11-11 Andras Timar <timar@gnome.hu> |
3556 * configure.in: added 'hu' to ALL_LINGUAS | |
3557 | |
51 | 3558 2002-11-6 Brian Masney <masneyb@gftp.org> |
3559 * src/gtk/gftp-gtk.c - connect to the select_row signal in the file | |
3560 listbox to grab the double click event | |
3561 | |
50 | 3562 2002-11-5 Brian Masney <masneyb@gftp.org> |
3563 * src/gtk/dnd.c - some code cleanups. Also, add the file transfer with | |
3564 the function add_file_transfer() | |
3565 | |
3566 * src/gtk/misc-gtk.c - remove several unneeded calls to fix_display() | |
3567 | |
3568 * src/gtk/gftp-gtk.c (list_dblclick) - add a note about the double | |
3569 click stuff not working properly | |
3570 | |
49 | 3571 2002-11-5 Brian Masney <masneyb@gftp.org> |
3572 * src/gtk/transfer.c - use stock icons in GTK+ 2.0 port | |
3573 | |
3574 2002-11-5 Brian Masney <masneyb@gftp.org> | |
3575 * lib/*.c src/gtk/*.c - removed function declarations for the static | |
3576 functions from the top of the file. I had to rearrange the order of a | |
3577 bunch of functions to avoid compiler warnings | |
3578 | |
3579 * lib/gftp.h - include sys/sysmacros.h. If major() and minor() isn't | |
3580 defined, give a compiler warning and define our own | |
3581 | |
3582 * lib/local.c (local_get_next_file) - if this file is a device, store | |
3583 the major/minor number in the file size | |
3584 | |
3585 * src/gtk/misc-gtk.c (add_file_listbox) - if this file is a device, | |
3586 use the major() and minor() macros to display the major and minor number | |
3587 | |
47 | 3588 2002-11-5 Brian Masney <masneyb@gftp.org> |
3589 * lib/cache.c lib/gftp.h - added second argument ignore_directory to | |
3590 gftp_delete_cache_entry | |
3591 | |
3592 * src/gtk/menu-items.c (disconnect) - when disconnecting from the | |
3593 remote site, clear all cache entries for that site | |
3594 | |
3595 * src/gtk/delete_dialog.c src/gtk/misc-gtk.c src/gtk/mkdir_dialog.c - | |
3596 pass a 0 as second argument to gftp_delete_cache_entry | |
3597 | |
46 | 3598 2002-10-31 Brian Masney <masneyb@gftp.org> |
3599 * lib/protocols.c (gftp_get_next_file) - don't use g_filename_to_utf8. | |
3600 If g_locale_to_utf8 fails, print out a warning to the user on the | |
3601 console | |
3602 | |
45 | 3603 2002-10-31 Brian Masney <masneyb@gftp.org> |
3604 * src/gtk/*.[ch] - don't check for gtk+ version based on the minor | |
3605 version. May cause problems later on. | |
3606 | |
3607 * lib/protocols.c src/gtk/bookmarks.c src/gtk/misc-gtk.c - use UTF8 | |
3608 functions for user data when using glib 2.0 | |
3609 | |
44 | 3610 2002-10-30 Brian Masney <masneyb@gftp.org> |
3611 * src/gtk/gftp-gtk.c (CreateMenus) - no longer use depreciated | |
3612 _gtk_accel_group_attach in GTK+ 2.0 port. Instead use | |
3613 gtk_window_add_accel_group for both GTK+ ports | |
3614 (from Nam SungHyun <namsh@kldp.org>) | |
3615 | |
43 | 3616 2002-10-30 Brian Masney <masneyb@gftp.org> |
3617 * src/gtk/transfer.c (getdir_thread) - set use_jmp_environment to 0 instead of 1 | |
3618 | |
3619 * src/gtk/misc-gtk.c (signal_handler) - if use_jmp_environment is 0, | |
3620 and SIGINT is received, terminate the program | |
3621 | |
42 | 3622 2002-10-29 Brian Masney <masneyb@gftp.org> |
3623 * src/gtk/chmod_dialog.c src/gtk/delete_dialog.c src/gtk/gftp-gtk.c | |
3624 src/gtk/gftp-gtk.h src/gtk/menu-items.c src/gtk/misc-gtk.c | |
3625 src/gtk/mkdir_dialog.c src/gtk/rename_dialog.c src/gtk/transfer.c - | |
3626 improved and simplified signal handling code | |
3627 | |
41 | 3628 2002-10-29 Brian Masney <masneyb@gftp.org> |
3629 * lib/config_file.c lib/gftp.h lib/options.h src/gtk/menu-items.c | |
3630 src/gtk/view_dialog.c - removed tmp_directory variable. Instead use | |
3631 g_get_tmp_dir () | |
3632 | |
3633 * lib/gftp.h (struct gftp_request) - added int cancel : 1 | |
3634 | |
3635 * lib/misc.c lib/protocols.c lib/rfc2068.c lib/rfc959.c lib/ssh.c | |
3636 lib/sshv2.c - check for interrupted signal calls | |
3637 | |
3638 * lib/protocols.c - added gftp_fgets() and gftp_fwrite() functions | |
3639 | |
3640 * src/gtk/delete_dialog.c src/gtk/misc-gtk.c src/gtk/transfer.c - use | |
3641 g_main_context_iteration in GTK+ 2.0 port | |
3642 | |
3643 * src/gtk/misc-gtk.c - use g_object_unref instead of gdk_drawable_unref | |
3644 in GTK+ 2.0 port | |
3645 | |
40 | 3646 2002-10-17 Brian Masney <masneyb@gftp.org> |
3647 * lib/protocols.c - add gftp_abort_transfer function. Also, in | |
3648 gftp_transfer_file, when we do a gftp_put_file, if that fails, | |
3649 try to abort the transfer. | |
3650 | |
3651 * lib/rfc959.c - add rfc959_abort_transfer function | |
3652 | |
3653 * lib/rfc2068.c, lib/local.c - point abort_transfer pointer to | |
3654 rfc2068_end_transfer and local_end_transfer respectively | |
3655 | |
3656 * lib/ssh.c, lib/sshv2.c - add FIXME to implement abort function | |
3657 | |
3658 * src/gtk/transfer.c - when we stop a transfer, try to abort it | |
3659 first. If that fails, disconnect from the site completely | |
3660 | |
39 | 3661 2002-10-15 Brian Masney <masneyb@gftp.org> |
3662 * lib/config_file.c - enable combo in GTK port for Proxy server type | |
3663 | |
3664 * lib/misc.c (gftp_sort_filelist) - make sure prev pointer to first | |
3665 entry is NULL | |
3666 | |
3667 * lib/protocols.c (copy_token) - when setting the end position of | |
3668 the token to \0, after we're done set it back to the origional position | |
3669 | |
3670 * src/gtk/gftp-gtk.c, src/gtk/menu-items.c - changed g_list_first (list) | |
3671 to just list | |
3672 | |
37 | 3673 2002-10-13 Brian Masney <masneyb@gftp.org> |
3674 * lib/gftp.h (struct gftp_config_vars_tag) - remove shown flag and | |
3675 added ports_shown flag. Added GFTP_PORTS_TEXT, GFTP_PORTS_GTK, | |
3676 and GFTP_PORTS_ALL flags | |
3677 | |
3678 * lib/config_file.c - update to use new fields. | |
3679 | |
3680 * lib/config_file.c, lib/options.h, lib/gftp.h - added new global | |
3681 options: local_sortcol, local_sortasds, remote_sortcol, remote_sortasds | |
3682 | |
3683 * src/gtk/gftp-gtk.c - sort based on parameters above. Also, if a url | |
3684 was given on the command line, don't connect to it until the local side | |
3685 has been setup | |
3686 | |
3687 * src/gtk/options_dialog.c - only show variables that have GFTP_PORT_GTK | |
3688 set | |
3689 | |
3690 * src/text/gftp-text.c - add help screen for set command. Added command | |
3691 clear cache. Sort the filelist based on the configuration options. | |
3692 | |
3693 * configure.in - update to version 2.0.14 | |
3694 | |
3695 * cvsclean - clean up the Makefile.am file better | |
3696 | |
36 | 3697 2002-10-07 Brian Masney <masneyb@gftp.org> |
3698 * lib/local.c - fixed file uploads | |
3699 | |
3700 * lib/rfc959.c - fixed crash if you uploaded/downloaded a file that | |
3701 you didn't have permission to | |
3702 | |
3703 * src/gtk/transfer.c - display fixes for hostname | |
3704 | |
3705 * autogen.sh - pass -c to automake | |
3706 | |
34 | 3707 2002-10-07 Brian Masney <masneyb@gftp.org> |
3708 * docs/sample.gftp/gftp-mini-logo.xpm - added mini gFTP logo file | |
3709 from Debian. This can be used as a menu icon. | |
3710 | |
33 | 3711 2002-10-06 Brian Masney <masneyb@gftp.org> |
3712 * src/gtk/delete_dialog.c, src/gtk/gftp-gtk.c, src/gtk/misc-gtk.c, | |
3713 src/gtk/transfer.c - Fixed dead-locks with GDK_THREADS_{ENTER,LEAVE} | |
3714 | |
3715 * configure.in, src/gtk/Makefile.am - Use GTHREAD_LIBS | |
3716 | |
3717 2002-10-03 Brian Masney <masneyb@gftp.org> | |
3718 * Makefile.am - remove intl and m4 directory from subdirs. autogen.sh | |
3719 will automagically add these for me. | |
3720 | |
3721 * autogen.sh - remove check for libtool | |
3722 | |
3723 * configure.in - link in gthread | |
3724 | |
3725 * cvsclean - added this script | |
3726 | |
852 | 3727 * *.[ch] - added $Id: ChangeLog,v 1.501 2006/11/17 02:24:03 masneyb Exp $ tags |
33 | 3728 |
3729 * debian/* - updated files from Debian maintainer | |
3730 | |
32 | 3731 2002-10-03 Brian Masney <masneyb@gftp.org> |
3732 * src/gtk/gftp-gtk.c - call g_thread_init (NULL) | |
3733 | |
3734 * src/gtk/delete_dialog.c, src/gtk/misc-gtk.c, src/gtk/transfer.c - | |
3735 call gdk_threads_enter() and gdk_threads_leave() | |
3736 | |
28 | 3737 2002-09-24 Brian Masney <masneyb@gftp.org> |
3738 * configure.in - take [external] off of AM_GNU_GETTEXT | |
3739 | |
27 | 3740 2002-09-24 Brian Masney <masneyb@gftp.org> |
3741 * intl/ - remove this directory | |
3742 | |
26 | 3743 2002-09-24 gettextize <bug-gnu-gettext@gnu.org> |
3744 * Makefile.am (SUBDIRS): Add intl, | |
3745 (ACLOCAL_AMFLAGS): New variable. | |
3746 (EXTRA_DIST): Add config.rpath mkinstalldirs. | |
3747 * configure.in (AC_OUTPUT): Add intl/Makefile, | |
3748 | |
25 | 3749 2002-09-24 Brian Masney <masneyb@gftp.org> |
26 | 3750 * lib/config_file.c - separated saving of bookmarks from |
3751 gftp_write_config_file() to gftp_write_bookmarks_file(). Bookmarks will | |
3752 no longer be rewritten to disk every time gFTP exits | |
3753 | |
3754 * src/gtk/bookmarks.c - call gftp_write_bookmarks_file() instead of | |
3755 gftp_write_config_file() when altering a bookmark | |
3756 | |
3757 * configure.in - Fixed problem with the text port being compiled | |
3758 against glib 1.2 if we wanted it to be compiled against glib 2.0 | |
3759 instead | |
3760 | |
3761 * autogen.sh - add this build script | |
3762 | |
3763 2002-09-24 Brian Masney <masneyb@gftp.org> | |
25 | 3764 * Remove intl/ directory from CVS |
3765 | |
23 | 3766 2002-09-18 Brian Masney <masneyb@gftp.org> |
3767 * Updated French translation (from Damien Mascr? | |
3768 <damienmascre@free.fr>) | |
3769 | |
3770 * Updated Japanese translation (from Ryoichi INAGAKI | |
3771 <inagaki@ryo1.net>) | |
3772 | |
3773 2002-09-17 Brian Masney <masneyb@gftp.org> | |
3774 * src/gtk/bookmarks.c - Fixed crash that would occur if you saved the | |
26 | 3775 changes two times in the bookmark editor. Also, fixed several memory |
3776 leaks | |
23 | 3777 |
22 | 3778 2002-09-16 Brian Masney <masneyb@gftp.org> |
3779 * po/de.po - Updated German translation (from Matthias Haase | |
3780 <matthias_haase@bennewitz.com>) | |
3781 | |
3782 * po/ru.po - Updated Russian translation (from Vitaly Lipatov | |
3783 <LAV@VL3143.spb.edu>) | |
3784 | |
21 | 3785 2002-09-16 Brian Masney <masneyb@gftp.org> |
3786 * src/gtk/gftp-gtk.c, src/gtk/menu-items.c, src/gtk/misc-gtk.c - | |
3787 Fixed compile errors when compiling against GTK+ 1.2 | |
3788 | |
3789 * src/gtk/misc-gtk.c (MakeEditDialog, MakeYesNoDialog) - fixed to work | |
3790 with GTK+ 1.2 | |
3791 | |
19 | 3792 2002-09-15 Brian Masney <masneyb@gftp.org> |
3793 * lib/gftp.h (struct gftp_transfer) - changed the type of numfiles and | |
3794 numdirs from unsigned long to long. This must be a signed field. This | |
3795 is a bug I introduced a few days ago. | |
3796 | |
3797 * lib/local.c (local_put_file) - remove the + off of the ab mode to | |
3798 fdopen. This is also a bug I introduced a few days ago. | |
3799 | |
3800 * src/gtk/transfer.c (gftp_gtk_calc_kbs) - make sure that the variable | |
3801 difftime isn't a negative number when computing the KB/s | |
3802 | |
3803 * src/gtk/menu-items.c (save_directory_listing) - remove casts to | |
3804 GTK_OBJECT for the str variable | |
3805 | |
3806 * src/gtk/gftp-gtk.c - use GTK_STOCK_* icons in place of left.xpm, | |
3807 right.xpm, up.xpm, down.xpm and stop.xpm in GTK+ 2.0 port | |
3808 | |
3809 * src/gtk/bookmarks.c - show GTK_STOCK_* icons on the popup menu | |
3810 | |
3811 * src/gtk/bookmarks.c, src/gtk/chmod_dialog.c, src/gtk/menu-items.c, | |
3812 src/gtk/misc-gtk.c, src/gtk/options_dialog.c and | |
3813 src/gtk/view_dialog.c - use gtk_dialog_new_with_buttons in GTK+ 2.0 | |
3814 port to create the dialog. Also, associate gFTP icon with this dialog | |
3815 | |
3816 * src/gtk/misc-gtk.c - changed the interface of MakeEditDialog and | |
3817 MakeYesNoDialog. In the GTK+ 2.0 port, I now use stock icons in the | |
3818 dialog buttons. | |
3819 | |
3820 2002-09-11 Marius Andreiana <mandreiana@yahoo.com> | |
18
6b2e606554aa
2002-09-11 Marius Andreiana <mandreiana@yahoo.com>
mandreiana
parents:
17
diff
changeset
|
3821 |
6b2e606554aa
2002-09-11 Marius Andreiana <mandreiana@yahoo.com>
mandreiana
parents:
17
diff
changeset
|
3822 * configure.in: added 'ro' to ALL_LINGUAS |
6b2e606554aa
2002-09-11 Marius Andreiana <mandreiana@yahoo.com>
mandreiana
parents:
17
diff
changeset
|
3823 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3824 2002-09-08 Brian Masney <masneyb@gftp.org> |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3825 * lib/misc.c - added gftp_sort_filelist function |
1 | 3826 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3827 * src/gtk/gftp-gtk.c (sortrows) - call gftp_sort_filelist now |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3828 to do the sorting |
1 | 3829 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3830 * config.sub, install-sh, missing, mkinstalldirs - new versions from |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3831 automake 1.4 |
1 | 3832 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3833 * src/text/gftp-text.c, lib/protocols.c - more large file support |
1 | 3834 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3835 2002-09-04 Brian Masney <masneyb@gftp.org> |
19 | 3836 * lib/rfc959.c - FXP fixes (from Tobias Gruetzmacher |
3837 <tobias@portfolio16.de>) | |
1 | 3838 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3839 2002-09-03 Brian Masney <masneyb@gftp.org> |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3840 * lib/rfc2068.c - HTTP fixes when running under Solaris. Read from |
19 | 3841 request->sockfd and write to request->sockfd_write (Solaris doesn't |
3842 like it when you read/write to the same FILE structure) | |
1 | 3843 |
19 | 3844 * lib/local.c - encode major/minor numbers for a device in the file |
3845 size. This is probably still busted for other platforms | |
1 | 3846 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3847 * lib/rfc2068.c, lib/rfc959.c, lib/ssh.c, lib/sshv2.c - Sanity |
19 | 3848 checking on the fdopen() calls. Also make sure that all of them have a |
3849 + in their open mode. Doesn't affect UNIX, but it does affect Windows | |
1 | 3850 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3851 * src/gtk/menu-items.c, src/gtk/gftp-gtk.c, src/gtk/misc-gtk.c - added |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3852 function save_directory_listing. It's in the Local and Remote menus |
1 | 3853 |
19 | 3854 * src/gtk/view_dialog.c - changed log message slightly. The new string |
3855 should already be in the po files translated | |
1 | 3856 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3857 2002-08-30 Brian Masney <masneyb@gftp.org> |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3858 * lib/misc.c - don't allow passing a 0 to log10 |
1 | 3859 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3860 2002-08-30 Brian Masney <masneyb@gftp.org> |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3861 * src/gtk/gftp-gtk.c - Use stockitem for menu items in gtk+ 2.0. |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3862 Use _gtk_accel_group_attach for gtk 2.0 (removes FIXME). Only call |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3863 bind_textdomain_codeset if we're in gtk 2.0 |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3864 (all from Sung-Hyun Nam <namsh@kldp.org>) |
1 | 3865 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3866 2002-08-29 Sung-Hyun Nam <namsh@kldp.org> |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3867 * po/ko.po - language team change |
1 | 3868 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3869 2002-08-29 Sung-Hyun Nam <namsh@kldp.org> |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3870 * po/ko.po - Updated Korean translation |
1 | 3871 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3872 2002-08-29 Yanko Kaneti <yaneti@declera.com> |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3873 * po/bg.po - Updated Bulgarian translation |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3874 |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3875 2002-08-23 Brian Masney <masneyb@gftp.org> |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3876 * configure.in - small build fixes |
1 | 3877 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3878 2002-08-23 Brian Masney <masneyb@gftp.org> |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3879 * lib/rfc959.c - put anonymous ftp checks in here instead of scattered |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3880 elsewhere |
1 | 3881 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3882 * src/gtk/gftp-gtk.c - call bind_textdomain_codeset in gtk+ port. |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3883 Removed anonymous FTP stuff |
1 | 3884 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3885 * lib/local.c - open files with O_LARGEFILE if _LARGEFILE_SOURCE |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3886 is defined |
1 | 3887 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3888 * lib/protocols.c - removed anonymous FTP stuff |
1 | 3889 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3890 * lib/rfc2068.c - don't check for anonymous username |
1 | 3891 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3892 * src/gtk/misc-gtk.c - translation fixes for menus |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3893 (from Owen Taylor <otaylor@redhat.com>) |
1 | 3894 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3895 2002-08-23 <baddog@cvs.gnome.org> |
19 | 3896 * configure.in - (ALL_LINGUAS): zh_CN.GB2312 -> zh_CN, zh_TW.Big5 -> |
3897 zh_TW | |
1 | 3898 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3899 2002-08-23 Abel Cheung <maddog@linux.org.hk> |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3900 * zh_TW.Big5.po renamed to zh_TW.po |
1 | 3901 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3902 * zh_CN.GB2312.po renamed to zh_CN.po |
1 | 3903 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3904 * zh_TW.Big5.gmo - Removed. |
1 | 3905 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3906 * Makefile.in.in, gftp.pot - Remove generated file. |
1 | 3907 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3908 2002-08-23 <baddog@cvs.gnome.org> |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3909 * po/.cvsignore - Shhhhhh |
1 | 3910 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3911 2002-08-14 <cneumair@cvs.gnome.org> |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3912 * po/de.po - Fixed German translation (charset, header) |
1 | 3913 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3914 2002-08-05 Brian Masney <masneyb@gftp.org> |
19 | 3915 * lib/protocols.c - When we connect to a remote server, don't change |
3916 the hostname to the PTR record of the hostname | |
1 | 3917 |
19 | 3918 * src/gtk/transfer.c - Fixed crash if you was already transfering a |
3919 file, and you started another transfer, and if you hit cancel at the | |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3920 Overwrite/Resume/Skip dialog |
1 | 3921 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3922 * docs/sample.gftp/gftprc - put the ext= lines back in the config file |
1 | 3923 |
19 | 3924 * po/es.po - Spanish updates (from Gustavo D. Vranjes |
3925 <gvranjes@softhome.net>) | |
1 | 3926 |
19 | 3927 * po/nl.po - Dutch updates (from Myckel Habets |
3928 <myckelhabets@netscape.net>) | |
1 | 3929 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3930 2002-07-19 Brian Masney <masneyb@gftp.org> |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
3931 * gFTP 2.0.13 released |
1 | 3932 |