Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 08 Aug 2007 15:35:47 +0800
From:      Ow Mun Heng <Ow.Mun.Heng@wdc.com>
To:        David Benfell <benfell@parts-unknown.org>
Cc:        freebsd-questions@freebsd.org
Subject:   Re: What's the secret to gnome-terminal "open link?"
Message-ID:  <1186558547.29386.1.camel@neuromancer.home.net>
In-Reply-To: <20070808021222.GA29976@parts-unknown.org>
References:  <20070808021222.GA29976@parts-unknown.org>

next in thread | previous in thread | raw e-mail | index | archive | help
On Tue, 2007-08-07 at 19:12 -0700, David Benfell wrote:
> Hello all,
> 
> I would really like the "open link" function to work under
> gnome-terminal.  But I can't find any relevant configuration
> and a Google search comes up empty.

gnome-terminal/src/terminal-screen.c

open_url (TerminalScreen *screen,
          const char     *orig_url,
          int             flavor)
{
  GError *err;
  char *url;

  g_return_if_fail (orig_url != NULL);

  /* this is to handle gnome_url_show reentrancy */
  g_object_ref (G_OBJECT (screen));

  switch (flavor)
    {
    case FLAVOR_DEFAULT_TO_HTTP:
      url = g_strdup_printf ("http:%s", orig_url);
      break;
    case FLAVOR_EMAIL:
      if (strncmp ("mailto:", orig_url, 7))
    url = g_strdup_printf ("mailto:%s", orig_url);
      else
    url = g_strdup (orig_url);
      break;
    case FLAVOR_AS_IS:
      url = g_strdup (orig_url);
      break;
    default:
      url = NULL;
      g_assert_not_reached ();
    }



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