--- Begin Message ---
- From: "Jeremy C. Reed" <reed reedmedia net>
- To: marco it gnome org
- Subject: patch for epiphany mkdir()
- Date: Fri, 6 Feb 2004 15:57:49 -0800 (PST)
Your email address was listed as contact for Epiphany in the epiphany-1.0.7/README. Some implementations of mkdir(2) don't like a trailing slash. ** ERROR **: Couldn't mkdir /home/reed/.gnome2/epiphany/favicon_cache/ Hopefully the following patch doesn't break how the directory is used later. --- embed/ephy-favicon-cache.c.orig Fri Feb 6 14:55:43 2004 +++ embed/ephy-favicon-cache.c Fri Feb 6 14:56:08 2004 @@ -263,7 +263,7 @@ NULL); cache->priv->directory = g_build_filename (ephy_dot_dir (), - "favicon_cache/", + "favicon_cache", NULL); if (g_file_test (cache->priv->directory, G_FILE_TEST_IS_DIR) == FALSE) I removed my .gnome2 directories and it worked fine. Now I see the epiphany is not working for www.linux.com and www.nba.com websites. I guess it is hanging at some flash or other add-on. (I assume this is unrelated to my patch, although I never noticed before. bigfour:/usr/pkgsrc/www/epiphany$ epiphany ** (epiphany-bin:13603): WARNING **: Web browser gnome icon not found ** (epiphany-bin:13603): WARNING **: Throbber animation not found I am not sure what the filename is for icon so I don't know if it is there or not. (probably the errors should show the actual file name.). If there is a mailing list or other place to report bugs or comments please list them in the README. Jeremy C. Reed http://www.pugetsoundtechnology.com/
--- End Message ---