X-Git-Url: http://git.maemo.org/git/?p=browser-switch;a=blobdiff_plain;f=dbus-server-bindings.c;h=8224defbdc2d3ad447b7da945cc8eeabe1312560;hp=b29b1abd35dfd75524be0faeed1ed90649434217;hb=663c89819b6990c99427d1cf5b0fcae21e4201bc;hpb=6e58a3c82137f47f41b82a8426a2d6e8be7c39bc diff --git a/dbus-server-bindings.c b/dbus-server-bindings.c index b29b1ab..8224def 100644 --- a/dbus-server-bindings.c +++ b/dbus-server-bindings.c @@ -1,7 +1,7 @@ /* * dbus-server-bindings.c -- osso_browser D-Bus interface implementation * - * Copyright (C) 2009 Steven Luo + * Copyright (C) 2009-2010 Steven Luo * Derived from a Python implementation by Jason Simpson and Steven Luo * * This program is free software; you can redistribute it and/or @@ -23,6 +23,7 @@ #include #include #include +#include #include #include "browser-switchboard.h" @@ -43,6 +44,21 @@ static void osso_browser_class_init(OssoBrowserClass *klass) #include "dbus-server-glue.h" +/* Ignore reconfiguration signal (SIGHUP) + When not running in continuous mode, no SIGHUP handler is installed, which + causes browser-switchboard to quit on a reconfig request. This is normally + what we want -- but if we're already in the process of dispatching a + request, we'll quit anyway after finishing what we're doing, so ignoring the + signal is the right thing to do. */ +static void ignore_reconfig_requests(void) { + struct sigaction act; + + act.sa_flags = SA_RESTART; + sigemptyset(&(act.sa_mask)); + act.sa_handler = SIG_IGN; + sigaction(SIGHUP, &act, NULL); +} + static void open_address(const char *uri) { char *new_uri; size_t new_uri_len; @@ -51,7 +67,10 @@ static void open_address(const char *uri) { /* Not much to do in this case ... */ return; + printf("open_address '%s'\n", uri); if (uri[0] == '/') { + /* URI begins with a '/' -- assume it points to a local file + and prefix with "file://" */ new_uri_len = strlen("file://") + strlen(uri) + 1; if (!(new_uri = calloc(new_uri_len, sizeof(char)))) exit(1); @@ -62,7 +81,15 @@ static void open_address(const char *uri) { we need to clean up after ourselves */ free(new_uri); } else { - printf("open_address '%s'\n", uri); +#ifdef FREMANTLE + if (!strcmp(uri, "http://link.ovi.mobi/n900ovistore")) { + /* Ovi Store webpage will not open correctly in + any browser other than MicroB, so force the + link in the provided bookmark to open in MicroB */ + launch_microb(&ctx, (char *)uri); + return; + } +#endif launch_browser(&ctx, (char *)uri); } } @@ -73,24 +100,32 @@ static void open_address(const char *uri) { */ gboolean osso_browser_load_url(OssoBrowser *obj, const char *uri, GError **error) { + if (!ctx.continuous_mode) + ignore_reconfig_requests(); open_address(uri); return TRUE; } gboolean osso_browser_mime_open(OssoBrowser *obj, const char *uri, GError **error) { + if (!ctx.continuous_mode) + ignore_reconfig_requests(); open_address(uri); return TRUE; } gboolean osso_browser_open_new_window(OssoBrowser *obj, const char *uri, GError **error) { + if (!ctx.continuous_mode) + ignore_reconfig_requests(); open_address(uri); return TRUE; } gboolean osso_browser_top_application(OssoBrowser *obj, GError **error) { + if (!ctx.continuous_mode) + ignore_reconfig_requests(); launch_microb(&ctx, "new_window"); return TRUE; } @@ -99,6 +134,8 @@ gboolean osso_browser_top_application(OssoBrowser *obj, for use by /usr/bin/browser wrapper to implement --url */ gboolean osso_browser_switchboard_launch_microb(OssoBrowser *obj, const char *uri, GError **error) { + if (!ctx.continuous_mode) + ignore_reconfig_requests(); launch_microb(&ctx, (char *)uri); return TRUE; }