diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2006-07-25 03:34:54 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2006-07-25 03:34:54 +0800 |
commit | 095010d768b454906d6029fc0403580585527e51 (patch) | |
tree | 2099f34d6168da1987aff944465e477bc68dbf83 /src/window-commands.c | |
parent | 3f67020b032c7307fdc8d66777c808f75a2c4016 (diff) | |
download | gsoc2013-epiphany-095010d768b454906d6029fc0403580585527e51.tar gsoc2013-epiphany-095010d768b454906d6029fc0403580585527e51.tar.gz gsoc2013-epiphany-095010d768b454906d6029fc0403580585527e51.tar.bz2 gsoc2013-epiphany-095010d768b454906d6029fc0403580585527e51.tar.lz gsoc2013-epiphany-095010d768b454906d6029fc0403580585527e51.tar.xz gsoc2013-epiphany-095010d768b454906d6029fc0403580585527e51.tar.zst gsoc2013-epiphany-095010d768b454906d6029fc0403580585527e51.zip |
Add page security info dialogue from Certificates extension.
2006-07-24 Christian Persch <chpe@cvs.gnome.org>
* data/ui/epiphany-ui.xml:
* src/ephy-statusbar.c: (ephy_statusbar_class_init),
(padlock_button_press_cb), (create_statusbar_security_icon):
* src/ephy-statusbar.h:
* src/ephy-window.c: (ephy_window_constructor):
* src/window-commands.c: (window_cmd_view_page_security_info),
(window_cmd_help_about):
* src/window-commands.h:
Add page security info dialogue from Certificates extension.
Diffstat (limited to 'src/window-commands.c')
-rw-r--r-- | src/window-commands.c | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/src/window-commands.c b/src/window-commands.c index 471d72d5d..46dee486b 100644 --- a/src/window-commands.c +++ b/src/window-commands.c @@ -637,6 +637,18 @@ window_cmd_view_page_source (GtkAction *action, } void +window_cmd_view_page_security_info (GtkAction *action, + EphyWindow *window) +{ + EphyEmbed *embed; + + embed = ephy_window_get_active_embed (window); + g_return_if_fail (EPHY_IS_EMBED (embed)); + + ephy_embed_show_page_certificate (embed); +} + +void window_cmd_go_history (GtkAction *action, EphyWindow *window) { @@ -720,8 +732,6 @@ window_cmd_help_about (GtkAction *action, GtkWidget *window) { const char * const authors[] = { - "Marco Pesenti Gritti", - "Adam Hooper", "Xan Lopez", "Christian Persch", "Jean-François Rameau", @@ -735,7 +745,9 @@ window_cmd_help_about (GtkAction *action, "Raphaël Slinckx", "", _("Past developers:"), + "Marco Pesenti Gritti", "David Bordoley", + "Adam Hooper", NULL, }; const char * const documenters[] = { |