Mercurial > gftp.yaz
annotate ChangeLog @ 358:28a50fb598ed
2003-1-6 Brian Masney <masneyb@gftp.org>
* lib/gftp.h lib/protocols.c lib/rfc959.c - added MVS directory parsing
support. Also, in the VMS and EPLF directory formats, update the
default file/directory perms to be -rw-r--r-- and drwx-r-xr-x
respectively.
author | masneyb |
---|---|
date | Wed, 07 Jan 2004 11:45:01 +0000 |
parents | 7cb3327f96f7 |
children | 52c5ee1fa455 |
rev | line source |
---|---|
358 | 1 2003-1-6 Brian Masney <masneyb@gftp.org> |
2 * lib/gftp.h lib/protocols.c lib/rfc959.c - added MVS directory parsing | |
3 support. Also, in the VMS and EPLF directory formats, update the | |
4 default file/directory perms to be -rw-r--r-- and drwx-r-xr-x | |
5 respectively. | |
6 | |
354 | 7 2003-1-5 Brian Masney <masneyb@gftp.org> |
356 | 8 * lib/gftp.h lib/misc.c src/gtk/gftpui.c - added GFTP_URL_USAGE |
9 that is the sytax for a valid URL. | |
10 | |
11 * lib/protocols.c (gftp_set_password) - allow the password to be NULL | |
12 | |
13 * src/gtk/gtkui.c src/text/textui.c src/uicommon/gftpui.h - added | |
14 gftpui_prompt_username() and gftpui_promot_password() to each UI | |
15 | |
16 * src/text/gftp-text.c (gftp_text_ask_question) - don't display a | |
17 : at the end of the question here. | |
18 | |
19 * src/text/gftp-text.h - added declaration of gftp_text_ask_question() | |
20 | |
21 * src/uicommon/gftpui.c - added gftpui_common_cmd_open(). This still | |
22 needs a little bit more work done to it. | |
23 | |
355 | 24 * src/gtk/gftp-gtk.h src/gtk/gtkui.c - when spawning a thread, |
25 make sure that the GUI will be updated properly as soon as the thread | |
26 is finished. | |
27 | |
28 * src/uicommon/gftpuicallbacks.c src/uicommon/gftpui.h - added | |
29 gftpui_common_run_ls() | |
30 | |
31 * src/uicommon/gftpui.c (gftpui_common_cmd_ls) | |
32 src/gtk/transfer.c (ftp_list_files) - converted these functions | |
33 over to use gftpui_common_run_ls() | |
34 | |
354 | 35 * lib/gftp.h src/gtk/misc-gtk.c src/text/gftp-text.c - added logging |
36 level type gftp_logging_misc_nolog. If a message is logged with this | |
37 level, it will be displayed to the screen but, it will not be logged | |
38 to disk. | |
39 | |
40 * src/uicommon/gftpui.c - log the directory listings with the log level | |
41 gftp_logging_misc_nolog | |
42 | |
43 * src/gtk/gtkui.c (gftpui_generic_thread) - fixed segfault. Pass | |
44 cdata structure instead of wdata. | |
45 | |
348 | 46 2003-1-4 Brian Masney <masneyb@gftp.org> |
352 | 47 * src/text/Makefile.am src/gtk/Makefile.am - added @LIBINTL@ to LDADD |
48 line of Makefile.am | |
49 | |
351 | 50 * configure.in - added src/uicommon/Makefile to the list of files to |
51 be generated. | |
52 | |
53 * configure.in lib/gftp.h - check for sys/mkdev.h header file. If it is | |
54 found, include it. Solaris needs this for major() and minor() | |
55 | |
350 | 56 * src/uicommon/gftpui.c src/uicommon/gftpui.h |
57 src/uicommon/gftpuicallbacks.c - when switching between ascii/binary, | |
58 set the option on a global basis. Converted chdir, chmod, delete, | |
59 rename, rmdir commands over to using the new command run format so that | |
60 it will work in the different UIs. Added site command to the command | |
61 line. | |
62 | |
349 | 63 * lib/misc.c (gftp_parse_command_line) - unified this function so that |
64 it is consistent for all arguments. | |
65 | |
66 * lib/protocols.c (gftp_file_destroy) - fixed memory leak (utf8_file | |
67 was not being freed) | |
68 | |
348 | 69 * docs/gftp-faq.sgml - updated link to the (old) threaded version of |
70 XFree86 libraries | |
71 | |
343 | 72 2003-12-29 Brian Masney <masneyb@gftp.org> |
73 * po/POTFILES.in - added the new uicommon files to this file | |
74 | |
341 | 75 2003-12-28 Brian Masney <masneyb@gftp.org> |
342 | 76 * src/gtk/gtkui.c src/text/textui.c - necessary UI related files for |
77 each port of gftp. The uicommon code will call these functions. | |
78 | |
79 2003-12-28 Brian Masney <masneyb@gftp.org> | |
341 | 80 **** NOTE: this commit breaks a lot of functionality in gftp. I **** |
81 **** still have more work to do on this. Please don't email me **** | |
82 **** saying that the CVS code is broken. **** | |
83 | |
84 * lib/bookmark.c lib/gftp.h lib/local.c lib/options.h lib/rfc2068.c | |
85 lib/rfc959.c lib/sshv2.c - moved the use_threads option from the | |
86 request structure over to the protocol declaration in options.h. | |
87 | |
88 * lib/options.h src/gtk/gftp-gtk.c - added cmd_in_gui option. When this | |
89 option is enabled, a new toolbar will be shown in the GTK+ port that | |
90 will allow you to control the GUI by entering manual commands. | |
91 | |
92 * src/Makefile.am - added uicommon directory | |
93 | |
94 * src/gtk/Makefile.am src/text/Makefile.am - link in the uicommon | |
95 library. | |
96 | |
97 * src/uicommon/* src/text/gftp-text.c - moved most of the functionality | |
98 of the text port over to the uicommon directory. Made this code a little | |
99 more generic so that the GTK+ port can have a text interface | |
100 associated with it. | |
101 | |
102 * src/gtk/gtkui.c src/gtk/gftp-gtk.c src/gtk/mkdir_dialog.c | |
103 src/gtk/rename_dialog.c src/gtk/menu-items.c src/gtk/misc-gtk.c - | |
104 started to clean up the callback functions and make them more tightly | |
105 integrated with the uicommon code. | |
106 | |
107 * src/gtk/bookmarks.c src/gtk/chmod_dialog.c src/gtk/delete_dialog.c | |
108 src/gtk/gftp-gtk.c src/gtk/menu-items.c src/gtk/misc-gtk.c | |
109 src/gtk/transfer.c - | |
110 s/refresh/gftpui_refresh/g | |
111 s/jmp_environment/gftpui_common_jmp_environment/g | |
112 s/request->use_threads/gftpui_common_use_threads (request)/g | |
113 | |
114 * src/gtk/options_dialog.c (apply_changes) - whenever the options are | |
115 saved, check to see if the command entry needs to be shown or hidden. | |
116 | |
336 | 117 2003-12-10 Brian Masney <masneyb@gftp.org> |
339 | 118 * lib/rfc959.c - fix IPv6 compile problem when IPv6 support is not |
119 available on the system. | |
120 | |
338 | 121 * lib/gftp.h src/text/gftp-text.h src/gtk/gftp-gtk.h - added |
122 GFTP_LOG_FUNCTION_ATTRIBUTES that is only defined when compiled | |
123 against gcc. When this is set, it will specify the function is | |
124 printf() type function so that extra checks can be done by the | |
125 compiler. This is to fix problems with older Sun compilers. | |
126 | |
337 | 127 * src/gtk/gftp-gtk.c src/gtk/menu-items.c src/gtk/misc-gtk.c - check |
128 for a timeout from the remote server when refreshing the directory | |
129 listing and changing directores. If it did, reconnect to the server. | |
130 | |
336 | 131 * lib/rfc2068.c - set the default file attributes to -rw-r--r-- for |
132 all files. | |
133 | |
328 | 134 2003-12-7 Brian Masney <masneyb@gftp.org> |
332 | 135 * lib/options.h lib/config_file.c - removed scramble_passwords |
136 option. Instead, make this the default action all the time. This | |
137 is to avoid having too many unnecessary options. Also put a note | |
138 at the top of the bookmarks file stating the passwords are being | |
139 scrambled. | |
140 | |
330 | 141 * lib/config_file.c lib/gftp.h lib/misc.c lib/options.h - added |
142 scramble passwords option. This patch is mostly from Aurelien Jarno | |
143 <lists@aurel32.net>, but it was modified by me quite a bit. This is | |
144 not safe, and can be broken. That is why it's labeled scrambled | |
145 passwords instead of encrypt passwords. | |
146 | |
147 * acinclude.m4 - fix to AC_INTL_PRINTF | |
148 | |
329 | 149 * src/gtk/dnd.c (openurl_get_drag_data) - if we are connected to a |
150 remote site, disconnect before parsing the URL. This fixes a bug where | |
151 the directory was not being refreshed properly (from Aurelien Jarno | |
152 <lists@aurel32.net>) | |
153 | |
328 | 154 * configure.in acinclude.m4 lib/misc.c - added AC_INTL_PRINTF macro. |
155 If the printf family of functions supports %'ld, then HAVE_INTL_PRINTF | |
156 will be defined. The appropriate version of insert_commas() can be | |
157 used. | |
158 | |
325 | 159 2003-12-4 Brian Masney <masneyb@gftp.org> |
326 | 160 * src/gftp.in - check for the bin_dir for the binary location |
161 | |
325 | 162 * lib/cache.c lib/misc.c lib/protocols.c lib/rfc2068.c lib/rfc959.c |
163 lib/sshv2.c lib/sslcommon.c src/text/gftp-text.c src/gtk/chmod_dialog.c | |
164 src/gtk/gftp-gtk.c src/gtk/menu-items.c src/gtk/misc-gtk.c | |
165 src/gtk/mkdir_dialog.c src/gtk/rename_dialog.c src/gtk/transfer.c - | |
166 when calling gftp_lookup_global_option() or | |
167 gftp_lookup_request_option(), if the value is an integer, declare | |
168 the variable type to be intptr_t. This fixes a bug on 64bit platforms | |
169 (from Gwenole Beauchesne <gbeauchesne@mandrakesoft.com>) | |
170 | |
171 * lib/config_file.c (gftp_config_file_read_float) - 64bit fixup | |
172 | |
173 * configure.in - increment version to 2.0.17pre0. Undefine _GNU_SOURCE. | |
174 Check for stdint.h. | |
175 | |
176 * lib/gftp.h - include stdint.h if it is found on the system. | |
177 | |
178 * src/gtk/gftp-gtk.c (CreateToolbar) - on startup, have the host edit | |
179 box grab the keyboard focus | |
180 | |
320 | 181 2003-11-30 Brian Masney <masneyb@gftp.org> |
321 | 182 * lib/sshv2.c - cleaned up some of the code. Added a temporary fix for |
183 an upload crash that is happening on FreeBSD. | |
184 | |
320 | 185 * src/gtk/transfer.c - shows status information in title bar. (patch |
186 from Jamil Geor <jamil_geor@yahoo.co.nz>, cleaned up by me some) | |
187 | |
188 * lib/options.h - added show_trans_in_title option. | |
189 | |
190 2003-11-25 Brian Masney <masneyb@gftp.org> | |
191 * lib/misc.c (gftp_locale_init) - call bindtextdomain() so that the | |
192 directory is setup properly | |
193 | |
194 * lib/misc.c lib/gftp.h lib/config_file.c - move copyfile() to | |
195 config_file.c and declare it to be static. On the destination file, | |
196 set the flag O_EXCL | |
197 | |
319 | 198 2003-11-23 Brian Masney <masneyb@gftp.org> |
199 * src/gtk/transfer.c - when transfering a file, if the file being | |
200 transfered is greater in the destination than in the source, overwrite | |
201 it | |
202 | |
203 * lib/rfc959.c (rfc959_ipv6_data_connection_new) - when parsing the | |
204 output, parse the integers as unsigned. | |
205 | |
310 | 206 2003-11-9 Brian Masney <masneyb@gftp.org> |
313 | 207 * lib/options.h lib/protoocols.c - added enable_ipv6 option. |
208 | |
209 * lib/rfc959.c lib/protocols.c - if there is an error creating a socket, | |
210 log a more informative error about what kind of socket was attempted | |
211 to be created. | |
212 | |
312 | 213 * debian/* - updated Debian package files from |
214 Aurelien Jarno <aurel32@debian.org> | |
215 | |
319 | 216 2003-11-9 Brian Masney <masneyb@gftp.org> |
217 * Officially released 2.0.16 | |
218 | |
311 | 219 * debian/ChangeLog - incremented version to 2.0.16 |
220 | |
310 | 221 * docs/Makefile.am - clean up documentation in clean target |
222 | |
223 * docs/website/generate-gftp-website.pl docs/website/index.html.in - | |
224 copy README/FAQ that is automatically generated to the website. | |
225 | |
226 * docs/website/install.html docs/website/faq.html - no longer needed | |
227 anymore. | |
228 | |
229 * docs/website/index.html.in - updated the list of languages | |
230 | |
231 * ChangeLog-old - updated with brief list of changes since 2.0.15 | |
232 | |
309 | 233 2003-11-7 Brian Masney <masneyb@gftp.org> |
234 * lib/gftp.h lib/local.c lib/protocols.c lib/rfc2068.c lib/rfc959.c | |
235 lib/sshv2.c - added copy_param_options method to gftp_request | |
236 structure. When a gftp_request structure is copied, if a | |
237 copy_param_options method exists, this will be called so that the | |
238 local protocol data can be copied over. This is only used by the | |
239 FTP protocol at the moment to save the current state of Ascii or | |
240 Binary transfers. | |
241 | |
242 * src/gtk/transfer.c (transfer_done) - when a transfer is | |
243 completed, copy the local protocol options back to the main window | |
244 | |
245 * lib/rfc959.c (gftp_set_data_type) - check the return value of | |
246 rfc959_send_command() and if there is an error, return that | |
247 error. | |
248 | |
249 * configure.in - added 'hr' to ALL_LINGUAS | |
250 | |
307 | 251 2003-11-5 Brian Masney <masneyb@gftp.org> |
252 * TODO - updated | |
253 | |
254 * configure.in - updated version to 2.0.16. | |
255 | |
256 * configure.in docs/Makefile.am - Added check for the db2html | |
257 command (from gtk+ configure) | |
258 | |
310 | 259 * docs/gftp-faq.sgml - updated with more information |
307 | 260 |
261 * docs/website/index.html.in - updated list of translations | |
262 | |
263 * lib/misc.c (expand_path) - expand paths with double slashes | |
264 properly to support Novell directory listings. | |
265 (gftp_build_path) - better checking of paths that end in /. | |
266 (gftp_info) - show if _REENTRANT was defined when it was compiled. | |
267 | |
268 * README - removed, this is automatically generated now. | |
269 | |
305 | 270 2003-11-3 Brian Masney <masneyb@gftp.org> |
306 | 271 * docs/gftp-faq.sgml docs/Makefile.am - added initial SGML version |
272 of the gFTP FAQ. I used the same format as the GTK+ FAQ. | |
273 | |
305 | 274 * lib/gftp.h src/gtk/transfer.c src/gtk/delete_dialog.c - removed |
275 transfer_direction variable from gftp_transfer structure. Cleaned | |
276 up the code that did checks based on the value of this variable. | |
277 | |
278 * lib/rfc959.c (rfc959_syst) - added a check for Novell FTP servers | |
279 | |
280 * src/gtk/transfer.c (add_file_transfer) - check the value of the option | |
281 one_transfer and if that is disabled, do not append the file transfers. | |
282 (transfer_done) - refresh the destination window correctly after a | |
283 transfer is completed. | |
284 | |
303 | 285 2003-11-2 Brian Masney <masneyb@gftp.org> |
304 | 286 * lib/rfc2068.c (rfc2068_get_file) - if there is any data in the current |
287 read buffer, grab that data first. Otherwise, read from the socket. | |
288 | |
303 | 289 * lib/rfc2068.c (rfc2068_chunked_read) - more improvements to this |
290 function so that it will parse more chunked file transfers correctly. | |
291 | |
292 * lib/misc.c lib/gftp.h lib/rfc2068.c src/gtk/bookmarks.c | |
293 src/gtk/dnd.c - removed remove_double_slashes(). Call gftp_build_path() | |
294 to build the paths. This now allows Novell directory listings with | |
295 //server | |
296 | |
297 * lib/protocols.c src/gtk/transfer.c lib/gftp.h - added variable | |
298 conn_error_no_timeout to gftp_transfer structure. If this is enabled, | |
299 if the remote connection to the server timed out, don't wait and | |
300 immediately reconnect. So far, the only time this is used is when the | |
301 user was editing a file and it is to be uploaded back to the server. | |
302 | |
303 * src/gtk/gftp-gtk.h src/gtk/transfer.c - add_file_transfer() now | |
304 returns the struct gftp_transfer that was just added. | |
305 | |
306 * src/gtk/misc-gtk.c (update_directory_download_progress) - don't | |
307 make the window a popup and remove the window decorations | |
308 | |
309 * src/text/gftp-text.c - don't populate the transfer_direction variable | |
310 in struct gftp_transfer. This is only needed by the GTK+ port and will | |
311 hopefully be taken out soon. | |
312 | |
313 * lib/gftp.h - remove gftp_transfer_type enum. It wasn't used anymore. | |
314 | |
300 | 315 2003-10-27 Brian Masney <masneyb@gftp.org> |
301 | 316 * lib/rfc959.c (gftp_get_next_file_chunk) - fixed ASCII file corruption |
317 bug. | |
318 | |
300 | 319 * TODO - the top of this file now contains a list of items that needs |
320 to be completed before 2.0.16 can be released. If I missed something | |
321 important, please drop me an email. | |
322 | |
296 | 323 2003-10-26 Brian Masney <masneyb@gftp.org> |
299 | 324 * lib/rfc959.c (gftp_{get,put}_next_file_chunk) - check whether or not |
325 this is an ascii file transfer properly. | |
326 | |
298 | 327 * lib/rfc959.c - convert the PASS command from UTF8 using |
328 gftp_convert_from_utf8() | |
329 | |
297 | 330 * src/gtk/gftp-gtk.h src/gtk/transfer.c - (create_transfer, |
331 transfer_done) - added more checks whenever a transfer is created and | |
332 stopped to make sure we don't log into the same remote host twice. This | |
333 is mainly for DnD. | |
334 | |
296 | 335 * lib/misc.c (copy_request) - don't copy over the hostp pointer. This |
336 fixes a segfault in DnD | |
337 | |
338 * lib/sshv2.c - cleaned up the ssh2_params structure some | |
339 | |
340 * src/gtk/dnd.c - cleaned up the DND code some. | |
341 | |
294 | 342 2003-10-25 Brian Masney <masneyb@gftp.org> |
295 | 343 * src/gtk/menu-items.c (dosave_directory_listing) - when saving the |
344 directory listing, skip over the files that are not shown based on the | |
345 current filespec. | |
346 | |
294 | 347 * src/gtk/transfer.c src/gtk/gftp-gtk.h src/gtk/view_dialog.c - when |
348 editing a remote file, if the user chooses to upload the changes, make | |
349 sure the upload is not sent to the current directory on the remote | |
350 server. | |
351 | |
352 * lib/rfc2068.c - set the shown attributes to be -rw------- instead of | |
353 ----------. The HTTP server doesn't send the attributes over, so I just | |
354 have to make something up. | |
355 | |
356 * src/gtk/options_dialog.c - make sure all of the tooltips text is | |
357 passed to gettext() | |
358 | |
359 * lib/protocols.c - if the file transfer is to be throttled, only | |
360 display the throttle message once. | |
361 | |
362 * lib/local.c (local_get_next_file) - if the file is a symlink, grab | |
363 file size and attributes from the file this symlink points to. | |
364 | |
293 | 365 2003-10-22 Brian Masney <masneyb@gftp.org> |
366 * lib/rfc2068.c - fixed parsing some chunked file transfers | |
367 | |
291 | 368 2003-10-19 Brian Masney <masneyb@gftp.org> |
292 | 369 * lib/rfc959.c - abort a file transfer properly. When a transfer is |
370 aborted, you will not be disconnected from the remote site. | |
371 | |
291 | 372 * lib/protocols.c lib/gftp.h - added gftp_string_from_utf8(). Also, make |
373 gftp_string_{to,from}_utf8() be defined all the time. When using | |
374 glib 1.2, the functions will always return NULL. | |
375 | |
376 * lib/protocols.c - when creating a directory or renaming files, make | |
377 sure the new name is converted from UTF8 to the local character set | |
378 or the charset specified in the remote_charsets option. | |
379 | |
380 * src/gtk/misc-gtk.c (update_window_info) - when showing the directory | |
381 we are currently in, make sure it is converted to UTF8 | |
382 | |
290 | 383 2003-10-18 Brian Masney <masneyb@gftp.org> |
384 * lib/misc.c lib/gftp.h src/text/gftp-text.c src/gtk/gftp-gtk.c - added | |
385 gftp_locale_init(). | |
386 | |
387 * src/gtk/Makefile.am src/text/Makefile.am - removed declaration of | |
388 LOCALE_DIR | |
389 | |
390 * lib/Makefile.am - added declaration of LOCALE_DIR | |
391 | |
289 | 392 * lib/misc.c (insert_commas) - if _GNU_SOURCE is defined, instead of |
393 using my builtin function for formatting numbers, use glibc's %'ld | |
394 (or %'lld) format to print the numbers out. This is more portable for | |
395 other locales. | |
396 | |
290 | 397 2003-10-17 Brian Masney <masneyb@gftp.org> |
288 | 398 * lib/rfc959.c (rfc959_ipv[46]_data_connection_new) - when there is an |
399 error establishing a connection to the remote server, make sure that | |
400 GFTP_ERETRYABLE is returned. | |
401 | |
287 | 402 2003-10-13 Brian Masney <masneyb@gftp.org> |
403 * src/gtk/options_dialog.c - when specifying a FTP proxy config in the | |
404 GTK+ 2.0 port, the last character was getting chopped off. | |
405 | |
284 | 406 2003-10-12 Brian Masney <masneyb@gftp.org> |
286 | 407 * lib/rfc959.c - when logging in to the server, if a 5xx code is |
408 returned, don't attempt to log in again. | |
409 | |
285 | 410 * src/gtk/bookmarks.c - disconnect from the site before we parse the |
411 bookmarks (from Aurelien Jarno <lists@aurel32.net>) | |
412 | |
284 | 413 * lib/sshv2.c - fixed crash when deleting subdirectories with the SSH2 |
414 protocol. | |
415 | |
281 | 416 2003-10-4 Brian Masney <masneyb@gftp.org> |
417 * lib/protocols.c - fix for CRAY directory listings. Some UNIX directory | |
418 listings with files containing spaces could be misinterpreted. | |
419 | |
420 * cvsclean - purge the m4 directory, but save the largefile.m4 file. | |
421 (from Nathan Robertson <nathanr@nathanr.net>) | |
422 | |
280 | 423 2003-10-03 Marcel Telka <marcel@telka.sk> |
424 | |
425 * configure.in (ALL_LINGUAS): Added sk. | |
426 | |
278 | 427 2003-10-2 Brian Masney <masneyb@gftp.org> |
428 * lib/rfc959.c - fixed rename bug (from | |
429 Aurelien Jarno <aurel32@debian.org>) | |
430 | |
431 * src/gtk/gftp-gtk.c - make the help menu left aligned so that it is | |
432 more consistent with other GNOME apps | |
433 (from Miguel Ibarra <mibarra@ximian.com>) | |
434 | |
435 * src/gtk/transfer.c - right after the pointer to the next transfer | |
436 is moved, set the current transfer size back to 0. The user could | |
437 briefly (< 1 sec) see the old size transfered on the next file. | |
438 | |
277 | 439 2003-09-23 Taneem Ahmed <taneem@bengalinux.org> |
440 | |
441 * configure.in: Added "bn" to ALL_LINGUAS. | |
442 | |
273 | 443 2003-9-21 Brian Masney <masneyb@gftp.org> |
276 | 444 * src/gtk/menu-items.c (dosave_directory_listing) - fixed a bug that |
445 would occur when saving directory listings to a file, the last filename | |
446 in the list was never written to the file | |
447 (from Aurelien Jarno <aurel32@debian.org>) | |
448 | |
275 | 449 * lib/protocols.c (gftp_parse_bookmark) lib/gftp.h lib/bookmark.c |
450 src/gtk/bookmarks.c - added pointer to refresh_local variable that is | |
451 enabled if the local directory was changed. In src/gtk/bookmarks.c, if | |
452 the local directory was changed, refresh the directory listing. | |
453 | |
274 | 454 * lib/local.c src/gtk/transfer.c src/text/gftp-text.c - if there is a |
455 dangling symlink in the current directory, don't bail out. This was | |
456 causing directory listings to appear truncated. | |
457 | |
458 * configure.in - increment version to 2.0.16pre0 | |
459 | |
273 | 460 * lib/rfc959.c - if there is a login failure, return GFTP_ERETRYABLE |
461 (from winkey <rush@winkey.oompah.org>) | |
462 | |
268 | 463 2003-09-01 Metin Amiroff <metin@karegen.com> |
464 | |
465 configure.in: Added "az" in ALL_LINGUAS. | |
466 | |
274 | 467 2003-8-21 Brian Masney <masneyb@gftp.org> |
468 * Officially released 2.0.15 | |
469 | |
261 | 470 2003-8-20 Brian Masney <masneyb@gftp.org> |
471 * lib/gftp.h lib/protocols.c - largefile fixes | |
472 | |
473 * configure.in debian/changelog - updated version | |
474 | |
475 * cvsclean - clean up after ourselves a little more | |
476 | |
477 * ChangeLog-old README TODO docs/website/index.html.in - updated | |
478 | |
260 | 479 2003-8-17 Brian Masney <masneyb@gftp.org> |
480 * lib/protocols.c (parse_time) - when parsing timestamps that are not in | |
481 the current locale, skip over the proper amount of tokens. This is so | |
482 that the filename is returned properly. | |
483 | |
484 * lib/misc.c (gftp_info) - show the protocols that are installed. | |
485 | |
253 | 486 2003-8-11 Brian Masney <masneyb@gftp.org> |
255 | 487 * lib/local.c (local_get_next_file) - fix for directories that are |
488 symlinks | |
489 | |
490 * src/gtk/*.[ch] - updated copyright dates to 2003 on all of the files | |
491 | |
254 | 492 * src/gtk/menu-items.c lib/rfc959.c - fix for selecting ASCII/Binary |
493 transfers | |
494 | |
253 | 495 * src/gtk/delete_dialog.c - don't attempt to clear the cache for the |
496 protocols that have the cache disabled | |
497 | |
498 * lib/local.c (local_chdir) - if request->directory == directory, | |
499 don't free the request->directory and run getcwd(). This fixes a double | |
500 free in the delete dialog in the GTK+ port | |
501 | |
502 * lib/gftp.h - added FIXME comment | |
503 | |
504 * lib/cache.c (gftp_delete_cache_entry) - added assertion | |
505 | |
250 | 506 2003-8-7 Brian Masney <masneyb@gftp.org> |
507 * configure.in - HPUX fix | |
508 | |
509 * debian/changelog - incremented version | |
510 | |
511 * Officially release 2.0.15rc2 | |
512 | |
248 | 513 2003-8-7 Brian Masney <masneyb@gftp.org> |
249 | 514 * lib/cache.c lib/misc.c lib/protocols.c lib/pty.c - make sure a NUL |
515 byte appears at the end of the buffer after the call to strncpy | |
516 | |
517 * lib/rfc959.c - increased buffer size to directory parsing routine | |
518 | |
248 | 519 * lib/protocols.c (gftp_fd_write) - use a signed variable to store the |
520 result from write(). Write errors were not being caught properly. | |
521 | |
247 | 522 2003-8-6 Brian Masney <masneyb@gftp.org> |
523 * lib/misc.c (gftp_build_path) - fixed initial path beginning with //. | |
524 (expand_path) - when the path is empty at the end, set it to /. This | |
525 would happen for directories like /etc/.. | |
526 | |
246 | 527 2003-8-4 Brian Masney <masneyb@gftp.org> |
528 * src/gtk/transfer.c (update_file_status) - fix possible division by 0 | |
529 | |
245 | 530 2003-8-4 Brian Masney <masneyb@gftp.org> |
531 * src/gtk/gftp-gtk.c (CreateMenus) - on startup, select the proper | |
532 ASCII/binary radio button (looks like an old bug!) | |
533 | |
534 * lib/misc.c lib/gftp.h - renamed my version of g_build_path() (was | |
535 used only in glib 1.2 only) to gftp_build_path() and it's compiled in | |
536 all the time now | |
537 | |
538 * lib/protocols.c lib/sshv2.c src/gtk/dnd.c src/gtk/menu-items.c - | |
539 instead of using g_build_path(), use gftp_build_path() | |
540 | |
244 | 541 2003-8-3 Brian Masney <masneyb@gftp.org> |
542 * lib/local.c (local_put_file) - specify an initial file creation mode | |
543 of 0644 | |
544 | |
545 * lib/misc.c lib/gftp.h - added gftp_parse_file_size(). This function | |
546 works correctly for files greater than 2.1GB | |
547 | |
548 * lib/rfc959.c (rfc959_get_file) lib/protocols.c lib/rfc2068.c | |
549 lib/rfc959.c - use gftp_parse_file_size() | |
550 | |
551 * lib/protocols.c lib/gftp.h (gftp_get_file, gftp_put_file, | |
552 gftp_transfer_file) - changed type of startsize paramter from size_t | |
553 to off_t | |
554 | |
243 | 555 2003-7-31 Brian Masney <masneyb@gftp.org> |
556 * lib/sshv2.c - fix blocking problem reading the error message from the | |
557 remote server when there was an error establishing a connection | |
558 | |
559 * lib/misc.c (copy_fdata) - copy utf8_file variable in gftp_file | |
560 structure. (fix double free that was only in development version) | |
561 | |
562 * lib/misc.c - added --info argument to the command line. This will | |
563 call gftp_info(), which will print out some information about how | |
564 gftp was compiled. | |
565 | |
566 * lib/protocols.c lib/bookmarks.c lib/gftp.h src/gtk/bookmarks.c - | |
567 added local_request parameter to gftp_parse_bookmark(). If this is not | |
568 NULL, and this bookmark specifies a local directory, it will change to | |
569 it. | |
570 | |
571 * configure.in - increment version to 2.0.15rc2 | |
572 | |
242 | 573 2003-07-30 Dmitry G. Mastrukov <dmitry@taurussoft.org> |
574 | |
575 * configure.in: Added Belarusian to ALL_LINGUAS. | |
576 | |
239 | 577 2003-7-29 Brian Masney <masneyb@gftp.org> |
578 * src/gtk/options_dialog.c - fix crash that would occur when hitting | |
579 apply, then ok | |
580 | |
235 | 581 2003-7-25 Brian Masney <masneyb@gftp.org> |
236 | 582 * configure.in - define HAVE_OPENPTY if openpty() is found in libutil |
583 | |
235 | 584 * lib/gftp.h lib/pty.c - moved including of some PTY related header |
585 files to pty.c. Hopefully should fix build problems under FreeBSD | |
586 | |
234 | 587 2003-7-25 Brian Masney <masneyb@gftp.org> |
588 * src/gtk/transfer.c - changed looking up of overwrite_by_default to | |
589 overwrite_default | |
590 | |
591 * src/text/gftp-text.h - fix for when the readline library was not | |
592 found on the local system | |
593 | |
232 | 594 2003-7-25 Brian Masney <masneyb@gftp.org> |
595 * lib/pty.c - prefer to use openpty() instead of grantpt() if it is | |
596 available (for FreeBSD) | |
597 | |
598 * lib/sshv2.c - fixes for FreeBSD password prompt (from Oliver Lehmann | |
599 <oliver@FreeBSD.ORG>) | |
600 | |
601 * src/gtk/gftp-gtk.h src/text/gftp-text.h - added | |
602 __attribute__((format(printf, 3, 4))) to logging functions (from | |
603 Oliver Lehmann <oliver@FreeBSD.ORG>) | |
604 | |
605 2003-7-25 Brian Masney <masneyb@gftp.org> | |
606 * lib/pty.c - prefer to use openpty() instead of grantpt() if it is | |
607 available (for FreeBSD) | |
608 | |
609 * lib/sshv2.c - fixes for FreeBSD password prompt (from Oliver Lehmann | |
610 <oliver@FreeBSD.ORG>) | |
611 | |
612 * src/gtk/gftp-gtk.h src/text/gftp-text.h - added | |
613 __attribute__((format(printf, 3, 4))) to logging functions (from | |
614 Oliver Lehmann <oliver@FreeBSD.ORG>) | |
615 | |
231 | 616 2003-7-23 Brian Masney <masneyb@gftp.org> |
617 * TODO - updated | |
618 | |
619 * debian/* - new files from the Debian maintainer | |
620 | |
621 * docs/website/generate-gftp-website.pl - fixed generating changelog | |
622 file | |
623 | |
624 * po/*.po - updated line numbers | |
625 | |
230 | 626 2003-7-23 Brian Masney <masneyb@gftp.org> |
627 * configure.in - incremented version to 2.0.15rc1. Also, if readline | |
628 wasn't found on the system, the text port wasn't be built | |
629 | |
630 * ChangeLog-old - added summary of changes since version 2.0.14 | |
631 | |
632 * TODO - updated | |
633 | |
634 * src/text/gftp-text.c - build fixes if readline isn't present on the | |
635 system | |
636 | |
637 * lib/sshv2.c - don't print out the network error as well when getting | |
638 the error message from the remote server. The user is only interested | |
639 in the error returned from the server. | |
640 | |
229 | 641 2003-7-22 Brian Masney <masneyb@gftp.org> |
642 * lib/config_file.c lib/gftp.h - added gftp_lookup_bookmark_option() | |
643 and gftp_set_bookmark_option(). Also added _gftp_set_option_value() | |
644 that is used by the set functions for bookmark and request structures | |
645 | |
646 * src/gtk/bookmarks.c - make sure the options are copied over to the | |
647 new bookmarks. Also show all of the editable toptions for this bookmark | |
648 entry | |
649 | |
650 * src/gtk/options_dialog.c src/gtk/gftp-gtk.h lib/config_file.c | |
651 lib/gftp.h - improvements to overriding options for each bookmark | |
652 entry. There is still one crash that is occuring that I have to track | |
653 down. For the moment, don't edit the bookmarks twice in the same | |
654 session. | |
655 | |
227 | 656 2003-7-20 Brian Masney <masneyb@gftp.org> |
657 * lib/config_file.c lib/gftp.h - added compare_function to | |
658 gftp_config_vars structure. (gftp_set_global_option) use the compare | |
659 function to see if the value was actually changed, and if so set the | |
660 gftp_configuration_changed variable | |
661 | |
662 * lib/misc.c lib/gftp.h - For glib 1.2, added my version of | |
663 g_build_path() since it's not there | |
664 | |
665 * lib/misc.c - GLIB/GTK+ 1.2 fixes | |
666 | |
667 * lib/protocols.c (gftp_fd_open) - cleaned up some | |
668 | |
669 * lib/rfc959.c (rfc959_init) - if the email address is blank, get the | |
670 users address here instead of in register_module. It was being blanked | |
671 out when the config file was being read | |
672 | |
673 * lib/options.h lib/rfc2068.c lib/rfc959.c lib/sshv2.c - mark the | |
674 config variables that can show up in the bookmarks editor | |
675 | |
676 * src/text/gftp-text.c src/gtk/options_dialog.c - use | |
677 gftp_set_global_option() to set the new configuration values | |
678 | |
679 * src/gtk/bookmarks.c - fixed crash in bookmarks dialog. Added notebook | |
680 widget to the dialog as well. The options that can be edited for this | |
681 site will show up in other tabs | |
682 | |
683 * src/gtk/gftp-gtk.c - fixes to the calls to gftp_set_global_option() | |
684 | |
685 * src/gtk/options_dialog.c - added gftp_gtk_setup_bookmark_options() | |
686 to display all the editable options for this bookmark | |
687 | |
222 | 688 2003-7-11 Brian Masney <masneyb@gftp.org> |
689 * lib/protocols.c (gftp_calc_kbs) - only call gettimeofday() at the | |
690 end only if we are throttling this connection | |
691 | |
692 * lib/cache.c lib/options.h docs/sample.gftp/gftprc - added cache_ttl | |
693 option to determine the amount of time that cache entries will stay | |
694 around | |
695 | |
696 * docs/gftp.xml docs/legal.xml docs/figures/* - documentation from | |
697 Alexander Kirillov <kirillov@math.sunysb.edu> | |
698 | |
699 * docs/website - files for generating my main website. They aren't | |
700 pretty, but hey it works. I'm mainly putting these in CVS just for | |
701 backup purposes. | |
702 | |
220 | 703 2003-7-10 Brian Masney <masneyb@gftp.org> |
704 * lib/misc.c (insert_commas) - improved calculating # of digits | |
705 in number. (Not sure if this worked properly for long long's, aka | |
706 off_t when _LARGEFILE_SOURCE is defined) | |
707 | |
708 * src/gtk/transfer.c (update_file_status) - changed type of remaining | |
709 field to be off_t. (hopefully fixes >2.1GB problem) | |
710 | |
711 * lib/protocols.c (gftp_calc_kbs) - improved throttling module. | |
712 | |
219 | 713 2003-7-9 Brian Masney <masneyb@gftp.org> |
714 * lib/sshv2.c - if we are logging in to the server, and the message | |
715 size is too big from the server, assume that an error message follows | |
716 and log the ASCII text to the log window | |
717 | |
718 * src/gtk/options_dialog.c - make sure the value is set properly for | |
719 the textcomboedt option types (the FTP proxy server type uses this) | |
720 | |
721 * lib/rfc2068.c - HTTP proxy bug fixes. Also, moved rfc2068_connect() | |
722 call to rfc2068_send_command() and removed it from the now unneeded | |
723 places. Also, fix in call to HEAD command | |
724 | |
725 * src/text/gftp-text.c - fixed NULL pointer deference in changing | |
726 directory | |
727 | |
728 * docs/sample.gftp/gftprc - enable require SSH user/pass by default | |
729 | |
218 | 730 2003-7-9 Brian Masney <masneyb@gftp.org> |
731 * lib/config_file.c (gftp_write_config_file) - fix for writing out | |
732 list items to the config file. | |
733 | |
734 * lib/config_file.c lib/gftp.h - added gftp_free_proxy_hosts() and | |
735 gftp_copy_proxy_hosts() | |
736 | |
737 * lib/protocols.c (gftp_connect_server) - look up dont_use_proxy | |
738 instead of ext | |
739 | |
740 * lib/protocols.c lib/sshv2.c src/gtk/dnd.c src/gtk/menu-items.c - | |
741 when calling g_build_path(), set the directory separator to / instead | |
742 of G_DIR_SEPARATOR_S | |
743 | |
744 * src/gtk/gftp-gtk.c (toolbar_hostedit) - fixed crash | |
745 | |
746 * src/gtk/gftp-gtk.h - removed gotbytes from gftp_window_data | |
747 structure | |
748 | |
749 * src/gtk/options_dialog.c - show proxy hosts in options dialog | |
750 | |
751 * docs/sample.gftp/gftprc - new default config file | |
752 | |
215 | 753 2003-7-7 Brian Masney <masneyb@gftp.org> |
754 * configure.in src/gtk/Makefile.am src/text/Makefile.am - if the | |
755 OpenSSL libraries are available on the system, link them in and | |
756 define USE_SSL. The generic SSL engine and the HTTPS protocol checks | |
757 for this | |
758 | |
759 * lib/protocols.c (gftp_get_line) - small fix | |
760 | |
761 * lib/rfc2068.c - fixed several bugs in the handling of chunked | |
762 messages that are spread across multiple packets (the HTTPS protocol | |
763 unconvered all of these) | |
764 | |
765 * lib/sslcommon.c - several fixes and cleanups | |
766 | |
213 | 767 2003-7-6 Brian Masney <masneyb@gftp.org> |
768 * lib/configure.in - check for getdtablesize() | |
769 | |
770 * TODO - updated | |
771 | |
211 | 772 2003-7-6 Brian Masney <masneyb@gftp.org> |
773 * lib/protocols.c lib/sshv2.c src/gtk/dnd.c src/gtk/menu-items.c - | |
774 instead of using g_strconcat to build the directory paths, use | |
775 g_build_path. Fixes a bug when you was connected to a remote host, | |
776 and you was in /, the path would show up as // | |
777 (from Krzysztof Foltman <kfoltman@onet.pl>, slightly changed by me) | |
778 | |
210 | 779 2003-7-6 Brian Masney <masneyb@gftp.org> |
780 * lib/pty.c lib/gftp.h - added gftp_exec_with_new_pty() and | |
781 gftp_exec_without_new_pty() | |
782 | |
783 * lib/sshv2.c - use the 2 new functions above | |
784 | |
785 * lib/pty.c lib/gftp.h - split open_ptys() to _gftp_ptym_open() | |
786 and _gftp_ptys_open() | |
787 | |
788 * lib/sslcommon.c - don't do thread setup if we are compiling against | |
789 glib 1.2. I do not want to link against the pthread library because | |
790 that would make the text port dependant on pthreads being installed on | |
791 the box | |
792 | |
209 | 793 2003-7-5 Brian Masney <masneyb@gftp.org> |
794 * lib/protocols.c (gftp_get_line) - fixed bug where the read function | |
795 was being called one extra time after the end of file was reached | |
207 | 796 |
209 | 797 * lib/rfc2068.c - fixes for chunked file transfers. All known issues with the |
798 HTTP protocol should be (hopefully) fixed now | |
799 | |
800 * lib/httpcommon.h (struct rfc2068_params_tag) - added eof variable | |
207 | 801 |
802 2003-7-1 Brian Masney <masneyb@gftp.org> | |
803 * lib/misc.c (base64_encode) - alphabet fix (+ wasn't a valid | |
804 character, it should have been /) (thanks to Holger Kiehl | |
805 <Holger.Kiehl@dwd.de> for pointing this out) | |
806 | |
807 * lib/config_file.c lib/gftp.h - added copy function for options | |
808 variables. The functions gftp_config_file_copy_text(), | |
809 gftp_config_file_copy_ptr_contents() and gftp_config_file_copy_color() | |
810 were added | |
811 | |
812 * lib/protocols.c - make sure the remote_charsets string is restored | |
813 properly after it is used | |
814 | |
815 * src/gtk/bookmarks.c - remove memory leak comments, these are fixed | |
816 now | |
817 | |
818 * src/gtk/transfer.c - removed start_file_transfers variable | |
819 | |
820 * src/gtk/misc-gtk.c src/gtk/gftp-gtk.h lib/misc.c lib/gftp.h - moved | |
821 get_next_selection() to lib | |
822 | |
823 * acinclude.h (AC_TYPE_SOCKLEN_T) - AC_DEFINE fix (from | |
824 Nathan Robertson <nathanr@nathanr.net>) | |
825 | |
204 | 826 2003-6-25 Brian Masney <masneyb@gftp.org> |
827 * lib/misc.c (expand_path) - small improvements | |
828 | |
829 * lib/rfc2068.c src/text/gftp-gtk.c - fixes for path handling, namely | |
830 when changing directories to the parent (..) | |
831 | |
203 | 832 2003-6-25 Brian Masney <masneyb@gftp.org> |
833 * lib/misc.c - fix warning if DMALLOC is disabled | |
834 | |
835 * src/text/gftp-text.c - don't attempt to expand the local directory | |
836 | |
837 * TODO - updated | |
838 | |
202 | 839 2003-6-25 Brian Masney <masneyb@gftp.org> |
840 * acinclude.m4 - added AC_TYPE_SOCKLEN_T. Thanks to | |
841 Nathan Robertson <nathanr@nathanr.net> for pointing this out | |
842 | |
843 * configure.in - call AC_TYPE_SOCKLEN_T. Updates to AC_OUTPUT | |
844 | |
845 * lib/gftp.h - remove check for HAVE_SOCKLEN_T | |
846 | |
847 * Makefile.am - formatting fixes | |
848 | |
201 | 849 2003-6-25 Brian Masney <masneyb@gftp.org> |
850 * configure.in - added mk to ALL_LINGUAS | |
851 | |
852 * lib/gftp.h - added several macros for dmalloc | |
853 | |
854 * lib/misc.c src/text/gftp-text.c src/gtk/gftp-gtk.c - added | |
855 gftp_shutdown() to misc.c. This will write out the configuration | |
856 file, clear the cache, and if dmalloc is enabled, free the memory | |
857 that was allocated on startup | |
858 | |
859 * lib/config_file.c lib/gftp.h lib/misc.c lib/options.h - added | |
860 gftp_configuration_changed parameter | |
861 | |
862 * lib/config_file.c lib/misc.c lib/protocols.c - added | |
863 gftp_config_free_options() | |
864 | |
865 * lib/config_file.c src/gtk/bookmarks.c - added gftp_bookmarks() which | |
866 is derived mostly from bm_close_dialog() | |
867 | |
868 * lib/rfc959.c - added rfc959_request_destroy(). Free the getline | |
869 buffers in this function | |
870 | |
871 * src/gtk/misc-gtk.c (gftp_item_factory_translate) - remove double | |
872 g_strdup() call | |
873 | |
874 * lib/config_file.c lib/gftp.h src/gtk/misc-gtk.c - moved | |
875 get_xpm_path() to GTK+ port. No longer call it startup when reading | |
876 the config file | |
877 | |
199 | 878 2003-6-24 Brian Masney <masneyb@gftp.org> |
879 * lib/config_file.c lib/gftp.h lib/protocols.c - added backend for | |
880 overriding options on a per bookmark basis. Also added | |
881 gftp_copy_local_options() to config_file.c | |
882 | |
883 * lib/gftp.h lib/misc.c src/gtk/bookmarks.c - added | |
884 gftp_free_bookmark() to misc.c. It was taken from the function | |
885 free_bookmark_entry_items() in bookmarks.c | |
886 | |
887 * lib/sslcommon.c - formatting fixes. Added thread functions (mostly | |
888 from the OReilly SSL book) | |
889 | |
198 | 890 2003-6-22 Brian Masney <masneyb@gftp.org> |
891 * lib/config_file.c lib/gftp.h - renamed parse_args to | |
892 gftp_config_parse_args() and removed the static declaration | |
893 | |
894 * lib/protocols.c (gftp_request_destroy) - fixed memory problem with | |
895 the new local configuration interface | |
896 | |
897 * src/gtk/gftp-gtk.c - added gftp_gtk_config_(read|write)_color(). | |
898 I am overriding the read and write functions for | |
899 gftp_option_type_color to be these functions. This is so that I can | |
900 use a GdkColor structure instead of a gftp_color structure | |
901 | |
902 * src/gtk/misc-gtk.c - when destroying the dialogs, set the pointers | |
903 to NULL before we call the callback functions. This is to make sure | |
904 that they aren't being used in the callbacks | |
905 | |
906 * TODO - updated | |
907 | |
195 | 908 2003-6-19 Brian Masney <masneyb@gftp.org> |
909 * autogen.sh - updated to hopefully make it more portable across | |
910 various systems | |
911 | |
912 * lib/rfc959.c - change variable type of data_addr_len from size_t | |
913 to socklen_t (fixed warnings on 64 bit machines) | |
914 | |
915 * src/gtk/chmod_dialog.c src/gtk/gftp-gtk.c src/gtk/menu-items.c | |
916 src/gtk/misc-gtk.c src/gtk/mkdir_dialog.c src/gtk/options_dialog.c | |
917 src/gtk/rename_dialog.c src/gtk/transfer.c - rather than casting | |
918 from integer to pointer and vice versa, use GINT_TO_POINTER and | |
919 GPOINTER_TO_INT. These macros do the exact same thing and I'm | |
920 still getting compiler warnings on Debian Sparc64 with -m64, but at | |
921 least I'll be able to fix the define in glib and then these warnings | |
922 will be fixed then | |
923 | |
191 | 924 2003-6-18 Brian Masney <masneyb@gftp.org> |
925 * lib/protocols.c - send right parameters to the logging function | |
926 (from Nam SungHyun <namsh@kldp.org>) | |
927 | |
190 | 928 2003-6-17 Brian Masney <masneyb@gftp.org> |
929 * src/gtk/misc-gtk.c (ftp_log) - remote charset fixes for when the log | |
930 message is generated inside a child thread | |
931 | |
932 * lib/cache.c - don't complain about not being able to open index.db | |
933 | |
184 | 934 2003-6-16 Brian Masney <masneyb@gftp.org> |
188 | 935 * lib/protocols.c (gftp_string_to_utf8) - return if request is NULL |
936 | |
187 | 937 * lib/protocols.c - run g_iconv_close() in gftp_disconnect() instead |
938 of gftp_end_transfer() | |
939 | |
186 | 940 * lib/gftp.h src/text/gftp-text.c src/gtk/misc-gtk.c - changed 2nd |
941 parameter of logging function to be a request structure, instead of | |
942 request->user_data. In the logging functions, if the string isn't in | |
943 UTF-8, convert it with gftp_string_to_utf8() | |
944 | |
945 * lib/bookmark.c lib/cache.c lib/gftp.h lib/https.c lib/local.c | |
946 lib/protocols.c lib/rfc2068.c lib/rfc959.c lib/sshv2.c lib/sslcommon.c | |
947 src/gtk/chmod_dialog.c src/gtk/delete_dialog.c src/gtk/gftp-gtk.h | |
948 src/gtk/menu-items.c src/gtk/misc-gtk.c src/gtk/mkdir_dialog.c | |
949 src/gtk/rename_dialog.c src/gtk/transfer.c src/text/gftp-text.c | |
950 src/gtk/gftp-gtk.h src/text/gftp-text.h - pass request structure | |
951 to logging function instead of request->user_data | |
952 | |
185 | 953 * lib/protocols.c (_gftp_get_next_charset) - set the separator for |
954 remote charsets to be a comma | |
955 | |
956 * lib/options.h - updated description of remote charsets | |
957 | |
184 | 958 * lib/gftp.h lib/misc.c lib/options.h lib/protocols.c |
959 src/gtk/misc-gtk.c - added remote_charsets option. Whenever a file is | |
960 read in that is not in UTF-8, it will first attempt to convert it from | |
961 the local charset, and if that fails, it will try each of the locales | |
962 in this list. I have no idea if this even works, so if someone can test | |
963 this, please let me know. | |
964 | |
182 | 965 2003-6-15 Brian Masney <masneyb@gftp.org> |
966 * lib/cache.c lib/gftp.h - added gftp_generate_cache_description(). | |
967 | |
968 * lib/cache.c lib/gftp.h src/text/gftp-text.c src/gtk/delete-dialog.c | |
969 src/gtk/menu-items.c src/gtk/misc-gtk.c src/gtk/mkdir-dialog.c - Added | |
970 description parameter to gftp_delete_cache_entry(). | |
971 | |
972 * lib/protocols.c lib/gftp.h - added gftp_fd_open(). It will call | |
973 open() and then set the socket option close on exec | |
974 | |
975 * lib/cache.c lib/local.c lib/misc.c - use gftp_fd_open() instead of | |
976 open() | |
977 | |
978 * lib/rfc959.c lib/protocols.c - on newly created sockets, make sure | |
979 the close on exec socket option is set | |
980 | |
981 * lib/options.h src/text/gftp-text.c src/gtk/transfer.c - added | |
982 preserve_permissions option | |
983 | |
984 * lib/protocols.c (gftp_parse_url) - allow an @ to be in the username | |
985 | |
986 * src/text/gftp-text.c - after transfering a file, honor | |
987 preserve_permissions if it is set | |
988 | |
989 * src/gtk/delete-dialog.c - improvments to clearing the expired cache | |
990 entries | |
991 | |
179 | 992 2003-6-14 Brian Masney <masneyb@gftp.org> |
993 * lib/cache.c (gftp_delete_cache_entry) - fix for restoring newlines | |
994 | |
995 * lib/gftp.h lib/protocols.c - added EOF flag for gftp_get_line() | |
996 | |
997 * lib/gftp.h lib/pty.c - added get_pty_impl() function for each PTY | |
998 type | |
999 | |
1000 * src/text/gftp-text.c - after removing files, clear the cache for | |
1001 that directory | |
1002 | |
178 | 1003 2003-6-11 Brian Masney <masneyb@gftp.org> |
1004 * lib/configure.in lib/gftp.h - portability fix for openpty(). (from | |
1005 Nathan Robertson <nathanr@nathanr.net>, which he took from | |
1006 http://mail.python.org/pipermail/patches/2000-June/000953.html) | |
1007 | |
1008 * lib/pty.h - found out about #elif preprocessor macro ;) | |
1009 | |
177 | 1010 2003-6-9 Brian Masney <masneyb@gftp.org> |
1011 * lib/bookmark.c lib/gftp.h lib/local.c lib/protocols.c lib/rfc2068.c | |
1012 lib/rfc959.c lib/sshv2.c - make return value of *_set_config_options() | |
1013 be an integer | |
1014 | |
1015 * lib/rfc2068.c lib/rfc959.c - return the error code of | |
1016 gftp_connect_server() if there was a connection problem | |
1017 | |
1018 2003-6-8 Brian Masney <masneyb@gftp.org> | |
1019 * lib/rfc959.c lib/rfc2068.c - if gftp_connect_server() returns an | |
1020 error, make sure the exact error code is returned | |
1021 | |
175 | 1022 2003-6-8 Brian Masney <masneyb@gftp.org> |
1023 * lib/sslcommon.c - added entropy_len option. Added | |
1024 gftp_ssl_get_index(). Use SSL_get_ex_data() so that we can get the | |
1025 request structure, and error messages can be logged properly. Changed | |
1026 the verify depth from 4 to 9 | |
1027 | |
174 | 1028 2003-6-8 Brian Masney <masneyb@gftp.org> |
1029 * lib/gftp.h lib/sslcommon.c - added ssl_register_module(). This | |
1030 function registers the configuration variables for the SSL engine. | |
1031 Right now, the only variable is the entropy source | |
1032 | |
1033 * lib/https.c (https_register_module) - call ssl_register_module(). | |
1034 Multiple protocols will be able to call this function, it will only | |
1035 be initialized once | |
1036 | |
173 | 1037 2003-6-8 Brian Masney <masneyb@gftp.org> |
1038 * lib/bookmark.c lib/gftp.h lib/https.c lib/local.c lib/misc.c | |
1039 lib/protocols.c lib/rfc2068.c lib/rfc959.c lib/sshv2.c | |
1040 src/text/gftp-text.c src/gtk/gftp-gtk.c - made the init function for | |
1041 all the protocols return an integer instead of nothing. If there was an | |
1042 error setting up the protocol, GFTP_EFATAL should be returned and the | |
1043 connection should be aborted. The HTTPS protocol uses this to return if | |
1044 SSL support was not compiled in | |
1045 | |
1046 * lib/protocols.c src/text/gftp-text.c src/gtk/dnd.c | |
1047 src/gtk/gftp-gtk.c src/gtk/menu-items.c - have gftp_parse_url() log the | |
1048 error messages to the user. This shouldn't have been done in the | |
1049 individual ports | |
1050 | |
1051 * lib/https.c - only initialize the SSL engine the first time a SSL | |
1052 connection is made. | |
1053 | |
171 | 1054 2003-6-8 Brian Masney <masneyb@gftp.org> |
1055 * aclocal.m4 - removed, this file is automatically generated | |
1056 | |
1057 * autogen.sh - just call automake and aclocal, instead of automake-1.4 | |
1058 and aclocal-1.4 (from Nathan Robertson <nathanr@nathanr.net>) | |
1059 | |
1060 2003-6-8 Brian Masney <masneyb@gftp.org> | |
1061 * lib/https.c lib/options.h lib/sslcommon.c - make sure USE_SSL is | |
1062 defined before using any SSL functions | |
1063 | |
1064 * lib/gftp.h lib/protocols.c lib/rfc2068.c lib/sshv2.c lib/sslcommon.c | |
1065 lib/rfc959.c - make sure we use request->datafd for the connection. Removed | |
1066 sockfd from gftp_request structure | |
1067 | |
1068 * lib/rfc959.c - add data_connection to rfc959_parms structure. Use | |
1069 this for the FTP data connection | |
1070 | |
1071 * src/text/gftp-text.c - fixes for username/password prompt | |
1072 | |
1073 * src/gtk/misc-gtk.c src/gtk/transfer.c - s/sockfd/datafd/g | |
1074 | |
1075 * configure.in - added lib/Makefile (forgot to commit last time) | |
1076 | |
1077 * Makefile.am - added intl to SUBDIRS | |
1078 | |
1079 2003-6-8 Brian Masney <masneyb@gftp.org> | |
168 | 1080 * lib/gftp.h - if USE_SSL is defined, include the OpenSSL headers. |
1081 Added read_function, write_function and post_connect function pointers | |
1082 to gftp_request structure. Added SSL object to gftp_request structure | |
1083 if USE_SSL is defined. Added protocol number and init function | |
1084 declarations for the HTTPS protocol | |
1085 | |
1086 * lib/options.h - added HTTPS to the list of supported protocols | |
1087 | |
1088 * lib/protocols.c lib/cache.c lib/rfc2068.c lib/rfc959.c lib/sshv2.c - | |
1089 renamed gftp_read(), gftp_write() and gftp_set_sockblocking() to | |
1090 gftp_fd_read(), gftp_fd_write() and gftp_fd_set_sockblocking() | |
1091 respectively | |
1092 | |
1093 * lib/bookmark.c lib/local.c | |
1094 | |
1095 * lib/misc.c lib/rfc2068.c - moved base64_encode() to misc.c | |
166 | 1096 |
168 | 1097 * lib/protocols.c - improved parsing of URLs. Rather than calling |
1098 gftp_read() or gftp_write() directly, call the read_function or | |
1099 write_function that is set in the request structure. Expanded tabs | |
1100 to spaces. Cleanup for parsing of timestamps. In | |
1101 gftp_connect_server(), if a post_connect function pointer is set, | |
1102 call it after we are connected to the server. Improvements to | |
1103 gftp_get_line (). | |
1104 | |
1105 * lib/httpcommon.h lib/rfc2068.c - moved rfc2068_params structure to | |
1106 httpcommon.h. Fix for chunked file transfers, they were not handled | |
1107 at all before. Made the I/O calls a little more generic so that we can | |
1108 read from either a socket or a SSL connection. | |
1109 | |
1110 * lib/sslcommon.c - added generic SSL layer | |
1111 | |
1112 * lib/https.c - added support for the HTTPS protocol. It piggy backs | |
1113 off of the existing HTTP support and uses the generic SSL layer | |
1114 | |
1115 * src/gtk/bookmarks.c src/gtk/chmod_dialog.c src/gtk/gftp-gtk.c | |
1116 src/gtk/menu-items.c src/gtk/misc-gtk.c src/gtk/options_dialog.c | |
1117 src/gtk/view_dialog.c - set the window icon name to the gFTP <version> | |
1118 | |
1119 * configure.in - added lib back to SUBDIRS (oops) | |
1120 | |
1121 * lib/Makefile.am - added https.c, sslcommon.c and httpcommon.h | |
1122 | |
1123 2003-5-27 Brian Masney <masneyb@gftp.org> | |
1124 * Makefile.am configure.in autogen.sh - build fixes | |
1125 | |
1126 * src/text/gftp-text.c - if the protocol we are connecting to | |
1127 doesn't need a username/password, don't prompt the user for one | |
166 | 1128 |
162 | 1129 2003-5-22 Brian Masney <masneyb@gftp.org> |
168 | 1130 * lib/misc.c (gftp_usage) - updated usage statement |
162 | 1131 |
168 | 1132 * lib/options.h - put terminate options properly |
162 | 1133 |
158 | 1134 2003-05-06 Christian Rose <menthos@menthos.com> |
1135 | |
1136 * configure.in: Added sr and sr@Latn to ALL_LINGUAS. | |
1137 | |
154 | 1138 2003-05-01 Hasbullah Bin Pit <sebol@ikhlas.com> |
1139 | |
1140 * configure.in(ALL_LINGUAS): Added "ms". | |
1141 | |
151 | 1142 2003-4-27 Brian Masney <masneyb@gftp.org> |
1143 * lib/config_file.c (gftp_config_file_read_float) - use strtod instead | |
1144 of strtof(). ANSI C describes strtod, and C99 describes strtof(). Some | |
1145 older systems don't have strtof() | |
1146 | |
1147 * lib/gftp.h - if HAVE_OPENPTY is defined, include pty.h. Fix for | |
1148 GFTP_GET_AI_FAMILY when request or request->hostp is NULL. Added | |
1149 free_hostp boolean to struct gftp_request | |
1150 | |
1151 * lib/misc.c src/gtk/delete_dialog.c src/gtk/transfer.c - added | |
1152 copy_local_options parameter. Add a pointer to newreq->hostp from the | |
1153 source request structure | |
1154 | |
1155 * lib/protocols.c - honor free_hostp | |
1156 | |
1157 * lib/rfc959.c - fix for IPV4/IPV6 detection | |
1158 | |
1159 * src/gtk/misc-gtk.c src/gtk/options_dialog.c - fixed compiler errors | |
1160 when compiling against GTK+ 1.2 | |
1161 | |
1162 * src/gtk/transfer.c - lookup option one_transfer instead of | |
1163 do_one_transfer_at_a_time | |
1164 | |
149 | 1165 2003-04-27 Christian Rose <menthos@menthos.com> |
1166 | |
1167 * lib/rfc959.c: Fix bug #111090 by adding | |
1168 /* xgettext:no-c-format */ comment. This trivial bug prevented any | |
1169 full localization of gftp. | |
1170 | |
146 | 1171 2003-4-25 Brian Masney <masneyb@gftp.org> |
1172 * lib/rfc959.c - added IPV6 support (RFC2428). The only part of the | |
1173 project that isn't IPV6 ready is the proxy comparsion functions. | |
1174 | |
1175 * lib/protocols.c - change the hints.ai_family paramater from AF_INET | |
1176 to PF_UNSPEC | |
1177 | |
1178 * lib/gftp.h lib/misc.c lib/pty.c - moved the functionality of | |
1179 pty[ms]_open() to pty.c. Combined these 2 functions into open_ptys(), | |
1180 and there is one defined for each system type (lots of #define's in | |
1181 this file!) | |
1182 | |
1183 * lib/Makefile.am po/POTFILES.in - added pty.c | |
1184 | |
1185 * lib/sshv2.c - when searching for the password prompt, omit the first | |
1186 character in case it is capitalized. Also, use the new function | |
1187 open_ptys() | |
1188 | |
1189 * configure.in - search for openpty in -lutil. Also, define | |
1190 HAVE_OPENPTY if this function is present on the system | |
1191 | |
1192 | |
143 | 1193 2003-4-23 Brian Masney <masneyb@gftp.org> |
1194 * Makefile.am - removed config.rpath from EXTRA_DIST | |
1195 | |
1196 * configure.in - added 'sr' to ALL_LINGUAS. Incremented | |
1197 version to 2.0.15 (will be a little while before this is released. | |
1198 Still have lots to do) | |
1199 | |
1200 * docs/sample.gftp/gftprc - removed old unused SSH options. These were | |
1201 used by the SSH protocol I ripped out | |
1202 | |
1203 * lib/config_file.c - fix for gftp_set_request_option(). Implemented | |
1204 gftp_lookup_request_options(). Overriding of configuration options now | |
1205 works across the board :) | |
1206 | |
1207 * lib/protocols.c - extra checks for freeing memory | |
1208 | |
1209 * src/text/gftp-text.c - renamed ssh_use_sftp_subsys to the proper | |
1210 name of sshv2_use_sftp_subsys | |
1211 | |
1212 * src/gtk/transfer.c - renamed append_file_transfers option | |
1213 to the proper name of append_transfers. Also, added quick fix for | |
1214 start_file_transfers option that is still missing | |
1215 | |
1216 * debian/gftp-text.postinst - this will add add an alternative for the | |
1217 ftp command and point it to gftp-text | |
1218 | |
139 | 1219 2003-4-21 Brian Masney <masneyb@gftp.org> |
1220 * lib/gftp.h - added ui_cancel_function to struct gftp_option_type_var | |
1221 | |
1222 * src/gtk/gftp-gtk.c - added custom_edit_value to struct | |
1223 gftp_textcomboedt_widget_data | |
1224 | |
1225 * src/gtk/options_dialog.c - fixups for gftp_option_type_textcomboedt. | |
1226 The value will always convert %n to \n when reading in and then do the | |
1227 opposite conversion when saving the variable. Also, added tooltips to | |
1228 the options | |
1229 | |
1230 * lib/rfc959.c - remove FIXME comment | |
1231 | |
136 | 1232 2003-4-18 Brian Masney <masneyb@gftp.org> |
1233 * lib/config_file.c lib/gftp.h - removed gftp_option_type_subtree, | |
1234 gftp_option_type_table and gftp_option_type_newtable | |
1235 | |
1236 * lib/config_file.c - implemented gftp_set_request_option() | |
1237 | |
1238 * lib/gftp.h lib/config_file.c - changed declaration of | |
1239 ui_print_function in struct gftp_option_type. Also added | |
1240 ui_save_function field to this structure | |
1241 | |
1242 * lib/gftp.h added local_options_vars num_local_options_vars variables | |
1243 to gftp_request | |
1244 | |
1245 * lib/local.c (local_set_directory) - small improvements to this | |
1246 function | |
1247 | |
1248 * lib/misc.c - added gftp_copy_local_options() | |
1249 | |
1250 * lib/options.h - fix declaration of General tab | |
1251 | |
1252 * lib/protocols.c - free local options | |
1253 | |
1254 * lib/rfc2068.c - check to see if we're connecting to a FTP site via | |
1255 proxy | |
1256 | |
1257 * lib/rfc959.c lib/protocols.c - changes for CRAY directory listings | |
1258 | |
1259 * src/gtk/gftp-gtk.h - added struct gftp_options_dialog_data and | |
1260 struct gftp_textcomboedt_widget_data | |
1261 | |
1262 * src/gtk/options_dialog.c - start to use new configuration interface | |
1263 | |
1264 * src/gtk/transfer.c - remove FIXME note. This is already in | |
1265 lib/gftp.h | |
1266 | |
131 | 1267 2003-4-13 Brian Masney <masneyb@gftp.org> |
1268 * lib/config_file.c - fixed float config type | |
1269 | |
1270 * lib/gftp.h lib/misc.c - added gftp_gen_ls_string() | |
1271 | |
1272 * src/gtk/menu-items.c (dosave_directory_listing) | |
1273 src/text/gftp-text.c (gftp_text_ls) - use | |
1274 gftp_gen_ls_string() | |
1275 | |
129 | 1276 2003-4-13 Brian Masney <masneyb@gftp.org> |
1277 * lib/config_file.c - implemented gftp_set_global_option() | |
1278 | |
1279 * lib/gftp.h lib/misc.c - added gftp_tdata_new() | |
1280 | |
1281 * src/text/gftp-text.c src/gtk/transfer.c - use gftp_tdata_new() | |
1282 | |
1283 * src/gtk/bookmarks.c - In run_bookmark(), use gftp_parse_bookmark() | |
1284 function. Renamed all instances of gftp_bookmarks to | |
1285 gftp_bookmarks_var | |
1286 | |
1287 * src/gtk/gftp-gtk.[ch] - added global variables viewedit_processes | |
1288 and viewedit_processes_done. These used to be declared in | |
1289 lib/options.h | |
1290 | |
1291 * src/gtk/gftp-gtk.h (struct gftp_window_data) - removed sortcol and | |
1292 sortasds variables. Added prefix_col_str variable. This will either be | |
1293 local or remote | |
1294 | |
1295 * src/gtk/misc-gtk.c - removed r_gethostbyname() and r_getservbyname() | |
1296 | |
1297 * src/gtk/transfer.c - removed gftp_gtk_calc_kbs(), get_status() and | |
1298 parse_attribs(). These are in the lib/ directory now. Also, use | |
1299 g_static_mutex_*() functions from glib instead of pthread_mutex_*() | |
1300 | |
1301 * src/gtk/bookmark.c src/gtk/dnd.c src/gtk/menu-items.c | |
1302 src/gtk/transfer.c - use g_strdup() instead of g_malloc()/strcpy() | |
1303 | |
1304 * src/gtk/options_dialog.c - commented out large parts of this file. | |
1305 This file is busted at the moment | |
1306 | |
1307 * src/gtk/*.[ch] - Use new configuration interface in all source | |
1308 files. Updated copyright dates on all source files | |
1309 | |
126 | 1310 2003-4-9 Brian Masney <masneyb@gftp.org> |
1311 * lib/gftp.h lib/config_file.c - reordered config option types. Added | |
1312 gftp_option_type_textcomboedt type | |
1313 | |
1314 * lib/options.h lib/rfc959.c - moved gftp_proxy_type to rfc959.c | |
1315 | |
1316 * lib/rfc959.c - added proxy_type that is | |
1317 gftp_option_type_textcomboedt. Consolidated help text into comment. | |
1318 In parse_ftp_proxy_string(), improve parsing of proxy config | |
1319 | |
125 | 1320 2003-4-8 Brian Masney <masneyb@gftp.org> |
1321 * src/text/gftp-text.c lib/misc.c - moved r_gethostbyname() and | |
1322 r_getservbyname() to lib/misc.c. Now uses GMutex functions | |
1323 | |
1324 * lib/config_file.c lib/gftp.h lib/options.h - added config | |
1325 variable type textcombo. default_protocol uses this | |
1326 | |
1327 * lib/config_file.c (gftp_read_config_file) - when reading in the | |
1328 list of supported protocols, add the protocol names to the list | |
1329 associated with default_protocol. Also, don't try to have | |
1330 default_protocol fall back to FTP. The code that uses this will fall | |
1331 back properly | |
1332 | |
1333 * lib/gftp.h (struct gftp_transfer) - renamed node to user_data | |
1334 | |
1335 * lib/misc.c lib/gftp.h - moved parse_attribs() from | |
1336 src/gtk/transfer.c to misc.c. Renamed to gftp_parse_attribs() | |
1337 | |
1338 * lib/protocols.c lib/gftp.h - moved get_status() from | |
1339 src/gtk/transfer.c to protocols.c. Renamed to | |
1340 gftp_get_transfer_status(). Uses GMutex functions | |
1341 | |
1342 | |
1343 2003-4-7 Brian Masney <masneyb@gftp.org> | |
1344 * src/gtk/bookmarks.c - renamed struct gftp_bookmarks to | |
1345 gftp_bookmarks_var. In run_bookmark(), use gftp_parse_bookmark() | |
1346 | |
1347 * src/gtk/bookmarks.c src/gtk/dnd.c src/gtk/menu-items.c | |
1348 src/gtk/transfer.c - use g_strdup() instead of g_malloc()/strcpy() | |
1349 | |
1350 * src/gtk/dnd.c src/gtk/menu-items.c - don't use depreciated macros | |
1351 to access the request structure | |
1352 | |
1353 * src/gtk/*.c - use new gftp_lookup_global_option() and | |
1354 gftp_lookup_request_option() functions | |
1355 | |
1356 * src/gtk/gftp-gtk.h src/gtk/gftp-gtk.c - moved viewedit_processes and | |
1357 viewedit_process_done variables from lib/gftp.h and lib/options.h | |
1358 | |
1359 * src/gtk/transfer.c - removed gftp_gtk_calc_kbs(). This is now in | |
1360 lib/protocols.c. Removed Binary/Ascii conversion. This is all done in | |
1361 lib/rfc959.c | |
1362 | |
124 | 1363 2003-4-6 Brian Masney <masneyb@gftp.org> |
1364 * lib/config_file.c src/text/gftp-text.c - changed arguments of | |
1365 gftp_read_config_file() and gftp_read_bookmarks() to take an argument | |
1366 to the path of the global config directory. The text/gtk+ port will | |
1367 just pass SHARE_DIR. The native MacOS X port that is in the works | |
1368 needs this (Nathan Robertson is currently working on this port) | |
1369 | |
1370 * lib/gftp.h lib/config_file.c - removed config variable type | |
1371 gftp_option_type_textarray | |
1372 | |
1373 * lib/gftp.h lib/config_file.c - removed copy_function from | |
1374 gftp_option_type_var. This is implemented with memcpy() instead | |
1375 | |
1376 * lib/rfc959.c - remember to rename all instances of firewall_* to | |
1377 ftp_proxy_* | |
1378 | |
1379 * lib/sshv2.c - improved generating the argument list for the ssh | |
1380 client | |
1381 | |
1382 * lib/sshv2.c lib/misc.c lib/gftp.h - added len argument to | |
1383 ptym_open() | |
1384 | |
1385 * lib/protocols.c lib/misc.c lib/config_file.c - use g_strdup() | |
1386 instead of g_malloc()/strcpy() | |
1387 | |
1388 2003-4-5 Brian Masney <masneyb@gftp.org> | |
1389 * lib/config_file.c lib/options.h lib/gftp.h lib/rfc959.c | |
1390 lib/rfc2068.c lib/ssh.c - added new internal configuration interface. | |
1391 Rather than having a global variable for each option, I have a global | |
1392 hash table (gftp_global_options_htable) that I can look up option names | |
1393 by name using gftp_lookup_global_option(). I also an options hash | |
1394 associated with a request structure, so I will be able to call | |
1395 gftp_lookup_request_option(). I will be able to override options with | |
1396 bookmarks or while transfers are in progress very easily now. Also, all | |
1397 options no longer have to appear in config_file.c, the per protocol | |
1398 options can appear inside their own file | |
1399 | |
1400 * lib/gftp.h lib/bookmarks.c lib/local.c lib/rfc959.c lib/rfc2068.c - | |
1401 remove set_data_type and protocol name from struct gftp_request | |
1402 | |
1403 * lib/rfc959.c - renamed all firewall_* variables to ftp_proxy_* in | |
1404 the config file | |
1405 | |
1406 * lib/gftp.h lib/protocols.c lib/rfc959.c - renamed all GFTP_TYPE_* | |
1407 vars to GFTP_DIRTYPE_* | |
1408 | |
1409 * lib/gftp.h - removed ascii field and renamed the node pointer to | |
1410 user_data in struct gftp_file. In gftp_request, removed any setting | |
1411 that is now stored in the global/local hash tables. Added | |
1412 register_module() pointer that will be called whenever the protocol is | |
1413 first loaded into gftp | |
1414 | |
1415 * lib/rfc959.c src/text/gftp-text.c - moved the ascii/binary | |
1416 translation to rfc959.c. Also, moved any instance of automatically | |
1417 setting the data type to rfc959.c as well. | |
1418 | |
1419 * lib/misc.c lib/sshv2.c - moved all ssh functions from misc.c to | |
1420 sshv2.c. I had these origionally in misc.c because I used to have 2 | |
1421 different SSH protocols | |
1422 | |
1423 * lib/protocols.c src/text/gftp-text.c - added gftp_calc_kbs() to | |
1424 = protocols.c. This no longer needs to be in the different ports | |
1425 | |
1426 * src/text/gftp-text.c - read/write options based on new configuration | |
1427 interface | |
1428 | |
1429 * Use new configuration interface in all source files | |
1430 | |
1431 * Updated copyright dates on all source files | |
1432 | |
1433 * Note: GTK+ port is completely broken at the moment. I'll upload | |
1434 those changes whenever I get them done | |
1435 | |
121
1b41e6945e9d
2003-04-05 Duarte Loreto <happyguy_pt@hotmail.com>
dnloreto
parents:
116
diff
changeset
|
1436 2003-04-05 Duarte Loreto <happyguy_pt@hotmail.com> |
1b41e6945e9d
2003-04-05 Duarte Loreto <happyguy_pt@hotmail.com>
dnloreto
parents:
116
diff
changeset
|
1437 |
1b41e6945e9d
2003-04-05 Duarte Loreto <happyguy_pt@hotmail.com>
dnloreto
parents:
116
diff
changeset
|
1438 * configure.in: Added "pt" to ALL_LINGUAS. |
1b41e6945e9d
2003-04-05 Duarte Loreto <happyguy_pt@hotmail.com>
dnloreto
parents:
116
diff
changeset
|
1439 |
116 | 1440 2003-03-04 Yuriy Syrota <rasta renome.rovno.ua> |
1441 | |
1442 * configure.in: Added Ukrainian (uk) to ALL_LINGUAS | |
1443 | |
115 | 1444 2003-2-25 Brian Masney <masneyb@gftp.org> |
1445 * src/gtk/gftp-gtk.c - use gtk_container_add() instead of | |
1446 gtk_scrolled_window_add_with_viewport() | |
1447 (from Kang Jeong-Hee <Keizi@mail.co.kr>) | |
1448 | |
113 | 1449 2003-2-23 Brian Masney <masneyb@gftp.org> |
114 | 1450 * lib/cache.c - added function gftp_parse_cache_entry(). Save |
1451 request->server_type (output of SYST in FTP command) to the directory | |
1452 entry | |
1453 | |
1454 * lib/rfc959.c (rfc959_syst) - fix to parse the output correctly | |
1455 | |
1456 * src/{text,gtk}/Makefile.am - remove @LIBINTL@. The gettext.m4 | |
1457 macro should automatically add this to the LIBS variable | |
1458 | |
113 | 1459 * acinclude.m4 - put largefile.m4 in here |
1460 | |
110 | 1461 2003-02-21 Pablo Saratxaga <pablo@mandrakesoft.com> |
1462 * configure.in: Added Catalan (ca) to ALL_LINGUAS | |
1463 | |
107 | 1464 2003-2-17 Brian Masney <masneyb@gftp.org> |
1465 * lib/protocols.c lib/rfc959.c - added VMS directory listing support | |
1466 | |
1467 * lib/config_file.c lib/protocols.c - extra checks when stripping off | |
1468 carriage returns and linefeeds | |
1469 | |
105 | 1470 2003-2-9 Brian Masney <masneyb@gftp.org> |
1471 * lib/protocols.c (parse_time) - parse more time formats. Better | |
1472 error checking. If there was an error parsing this time, | |
1473 skip ahead to the next token | |
1474 | |
1475 * lib/rfc2068.c - this was completely broken. This was broken whenever | |
1476 I did the conversion over to use the gftp_get_line() function. | |
1477 | |
1478 * lib/rfc959.c - use g_strdup instead of g_malloc/strcpy | |
1479 | |
101 | 1480 2003-2-6 Brian Masney <masneyb@gftp.org> |
102 | 1481 * lib/gftp.h lib/protocols.c lib/rfc2068.c - put in new |
1482 parse_time() function that should work across all locales. | |
1483 It uses strptime() internally. | |
1484 | |
1485 * lib/misc.c - remove note from close statement | |
1486 | |
101 | 1487 * lib/config_file.c lib/gftp.h lib/options.h - remove ssh1_sftp_path |
1488 option | |
1489 | |
96 | 1490 2003-02-03 Daniel Yacob <locales@geez.org> |
1491 * configure.ac: Added "am" (Amharic) to ALL_LINGUAS. | |
1492 | |
93 | 1493 2003-1-21 Brian Masney <masneyb@gftp.org> |
1494 * configure.in - fix for Solaris. Move the initial declaration up | |
1495 in the source file | |
1496 | |
91 | 1497 2003-1-21 Brian Masney <masneyb@gftp.org> |
1498 * lib/gftp.h - added server type defines. Added server_type field to | |
1499 gftp_request | |
1500 | |
1501 * lib/local.c - use S_ISDIR and S_ISLINK macros | |
1502 | |
1503 * lib/protocols.c - (gftp_parse_ls*) - use hints from server_type for | |
1504 parsing directory listing | |
1505 | |
1506 * lib/rfc959.c - added function rfc959_syst. Call this on startup | |
1507 | |
1508 * lib/protocols.c lib/rfc959.c lib/sshv2.c - pass request structure | |
1509 to gftp_parse_ls | |
1510 | |
1511 * lib/sshv2.c - set server_type to be GFTP_TYPE_UNIX | |
1512 | |
88 | 1513 2003-1-11 Brian Masney <masneyb@gftp.org> |
1514 * autogen.sh - removed --intl and --no-changelog flags to gettextize | |
1515 | |
1516 * aclocal.m4 - updated | |
1517 | |
1518 * configure.in - and intl and po directories to AC_OUTPUT | |
1519 | |
1520 * cvsclean - remove more stuff | |
1521 | |
1522 * lib/bookmark.c (bookmark_parse_url) - use gftp_parse_bookmark | |
1523 function | |
1524 | |
1525 * lib/cache.c - remove gftp_cache_get_url_prefix(). Use | |
1526 request->url_prefix instead | |
1527 | |
1528 * lib/config_file.c - use proper exit codes. Also complain if the | |
1529 default protocol specified in the config file is invalid | |
1530 | |
1531 * lib/gftp.h lib/local.c lib/protocols.c - removed isblock, ischar, | |
1532 issocket and isfifo in struct gftp_file (not used anymore) | |
1533 | |
1534 * lib/gftp.h lib/misc.c - removed file_countlf (not used anymore) | |
1535 | |
1536 * lib/local.c lib/misc.c lib/protocols.c - various small cleanups | |
1537 | |
1538 * lib/misc.c (string_hash_function) - check key[i] instead of key[0] | |
1539 | |
1540 * lib/protocols.c lib/gftp.h - added gftp_parse_bookmark() | |
1541 | |
1542 * lib/rfc2068.c - if we are connected to a FTP url via a proxy, set | |
1543 request->url_prefix to be ftp. Added rfc2068_destroy() to free | |
1544 url_prefix whenever the structure is to be freed | |
1545 | |
86 | 1546 2002-12-29 Brian Masney <masneyb@gftp.org> |
1547 * lib/gftp.h - don't include sys/sysmacros.h | |
1548 | |
1549 * src/gtk/transfer.c - more GFTP_EFATAL checks | |
1550 | |
84 | 1551 2002-12-29 Brian Masney <masneyb@gftp.org> |
1552 * lib/ssh.c lib/config_file.c lib/Makefile.am lib/gftp.h lib/options.h - | |
1553 removed old legacy SSH protocol and option to enable this protocol | |
1554 | |
1555 * lib/gftp.h - added GFTP_ERETRYABLE and GFTP_EFATAL error codes | |
1556 | |
1557 * lib/bookmark.c lib/local.c lib/protocols.c lib/rfc959.c lib/rfc2068.c | |
1558 lib/sshv2.c - return new error codes instead of -1 or -2 | |
1559 | |
1560 * lib/misc.c (gftp_*_sort_function_ds) - changed return values | |
1561 | |
1562 * src/gtk/transfer.c (connect_thread) - if return value of | |
1563 gftp_connect() is GFTP_EFATAL, don't attempt to retry the connection | |
1564 | |
81 | 1565 2002-12-11 Brian Masney <masneyb@gftp.org> |
1566 * configure.in - fix for enable/disable gtkport, textport and gtk20 | |
1567 | |
80 | 1568 2002-12-10 Brian Masney <masneyb@gftp.org> |
1569 * configure.in - check for grantpt function | |
1570 | |
1571 * lib/misc.c (pty[ms]_open) - use Unix98 PTY allocation if grantpt() | |
1572 is on the current system | |
1573 | |
1574 * lib/gftp.h - include stropts.h if grantpt is here | |
1575 | |
1576 2002-12-5 Brian Masney <masneyb@gftp.org> | |
1577 * Release final 2.0.14 | |
1578 | |
1579 * lib/Chagelog-old - brief updates since 2.0.13 | |
1580 | |
77 | 1581 2002-12-4 Brian Masney <masneyb@gftp.org> |
1582 * lib/misc.c (ssh_start_login_sequence) - if the word WARNING appears | |
1583 in the banner, don't log into the server | |
1584 | |
1585 * docs/sample.gftp/gftprc - removed use_default_dl_types line | |
1586 | |
76 | 1587 2002-12-4 Brian Masney <masneyb@gftp.org> |
1588 * lib/protocols.c (gftp_set_data_type) - return 0 if there is no | |
1589 protocol specific set_data_type function | |
1590 | |
1591 * src/gtk/transfer.c (gftp_gtk_transfer_files) - ascii/binary automatic | |
1592 switching fixes | |
1593 | |
1594 2002-12-3 Brian Masney <masneyb@gftp.org> | |
75 | 1595 * lib/config_file.c lib/gftp.h lib/protocols.c - removed |
1596 use_default_dl_types option. This is always enabled by default now. | |
1597 | |
1598 * src/gtk/dnd.c src/gtk/transfer.c - fix for files that should be | |
1599 transferred as ascii | |
1600 | |
73 | 1601 2002-12-2 Brian Masney <masneyb@gftp.org> |
1602 * src/gtk/bookmarks.c (run_bookmark) - don't override the value of | |
1603 need_userpass for SSH transfers | |
1604 | |
1605 * ChangeLog-old - clean up list of changes from 2.0.13 to 2.0.14rc1 | |
1606 | |
1607 * README - minor fixes | |
1608 | |
1609 * configure.in - increment version to 2.0.14 | |
1610 | |
1611 * debian/copyright - change my email address and webpage | |
1612 | |
1613 * debian/rules - 2 small changes | |
1614 | |
1615 * TODO - added 1 item | |
1616 | |
72 | 1617 2002-12-2 Brian Masney <masneyb@gftp.org> |
1618 * src/gtk/misc-gtk.c (MakeEditDialog) - bind to enter and esc keys | |
1619 | |
67 | 1620 2002-11-27 Brian Masney <masneyb@gftp.org> |
1621 * Officially release 2.0.14rc1 | |
1622 | |
1623 * lib/cache.c - take out a warning message | |
1624 | |
1625 * lib/misc.c lib/protocols.c lib/gftp.h lib/gtk/dnd.c lib/transfer.c - | |
1626 add second argument (free_request) to gftp_request_destroy | |
1627 | |
1628 * lib/protocols.c (gftp_parse_url) - make sure the request structure | |
1629 is cleared before we start to modify it | |
1630 | |
1631 * src/gtk/gftp-text.c - fixed crash if you didn't enter a username | |
1632 | |
66 | 1633 2002-11-26 Brian Masney <masneyb@gftp.org> |
1634 * configure.in - change version to 2.0.14rc1 | |
1635 | |
1636 * lib/local.c - fix for uploading files. Move setting of hostname | |
1637 from local_connect() to local_init() | |
1638 | |
1639 * lib/misc.c (gftp_request) - copy only select fields over instead of | |
1640 whole structure | |
1641 | |
1642 * lib/protocols.c (gftp_request_new) - set datafd and cachefd to -1 | |
1643 | |
1644 * lib/protocols.c (gftp_set_proxy_config) - allow a NULL proxy_config | |
1645 to be passed | |
1646 | |
1647 * src/gtk/misc-gtk.c (update_window) - don't show the hostname if we | |
1648 are connected via the local protocol | |
1649 | |
1650 * src/gtk/transfer.c (create_transfer) - check to see if this protocol | |
1651 is always connected | |
1652 | |
65 | 1653 2002-11-25 Brian Masney <masneyb@gftp.org> |
1654 * lib/misc.c (ssh_start_login_sequence) - fixes for when the initial | |
1655 SSH banner is bigger than 200 characters | |
1656 | |
1657 * lib/local.c (local_connect) - set request->hostname to local | |
1658 filesystem | |
1659 | |
1660 * lib/protocols.c (gftp_parse_url) - don't include 2 slashes for | |
1661 the directory when parsing a local URL | |
1662 | |
1663 * src/gtk/chmod_dialog.c (chmod_dialog) - allow multiple files to be | |
1664 selected | |
1665 | |
1666 * src/gtk/dnd.c - small fixes | |
1667 | |
64 | 1668 2002-11-23 Brian Masney <masneyb@gftp.org> |
1669 * lib/sshv2.c - added more error checking so that the user won't get | |
1670 disconnected if they enter files or directories that don't exist | |
1671 | |
1672 2002-11-23 Brian Masney <masneyb@gftp.org> | |
63 | 1673 * lib/local.c lib/rfc959.c lib/rfc2068.c lib/ssh.c lib/sshv2.c |
1674 lib/gftp.h - added swap_socks function to gftp_request structure | |
1675 | |
1676 * lib/misc.c lib/protocols.c - move swap_socks() from misc.c to | |
1677 protocols.c (renamed to gftp_swap_socks) | |
1678 | |
1679 * src/gtk/misc-gtk.c src/gtk/transfer.c - removed fix_display() | |
1680 | |
1681 * src/gtk/delete_dialog.c src/gtk/transfer.c - changed all occurances of | |
1682 swap_socks() to gftp_swap_socks() | |
1683 | |
1684 * src/gtk/gftp-gtk.c src/gtk/gftp-gtk.h - removed gftp_is_started | |
1685 variable | |
1686 | |
62 | 1687 2002-11-21 Brian Masney <masneyb@gftp.org> |
1688 * lib/local.c (local_put_file) - small fix | |
1689 | |
61 | 1690 2002-11-21 Brian Masney <masneyb@gftp.org> |
1691 * lib/misc.c lib/ssh.c lib/sshv2.c - improvements to the login | |
1692 sequence for SSH connections | |
1693 | |
1694 lib/sshv2.c - SSH transfers now works again | |
1695 | |
60 | 1696 2002-11-21 Brian Masney <masneyb@gftp.org> |
1697 * lib/protocols.c (gftp_get_next_line) - fixed several bugs | |
1698 | |
1699 * lib/cache.c - Don't do a cache lookup in gftp_new_cache_entry(). In | |
1700 gftp_find_cache_entry(), don't log an error to the user if we can't | |
1701 open up the cache file | |
1702 | |
1703 * lib/rfc959.c lib/rfc2068.c lib/protocols.c - small cache fixes | |
1704 | |
1705 * lib/cache.c lib/rfc2068.c lib/rfc959.c - pass full buffer size | |
1706 instead of buffer size - 1 to gftp_get_line | |
1707 | |
59 | 1708 2002-11-20 Brian Masney <masneyb@gftp.org> |
1709 * lib/config_file.c - don't check buf[-1] for blank newlines in | |
1710 gftp_read_config_file() and gftp_read_bookmarks_file() | |
1711 | |
1712 * lib/misc.c (string_hash_function) - Fixes if the string was less | |
1713 than 2 characters | |
1714 | |
1715 * src/gtk/transfer.c - unlock mutex before we destroy (for POSIX | |
1716 compliance) | |
1717 | |
1718 All 3 of these fixes are from Peter Osterlund <petero2@telia.com> | |
1719 | |
58 | 1720 2002-11-20 Brian Masney <masneyb@gftp.org> |
1721 * lib/protocols.c lib/gftp.h - added gftp_get_line(), gftp_read(), | |
1722 gftp_write(), gftp_writefmt(), and gftp_set_sockblocking() functions. | |
1723 Added struct_gftp_getline_buffer for gftp_get_line function() | |
1724 | |
1725 * lib/cache.c lib/gftp.h lib/local.c lib/misc.c lib/protocols.c | |
1726 lib/rfc2068.c lib/rfc959.c lib/ssh.c lib/sshv2.c - *_get_file() returns | |
1727 off_t instead of long. *_{get,put}_next_file_chunk returns ssize_t | |
1728 instead of size_t. Added *_set_config_options function to gftp_request | |
1729 structure and protocol files. Use the new network functions | |
1730 documented above. Convert usage of ANSI C IO (FILE *) to standard BSD | |
1731 sockets so that I can use timeouts properly with select | |
1732 | |
1733 * lib/misc.c (ssh_start_login_sequence) - use gftp_set_sockblock(), | |
1734 gftp_read() and gftp_write() functions | |
1735 | |
1736 * lib/protocols.c - move some protocol specific code to the protocol | |
1737 specific files | |
1738 | |
1739 * lib/local.c - log succesful messages to gftp_logging_misc instead | |
1740 of gftp_logging_error | |
1741 | |
1742 * lib/cache.c - log some more error conditions to the user | |
1743 | |
1744 * lib/rfc959.c - added rfc959_getcwd(). In, | |
1745 rfc959_accept_active_connection(), set set socket to blocking mode | |
1746 before calling accept() | |
1747 | |
1748 * src/text/gftk-text.c - If we get no files in gftp_text_ls(), | |
1749 return instead of segfaulting | |
1750 | |
1751 * src/gtk/gftp-gtk.c - expand the port field in the toolbar to be 45 | |
1752 pixels wide | |
1753 | |
1754 * src/text/gftp-text.c src/gtk/misc-gtk.c src/gtk/transfer.c | |
1755 src/gtk/view_dialog.c - changes for conversion of request->{sock,data} | |
1756 from ANSI C IO (FILE *) to standard BSD sockets | |
1757 | |
57 | 1758 2002-11-11 Brian Masney <masneyb@gftp.org> |
1759 * configure.in - compile GTK+ 2.0 port by default | |
1760 | |
56 | 1761 2002-11-11 Brian Masney <masneyb@gftp.org> |
1762 * src/gtk/dnd.c - fixes to DnD code | |
1763 | |
1764 * src/gtk/gftp-gtk.[ch] - added main_thread_id variable | |
1765 | |
1766 * src/gtk/misc-gtk.c (ftp_log) - don't check the user_data to see if | |
1767 we're in a child thread, instead compare the value of pthread_self() | |
1768 with main_thread_id | |
1769 | |
1770 * src/gtk/chmod_dialog.c src/gtk/delete_dialog.c src/gtk/menu-items.c | |
1771 src/gtk/mkdir_dialog.c src/gtk/rename_dialog.c src/gtk/transfer.c - | |
1772 don't set user_data to 0x1 if we're in a child thread | |
1773 | |
1774 * lib/gftp.h src/gtk/misc-gtk.c src/text/gftp-text.c - make | |
1775 r_getservbyname() available even if HAVE_GERADDRINFO is defined | |
1776 | |
1777 * lib/misc.c (make_ssh_exec_args) - if port is zero, lookup the default | |
1778 port for the ssh service | |
1779 | |
1780 * lib/protocols.c (gftp_connect_server) - if the port is zero, store | |
1781 the default port for that protocol there | |
1782 | |
1783 * src/gtk/transfer.c - added function update_window_transfer_bytes(). | |
1784 Be able to update the directory download progress in window1 now | |
1785 | |
1786 * lib/config_file.c lib/misc.c lib/protocols.c lib/ssh.c lib/sshv2.c | |
1787 src/text/gftp-text.c - use g_strdup() instead of g_strconcat() where | |
1788 needed | |
1789 | |
54 | 1790 2002-11-11 Andras Timar <timar@gnome.hu> |
1791 * configure.in: added 'hu' to ALL_LINGUAS | |
1792 | |
51 | 1793 2002-11-6 Brian Masney <masneyb@gftp.org> |
1794 * src/gtk/gftp-gtk.c - connect to the select_row signal in the file | |
1795 listbox to grab the double click event | |
1796 | |
50 | 1797 2002-11-5 Brian Masney <masneyb@gftp.org> |
1798 * src/gtk/dnd.c - some code cleanups. Also, add the file transfer with | |
1799 the function add_file_transfer() | |
1800 | |
1801 * src/gtk/misc-gtk.c - remove several unneeded calls to fix_display() | |
1802 | |
1803 * src/gtk/gftp-gtk.c (list_dblclick) - add a note about the double | |
1804 click stuff not working properly | |
1805 | |
49 | 1806 2002-11-5 Brian Masney <masneyb@gftp.org> |
1807 * src/gtk/transfer.c - use stock icons in GTK+ 2.0 port | |
1808 | |
1809 2002-11-5 Brian Masney <masneyb@gftp.org> | |
1810 * lib/*.c src/gtk/*.c - removed function declarations for the static | |
1811 functions from the top of the file. I had to rearrange the order of a | |
1812 bunch of functions to avoid compiler warnings | |
1813 | |
1814 * lib/gftp.h - include sys/sysmacros.h. If major() and minor() isn't | |
1815 defined, give a compiler warning and define our own | |
1816 | |
1817 * lib/local.c (local_get_next_file) - if this file is a device, store | |
1818 the major/minor number in the file size | |
1819 | |
1820 * src/gtk/misc-gtk.c (add_file_listbox) - if this file is a device, | |
1821 use the major() and minor() macros to display the major and minor number | |
1822 | |
47 | 1823 2002-11-5 Brian Masney <masneyb@gftp.org> |
1824 * lib/cache.c lib/gftp.h - added second argument ignore_directory to | |
1825 gftp_delete_cache_entry | |
1826 | |
1827 * src/gtk/menu-items.c (disconnect) - when disconnecting from the | |
1828 remote site, clear all cache entries for that site | |
1829 | |
1830 * src/gtk/delete_dialog.c src/gtk/misc-gtk.c src/gtk/mkdir_dialog.c - | |
1831 pass a 0 as second argument to gftp_delete_cache_entry | |
1832 | |
46 | 1833 2002-10-31 Brian Masney <masneyb@gftp.org> |
1834 * lib/protocols.c (gftp_get_next_file) - don't use g_filename_to_utf8. | |
1835 If g_locale_to_utf8 fails, print out a warning to the user on the | |
1836 console | |
1837 | |
45 | 1838 2002-10-31 Brian Masney <masneyb@gftp.org> |
1839 * src/gtk/*.[ch] - don't check for gtk+ version based on the minor | |
1840 version. May cause problems later on. | |
1841 | |
1842 * lib/protocols.c src/gtk/bookmarks.c src/gtk/misc-gtk.c - use UTF8 | |
1843 functions for user data when using glib 2.0 | |
1844 | |
44 | 1845 2002-10-30 Brian Masney <masneyb@gftp.org> |
1846 * src/gtk/gftp-gtk.c (CreateMenus) - no longer use depreciated | |
1847 _gtk_accel_group_attach in GTK+ 2.0 port. Instead use | |
1848 gtk_window_add_accel_group for both GTK+ ports | |
1849 (from Nam SungHyun <namsh@kldp.org>) | |
1850 | |
43 | 1851 2002-10-30 Brian Masney <masneyb@gftp.org> |
1852 * src/gtk/transfer.c (getdir_thread) - set use_jmp_environment to 0 instead of 1 | |
1853 | |
1854 * src/gtk/misc-gtk.c (signal_handler) - if use_jmp_environment is 0, | |
1855 and SIGINT is received, terminate the program | |
1856 | |
42 | 1857 2002-10-29 Brian Masney <masneyb@gftp.org> |
1858 * src/gtk/chmod_dialog.c src/gtk/delete_dialog.c src/gtk/gftp-gtk.c | |
1859 src/gtk/gftp-gtk.h src/gtk/menu-items.c src/gtk/misc-gtk.c | |
1860 src/gtk/mkdir_dialog.c src/gtk/rename_dialog.c src/gtk/transfer.c - | |
1861 improved and simplified signal handling code | |
1862 | |
41 | 1863 2002-10-29 Brian Masney <masneyb@gftp.org> |
1864 * lib/config_file.c lib/gftp.h lib/options.h src/gtk/menu-items.c | |
1865 src/gtk/view_dialog.c - removed tmp_directory variable. Instead use | |
1866 g_get_tmp_dir () | |
1867 | |
1868 * lib/gftp.h (struct gftp_request) - added int cancel : 1 | |
1869 | |
1870 * lib/misc.c lib/protocols.c lib/rfc2068.c lib/rfc959.c lib/ssh.c | |
1871 lib/sshv2.c - check for interrupted signal calls | |
1872 | |
1873 * lib/protocols.c - added gftp_fgets() and gftp_fwrite() functions | |
1874 | |
1875 * src/gtk/delete_dialog.c src/gtk/misc-gtk.c src/gtk/transfer.c - use | |
1876 g_main_context_iteration in GTK+ 2.0 port | |
1877 | |
1878 * src/gtk/misc-gtk.c - use g_object_unref instead of gdk_drawable_unref | |
1879 in GTK+ 2.0 port | |
1880 | |
40 | 1881 2002-10-17 Brian Masney <masneyb@gftp.org> |
1882 * lib/protocols.c - add gftp_abort_transfer function. Also, in | |
1883 gftp_transfer_file, when we do a gftp_put_file, if that fails, | |
1884 try to abort the transfer. | |
1885 | |
1886 * lib/rfc959.c - add rfc959_abort_transfer function | |
1887 | |
1888 * lib/rfc2068.c, lib/local.c - point abort_transfer pointer to | |
1889 rfc2068_end_transfer and local_end_transfer respectively | |
1890 | |
1891 * lib/ssh.c, lib/sshv2.c - add FIXME to implement abort function | |
1892 | |
1893 * src/gtk/transfer.c - when we stop a transfer, try to abort it | |
1894 first. If that fails, disconnect from the site completely | |
1895 | |
39 | 1896 2002-10-15 Brian Masney <masneyb@gftp.org> |
1897 * lib/config_file.c - enable combo in GTK port for Proxy server type | |
1898 | |
1899 * lib/misc.c (gftp_sort_filelist) - make sure prev pointer to first | |
1900 entry is NULL | |
1901 | |
1902 * lib/protocols.c (copy_token) - when setting the end position of | |
1903 the token to \0, after we're done set it back to the origional position | |
1904 | |
1905 * src/gtk/gftp-gtk.c, src/gtk/menu-items.c - changed g_list_first (list) | |
1906 to just list | |
1907 | |
37 | 1908 2002-10-13 Brian Masney <masneyb@gftp.org> |
1909 * lib/gftp.h (struct gftp_config_vars_tag) - remove shown flag and | |
1910 added ports_shown flag. Added GFTP_PORTS_TEXT, GFTP_PORTS_GTK, | |
1911 and GFTP_PORTS_ALL flags | |
1912 | |
1913 * lib/config_file.c - update to use new fields. | |
1914 | |
1915 * lib/config_file.c, lib/options.h, lib/gftp.h - added new global | |
1916 options: local_sortcol, local_sortasds, remote_sortcol, remote_sortasds | |
1917 | |
1918 * src/gtk/gftp-gtk.c - sort based on parameters above. Also, if a url | |
1919 was given on the command line, don't connect to it until the local side | |
1920 has been setup | |
1921 | |
1922 * src/gtk/options_dialog.c - only show variables that have GFTP_PORT_GTK | |
1923 set | |
1924 | |
1925 * src/text/gftp-text.c - add help screen for set command. Added command | |
1926 clear cache. Sort the filelist based on the configuration options. | |
1927 | |
1928 * configure.in - update to version 2.0.14 | |
1929 | |
1930 * cvsclean - clean up the Makefile.am file better | |
1931 | |
36 | 1932 2002-10-07 Brian Masney <masneyb@gftp.org> |
1933 * lib/local.c - fixed file uploads | |
1934 | |
1935 * lib/rfc959.c - fixed crash if you uploaded/downloaded a file that | |
1936 you didn't have permission to | |
1937 | |
1938 * src/gtk/transfer.c - display fixes for hostname | |
1939 | |
1940 * autogen.sh - pass -c to automake | |
1941 | |
34 | 1942 2002-10-07 Brian Masney <masneyb@gftp.org> |
1943 * docs/sample.gftp/gftp-mini-logo.xpm - added mini gFTP logo file | |
1944 from Debian. This can be used as a menu icon. | |
1945 | |
33 | 1946 2002-10-06 Brian Masney <masneyb@gftp.org> |
1947 * src/gtk/delete_dialog.c, src/gtk/gftp-gtk.c, src/gtk/misc-gtk.c, | |
1948 src/gtk/transfer.c - Fixed dead-locks with GDK_THREADS_{ENTER,LEAVE} | |
1949 | |
1950 * configure.in, src/gtk/Makefile.am - Use GTHREAD_LIBS | |
1951 | |
1952 2002-10-03 Brian Masney <masneyb@gftp.org> | |
1953 * Makefile.am - remove intl and m4 directory from subdirs. autogen.sh | |
1954 will automagically add these for me. | |
1955 | |
1956 * autogen.sh - remove check for libtool | |
1957 | |
1958 * configure.in - link in gthread | |
1959 | |
1960 * cvsclean - added this script | |
1961 | |
358 | 1962 * *.[ch] - added $Id: ChangeLog,v 1.198 2004/01/07 11:44:59 masneyb Exp $ tags |
33 | 1963 |
1964 * debian/* - updated files from Debian maintainer | |
1965 | |
32 | 1966 2002-10-03 Brian Masney <masneyb@gftp.org> |
1967 * src/gtk/gftp-gtk.c - call g_thread_init (NULL) | |
1968 | |
1969 * src/gtk/delete_dialog.c, src/gtk/misc-gtk.c, src/gtk/transfer.c - | |
1970 call gdk_threads_enter() and gdk_threads_leave() | |
1971 | |
28 | 1972 2002-09-24 Brian Masney <masneyb@gftp.org> |
1973 * configure.in - take [external] off of AM_GNU_GETTEXT | |
1974 | |
27 | 1975 2002-09-24 Brian Masney <masneyb@gftp.org> |
1976 * intl/ - remove this directory | |
1977 | |
26 | 1978 2002-09-24 gettextize <bug-gnu-gettext@gnu.org> |
1979 * Makefile.am (SUBDIRS): Add intl, | |
1980 (ACLOCAL_AMFLAGS): New variable. | |
1981 (EXTRA_DIST): Add config.rpath mkinstalldirs. | |
1982 * configure.in (AC_OUTPUT): Add intl/Makefile, | |
1983 | |
25 | 1984 2002-09-24 Brian Masney <masneyb@gftp.org> |
26 | 1985 * lib/config_file.c - separated saving of bookmarks from |
1986 gftp_write_config_file() to gftp_write_bookmarks_file(). Bookmarks will | |
1987 no longer be rewritten to disk every time gFTP exits | |
1988 | |
1989 * src/gtk/bookmarks.c - call gftp_write_bookmarks_file() instead of | |
1990 gftp_write_config_file() when altering a bookmark | |
1991 | |
1992 * configure.in - Fixed problem with the text port being compiled | |
1993 against glib 1.2 if we wanted it to be compiled against glib 2.0 | |
1994 instead | |
1995 | |
1996 * autogen.sh - add this build script | |
1997 | |
1998 2002-09-24 Brian Masney <masneyb@gftp.org> | |
25 | 1999 * Remove intl/ directory from CVS |
2000 | |
23 | 2001 2002-09-18 Brian Masney <masneyb@gftp.org> |
2002 * Updated French translation (from Damien Mascr? | |
2003 <damienmascre@free.fr>) | |
2004 | |
2005 * Updated Japanese translation (from Ryoichi INAGAKI | |
2006 <inagaki@ryo1.net>) | |
2007 | |
2008 2002-09-17 Brian Masney <masneyb@gftp.org> | |
2009 * src/gtk/bookmarks.c - Fixed crash that would occur if you saved the | |
26 | 2010 changes two times in the bookmark editor. Also, fixed several memory |
2011 leaks | |
23 | 2012 |
22 | 2013 2002-09-16 Brian Masney <masneyb@gftp.org> |
2014 * po/de.po - Updated German translation (from Matthias Haase | |
2015 <matthias_haase@bennewitz.com>) | |
2016 | |
2017 * po/ru.po - Updated Russian translation (from Vitaly Lipatov | |
2018 <LAV@VL3143.spb.edu>) | |
2019 | |
21 | 2020 2002-09-16 Brian Masney <masneyb@gftp.org> |
2021 * src/gtk/gftp-gtk.c, src/gtk/menu-items.c, src/gtk/misc-gtk.c - | |
2022 Fixed compile errors when compiling against GTK+ 1.2 | |
2023 | |
2024 * src/gtk/misc-gtk.c (MakeEditDialog, MakeYesNoDialog) - fixed to work | |
2025 with GTK+ 1.2 | |
2026 | |
19 | 2027 2002-09-15 Brian Masney <masneyb@gftp.org> |
2028 * lib/gftp.h (struct gftp_transfer) - changed the type of numfiles and | |
2029 numdirs from unsigned long to long. This must be a signed field. This | |
2030 is a bug I introduced a few days ago. | |
2031 | |
2032 * lib/local.c (local_put_file) - remove the + off of the ab mode to | |
2033 fdopen. This is also a bug I introduced a few days ago. | |
2034 | |
2035 * src/gtk/transfer.c (gftp_gtk_calc_kbs) - make sure that the variable | |
2036 difftime isn't a negative number when computing the KB/s | |
2037 | |
2038 * src/gtk/menu-items.c (save_directory_listing) - remove casts to | |
2039 GTK_OBJECT for the str variable | |
2040 | |
2041 * src/gtk/gftp-gtk.c - use GTK_STOCK_* icons in place of left.xpm, | |
2042 right.xpm, up.xpm, down.xpm and stop.xpm in GTK+ 2.0 port | |
2043 | |
2044 * src/gtk/bookmarks.c - show GTK_STOCK_* icons on the popup menu | |
2045 | |
2046 * src/gtk/bookmarks.c, src/gtk/chmod_dialog.c, src/gtk/menu-items.c, | |
2047 src/gtk/misc-gtk.c, src/gtk/options_dialog.c and | |
2048 src/gtk/view_dialog.c - use gtk_dialog_new_with_buttons in GTK+ 2.0 | |
2049 port to create the dialog. Also, associate gFTP icon with this dialog | |
2050 | |
2051 * src/gtk/misc-gtk.c - changed the interface of MakeEditDialog and | |
2052 MakeYesNoDialog. In the GTK+ 2.0 port, I now use stock icons in the | |
2053 dialog buttons. | |
2054 | |
2055 2002-09-11 Marius Andreiana <mandreiana@yahoo.com> | |
18
6b2e606554aa
2002-09-11 Marius Andreiana <mandreiana@yahoo.com>
mandreiana
parents:
17
diff
changeset
|
2056 |
6b2e606554aa
2002-09-11 Marius Andreiana <mandreiana@yahoo.com>
mandreiana
parents:
17
diff
changeset
|
2057 * configure.in: added 'ro' to ALL_LINGUAS |
6b2e606554aa
2002-09-11 Marius Andreiana <mandreiana@yahoo.com>
mandreiana
parents:
17
diff
changeset
|
2058 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
2059 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
|
2060 * lib/misc.c - added gftp_sort_filelist function |
1 | 2061 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
2062 * 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
|
2063 to do the sorting |
1 | 2064 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
2065 * 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
|
2066 automake 1.4 |
1 | 2067 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
2068 * src/text/gftp-text.c, lib/protocols.c - more large file support |
1 | 2069 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
2070 2002-09-04 Brian Masney <masneyb@gftp.org> |
19 | 2071 * lib/rfc959.c - FXP fixes (from Tobias Gruetzmacher |
2072 <tobias@portfolio16.de>) | |
1 | 2073 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
2074 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
|
2075 * lib/rfc2068.c - HTTP fixes when running under Solaris. Read from |
19 | 2076 request->sockfd and write to request->sockfd_write (Solaris doesn't |
2077 like it when you read/write to the same FILE structure) | |
1 | 2078 |
19 | 2079 * lib/local.c - encode major/minor numbers for a device in the file |
2080 size. This is probably still busted for other platforms | |
1 | 2081 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
2082 * lib/rfc2068.c, lib/rfc959.c, lib/ssh.c, lib/sshv2.c - Sanity |
19 | 2083 checking on the fdopen() calls. Also make sure that all of them have a |
2084 + in their open mode. Doesn't affect UNIX, but it does affect Windows | |
1 | 2085 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
2086 * 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
|
2087 function save_directory_listing. It's in the Local and Remote menus |
1 | 2088 |
19 | 2089 * src/gtk/view_dialog.c - changed log message slightly. The new string |
2090 should already be in the po files translated | |
1 | 2091 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
2092 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
|
2093 * lib/misc.c - don't allow passing a 0 to log10 |
1 | 2094 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
2095 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
|
2096 * 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
|
2097 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
|
2098 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
|
2099 (all from Sung-Hyun Nam <namsh@kldp.org>) |
1 | 2100 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
2101 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
|
2102 * po/ko.po - language team change |
1 | 2103 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
2104 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
|
2105 * po/ko.po - Updated Korean translation |
1 | 2106 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
2107 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
|
2108 * 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
|
2109 |
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
2110 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
|
2111 * configure.in - small build fixes |
1 | 2112 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
2113 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
|
2114 * 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
|
2115 elsewhere |
1 | 2116 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
2117 * 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
|
2118 Removed anonymous FTP stuff |
1 | 2119 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
2120 * 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
|
2121 is defined |
1 | 2122 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
2123 * lib/protocols.c - removed anonymous FTP stuff |
1 | 2124 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
2125 * lib/rfc2068.c - don't check for anonymous username |
1 | 2126 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
2127 * 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
|
2128 (from Owen Taylor <otaylor@redhat.com>) |
1 | 2129 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
2130 2002-08-23 <baddog@cvs.gnome.org> |
19 | 2131 * configure.in - (ALL_LINGUAS): zh_CN.GB2312 -> zh_CN, zh_TW.Big5 -> |
2132 zh_TW | |
1 | 2133 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
2134 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
|
2135 * zh_TW.Big5.po renamed to zh_TW.po |
1 | 2136 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
2137 * zh_CN.GB2312.po renamed to zh_CN.po |
1 | 2138 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
2139 * zh_TW.Big5.gmo - Removed. |
1 | 2140 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
2141 * Makefile.in.in, gftp.pot - Remove generated file. |
1 | 2142 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
2143 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
|
2144 * po/.cvsignore - Shhhhhh |
1 | 2145 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
2146 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
|
2147 * po/de.po - Fixed German translation (charset, header) |
1 | 2148 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
2149 2002-08-05 Brian Masney <masneyb@gftp.org> |
19 | 2150 * lib/protocols.c - When we connect to a remote server, don't change |
2151 the hostname to the PTR record of the hostname | |
1 | 2152 |
19 | 2153 * src/gtk/transfer.c - Fixed crash if you was already transfering a |
2154 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
|
2155 Overwrite/Resume/Skip dialog |
1 | 2156 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
2157 * docs/sample.gftp/gftprc - put the ext= lines back in the config file |
1 | 2158 |
19 | 2159 * po/es.po - Spanish updates (from Gustavo D. Vranjes |
2160 <gvranjes@softhome.net>) | |
1 | 2161 |
19 | 2162 * po/nl.po - Dutch updates (from Myckel Habets |
2163 <myckelhabets@netscape.net>) | |
1 | 2164 |
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
2165 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
|
2166 * gFTP 2.0.13 released |
1 | 2167 |