Bug 107257 - Clicking links to 'media' (jpg's,avi,etc) and choosing to open the media with the associated program doesn't work.
Summary: Clicking links to 'media' (jpg's,avi,etc) and choosing to open the media with...
Status: RESOLVED FIXED
Alias: None
Product: akregator
Classification: Applications
Component: general (show other bugs)
Version: unspecified
Platform: unspecified Linux
: NOR normal
Target Milestone: ---
Assignee: kdepim bugs
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-06-12 07:56 UTC by raditzman
Modified: 2005-07-08 00:25 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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()