Skip Menu |

This queue is for tickets about the Gtk2 CPAN distribution.

Report information
The Basics
Id: 48214
Status: resolved
Priority: 0/
Queue: Gtk2

People
Owner: Nobody in particular
Requestors:
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 1.221
Fixed in: (no value)



Subject: Gtk2-1.221\t\GtkRecentChooser.t hangs because file://C:/...
Gtk2-1.221\t\GtkRecentChooser.t hangs because file://C:/... isn't a proper URI, a slash is missing file:///C:/... easy to fix if you use URI::file #~ use Cwd qw(cwd); #~ my $uri_one = "file://" . cwd() . "/" . $0; #~ my $uri_two = "file://" . $^X; use URI::file; my $uri_one = URI::file->new(__FILE__)->abs(URI::file->cwd); my $uri_two = URI::file->new($^X)->abs(URI::file->cwd); I thank you
Subject: Re: [rt.cpan.org #48214] Gtk2-1.221\t\GtkRecentChooser.t hangs because file://C:/...
Date: Sun, 28 Feb 2010 15:37:24 +0100
To: bug-Gtk2 [...] rt.cpan.org
From: Torsten Schoenfeld <kaffeetisch [...] gmx.de>
On 26.07.2009 21:49, noreply via RT wrote: Show quoted text
> #~ use Cwd qw(cwd); > #~ my $uri_one = "file://" . cwd() . "/" . $0; > #~ my $uri_two = "file://" . $^X; > use URI::file; > my $uri_one = URI::file->new(__FILE__)->abs(URI::file->cwd); > my $uri_two = URI::file->new($^X)->abs(URI::file->cwd);
URI::file is not a core module, though. But Glib provides similar functionality. Can you check if the attached patch fixes the problem on your box?

Message body is not shown because sender requested not to inline it.

On Sun Feb 28 09:37:56 2010, TSCH wrote: Show quoted text
> URI::file is not a core module, though. But Glib provides similar > functionality. Can you check if the attached patch fixes the problem on > your box?
I just committed this fix and will release it soon.