mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
56 lines
3.0 KiB
Plaintext
56 lines
3.0 KiB
Plaintext
__license__ = 'GPL v3'
|
|
import re
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
class Polter(BasicNewsRecipe):
|
|
title = u'Polter.pl'
|
|
__author__ = 'fenuks'
|
|
description = u'Największy polski serwis poświęcony ogólno pojętej fantastyce - grom fabularnym (RPG), książkom, filmowi, komiksowi, grom planszowym, karcianym i bitewnym.'
|
|
category = 'fantasy, books, rpg, games'
|
|
#publication_type = ''
|
|
language = 'pl'
|
|
#encoding = ''
|
|
extra_css = '.image, .floatright {float: right; margin-left: 10px;} .floatleft {float: left; margin-right: 10px;} .calibre_navbar {clear: both;} .p_title {font-weight: bold;} .p_image {margin-left: auto; margin-right: auto; display: block;} .italic {font-style: italic;}'
|
|
cover_url = 'http://static.polter.pl/sub/promo/bpromo2524.jpg'
|
|
#masthead_url = ''
|
|
use_embedded_content = False
|
|
oldest_article = 7
|
|
max_articles_per_feed = 100
|
|
no_stylesheets = True
|
|
remove_empty_feeds = True
|
|
remove_javascript = True
|
|
remove_attributes = ['font', 'fieldset', 'onclick']
|
|
ignore_duplicate_articles = {'title', 'url'}
|
|
|
|
keep_only_tags = [dict(attrs={'class':'boxcontent'})]
|
|
remove_tags = [dict(id='komentarze')]
|
|
remove_tags_after = dict(id='komentarze')
|
|
|
|
feeds = [(u'Wieści', 'http://polter.pl/wiesci,rss.html'), (u'RPG', 'http://rpg.polter.pl/wiesci,rss.html'), (u'Książki', 'http://ksiazki.polter.pl/wiesci,rss.html'), (u'Film', 'http://film.polter.pl/wiesci,rss.html'), (u'Komiks', 'http://komiks.polter.pl/wiesci,rss.html'), (u'Gry bitewne', 'http://bitewniaki.polter.pl/wiesci,rss.html'), (u'Gry karciane', 'http://karcianki.polter.pl/wiesci,rss.html'), (u'Gry planszowe', 'http://planszowki.polter.pl/wiesci,rss.html'), (u'Gry PC', 'http://gry.polter.pl/wiesci,rss.html'), (u'Gry konsolowe', 'http://konsole.polter.pl/wiesci,rss.html'), (u'Konwenty', 'http://konwenty.polter.pl/wiesci,rss.html'), (u'Blogi', 'http://polter.pl/blogi,rss.html')]
|
|
|
|
def preprocess_html(self, soup):
|
|
for s in soup.findAll(attrs={'style':re.compile('float: ?left')}):
|
|
s['class'] = 'floatleft'
|
|
for s in soup.findAll(attrs={'style':re.compile('float: ?right')}):
|
|
s['class'] = 'floatright'
|
|
for s in soup.findAll(style=True):
|
|
if 'bold;' in s['style']:
|
|
if s.get('class', ''):
|
|
s['class'] = s['class'] + ' p_title'
|
|
else:
|
|
s['class'] = 'p_title'
|
|
if 'italic;' in s['style']:
|
|
if s.get('class', ''):
|
|
s['class'] = s['class'] + ' italic'
|
|
else:
|
|
s['class'] = 'italic'
|
|
del s['style']
|
|
|
|
tag = soup.find(id='twoja_ocena')
|
|
if tag:
|
|
tag.parent.extract()
|
|
for tag in soup.findAll(id='lista_chce_ile'):
|
|
tag.parent.parent.extract()
|
|
for r in soup.findAll(name='a', href=re.compile(r'^http://www.ceneo.pl/')):
|
|
r.extract()
|
|
return soup |