diff options
author | Xan Lopez <xan@igalia.com> | 2011-12-05 22:17:46 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2011-12-05 22:17:46 +0800 |
commit | b6256fd0e48a3ec6769662ddfd1cadf4cf0b8d99 (patch) | |
tree | d9f1765af254c780c7f25d3345187893329fae90 /src | |
parent | 142d053dd3d7e6155c8f4891620178474469c42e (diff) | |
download | gsoc2013-epiphany-b6256fd0e48a3ec6769662ddfd1cadf4cf0b8d99.tar gsoc2013-epiphany-b6256fd0e48a3ec6769662ddfd1cadf4cf0b8d99.tar.gz gsoc2013-epiphany-b6256fd0e48a3ec6769662ddfd1cadf4cf0b8d99.tar.bz2 gsoc2013-epiphany-b6256fd0e48a3ec6769662ddfd1cadf4cf0b8d99.tar.lz gsoc2013-epiphany-b6256fd0e48a3ec6769662ddfd1cadf4cf0b8d99.tar.xz gsoc2013-epiphany-b6256fd0e48a3ec6769662ddfd1cadf4cf0b8d99.tar.zst gsoc2013-epiphany-b6256fd0e48a3ec6769662ddfd1cadf4cf0b8d99.zip |
Remove last traces of dummy certificate manager
There was no implementation, so it was just polluting the codebase. In
the future we probably want a non-optional implementation in the "Page
details" section, using the soup/glib-network APIs.
Diffstat (limited to 'src')
-rw-r--r-- | src/ephy-window.c | 15 | ||||
-rw-r--r-- | src/window-commands.c | 8 | ||||
-rw-r--r-- | src/window-commands.h | 3 |
3 files changed, 0 insertions, 26 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c index d07bb3b1d..774629a22 100644 --- a/src/ephy-window.c +++ b/src/ephy-window.c @@ -176,11 +176,6 @@ static const GtkActionEntry ephy_menu_entries [] = { { "EditPersonalData", NULL, N_("P_ersonal Data"), NULL, N_("View and remove cookies and passwords"), G_CALLBACK (window_cmd_edit_personal_data) }, -#if 0 - { "EditCertificates", NULL, N_("Certificate_s"), NULL, - N_("Manage Certificates"), - G_CALLBACK (window_cmd_edit_certificates) }, -#endif { "EditPrefs", GTK_STOCK_PREFERENCES, N_("P_references"), NULL, N_("Configure the web browser"), G_CALLBACK (window_cmd_edit_prefs) }, @@ -3687,16 +3682,6 @@ ephy_window_constructor (GType type, g_warning ("Could not merge epiphany-ui.xml: %s", error->message); g_error_free (error); } -#if ENABLE_CERTIFICATE_MANAGER -{ - guint ui_id; - ui_id = gtk_ui_manager_new_merge_id (priv->manager); - gtk_ui_manager_add_ui (priv->manager, ui_id, - "/menubar/EditMenu/EditPersonalDataMenu", - "EditCertificates", "EditCertificates", - GTK_UI_MANAGER_MENUITEM, FALSE); -} -#endif /* Attach the CSS provider to the window */ css_file = g_file_new_for_path (ephy_file ("epiphany.css")); diff --git a/src/window-commands.c b/src/window-commands.c index e066997d1..ace995d9d 100644 --- a/src/window-commands.c +++ b/src/window-commands.c @@ -1202,14 +1202,6 @@ window_cmd_edit_personal_data (GtkAction *action, g_free (host); } -#if 0 -void -window_cmd_edit_certificates (GtkAction *action, - EphyWindow *window) -{ -} -#endif - void window_cmd_edit_prefs (GtkAction *action, EphyWindow *window) diff --git a/src/window-commands.h b/src/window-commands.h index e20ca1a06..1261fa41f 100644 --- a/src/window-commands.h +++ b/src/window-commands.h @@ -126,9 +126,6 @@ void window_cmd_go_history (GtkAction *action, void window_cmd_edit_personal_data (GtkAction *action, EphyWindow *window); -void window_cmd_edit_certificates (GtkAction *action, - EphyWindow *window); - void window_cmd_edit_prefs (GtkAction *action, EphyWindow *window); |