[frogr] Added support for "ghelp:" URIs to frogr_util_open_uri()
- From: Mario Sanchez Prada <msanchez src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [frogr] Added support for "ghelp:" URIs to frogr_util_open_uri()
- Date: Sat, 6 Aug 2011 22:29:26 +0000 (UTC)
commit 31f00e2b1cdd12999ecd71d69098b82a8a64f84e
Author: Mario Sanchez Prada <msanchez igalia com>
Date: Sun Aug 7 00:23:51 2011 +0200
Added support for "ghelp:" URIs to frogr_util_open_uri()
src/frogr-util.c | 26 ++++++++++++++++++++++----
1 files changed, 22 insertions(+), 4 deletions(-)
---
diff --git a/src/frogr-util.c b/src/frogr-util.c
index 2c55b9f..4c73ca8 100644
--- a/src/frogr-util.c
+++ b/src/frogr-util.c
@@ -168,7 +168,9 @@ _open_uris_with_app_info (GList *uris_list, GAppInfo *app_info)
void
frogr_util_open_uri (const gchar *uri)
{
- static GAppInfo *app_info = NULL;
+ static GAppInfo *http_app_info = NULL;
+ static GAppInfo *help_app_info = NULL;
+ GAppInfo *app_info = NULL;
GList *uris_list = NULL;
/* Early return */
@@ -178,10 +180,26 @@ frogr_util_open_uri (const gchar *uri)
/* Dupped uris in the GList must NOT be freed here */
uris_list = g_list_append (uris_list, g_strdup (uri));
- if (app_info == NULL)
- app_info = g_app_info_get_default_for_uri_scheme ("http");
+ /* Supported network URIs */
+ if (g_str_has_prefix (uri, "http:") || g_str_has_prefix (uri, "https:"))
+ {
+ if (http_app_info == NULL)
+ http_app_info = g_app_info_get_default_for_uri_scheme ("http");
- _open_uris_with_app_info (uris_list, app_info);
+ app_info = http_app_info;
+ }
+
+ /* Supported help URIs */
+ if (g_str_has_prefix (uri, "ghelp:"))
+ {
+ if (help_app_info == NULL)
+ help_app_info = g_app_info_get_default_for_uri_scheme ("ghelp");
+
+ app_info = help_app_info;
+ }
+
+ if (app_info)
+ _open_uris_with_app_info (uris_list, app_info);
g_list_free (uris_list);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]