(trunk gtk) #2608 "Add URLs by drag-and-drop" - add support for dragging magnet URLs and .torrent file URLs onto the GTK+ client.

This commit is contained in:
Charles Kerr 2009-11-26 04:57:26 +00:00
parent 5e3949f37c
commit 3e921edd2a
1 changed files with 4 additions and 11 deletions

View File

@ -806,25 +806,18 @@ gotdrag( GtkWidget * widget UNUSED,
continue;
/* walk past "file://", if present */
if( g_str_has_prefix( filename, "file:" ) )
{
if( g_str_has_prefix( filename, "file:" ) ) {
filename += 5;
while( g_str_has_prefix( filename, "//" ) )
++filename;
}
/* if the file doesn't exist, the first part
might be a hostname ... walk past it. */
if( !g_file_test( filename, G_FILE_TEST_EXISTS ) )
{
char * pch = strchr( filename + 1, '/' );
if( pch != NULL )
filename = pch;
}
g_debug( "got from drag: [%s]", filename );
/* finally, add it to the list of torrents to try adding */
if( g_file_test( filename, G_FILE_TEST_EXISTS ) )
paths = g_slist_prepend( paths, g_strdup( filename ) );
else
tr_core_add_from_url( data->core, filename );
}
/* try to add any torrents we found */