This commit is contained in:
Kovid Goyal 2012-01-13 08:17:54 +05:30
parent 5416312344
commit aec8b04536

View File

@ -20,7 +20,6 @@ You need to sign up (free) and get username/password.
import re # Import the regular expressions module. import re # Import the regular expressions module.
from calibre.ptempfile import TemporaryFile # we need this for saving to a temp file from calibre.ptempfile import TemporaryFile # we need this for saving to a temp file
from calibre.web.feeds.news import BasicNewsRecipe from calibre.web.feeds.news import BasicNewsRecipe
class MWJournal(BasicNewsRecipe): class MWJournal(BasicNewsRecipe):
@ -93,11 +92,11 @@ class MWJournal(BasicNewsRecipe):
# Select the feeds that you are interested. # Select the feeds that you are interested.
feeds = [ feeds = [
(u'Current Issue', u'http://www.mwjournal.com/rss/Rss.asp?type=99'), (u'Current Issue', u'http://www.mwjournal.com/rss/Rss.asp?type=99'),
#(u'Industry News', u'http://mwjournal.com/rss/Rss.asp?type=1'), (u'Industry News', u'http://www.mwjournal.com/rss/Rss.asp?type=1'),
#(u'Resources', u'http://mwjournal.com/rss/Rss.asp?type=3'), (u'Resources', u'http://www.mwjournal.com/rss/Rss.asp?type=3'),
#(u'Buyer\'s Guide', u'http://mwjournal.com/rss/Rss.asp?type=5'), (u'Buyer\'s Guide', u'http://www.mwjournal.com/rss/Rss.asp?type=5'),
(u'Events', u'http://mwjournal.com/rss/Rss.asp?type=2'), (u'Events', u'http://www.mwjournal.com/rss/Rss.asp?type=2'),
#(u'All Updates', u'http://mwjournal.com/rss/Rss.asp?type=0'), (u'All Updates', u'http://www.mwjournal.com/rss/Rss.asp?type=0'),
] ]
# No magazine is complete without cover. Let's get it then! # No magazine is complete without cover. Let's get it then!