]> spindle.queued.net Git - midori/commitdiff
Determine whether we can view the source via g_content_type_is_a
authorChristian Dywan <christian@twotoasts.de>
Sat, 2 Jan 2010 22:32:52 +0000 (23:32 +0100)
committerChristian Dywan <christian@twotoasts.de>
Sun, 3 Jan 2010 21:26:15 +0000 (22:26 +0100)
midori/midori-view.c

index d810cd44dadffff49f0b5b76387be35734e8ac18..af06c2c687c7462f5b85071b4ad4b631b47d190f 100644 (file)
@@ -3920,22 +3920,27 @@ midori_view_can_zoom_out (MidoriView* view)
 gboolean
 midori_view_can_view_source (MidoriView* view)
 {
-    const gchar* uri = view->uri;
+    #if GLIB_CHECK_VERSION (2, 18, 0)
+    gchar* content_type;
+    gchar* text_type;
+    #endif
 
     g_return_val_if_fail (MIDORI_IS_VIEW (view), FALSE);
 
-    /* FIXME: Consider other types that are also text */
-    if (!g_str_has_prefix (view->mime_type, "text/")
-        && !g_strrstr (view->mime_type, "xml"))
+    if (midori_view_is_blank (view))
         return FALSE;
 
-    if (!uri)
-        return FALSE;
-    if (g_str_has_prefix (uri, "http://") || g_str_has_prefix (uri, "https://"))
-        return TRUE;
-    if (g_str_has_prefix (uri, "file://"))
-        return TRUE;
-    return FALSE;
+    #if GLIB_CHECK_VERSION (2, 18, 0)
+    content_type = g_content_type_from_mime_type (view->mime_type);
+    text_type = g_content_type_from_mime_type ("text/plain");
+    return g_content_type_is_a (content_type, text_type);
+    #elif defined (G_OS_UNIX)
+    return g_content_type_is_a (view->mime_type, "text/plain");
+    #else
+    return g_str_has_prefix (view->mime_type, "text/")
+        || g_strrstr (view->mime_type, "xml")
+        || g_strrstr (view->mime_type, "javascript");
+    #endif
 }
 
 #define can_do(what) \