Bug 97384 - rss feed discovery doesn't work for some sites
Summary: rss feed discovery doesn't work for some sites
Status: RESOLVED FIXED
Alias: None
Product: akregator
Classification: Applications
Component: akregator konqueror plugin (show other bugs)
Version: unspecified
Platform: Compiled Sources Linux
: NOR normal
Target Milestone: ---
Assignee: kdepim bugs
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-01-18 20:44 UTC by _
Modified: 2005-01-21 13:20 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 _ 2005-01-18 20:44:51 UTC
Version:            (using KDE KDE 3.3.91)
Installed from:    Compiled From Sources
Compiler:          gcc 3.4.3 
OS:                Linux

RSS feed discovery does not work for some sites, like for example http://www.mozillazine.org.
Comment 1 Frank Osterfeld 2005-01-21 13:20:07 UTC
CVS commit by osterfeld: 

accept type="text/xml". Fixes feed detection for e.g. mozillazine.org
BUG: 97384


  M +1 -1      feeddetector.cpp   1.7


--- kdeaddons/konq-plugins/akregator/feeddetector.cpp  #1.6:1.7
@@ -59,5 +59,5 @@ FeedDetectorEntryList FeedDetector::extr
         // we accept only type attributes indicating a feed or omitted type attributes
         if ( !type.isEmpty() && type != "application/rss+xml" && type != "application/rdf+xml"
-              && type != "application/atom+xml" )
+              && type != "application/atom+xml" && type != "text/xml" )
             continue;