Bug 97384

Summary: rss feed discovery doesn't work for some sites
Product: [Applications] akregator Reporter: _ <praseodym+kdebugzilla>
Component: akregator konqueror pluginAssignee: kdepim bugs <kdepim-bugs>
Status: RESOLVED FIXED    
Severity: normal    
Priority: NOR    
Version: unspecified   
Target Milestone: ---   
Platform: Compiled Sources   
OS: Linux   
Latest Commit: Version Fixed In:

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;