Skip site navigation (1)Skip section navigation (2)
Date:      26 Apr 2002 15:58:39 -0300
From:      Joe Marcus Clarke <marcus@marcuscom.com>
To:        User Witr <witr@rwwa.com>
Cc:        questions@FreeBSD.ORG, sobomax@FreeBSD.ORG
Subject:   Re: Galeon 1.2.1 problems
Message-ID:  <1019847519.312.82.camel@gyros.marcuscom.com>
In-Reply-To: <20020425122756.ABF4C326A@ns1.rwwa.com>
References:  <20020425122756.ABF4C326A@ns1.rwwa.com>

next in thread | previous in thread | raw e-mail | index | archive | help

--=-LC7o8gaHMj1O9kSej9x0
Content-Type: text/plain
Content-Transfer-Encoding: 7bit

On Thu, 2002-04-25 at 09:27, User Witr wrote:
> I just installed the galeon 1.2.1 port and I have two problems:
> 
>    1 The "Help" / "Galeon manual" selection attempts to fetch the manual from
>      somewhere in my home directory instead of the installed location.

Whoops.  Now the patch is attached.

Joe

> 
>    2 Cookies aren't persistent.  I can see the cookies in the 
>      "Tools" / "Cookies" / "View cookies" dialog, but when I exit
>      galeon and restart it they are gone.
> 
> Any ideas on how to fix these two problems?
> 
> 
> ---------------------------------------------------------------------
> Robert Withrow, R.W. Withrow Associates, Swampscott MA, witr@rwwa.COM
> 
> 
> To Unsubscribe: send mail to majordomo@FreeBSD.org
> with "unsubscribe freebsd-questions" in the body of the message
> 
-- 
PGP Key: http://www.marcuscom.com/pgp.asc

--=-LC7o8gaHMj1O9kSej9x0
Content-Disposition: attachment; filename=patch-src_main.c
Content-Transfer-Encoding: quoted-printable
Content-Type: text/x-c; name=patch-src_main.c; charset=ISO8859-1

--- src/main.c.orig	Fri Apr 26 14:29:08 2002
+++ src/main.c	Fri Apr 26 14:52:43 2002
@@ -394,7 +394,12 @@
 	for (i =3D 0; i < n; i++)
 	{
 		/* try to expand as files */
-		if (realpath (args[i], buffer) !=3D NULL)
+		if (!strnstr(args[i], "ghelp:", strlen("ghelp:")) &&
+		    !strnstr(args[i], "toc:", strlen("toc:")) &&
+		    !strnstr(args[i], "info:", strlen("info:")) &&
+		    !strnstr(args[i], "main:", strlen("man:")) &&
+		    !strnstr(args[i], "gnome-help:", strlen("gnome-help")) &&
+		    realpath (args[i], buffer) !=3D NULL)
 		{
 			(*urls)[i] =3D g_strconcat ("file://", buffer, NULL);
 		}

--=-LC7o8gaHMj1O9kSej9x0--


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-questions" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?1019847519.312.82.camel>