#!/usr/bin/env python2 __license__ = 'GPL v3' __author__ = 'Lorenzo Vigentini' __copyright__ = '2009, Lorenzo Vigentini ' __version__ = 'v1.01' __date__ = '14, January 2010' __description__ = 'Macworld is a publication of IDG Communication in the UK specifically on the Apple Mac.' ''' http://www.macworld.co.uk/ ''' from calibre.web.feeds.news import BasicNewsRecipe class pcMag(BasicNewsRecipe): __author__ = 'Lorenzo Vigentini' description = 'Macworld is a publication of IDG Communication in the UK specifically on the Apple Mac.' cover_url = 'http://media.macworld.co.uk/images/masthead.jpg' title = 'Mac World UK ' publisher = 'IDG Communication' category = 'Apple, Mac, computing, product reviews, UK' language = 'en_GB' timefmt = '[%a, %d %b, %Y]' max_articles_per_feed = 25 use_embedded_content = False recursion = 10 remove_javascript = True no_stylesheets = True auto_cleanup = True feeds = [ (u'MacWorld Headlines', u'http://www.macworld.co.uk/latest/rss'), (u'Reviews', u'http://www.macworld.co.uk/news/rss'), (u'Masterclass', u'http://www.macworld.co.uk/how-to/rss'), (u'MacWorld Team', u'http://www.macworld.co.uk/review/rss'), (u'Andy Ihnatko', u'http://www.macworld.co.uk/latest/iphone/rss'), (u'Andy Penfold', u'http://www.macworld.co.uk/latest/ipad/rss'), (u'Jonny Evans', u'http://www.macworld.co.uk/latest/mac/rss'), (u'Karen Haslam', u'http://www.macworld.co.uk/latest/apple/rss') ] extra_css = ''' h1 {color:#0066CC;font-family:Arial,Helvetica,sans-serif; font-size:20px; font-size-adjust:none; font-stretch:normal; font-style:normal; font-variant:normal; font-weight:bold; line-height:20px;} h2 {color:#4D4D4D;font-family:Arial,Helvetica,sans-serif; font-size:16px; font-size-adjust:none; font-stretch:normal; font-style:normal; font-variant:normal; font-weight:bold; line-height:16px; } h3 {color:#4D4D4D;font-family:Arial,Helvetica,sans-serif; font-size:15px; font-size-adjust:none; font-stretch:normal; font-style:normal; font-variant:normal; font-weight:bold; line-height:15px;} h4 {color:#333333; font-family:Arial,Helvetica,sans-serif;font-size:13px; font-size-adjust:none; font-stretch:normal; font-style:normal; font-variant:normal; font-weight:bold; line-height:13px; } h5 {color:#333333; font-family:Arial,Helvetica,sans-serif; font-size:11px; font-size-adjust:none; font-stretch:normal; font-style:normal; font-variant:normal; font-weight:bold; line-height:11px; text-transform:uppercase;} p.authorCredit {-x-system-font:none;font-family:Arial,sans-serif;font-size:10pt;font-size-adjust:none;font-stretch:normal;font-style:normal;font-variant:normal;font-weight:normal;line-height:1.1em;} p.date {font-size:10pt;margin-bottom:0;} img {align:left;} '''