View Single Post
Old 02-10-2015, 06:17 PM   #1
doctore
Junior Member
doctore began at the beginning.
 
Posts: 1
Karma: 10
Join Date: Feb 2015
Device: Kindle Paperwhite
rss feed is downloading sidebar content instead

This is most awkard bug


I have custom news source with this:
Code:
#!/usr/bin/env python
# vim:fileencoding=utf-8
from __future__ import unicode_literals, division, absolute_import, print_function
from calibre.web.feeds.news import BasicNewsRecipe

class AdvancedUserRecipe1420288667(BasicNewsRecipe):
    title          = 'Stormblåst'
    oldest_article = 31
    max_articles_per_feed = 100
    auto_cleanup   = True

    feeds          = [
        ('blasfemias', 'http://blasfemias.net/feed/'),
        ('insur', 'http://feeds.feedburner.com/oinsurgente/wqES'),
        ('pc', 'http://portugalcontemporaneo.blogspot.com/feeds/posts/default'),
        ('bsc', 'http://feeds.feedburner.com/blogspot/sIFc'),
    ]

Problem is bsc, feed is from
balancedscorecard.blogspot.pt


Calibre can obtain the titles correctly but for some reason it ignores the post content and gets the sidebar instead, for every post (which isn't even on display from the feed)
doctore is offline   Reply With Quote