mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
Merge from trunk
This commit is contained in:
commit
f01ff5531a
20
recipes/blog_da_cidadania.recipe
Normal file
20
recipes/blog_da_cidadania.recipe
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
from calibre.web.feeds.news import BasicNewsRecipe
|
||||||
|
|
||||||
|
class BlogdaCidadania(BasicNewsRecipe):
|
||||||
|
title = 'Blog da Cidadania'
|
||||||
|
__author__ = 'Diniz Bortolotto'
|
||||||
|
description = 'Posts do Blog da Cidadania'
|
||||||
|
oldest_article = 7
|
||||||
|
max_articles_per_feed = 50
|
||||||
|
encoding = 'utf8'
|
||||||
|
publisher = 'Eduardo Guimaraes'
|
||||||
|
category = 'politics, Brazil'
|
||||||
|
language = 'pt_BR'
|
||||||
|
publication_type = 'politics portal'
|
||||||
|
|
||||||
|
feeds = [(u'Blog da Cidadania', u'http://www.blogcidadania.com.br/feed/')]
|
||||||
|
|
||||||
|
reverse_article_order = True
|
||||||
|
|
@ -20,7 +20,7 @@ class AdvancedUserRecipe1306097511(BasicNewsRecipe):
|
|||||||
remove_tags_before = dict(name='div', attrs={'id':'date'})
|
remove_tags_before = dict(name='div', attrs={'id':'date'})
|
||||||
remove_tags_after = dict(name='div', attrs={'id':'column-1-3'})
|
remove_tags_after = dict(name='div', attrs={'id':'column-1-3'})
|
||||||
encoding = 'utf-8'
|
encoding = 'utf-8'
|
||||||
extra_css = '#date {font-size: 10px} .article-image-caption {font-size: 8px}'
|
extra_css = 'body{font-size:12px} #date, .article-image-caption {font-size: 0.583em} h2 {font-size: 0.917em} p.small, span, li, li span span, p, b, i, u, p.small.article-paragraph, p.small.article-paragraph p, p.small.article-paragraph span, p span, span {font-size: 0.833em} h1 {font-size: 1em}'
|
||||||
|
|
||||||
remove_tags = [dict(name='div', attrs={'class':[ 'metroCommentFormWrap',
|
remove_tags = [dict(name='div', attrs={'class':[ 'metroCommentFormWrap',
|
||||||
'commentForm', 'metroCommentInnerWrap', 'article-slideshow-counter-container', 'article-slideshow-control', 'ad', 'header-links',
|
'commentForm', 'metroCommentInnerWrap', 'article-slideshow-counter-container', 'article-slideshow-control', 'ad', 'header-links',
|
||||||
|
24
recipes/noticias_unb.recipe
Normal file
24
recipes/noticias_unb.recipe
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
from calibre.web.feeds.news import BasicNewsRecipe
|
||||||
|
|
||||||
|
class NoticiasUnB(BasicNewsRecipe):
|
||||||
|
title = 'Noticias UnB'
|
||||||
|
__author__ = 'Diniz Bortolotto'
|
||||||
|
description = 'Noticias da UnB'
|
||||||
|
oldest_article = 5
|
||||||
|
max_articles_per_feed = 20
|
||||||
|
category = 'news, educational, Brazil'
|
||||||
|
language = 'pt_BR'
|
||||||
|
publication_type = 'newsportal'
|
||||||
|
use_embedded_content = False
|
||||||
|
no_stylesheets = True
|
||||||
|
remove_javascript = True
|
||||||
|
|
||||||
|
feeds = [(u'UnB Agência', u'http://www.unb.br/noticias/rss/noticias.rss')]
|
||||||
|
|
||||||
|
reverse_article_order = True
|
||||||
|
|
||||||
|
def print_version(self, url):
|
||||||
|
return url.replace('http://', 'http://www.unb.br/noticias/print_email/imprimir.php?u=http://')
|
||||||
|
|
@ -72,7 +72,8 @@ class ANDROID(USBMS):
|
|||||||
0x413c : { 0xb007 : [0x0100, 0x0224, 0x0226]},
|
0x413c : { 0xb007 : [0x0100, 0x0224, 0x0226]},
|
||||||
|
|
||||||
# LG
|
# LG
|
||||||
0x1004 : { 0x61cc : [0x100], 0x61ce : [0x100], 0x618e : [0x226] },
|
0x1004 : { 0x61cc : [0x100], 0x61ce : [0x100], 0x618e : [0x226,
|
||||||
|
0x9999] },
|
||||||
|
|
||||||
# Archos
|
# Archos
|
||||||
0x0e79 : {
|
0x0e79 : {
|
||||||
|
@ -596,12 +596,27 @@ class KOBO(USBMS):
|
|||||||
try:
|
try:
|
||||||
cursor.execute (query)
|
cursor.execute (query)
|
||||||
except:
|
except:
|
||||||
debug_print('Database Exception: Unable to reset Shortlist list')
|
debug_print(' Database Exception: Unable to reset Shortlist list')
|
||||||
raise
|
raise
|
||||||
else:
|
else:
|
||||||
connection.commit()
|
connection.commit()
|
||||||
debug_print(' Commit: Reset FavouritesIndex list')
|
debug_print(' Commit: Reset FavouritesIndex list')
|
||||||
|
|
||||||
|
def set_favouritesindex(self, connection, ContentID):
|
||||||
|
cursor = connection.cursor()
|
||||||
|
|
||||||
|
t = (ContentID,)
|
||||||
|
|
||||||
|
try:
|
||||||
|
cursor.execute('update content set FavouritesIndex=1 where BookID is Null and ContentID = ?', t)
|
||||||
|
except:
|
||||||
|
debug_print(' Database Exception: Unable set book as Shortlist')
|
||||||
|
raise
|
||||||
|
else:
|
||||||
|
connection.commit()
|
||||||
|
debug_print(' Commit: Set FavouritesIndex')
|
||||||
|
|
||||||
|
|
||||||
def update_device_database_collections(self, booklists, collections_attributes, oncard):
|
def update_device_database_collections(self, booklists, collections_attributes, oncard):
|
||||||
# Define lists for the ReadStatus
|
# Define lists for the ReadStatus
|
||||||
readstatuslist = {
|
readstatuslist = {
|
||||||
@ -636,11 +651,7 @@ class KOBO(USBMS):
|
|||||||
|
|
||||||
# Process any collections that exist
|
# Process any collections that exist
|
||||||
for category, books in collections.items():
|
for category, books in collections.items():
|
||||||
# This is used to reset the Im_Reading, Read and Closed list
|
|
||||||
# in the ReadStatus column of the Content table
|
|
||||||
if category in readstatuslist.keys():
|
|
||||||
debug_print("Category: ", category, " id = ", readstatuslist.get(category))
|
debug_print("Category: ", category, " id = ", readstatuslist.get(category))
|
||||||
|
|
||||||
for book in books:
|
for book in books:
|
||||||
debug_print(' Title:', book.title, 'category: ', category)
|
debug_print(' Title:', book.title, 'category: ', category)
|
||||||
if category not in book.device_collections:
|
if category not in book.device_collections:
|
||||||
@ -650,35 +661,16 @@ class KOBO(USBMS):
|
|||||||
ContentType = self.get_content_type_from_extension(extension) if extension != '' else self.get_content_type_from_path(book.path)
|
ContentType = self.get_content_type_from_extension(extension) if extension != '' else self.get_content_type_from_path(book.path)
|
||||||
|
|
||||||
ContentID = self.contentid_from_path(book.path, ContentType)
|
ContentID = self.contentid_from_path(book.path, ContentType)
|
||||||
self.set_readstatus(connection, ContentID, readstatuslist.get(category))
|
|
||||||
if category == 'Shortlist':
|
|
||||||
debug_print("Category: ", category)
|
|
||||||
cursor = connection.cursor()
|
|
||||||
for book in books:
|
|
||||||
debug_print(' Title:', book.title, 'category: ', category)
|
|
||||||
if 'Shortlist' not in book.device_collections:
|
|
||||||
book.device_collections.append('Shortlist')
|
|
||||||
# debug_print ("Shortlist found for: ", book.title)
|
|
||||||
extension = os.path.splitext(book.path)[1]
|
|
||||||
ContentType = self.get_content_type_from_extension(extension) if extension != '' else self.get_content_type_from_path(book.path)
|
|
||||||
|
|
||||||
ContentID = self.contentid_from_path(book.path, ContentType)
|
|
||||||
# datelastread = time.strftime("%Y-%m-%dT%H:%M:%S", time.gmtime())
|
|
||||||
|
|
||||||
t = (ContentID,)
|
|
||||||
|
|
||||||
try:
|
|
||||||
cursor.execute('update content set FavouritesIndex=1 where BookID is Null and ContentID = ?', t)
|
|
||||||
except:
|
|
||||||
debug_print('Database Exception: Unable set book as Shortlist')
|
|
||||||
raise
|
|
||||||
else:
|
|
||||||
connection.commit()
|
|
||||||
# debug_print('Database: Commit set Shortlist as Shortlist')
|
|
||||||
|
|
||||||
|
if category in readstatuslist.keys():
|
||||||
|
# Manage ReadStatus
|
||||||
|
self.set_readstatus(connection, ContentID, readstatuslist.get(category))
|
||||||
|
if category == 'Shortlist':
|
||||||
|
# Manage FavouritesIndex/Shortlist
|
||||||
|
self.set_favouritesindex(connection, ContentID)
|
||||||
else: # No collections
|
else: # No collections
|
||||||
# Since no collections exist the ReadStatus needs to be reset to 0 (Unread)
|
# Since no collections exist the ReadStatus needs to be reset to 0 (Unread)
|
||||||
debug_print("No Collections - reseting ReadStatus to 0")
|
debug_print("No Collections - reseting ReadStatus")
|
||||||
self.reset_readstatus(connection, oncard)
|
self.reset_readstatus(connection, oncard)
|
||||||
debug_print("No Collections - reseting FavouritesIndex")
|
debug_print("No Collections - reseting FavouritesIndex")
|
||||||
self.reset_favouritesindex(connection, oncard)
|
self.reset_favouritesindex(connection, oncard)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user