Bug 107257

Summary: Clicking links to 'media' (jpg's,avi,etc) and choosing to open the media with the associated program doesn't work.
Product: [Applications] akregator Reporter: raditzman
Component: generalAssignee: kdepim bugs <kdepim-bugs>
Status: RESOLVED FIXED    
Severity: normal    
Priority: NOR    
Version: unspecified   
Target Milestone: ---   
Platform: unspecified   
OS: Linux   
Latest Commit: Version Fixed In:

Description raditzman 2005-06-12 07:56:32 UTC
Version:            (using KDE KDE 3.4.1)
Installed from:    Unlisted Binary Package
Compiler:          gcc version 3.3.5 (Debian 1:3.3.5-8ubuntu2)
OS:                Linux (i686) release 2.6.10-5-686

If you find a link to a media file (jpg, for example) and click it, a window pops up asking if you want to save it or open with <program>. If you choose to open it, nothing happens.
Comment 1 Eckhart Wörner 2005-06-12 11:56:29 UTC
Confirmed.
Comment 2 Heinrich Wendel 2005-07-08 00:25:40 UTC
SVN commit 432595 by lanius:

fix open external applications for mimetypes
BUG: 107257

 M  +2 -1      akregator_run.cpp  


--- trunk/KDE/kdepim/akregator/src/akregator_run.cpp #432594:432595
@@ -48,7 +48,8 @@
     if (type=="text/html" ||type=="text/xml" || type=="application/xhtml+xml"  )
         m_viewer->openPage(url());
     else
-        handleNonEmbeddable(type);
+        if ( handleNonEmbeddable(type) == KParts::BrowserRun::NotHandled )
+            KRun::foundMimeType( type );
 }
 
 void BrowserRun::killMyself()