IGN:Tag release

This commit is contained in:
Kovid Goyal 2011-04-29 12:13:27 -06:00
parent 17b0ee3ff2
commit fabb8ddb59
4 changed files with 784 additions and 681 deletions

View File

@ -54,7 +54,7 @@
- title: "Fix adding html books from the top of a deep folder hierarchy very slow"
- title: "Only set language in MOBI metadata is it is not null"
- title: "Only set language in MOBI metadata if it is not null"
- title: "Fix 'count-of' searches (e.g., tags:#>3)."
tickets: [771175]
@ -62,7 +62,7 @@
- title: "Fix regression that broke connection to iTunes in some cases"
tickets: [771164]
- title: "Fix buggy regex that made converting PDfs with the string ****************** very slow"
- title: "Fix buggy regex that made converting PDFs with the string ****************** very slow"
tickets: [770534]
- title: "Fix Ctrl+L shortcut to lookup word not working in ebook viewer"

View File

@ -109,10 +109,10 @@ class ANDROID(USBMS):
'SGH-T849', '_MB300', 'A70S', 'S_ANDROID', 'A101IT', 'A70H',
'IDEOS_TABLET', 'MYTOUCH_4G', 'UMS_COMPOSITE', 'SCH-I800_CARD',
'7', 'A956', 'A955', 'A43', 'ANDROID_PLATFORM', 'TEGRA_2',
'MB860', 'MULTI-CARD', 'MID7015A', 'INCREDIBLE']
'MB860', 'MULTI-CARD', 'MID7015A', 'INCREDIBLE', 'A7EB']
WINDOWS_CARD_A_MEM = ['ANDROID_PHONE', 'GT-I9000_CARD', 'SGH-I897',
'FILE-STOR_GADGET', 'SGH-T959', 'SAMSUNG_ANDROID', 'GT-P1000_CARD',
'A70S', 'A101IT', '7', 'INCREDIBLE']
'A70S', 'A101IT', '7', 'INCREDIBLE', 'A7EB']
OSX_MAIN_MEM = 'Android Device Main Memory'

View File

@ -360,7 +360,7 @@ class Reader(FormatReader):
# plugin assemble the order based on hyperlinks.
with CurrentDir(output_dir):
for uid, num in self.uid_text_secion_number.items():
self.log.debug(_('Writing record with uid: %s as %s.html' % (uid, uid)))
self.log.debug('Writing record with uid: %s as %s.html' % (uid, uid))
with open('%s.html' % uid, 'wb') as htmlf:
html = u'<html><body>'
section_header, section_data = self.sections[num]
@ -466,7 +466,7 @@ class Reader(FormatReader):
if not home_html:
home_html = self.uid_text_secion_number.items()[0][0]
except:
raise Exception(_('Could not determine home.html'))
raise Exception('Could not determine home.html')
# Generate oeb from html conversion.
oeb = html_input.convert(open('%s.html' % home_html, 'rb'), self.options, 'html', self.log, {})
self.options.debug_pipeline = odi

File diff suppressed because it is too large Load Diff