File flash-player-non-oss.diff of Package kdelibs4

Index: khtml/html/html_objectimpl.cpp
===================================================================
--- khtml/html/html_objectimpl.cpp.orig
+++ khtml/html/html_objectimpl.cpp
@@ -606,14 +606,32 @@ void HTMLObjectBaseElementImpl::slotPart
             // Prepare the URL to show in the question (host only if http, to make it short)
             KUrl pluginPageURL(embed->pluginPage);
             QString shortURL = pluginPageURL.protocol() == "http" ? pluginPageURL.host() : pluginPageURL.prettyUrl();
-            int res = KMessageBox::questionYesNo( part->view(),
-                                                  i18n("No plugin found for '%1'.\nDo you want to download one from %2?", mimeName, shortURL),
+
+            int res;
+            if (mimeName.startsWith("Shockwave Flash", Qt::CaseInsensitive))
+            {
+                res = KMessageBox::questionYesNo( part->view(),
+                                                  i18n("No plugin found for '%1'.\nDo you want to download one from %2?", mimeName, "openSUSE"),
                                                   i18n("Missing Plugin"), KGuiItem(i18n("Download")), KGuiItem(i18n("Do Not Download")), QString("plugin-")+serviceType);
-            if (res == KMessageBox::Yes)
+                if (res == KMessageBox::Yes)
+                {
+                    // Open YMP file
+                    KUrl ymp_flash("http://download.opensuse.org/YaST/flash-player.ymp");
+                    ext->openUrlRequest(ymp_flash);
+                    return;
+                }
+            }
+            else
             {
-                // Display vendor download page
-                ext->createNewWindow(pluginPageURL);
-                return;
+                res = KMessageBox::questionYesNo( part->view(),
+                                                  i18n("No plugin found for '%1'.\nDo you want to download one from %2?", mimeName, "openSUSE"),
+                                                  i18n("Missing Plugin"), KGuiItem(i18n("Download")), KGuiItem(i18n("Do Not Download")), QString("plugin-")+serviceType);
+                if (res == KMessageBox::Yes)
+                {
+                    // Display vendor download page
+                    ext->createNewWindow(pluginPageURL);
+                    return;
+                }
             }
         }
     }
openSUSE Build Service is sponsored by