mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
41 lines
1.4 KiB
Plaintext
41 lines
1.4 KiB
Plaintext
__license__ = 'GPL v3'
|
|
__copyright__ = '2010, Darko Miletic <darko.miletic at gmail.com>'
|
|
'''
|
|
gamasutra.com
|
|
'''
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class Gamasutra(BasicNewsRecipe):
|
|
title = 'Gamasutra News'
|
|
__author__ = 'Darko Miletic'
|
|
description = 'The Art and Business of Making Games'
|
|
publisher = 'Gamasutra'
|
|
category = 'news, games, IT'
|
|
oldest_article = 2
|
|
max_articles_per_feed = 200
|
|
no_stylesheets = True
|
|
encoding = 'cp1252'
|
|
use_embedded_content = False
|
|
language = 'en'
|
|
remove_empty_feeds = True
|
|
masthead_url = 'http://www.gamasutra.com/images/gamasutra_logo.gif'
|
|
|
|
conversion_options = {
|
|
'comment': description, 'tags': category, 'publisher': publisher, 'language': language, 'linearize_tables': True
|
|
}
|
|
|
|
remove_tags_before = dict(name="div", attrs={'class': 'page_item'})
|
|
remove_tags = [
|
|
dict(name='meta'), dict(name='link'),
|
|
dict(name='hr'), dict(name='div', attrs={'class': 'hide-phone'}),
|
|
dict(name='div', attrs={'class': 'nav_links'}), dict(name='div', attrs={'class': 'superfooter'}),
|
|
dict(name='span', attrs={'class': 'comment_text'}), dict(name='a', attrs={'type': 'button'})
|
|
]
|
|
remove_attributes = ['width', 'height', 'name']
|
|
|
|
feeds = [(u'News', u'http://feeds.feedburner.com/GamasutraNews')]
|
|
|
|
def print_version(self, url):
|
|
return url.partition('?')[0] + '?print=1'
|