Mercurial > gftp.yaz
annotate ChangeLog @ 58:c01d91c10f6c
2002-11-20 Brian Masney <masneyb@gftp.org>
* lib/protocols.c lib/gftp.h - added gftp_get_line(), gftp_read(),
gftp_write(), gftp_writefmt(), and gftp_set_sockblocking() functions.
Added struct_gftp_getline_buffer for gftp_get_line function()
* lib/cache.c lib/gftp.h lib/local.c lib/misc.c lib/protocols.c
lib/rfc2068.c lib/rfc959.c lib/ssh.c lib/sshv2.c - *_get_file() returns
off_t instead of long. *_{get,put}_next_file_chunk returns ssize_t
instead of size_t. Added *_set_config_options function to gftp_request
structure and protocol files. Use the new network functions
documented above. Convert usage of ANSI C IO (FILE *) to standard BSD
sockets so that I can use timeouts properly with select
* lib/misc.c (ssh_start_login_sequence) - use gftp_set_sockblock(),
gftp_read() and gftp_write() functions
* lib/protocols.c - move some protocol specific code to the protocol
specific files
* lib/local.c - log succesful messages to gftp_logging_misc instead
of gftp_logging_error
* lib/cache.c - log some more error conditions to the user
* lib/rfc959.c - added rfc959_getcwd(). In,
rfc959_accept_active_connection(), set set socket to blocking mode
before calling accept()
* src/text/gftk-text.c - If we get no files in gftp_text_ls(),
return instead of segfaulting
* src/gtk/gftp-gtk.c - expand the port field in the toolbar to be 45
pixels wide
* src/text/gftp-text.c src/gtk/misc-gtk.c src/gtk/transfer.c
src/gtk/view_dialog.c - changes for conversion of request->{sock,data}
from ANSI C IO (FILE *) to standard BSD sockets
| author | masneyb |
|---|---|
| date | Thu, 21 Nov 2002 00:33:51 +0000 |
| parents | 72f6ca02c83a |
| children | 618423504fe0 |
| rev | line source |
|---|---|
| 58 | 1 2002-11-20 Brian Masney <masneyb@gftp.org> |
| 2 * lib/protocols.c lib/gftp.h - added gftp_get_line(), gftp_read(), | |
| 3 gftp_write(), gftp_writefmt(), and gftp_set_sockblocking() functions. | |
| 4 Added struct_gftp_getline_buffer for gftp_get_line function() | |
| 5 | |
| 6 * lib/cache.c lib/gftp.h lib/local.c lib/misc.c lib/protocols.c | |
| 7 lib/rfc2068.c lib/rfc959.c lib/ssh.c lib/sshv2.c - *_get_file() returns | |
| 8 off_t instead of long. *_{get,put}_next_file_chunk returns ssize_t | |
| 9 instead of size_t. Added *_set_config_options function to gftp_request | |
| 10 structure and protocol files. Use the new network functions | |
| 11 documented above. Convert usage of ANSI C IO (FILE *) to standard BSD | |
| 12 sockets so that I can use timeouts properly with select | |
| 13 | |
| 14 * lib/misc.c (ssh_start_login_sequence) - use gftp_set_sockblock(), | |
| 15 gftp_read() and gftp_write() functions | |
| 16 | |
| 17 * lib/protocols.c - move some protocol specific code to the protocol | |
| 18 specific files | |
| 19 | |
| 20 * lib/local.c - log succesful messages to gftp_logging_misc instead | |
| 21 of gftp_logging_error | |
| 22 | |
| 23 * lib/cache.c - log some more error conditions to the user | |
| 24 | |
| 25 * lib/rfc959.c - added rfc959_getcwd(). In, | |
| 26 rfc959_accept_active_connection(), set set socket to blocking mode | |
| 27 before calling accept() | |
| 28 | |
| 29 * src/text/gftk-text.c - If we get no files in gftp_text_ls(), | |
| 30 return instead of segfaulting | |
| 31 | |
| 32 * src/gtk/gftp-gtk.c - expand the port field in the toolbar to be 45 | |
| 33 pixels wide | |
| 34 | |
| 35 * src/text/gftp-text.c src/gtk/misc-gtk.c src/gtk/transfer.c | |
| 36 src/gtk/view_dialog.c - changes for conversion of request->{sock,data} | |
| 37 from ANSI C IO (FILE *) to standard BSD sockets | |
| 38 | |
| 57 | 39 2002-11-11 Brian Masney <masneyb@gftp.org> |
| 40 * configure.in - compile GTK+ 2.0 port by default | |
| 41 | |
| 56 | 42 2002-11-11 Brian Masney <masneyb@gftp.org> |
| 43 * src/gtk/dnd.c - fixes to DnD code | |
| 44 | |
| 45 * src/gtk/gftp-gtk.[ch] - added main_thread_id variable | |
| 46 | |
| 47 * src/gtk/misc-gtk.c (ftp_log) - don't check the user_data to see if | |
| 48 we're in a child thread, instead compare the value of pthread_self() | |
| 49 with main_thread_id | |
| 50 | |
| 51 * src/gtk/chmod_dialog.c src/gtk/delete_dialog.c src/gtk/menu-items.c | |
| 52 src/gtk/mkdir_dialog.c src/gtk/rename_dialog.c src/gtk/transfer.c - | |
| 53 don't set user_data to 0x1 if we're in a child thread | |
| 54 | |
| 55 * lib/gftp.h src/gtk/misc-gtk.c src/text/gftp-text.c - make | |
| 56 r_getservbyname() available even if HAVE_GERADDRINFO is defined | |
| 57 | |
| 58 * lib/misc.c (make_ssh_exec_args) - if port is zero, lookup the default | |
| 59 port for the ssh service | |
| 60 | |
| 61 * lib/protocols.c (gftp_connect_server) - if the port is zero, store | |
| 62 the default port for that protocol there | |
| 63 | |
| 64 * src/gtk/transfer.c - added function update_window_transfer_bytes(). | |
| 65 Be able to update the directory download progress in window1 now | |
| 66 | |
| 67 * lib/config_file.c lib/misc.c lib/protocols.c lib/ssh.c lib/sshv2.c | |
| 68 src/text/gftp-text.c - use g_strdup() instead of g_strconcat() where | |
| 69 needed | |
| 70 | |
| 54 | 71 2002-11-11 Andras Timar <timar@gnome.hu> |
| 72 * configure.in: added 'hu' to ALL_LINGUAS | |
| 73 | |
| 51 | 74 2002-11-6 Brian Masney <masneyb@gftp.org> |
| 75 * src/gtk/gftp-gtk.c - connect to the select_row signal in the file | |
| 76 listbox to grab the double click event | |
| 77 | |
| 50 | 78 2002-11-5 Brian Masney <masneyb@gftp.org> |
| 79 * src/gtk/dnd.c - some code cleanups. Also, add the file transfer with | |
| 80 the function add_file_transfer() | |
| 81 | |
| 82 * src/gtk/misc-gtk.c - remove several unneeded calls to fix_display() | |
| 83 | |
| 84 * src/gtk/gftp-gtk.c (list_dblclick) - add a note about the double | |
| 85 click stuff not working properly | |
| 86 | |
| 49 | 87 2002-11-5 Brian Masney <masneyb@gftp.org> |
| 88 * src/gtk/transfer.c - use stock icons in GTK+ 2.0 port | |
| 89 | |
| 90 2002-11-5 Brian Masney <masneyb@gftp.org> | |
| 91 * lib/*.c src/gtk/*.c - removed function declarations for the static | |
| 92 functions from the top of the file. I had to rearrange the order of a | |
| 93 bunch of functions to avoid compiler warnings | |
| 94 | |
| 95 * lib/gftp.h - include sys/sysmacros.h. If major() and minor() isn't | |
| 96 defined, give a compiler warning and define our own | |
| 97 | |
| 98 * lib/local.c (local_get_next_file) - if this file is a device, store | |
| 99 the major/minor number in the file size | |
| 100 | |
| 101 * src/gtk/misc-gtk.c (add_file_listbox) - if this file is a device, | |
| 102 use the major() and minor() macros to display the major and minor number | |
| 103 | |
| 47 | 104 2002-11-5 Brian Masney <masneyb@gftp.org> |
| 105 * lib/cache.c lib/gftp.h - added second argument ignore_directory to | |
| 106 gftp_delete_cache_entry | |
| 107 | |
| 108 * src/gtk/menu-items.c (disconnect) - when disconnecting from the | |
| 109 remote site, clear all cache entries for that site | |
| 110 | |
| 111 * src/gtk/delete_dialog.c src/gtk/misc-gtk.c src/gtk/mkdir_dialog.c - | |
| 112 pass a 0 as second argument to gftp_delete_cache_entry | |
| 113 | |
| 46 | 114 2002-10-31 Brian Masney <masneyb@gftp.org> |
| 115 * lib/protocols.c (gftp_get_next_file) - don't use g_filename_to_utf8. | |
| 116 If g_locale_to_utf8 fails, print out a warning to the user on the | |
| 117 console | |
| 118 | |
| 45 | 119 2002-10-31 Brian Masney <masneyb@gftp.org> |
| 120 * src/gtk/*.[ch] - don't check for gtk+ version based on the minor | |
| 121 version. May cause problems later on. | |
| 122 | |
| 123 * lib/protocols.c src/gtk/bookmarks.c src/gtk/misc-gtk.c - use UTF8 | |
| 124 functions for user data when using glib 2.0 | |
| 125 | |
| 44 | 126 2002-10-30 Brian Masney <masneyb@gftp.org> |
| 127 * src/gtk/gftp-gtk.c (CreateMenus) - no longer use depreciated | |
| 128 _gtk_accel_group_attach in GTK+ 2.0 port. Instead use | |
| 129 gtk_window_add_accel_group for both GTK+ ports | |
| 130 (from Nam SungHyun <namsh@kldp.org>) | |
| 131 | |
| 43 | 132 2002-10-30 Brian Masney <masneyb@gftp.org> |
| 133 * src/gtk/transfer.c (getdir_thread) - set use_jmp_environment to 0 instead of 1 | |
| 134 | |
| 135 * src/gtk/misc-gtk.c (signal_handler) - if use_jmp_environment is 0, | |
| 136 and SIGINT is received, terminate the program | |
| 137 | |
| 42 | 138 2002-10-29 Brian Masney <masneyb@gftp.org> |
| 139 * src/gtk/chmod_dialog.c src/gtk/delete_dialog.c src/gtk/gftp-gtk.c | |
| 140 src/gtk/gftp-gtk.h src/gtk/menu-items.c src/gtk/misc-gtk.c | |
| 141 src/gtk/mkdir_dialog.c src/gtk/rename_dialog.c src/gtk/transfer.c - | |
| 142 improved and simplified signal handling code | |
| 143 | |
| 41 | 144 2002-10-29 Brian Masney <masneyb@gftp.org> |
| 145 * lib/config_file.c lib/gftp.h lib/options.h src/gtk/menu-items.c | |
| 146 src/gtk/view_dialog.c - removed tmp_directory variable. Instead use | |
| 147 g_get_tmp_dir () | |
| 148 | |
| 149 * lib/gftp.h (struct gftp_request) - added int cancel : 1 | |
| 150 | |
| 151 * lib/misc.c lib/protocols.c lib/rfc2068.c lib/rfc959.c lib/ssh.c | |
| 152 lib/sshv2.c - check for interrupted signal calls | |
| 153 | |
| 154 * lib/protocols.c - added gftp_fgets() and gftp_fwrite() functions | |
| 155 | |
| 156 * src/gtk/delete_dialog.c src/gtk/misc-gtk.c src/gtk/transfer.c - use | |
| 157 g_main_context_iteration in GTK+ 2.0 port | |
| 158 | |
| 159 * src/gtk/misc-gtk.c - use g_object_unref instead of gdk_drawable_unref | |
| 160 in GTK+ 2.0 port | |
| 161 | |
| 40 | 162 2002-10-17 Brian Masney <masneyb@gftp.org> |
| 163 * lib/protocols.c - add gftp_abort_transfer function. Also, in | |
| 164 gftp_transfer_file, when we do a gftp_put_file, if that fails, | |
| 165 try to abort the transfer. | |
| 166 | |
| 167 * lib/rfc959.c - add rfc959_abort_transfer function | |
| 168 | |
| 169 * lib/rfc2068.c, lib/local.c - point abort_transfer pointer to | |
| 170 rfc2068_end_transfer and local_end_transfer respectively | |
| 171 | |
| 172 * lib/ssh.c, lib/sshv2.c - add FIXME to implement abort function | |
| 173 | |
| 174 * src/gtk/transfer.c - when we stop a transfer, try to abort it | |
| 175 first. If that fails, disconnect from the site completely | |
| 176 | |
| 39 | 177 2002-10-15 Brian Masney <masneyb@gftp.org> |
| 178 * lib/config_file.c - enable combo in GTK port for Proxy server type | |
| 179 | |
| 180 * lib/misc.c (gftp_sort_filelist) - make sure prev pointer to first | |
| 181 entry is NULL | |
| 182 | |
| 183 * lib/protocols.c (copy_token) - when setting the end position of | |
| 184 the token to \0, after we're done set it back to the origional position | |
| 185 | |
| 186 * src/gtk/gftp-gtk.c, src/gtk/menu-items.c - changed g_list_first (list) | |
| 187 to just list | |
| 188 | |
| 37 | 189 2002-10-13 Brian Masney <masneyb@gftp.org> |
| 190 * lib/gftp.h (struct gftp_config_vars_tag) - remove shown flag and | |
| 191 added ports_shown flag. Added GFTP_PORTS_TEXT, GFTP_PORTS_GTK, | |
| 192 and GFTP_PORTS_ALL flags | |
| 193 | |
| 194 * lib/config_file.c - update to use new fields. | |
| 195 | |
| 196 * lib/config_file.c, lib/options.h, lib/gftp.h - added new global | |
| 197 options: local_sortcol, local_sortasds, remote_sortcol, remote_sortasds | |
| 198 | |
| 199 * src/gtk/gftp-gtk.c - sort based on parameters above. Also, if a url | |
| 200 was given on the command line, don't connect to it until the local side | |
| 201 has been setup | |
| 202 | |
| 203 * src/gtk/options_dialog.c - only show variables that have GFTP_PORT_GTK | |
| 204 set | |
| 205 | |
| 206 * src/text/gftp-text.c - add help screen for set command. Added command | |
| 207 clear cache. Sort the filelist based on the configuration options. | |
| 208 | |
| 209 * configure.in - update to version 2.0.14 | |
| 210 | |
| 211 * cvsclean - clean up the Makefile.am file better | |
| 212 | |
| 36 | 213 2002-10-07 Brian Masney <masneyb@gftp.org> |
| 214 * lib/local.c - fixed file uploads | |
| 215 | |
| 216 * lib/rfc959.c - fixed crash if you uploaded/downloaded a file that | |
| 217 you didn't have permission to | |
| 218 | |
| 219 * src/gtk/transfer.c - display fixes for hostname | |
| 220 | |
| 221 * autogen.sh - pass -c to automake | |
| 222 | |
| 34 | 223 2002-10-07 Brian Masney <masneyb@gftp.org> |
| 224 * docs/sample.gftp/gftp-mini-logo.xpm - added mini gFTP logo file | |
| 225 from Debian. This can be used as a menu icon. | |
| 226 | |
| 33 | 227 2002-10-06 Brian Masney <masneyb@gftp.org> |
| 228 * src/gtk/delete_dialog.c, src/gtk/gftp-gtk.c, src/gtk/misc-gtk.c, | |
| 229 src/gtk/transfer.c - Fixed dead-locks with GDK_THREADS_{ENTER,LEAVE} | |
| 230 | |
| 231 * configure.in, src/gtk/Makefile.am - Use GTHREAD_LIBS | |
| 232 | |
| 233 2002-10-03 Brian Masney <masneyb@gftp.org> | |
| 234 * Makefile.am - remove intl and m4 directory from subdirs. autogen.sh | |
| 235 will automagically add these for me. | |
| 236 | |
| 237 * autogen.sh - remove check for libtool | |
| 238 | |
| 239 * configure.in - link in gthread | |
| 240 | |
| 241 * cvsclean - added this script | |
| 242 | |
| 58 | 243 * *.[ch] - added $Id: ChangeLog,v 1.33 2002/11/21 00:33:49 masneyb Exp $ tags |
| 33 | 244 |
| 245 * debian/* - updated files from Debian maintainer | |
| 246 | |
| 32 | 247 2002-10-03 Brian Masney <masneyb@gftp.org> |
| 248 * src/gtk/gftp-gtk.c - call g_thread_init (NULL) | |
| 249 | |
| 250 * src/gtk/delete_dialog.c, src/gtk/misc-gtk.c, src/gtk/transfer.c - | |
| 251 call gdk_threads_enter() and gdk_threads_leave() | |
| 252 | |
| 28 | 253 2002-09-24 Brian Masney <masneyb@gftp.org> |
| 254 * configure.in - take [external] off of AM_GNU_GETTEXT | |
| 255 | |
| 27 | 256 2002-09-24 Brian Masney <masneyb@gftp.org> |
| 257 * intl/ - remove this directory | |
| 258 | |
| 26 | 259 2002-09-24 gettextize <bug-gnu-gettext@gnu.org> |
| 260 * Makefile.am (SUBDIRS): Add intl, | |
| 261 (ACLOCAL_AMFLAGS): New variable. | |
| 262 (EXTRA_DIST): Add config.rpath mkinstalldirs. | |
| 263 * configure.in (AC_OUTPUT): Add intl/Makefile, | |
| 264 | |
| 25 | 265 2002-09-24 Brian Masney <masneyb@gftp.org> |
| 26 | 266 * lib/config_file.c - separated saving of bookmarks from |
| 267 gftp_write_config_file() to gftp_write_bookmarks_file(). Bookmarks will | |
| 268 no longer be rewritten to disk every time gFTP exits | |
| 269 | |
| 270 * src/gtk/bookmarks.c - call gftp_write_bookmarks_file() instead of | |
| 271 gftp_write_config_file() when altering a bookmark | |
| 272 | |
| 273 * configure.in - Fixed problem with the text port being compiled | |
| 274 against glib 1.2 if we wanted it to be compiled against glib 2.0 | |
| 275 instead | |
| 276 | |
| 277 * autogen.sh - add this build script | |
| 278 | |
| 279 2002-09-24 Brian Masney <masneyb@gftp.org> | |
| 25 | 280 * Remove intl/ directory from CVS |
| 281 | |
| 23 | 282 2002-09-18 Brian Masney <masneyb@gftp.org> |
| 283 * Updated French translation (from Damien Mascr? | |
| 284 <damienmascre@free.fr>) | |
| 285 | |
| 286 * Updated Japanese translation (from Ryoichi INAGAKI | |
| 287 <inagaki@ryo1.net>) | |
| 288 | |
| 289 2002-09-17 Brian Masney <masneyb@gftp.org> | |
| 290 * src/gtk/bookmarks.c - Fixed crash that would occur if you saved the | |
| 26 | 291 changes two times in the bookmark editor. Also, fixed several memory |
| 292 leaks | |
| 23 | 293 |
| 22 | 294 2002-09-16 Brian Masney <masneyb@gftp.org> |
| 295 * po/de.po - Updated German translation (from Matthias Haase | |
| 296 <matthias_haase@bennewitz.com>) | |
| 297 | |
| 298 * po/ru.po - Updated Russian translation (from Vitaly Lipatov | |
| 299 <LAV@VL3143.spb.edu>) | |
| 300 | |
| 21 | 301 2002-09-16 Brian Masney <masneyb@gftp.org> |
| 302 * src/gtk/gftp-gtk.c, src/gtk/menu-items.c, src/gtk/misc-gtk.c - | |
| 303 Fixed compile errors when compiling against GTK+ 1.2 | |
| 304 | |
| 305 * src/gtk/misc-gtk.c (MakeEditDialog, MakeYesNoDialog) - fixed to work | |
| 306 with GTK+ 1.2 | |
| 307 | |
| 19 | 308 2002-09-15 Brian Masney <masneyb@gftp.org> |
| 309 * lib/gftp.h (struct gftp_transfer) - changed the type of numfiles and | |
| 310 numdirs from unsigned long to long. This must be a signed field. This | |
| 311 is a bug I introduced a few days ago. | |
| 312 | |
| 313 * lib/local.c (local_put_file) - remove the + off of the ab mode to | |
| 314 fdopen. This is also a bug I introduced a few days ago. | |
| 315 | |
| 316 * src/gtk/transfer.c (gftp_gtk_calc_kbs) - make sure that the variable | |
| 317 difftime isn't a negative number when computing the KB/s | |
| 318 | |
| 319 * src/gtk/menu-items.c (save_directory_listing) - remove casts to | |
| 320 GTK_OBJECT for the str variable | |
| 321 | |
| 322 * src/gtk/gftp-gtk.c - use GTK_STOCK_* icons in place of left.xpm, | |
| 323 right.xpm, up.xpm, down.xpm and stop.xpm in GTK+ 2.0 port | |
| 324 | |
| 325 * src/gtk/bookmarks.c - show GTK_STOCK_* icons on the popup menu | |
| 326 | |
| 327 * src/gtk/bookmarks.c, src/gtk/chmod_dialog.c, src/gtk/menu-items.c, | |
| 328 src/gtk/misc-gtk.c, src/gtk/options_dialog.c and | |
| 329 src/gtk/view_dialog.c - use gtk_dialog_new_with_buttons in GTK+ 2.0 | |
| 330 port to create the dialog. Also, associate gFTP icon with this dialog | |
| 331 | |
| 332 * src/gtk/misc-gtk.c - changed the interface of MakeEditDialog and | |
| 333 MakeYesNoDialog. In the GTK+ 2.0 port, I now use stock icons in the | |
| 334 dialog buttons. | |
| 335 | |
| 336 2002-09-11 Marius Andreiana <mandreiana@yahoo.com> | |
|
18
6b2e606554aa
2002-09-11 Marius Andreiana <mandreiana@yahoo.com>
mandreiana
parents:
17
diff
changeset
|
337 |
|
6b2e606554aa
2002-09-11 Marius Andreiana <mandreiana@yahoo.com>
mandreiana
parents:
17
diff
changeset
|
338 * configure.in: added 'ro' to ALL_LINGUAS |
|
6b2e606554aa
2002-09-11 Marius Andreiana <mandreiana@yahoo.com>
mandreiana
parents:
17
diff
changeset
|
339 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
340 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
|
341 * lib/misc.c - added gftp_sort_filelist function |
| 1 | 342 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
343 * 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
|
344 to do the sorting |
| 1 | 345 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
346 * 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
|
347 automake 1.4 |
| 1 | 348 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
349 * src/text/gftp-text.c, lib/protocols.c - more large file support |
| 1 | 350 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
351 2002-09-04 Brian Masney <masneyb@gftp.org> |
| 19 | 352 * lib/rfc959.c - FXP fixes (from Tobias Gruetzmacher |
| 353 <tobias@portfolio16.de>) | |
| 1 | 354 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
355 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
|
356 * lib/rfc2068.c - HTTP fixes when running under Solaris. Read from |
| 19 | 357 request->sockfd and write to request->sockfd_write (Solaris doesn't |
| 358 like it when you read/write to the same FILE structure) | |
| 1 | 359 |
| 19 | 360 * lib/local.c - encode major/minor numbers for a device in the file |
| 361 size. This is probably still busted for other platforms | |
| 1 | 362 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
363 * lib/rfc2068.c, lib/rfc959.c, lib/ssh.c, lib/sshv2.c - Sanity |
| 19 | 364 checking on the fdopen() calls. Also make sure that all of them have a |
| 365 + in their open mode. Doesn't affect UNIX, but it does affect Windows | |
| 1 | 366 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
367 * 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
|
368 function save_directory_listing. It's in the Local and Remote menus |
| 1 | 369 |
| 19 | 370 * src/gtk/view_dialog.c - changed log message slightly. The new string |
| 371 should already be in the po files translated | |
| 1 | 372 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
373 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
|
374 * lib/misc.c - don't allow passing a 0 to log10 |
| 1 | 375 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
376 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
|
377 * 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
|
378 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
|
379 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
|
380 (all from Sung-Hyun Nam <namsh@kldp.org>) |
| 1 | 381 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
382 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
|
383 * po/ko.po - language team change |
| 1 | 384 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
385 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
|
386 * po/ko.po - Updated Korean translation |
| 1 | 387 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
388 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
|
389 * 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
|
390 |
|
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
391 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
|
392 * configure.in - small build fixes |
| 1 | 393 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
394 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
|
395 * 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
|
396 elsewhere |
| 1 | 397 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
398 * 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
|
399 Removed anonymous FTP stuff |
| 1 | 400 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
401 * 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
|
402 is defined |
| 1 | 403 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
404 * lib/protocols.c - removed anonymous FTP stuff |
| 1 | 405 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
406 * lib/rfc2068.c - don't check for anonymous username |
| 1 | 407 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
408 * 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
|
409 (from Owen Taylor <otaylor@redhat.com>) |
| 1 | 410 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
411 2002-08-23 <baddog@cvs.gnome.org> |
| 19 | 412 * configure.in - (ALL_LINGUAS): zh_CN.GB2312 -> zh_CN, zh_TW.Big5 -> |
| 413 zh_TW | |
| 1 | 414 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
415 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
|
416 * zh_TW.Big5.po renamed to zh_TW.po |
| 1 | 417 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
418 * zh_CN.GB2312.po renamed to zh_CN.po |
| 1 | 419 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
420 * zh_TW.Big5.gmo - Removed. |
| 1 | 421 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
422 * Makefile.in.in, gftp.pot - Remove generated file. |
| 1 | 423 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
424 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
|
425 * po/.cvsignore - Shhhhhh |
| 1 | 426 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
427 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
|
428 * po/de.po - Fixed German translation (charset, header) |
| 1 | 429 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
430 2002-08-05 Brian Masney <masneyb@gftp.org> |
| 19 | 431 * lib/protocols.c - When we connect to a remote server, don't change |
| 432 the hostname to the PTR record of the hostname | |
| 1 | 433 |
| 19 | 434 * src/gtk/transfer.c - Fixed crash if you was already transfering a |
| 435 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
|
436 Overwrite/Resume/Skip dialog |
| 1 | 437 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
438 * docs/sample.gftp/gftprc - put the ext= lines back in the config file |
| 1 | 439 |
| 19 | 440 * po/es.po - Spanish updates (from Gustavo D. Vranjes |
| 441 <gvranjes@softhome.net>) | |
| 1 | 442 |
| 19 | 443 * po/nl.po - Dutch updates (from Myckel Habets |
| 444 <myckelhabets@netscape.net>) | |
| 1 | 445 |
|
17
8544f6585593
start using GNU style changelog entries. Renamed old changelog file to ChangeLog-old
masneyb
parents:
2
diff
changeset
|
446 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
|
447 * gFTP 2.0.13 released |
| 1 | 448 |
