aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXan Lopez <xan@igalia.com>2013-03-22 16:39:19 +0800
committerXan Lopez <xan@igalia.com>2013-03-22 16:39:19 +0800
commit7f0df03c524f362a5774e0832048f57d760fbf3f (patch)
treeb63a23e193dee4ba0df97588c563883693769dad
parent0074916b66dd6436f98c8576d25f8ab68906bb36 (diff)
downloadgsoc2013-epiphany-7f0df03c524f362a5774e0832048f57d760fbf3f.tar
gsoc2013-epiphany-7f0df03c524f362a5774e0832048f57d760fbf3f.tar.gz
gsoc2013-epiphany-7f0df03c524f362a5774e0832048f57d760fbf3f.tar.bz2
gsoc2013-epiphany-7f0df03c524f362a5774e0832048f57d760fbf3f.tar.lz
gsoc2013-epiphany-7f0df03c524f362a5774e0832048f57d760fbf3f.tar.xz
gsoc2013-epiphany-7f0df03c524f362a5774e0832048f57d760fbf3f.tar.zst
gsoc2013-epiphany-7f0df03c524f362a5774e0832048f57d760fbf3f.zip
ephy-about-handler: remove non WebKit2 bits
-rw-r--r--embed/ephy-about-handler.c51
1 files changed, 0 insertions, 51 deletions
diff --git a/embed/ephy-about-handler.c b/embed/ephy-about-handler.c
index 9955d36e5..31eb775c7 100644
--- a/embed/ephy-about-handler.c
+++ b/embed/ephy-about-handler.c
@@ -28,11 +28,7 @@
#include <gio/gio.h>
#include <glib/gi18n.h>
-#ifdef HAVE_WEBKIT2
#include <webkit2/webkit2.h>
-#else
-#include <webkit/webkit.h>
-#endif
static gchar *css_style = NULL;
@@ -55,7 +51,6 @@ read_css_style (void)
void
_ephy_about_handler_handle_plugins (GString *data_str, GList *plugin_list)
{
-#ifdef HAVE_WEBKIT2
GList *p;
read_css_style ();
@@ -103,57 +98,11 @@ _ephy_about_handler_handle_plugins (GString *data_str, GList *plugin_list)
}
g_string_append (data_str, "</body>");
-#endif
}
static void
ephy_about_handler_handle_plugins (GString *data_str)
{
-#ifndef HAVE_WEBKIT2
- WebKitWebPluginDatabase* database = webkit_get_web_plugin_database ();
- GSList *plugin_list, *p;
-
- g_string_append_printf (data_str, "<head><title>%s</title>" \
- "<style type=\"text/css\">%s</style></head><body>",
- _("Installed plugins"),
- css_style);
-
- g_string_append_printf (data_str, "<h1>%s</h1>", _("Installed plugins"));
- plugin_list = webkit_web_plugin_database_get_plugins (database);
-
- for (p = plugin_list; p; p = p->next) {
- WebKitWebPlugin *plugin = WEBKIT_WEB_PLUGIN (p->data);
- GSList *m, *mime_types;
-
- g_string_append_printf (data_str, "<h2>%s</h2>%s<br>%s: <b>%s</b>" \
- "<table id=\"plugin-table\">" \
- " <thead><tr><th>%s</th><th>%s</th><th>%s</th></tr></thead><tbody>",
- webkit_web_plugin_get_name (plugin),
- webkit_web_plugin_get_description (plugin),
- _("Enabled"), webkit_web_plugin_get_enabled (plugin) ? _("Yes") : _("No"),
- _("MIME type"), _("Description"), _("Suffixes"));
-
- mime_types = webkit_web_plugin_get_mimetypes (plugin);
-
- for (m = mime_types; m; m = m->next) {
- WebKitWebPluginMIMEType *mime_type = (WebKitWebPluginMIMEType*) m->data;
- guint i;
-
- g_string_append_printf (data_str, "<tr><td>%s</td><td>%s</td><td>",
- mime_type->name, mime_type->description);
-
- for (i = 0; mime_type->extensions[i] != NULL; i++)
- g_string_append_printf (data_str, "%s%c", mime_type->extensions[i],
- mime_type->extensions[i + 1] ? ',' : ' ');
-
- g_string_append (data_str, "</td></tr>");
- }
-
- g_string_append (data_str, "</tbody></table>");
- }
-
- webkit_web_plugin_database_plugins_list_free (plugin_list);
-#endif
g_string_append (data_str, "</body>");
}