GNOME Bugzilla – Bug 602427
Invalid URI
Last modified: 2009-12-07 20:29:52 UTC
When I try to open a file '/home/francisco.campos/H:/Coordinacion/Programa de trabajo 2010/programa 2010.planner' appears an error message and the file is not loaded, althought if I rename the directory H: as H, I don't have any problem, but I think is not the correct solution, because PLANNER is the only application that causes this error. mrp-project.c ****************** /* Get a local file from the uri. */ if (len > 3 && !strstr (uri, ":/")) { /* No protocol. */ } else { if (len > 7 && !strncmp (uri, "file:/", 6)) { /* Naively strip method. */ uri = uri + 7; } else { g_set_error (error, MRP_ERROR, MRP_ERROR_INVALID_URI, _("Invalid URI: '%s'"), uri); return FALSE; } }
Thanks for your report. I can confirm that this happens with Planner 0.14.4 and git master.
This problem has been fixed in the development version. The fix will be available in the next major software release. Thank you for your bug report.