GNOME Bugzilla – Bug 669461
Epy does not longer load IP:port addresses
Last modified: 2012-02-23 10:57:13 UTC
I want to browse a local service I have in my network, let's say it's available through port 7500 at 192.168.10.10. When I type 192.168.10.10:7500 in the URL bar I'd expect epy to transform it in http://192.168.10.10:7500 and start loading it as it used to do, but it does not do anything.
Created attachment 206873 [details] [review] ephy-embed-utils: "ip:host" addresses no longer loading Epy should consider "IP:port" like addresses as http://IP:port URLs. The current code would parse the IP as the URL scheme and the port as the URL path.
As the comment says the best way to fix this would be likely to check if we have a handler for the scheme reported by libsoup. Is there any machinery inside epy to check that?
I have committed a slightly different version of this plus tests for it in tests/ephy-embed-utils-test.c. Thanks.