mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
19 lines
928 B
Plaintext
19 lines
928 B
Plaintext
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
class Ubuntu_pl(BasicNewsRecipe):
|
|
title = u'UBUNTU.pl'
|
|
__author__ = 'fenuks'
|
|
description = 'UBUNTU.pl - polish ubuntu community site'
|
|
masthead_url= 'http://ubuntu.pl/img/logo.jpg'
|
|
cover_url = 'http://ubuntu.pl/img/logo.jpg'
|
|
category = 'linux, IT'
|
|
language = 'pl'
|
|
no_stylesheets = True
|
|
remove_empty_feeds = True
|
|
oldest_article = 8
|
|
max_articles_per_feed = 100
|
|
extra_css = '#main {text-align:left;}'
|
|
keep_only_tags= [dict(name='td', attrs={'class':'teaser-node-mc'}), dict(name='h3', attrs={'class':'entry-title'}), dict(name='div', attrs={'class':'entry-content'})]
|
|
remove_tags_after= [dict(name='div' , attrs={'class':'content'})]
|
|
feeds = [('Czytelnia Ubuntu', 'http://feeds.feedburner.com/ubuntu-czytelnia'), (u'WikiGames', u'http://feeds.feedburner.com/WikiGames')]
|