home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.6)
-
- __license__ = 'GPL 3'
- __copyright__ = '2009, John Schember <john@nachtimwald.com>'
- __docformat__ = 'restructuredtext en'
- from calibre.devices.usbms.driver import USBMS
-
- class ILIAD(USBMS):
- name = 'IRex Iliad Device Interface'
- description = _('Communicate with the IRex Iliad eBook reader.')
- author = _('John Schember')
- supported_platforms = [
- 'windows',
- 'linux']
- FORMATS = [
- 'mobi',
- 'prc',
- 'html',
- 'pdf',
- 'txt']
- VENDOR_ID = [
- 1228]
- PRODUCT_ID = [
- 6756]
- BCD = [
- 256]
- VENDOR_NAME = 'IREX'
- WINDOWS_MAIN_MEM = 'ILIAD'
- MAIN_MEMORY_VOLUME_LABEL = 'IRex Iliad Main Memory'
- EBOOK_DIR_MAIN = 'books'
- DELETE_EXTS = [
- '.mbp']
- SUPPORTS_SUB_DIRS = True
-
-