{
/* Do we have a domain, ip address or localhost? */
search = strchr (uri, ':');
- if ((search && search[0] && !g_ascii_isalpha (search[1]))
- || !strcmp (uri, "localhost"))
+ if (search && search[0] && !g_ascii_isalpha (search[1]))
+ if (!strchr (search, '.'))
+ return g_strconcat ("http://", uri, NULL);
+ if (!strcmp (uri, "localhost"))
return g_strconcat ("http://", uri, NULL);
parts = g_strsplit (uri, ".", 0);
if (!search && parts[0] && parts[1])
test_input ("midori 0.1.0", NULL);
test_input ("search:cats", NULL);
test_input ("search:twotoasts.de", NULL);
+ test_input ("g cache:127.0.0.1", NULL);
+ test_input ("g cache:127.0.0.1/foo", NULL);
+ test_input ("g cache:twotoats.de/foo", NULL);
return 0;
}