View Single Post
Old 09-16-2011, 02:08 PM   #7
JayKindle
Connoisseur
JayKindle began at the beginning.
 
JayKindle's Avatar
 
Posts: 69
Karma: 10
Join Date: Sep 2011
Device: Kindle Fire HD 8
Thanks for your reply! Wow! I finally get a response! For a moment there, I thought my post was hidden or something.

I had to Google what IIRC meant. ("If I Remember Correctly").

I wonder why I am having this issue with my quest? Do you wish to help me troubleshoot it? Here is the recipe to get news from the site.

Code:
from calibre.web.feeds.news import BasicNewsRecipe

class AutoBlog(BasicNewsRecipe):
    title          = u'MixingOnBeat'
    language = 'en'
    description = 'blog'
    remove_javascript      = True
    oldest_article = 80
    max_articles_per_feed = 200
    timefmt  = ' '
    no_stylesheets        = True
    use_embedded_content  = False
    auto_cleanup = True
    remove_empty_feeds    = False

    remove_attributes = ['style', 'top']
    remove_tags = [
                     dict(name='div', attrs={'id':['logo', 'sponsor', 'related_objects', 'inset module', 'footer', 'strip_control', 'header', 'navigation', 'Google']}), dict(name='hr'), dict(name='img')
                    ,dict(name=['meta', 'link', 'iframe', 'object', 'embed', 'Google'])
                    ,dict(attrs={'class':['logo', 'sponsor', 'googleAd', 'genbox', 'copyright', 'nav', 'thLeft', 'thRight', 'catHead', 'postdetails', 'signature', 'Google']})
                    ,dict(attrs={'id':['article-promo', 'googleads', 'moduleArticleToolsContainer', 'gallery-subcontent', 'Google']})
                  ]

    feeds          = [(u'New Topics', u'http://www.mixingonbeat.com/phpbb/rss.php'),
	(u'MOB News / Announcements', u'http://www.mixingonbeat.com/phpbb/rss.php?f=1'),
	(u'MOB Lounge (non-DJ Topics)', u'http://www.mixingonbeat.com/phpbb/rss.php?f=5'),
	(u'Equipment Support (DJs Only)', u'http://www.mixingonbeat.com/phpbb/rss.php?f=6'),
	(u'General Mixing Support', u'http://www.mixingonbeat.com/phpbb/rss.php?f=132'),
	(u'Harmonic Mixing Support', u'http://www.mixingonbeat.com/phpbb/rss.php?f=34'),
	(u'Software Mixing (DJs)', u'http://www.mixingonbeat.com/phpbb/rss.php?f=30'),
	(u'MixMeister Support', u'http://www.mixingonbeat.com/phpbb/rss.php?f=66'),
	(u'Video Mixing', u'http://www.mixingonbeat.com/phpbb/rss.php?f=49'),
	(u'General DJ Discussions', u'http://www.mixingonbeat.com/phpbb/rss.php?f=11'),
	(u'Battle DJs', u'http://www.mixingonbeat.com/phpbb/rss.php?f=110'),
	(u'Club DJs', u'http://www.mixingonbeat.com/phpbb/rss.php?f=8'),
	(u'Karaoke DJs', u'http://www.mixingonbeat.com/phpbb/rss.php?f=32'),
	(u'Mobile DJs', u'http://www.mixingonbeat.com/phpbb/rss.php?f=9'),
	(u'Radio and Mixshow DJs', u'http://www.mixingonbeat.com/phpbb/rss.php?f=10')
	]
Now the topic in question is: MixingOnBeat.com :: View topic - RSS Feeds added to MOB -- only the title appears, but the content is skipped. Here is a direct link to the topic in question: http://www.mixingonbeat.com/phpbb/viewtopic.php?t=6452

I hope it can be fixed, perhaps my recipe is the problem?
JayKindle is offline   Reply With Quote