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