|
|
5d780a |
From fe293e9f75ef3a7fec90e9b11f9c5935ae98445c Mon Sep 17 00:00:00 2001
|
|
|
5d780a |
From: Milan Crha <mcrha@redhat.com>
|
|
|
5d780a |
Date: Mon, 17 Sep 2018 22:46:40 +0200
|
|
|
5d780a |
Subject: [PATCH] I#129 - Use unversioned URL to help.gnome.org
|
|
|
5d780a |
|
|
|
5d780a |
Closes https://gitlab.gnome.org/GNOME/evolution/issues/129
|
|
|
5d780a |
---
|
|
|
5d780a |
src/e-util/e-misc-utils.c | 5 +++--
|
|
|
5d780a |
1 file changed, 3 insertions(+), 2 deletions(-)
|
|
|
5d780a |
|
|
|
5d780a |
diff --git a/src/e-util/e-misc-utils.c b/src/e-util/e-misc-utils.c
|
|
|
5d780a |
index c6f4e105b3..3801337fc2 100644
|
|
|
5d780a |
--- a/src/e-util/e-misc-utils.c
|
|
|
5d780a |
+++ b/src/e-util/e-misc-utils.c
|
|
|
5d780a |
@@ -319,7 +319,9 @@ e_display_help (GtkWindow *parent,
|
|
|
5d780a |
uri = g_string_new ("help:" PACKAGE);
|
|
|
5d780a |
} else {
|
|
|
5d780a |
uri = g_string_new ("https://help.gnome.org/users/" PACKAGE "/");
|
|
|
5d780a |
- g_string_append_printf (uri, "%d.%d", EDS_MAJOR_VERSION, EDS_MINOR_VERSION);
|
|
|
5d780a |
+ /* Use '/stable/' until https://bugzilla.gnome.org/show_bug.cgi?id=785522 is fixed */
|
|
|
5d780a |
+ g_string_append (uri, "stable/");
|
|
|
5d780a |
+ /* g_string_append_printf (uri, "%d.%d", EDS_MAJOR_VERSION, EDS_MINOR_VERSION); */
|
|
|
5d780a |
}
|
|
|
5d780a |
|
|
|
5d780a |
timestamp = gtk_get_current_event_time ();
|
|
|
5d780a |
@@ -327,7 +329,6 @@ e_display_help (GtkWindow *parent,
|
|
|
5d780a |
if (parent != NULL)
|
|
|
5d780a |
screen = gtk_widget_get_screen (GTK_WIDGET (parent));
|
|
|
5d780a |
|
|
|
5d780a |
-
|
|
|
5d780a |
if (link_id != NULL) {
|
|
|
5d780a |
g_string_append (uri, "/");
|
|
|
5d780a |
g_string_append (uri, link_id);
|
|
|
5d780a |
--
|
|
|
5d780a |
2.21.0
|
|
|
5d780a |
|