Mercurial > gftp.yaz
view src/gtk/mkdir_dialog.c @ 294:4747f621b79b
2003-10-25 Brian Masney <masneyb@gftp.org>
* src/gtk/transfer.c src/gtk/gftp-gtk.h src/gtk/view_dialog.c - when
editing a remote file, if the user chooses to upload the changes, make
sure the upload is not sent to the current directory on the remote
server.
* lib/rfc2068.c - set the shown attributes to be -rw------- instead of
----------. The HTTP server doesn't send the attributes over, so I just
have to make something up.
* src/gtk/options_dialog.c - make sure all of the tooltips text is
passed to gettext()
* lib/protocols.c - if the file transfer is to be throttled, only
display the throttle message once.
* lib/local.c (local_get_next_file) - if the file is a symlink, grab
file size and attributes from the file this symlink points to.
author | masneyb |
---|---|
date | Sat, 25 Oct 2003 21:33:46 +0000 |
parents | 2ad324cf4930 |
children | cdabbe5c9a95 |
line wrap: on
line source
/*****************************************************************************/ /* mkdir_dialog.c - make directory dialog box and ftp routines */ /* Copyright (C) 1998-2003 Brian Masney <masneyb@gftp.org> */ /* */ /* This program is free software; you can redistribute it and/or modify */ /* it under the terms of the GNU General Public License as published by */ /* the Free Software Foundation; either version 2 of the License, or */ /* (at your option) any later version. */ /* */ /* This program is distributed in the hope that it will be useful, */ /* but WITHOUT ANY WARRANTY; without even the implied warranty of */ /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */ /* GNU General Public License for more details. */ /* */ /* You should have received a copy of the GNU General Public License */ /* along with this program; if not, write to the Free Software */ /* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111 USA */ /*****************************************************************************/ #include "gftp-gtk.h" static const char cvsid[] = "$Id$"; static const char *edttext; static void * do_make_dir_thread (void * data) { int success, sj, network_timeout; gftp_window_data * wdata; wdata = data; gftp_lookup_request_option (wdata->request, "network_timeout", &network_timeout); if (wdata->request->use_threads) { sj = sigsetjmp (jmp_environment, 1); use_jmp_environment = 1; } else sj = 0; success = 0; if (sj == 0) { if (network_timeout > 0) alarm (network_timeout); success = gftp_make_directory (wdata->request, edttext) == 0; alarm (0); } else { gftp_disconnect (wdata->request); wdata->request->logging_function (gftp_logging_error, wdata->request, _("Operation canceled\n")); } if (wdata->request->use_threads) use_jmp_environment = 0; wdata->request->stopable = 0; return (GINT_TO_POINTER (success)); } static void domkdir (gftp_window_data * wdata, gftp_dialog_data * ddata) { int ret; edttext = gtk_entry_get_text (GTK_ENTRY (ddata->edit)); if (*edttext == '\0') { ftp_log (gftp_logging_misc, NULL, _("Mkdir: Operation canceled...you must enter a string\n")); return; } if (check_reconnect (wdata) < 0) return; ret = GPOINTER_TO_INT (generic_thread (do_make_dir_thread, wdata)); if (ret) { gftp_delete_cache_entry (wdata->request, NULL, 0); refresh (wdata); } } void mkdir_dialog (gpointer data) { gftp_window_data * wdata; wdata = data; if (!check_status (_("Mkdir"), wdata, wdata->request->use_threads, 0, 0, wdata->request->mkdir != NULL)) return; MakeEditDialog (_("Make Directory"), _("Enter name of directory to create"), NULL, 1, NULL, gftp_dialog_button_create, domkdir, wdata, NULL, NULL); }