gnome-terminal r2618 - trunk/src
- From: chpe svn gnome org
- To: svn-commits-list gnome org
- Subject: gnome-terminal r2618 - trunk/src
- Date: Thu, 29 May 2008 19:39:09 +0000 (UTC)
Author: chpe
Date: Thu May 29 19:39:09 2008
New Revision: 2618
URL: http://svn.gnome.org/viewvc/gnome-terminal?rev=2618&view=rev
Log:
Implement _NETSCAPE_URL drag dest.
Modified:
trunk/src/terminal-screen.c
Modified: trunk/src/terminal-screen.c
==============================================================================
--- trunk/src/terminal-screen.c (original)
+++ trunk/src/terminal-screen.c Thu May 29 19:39:09 2008
@@ -2016,9 +2016,37 @@
break;
case TARGET_NETSCAPE_URL:
- /* FIXMEchpe implement me! */
- break;
+ {
+ char *utf8_data, *newline, *filename;
+ /* The data contains the URL, a \n, then the
+ * title of the web page.
+ */
+ if (selection_data->length < 0 || selection_data->format != 8)
+ return;
+
+ utf8_data = g_strndup ((char *) selection_data->data, selection_data->length);
+ newline = strchr (utf8_data, '\n');
+ if (newline)
+ *newline = '\0';
+
+ /* If it's a file:/// URI, paste as quoted filename */
+ filename = g_filename_from_uri (utf8_data, NULL, NULL);
+ if (filename)
+ {
+ char *text;
+
+ text = g_shell_quote (filename);
+ vte_terminal_feed_child (VTE_TERMINAL (screen), text, strlen (text));
+ g_free (filename);
+ }
+ else
+ vte_terminal_feed_child (VTE_TERMINAL (screen), utf8_data, strlen (utf8_data));
+
+ g_free (utf8_data);
+ }
+ break;
+
case TARGET_BGIMAGE:
{
char *uri_list;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]