home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2010 November / maximum-cd-2010-11.iso / DiscContents / calibre-0.7.13.msi / file_765 (.txt) < prev    next >
Encoding:
Python Compiled Bytecode  |  2010-08-06  |  1.7 KB  |  56 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.6)
  3.  
  4. __license__ = 'GPL 3'
  5. __copyright__ = '2009, John Schember <john@nachtimwald.com>'
  6. __docformat__ = 'restructuredtext en'
  7. from calibre.devices.usbms.driver import USBMS
  8.  
  9. class IREXDR1000(USBMS):
  10.     name = 'IRex Digital Reader 1000 Device Interface'
  11.     description = _('Communicate with the IRex Digital Reader 1000 eBook reader.')
  12.     author = _('John Schember')
  13.     supported_platforms = [
  14.         'windows',
  15.         'osx',
  16.         'linux']
  17.     FORMATS = [
  18.         'epub',
  19.         'mobi',
  20.         'prc',
  21.         'html',
  22.         'pdf',
  23.         'txt']
  24.     VENDOR_ID = [
  25.         7787]
  26.     PRODUCT_ID = [
  27.         1]
  28.     BCD = [
  29.         802]
  30.     VENDOR_NAME = 'IREX'
  31.     WINDOWS_MAIN_MEM = 'DR1000'
  32.     OSX_MAIN_MEM = 'iRex DR1000 Media'
  33.     MAIN_MEMORY_VOLUME_LABEL = 'IRex Digital Reader 1000 Main Memory'
  34.     EBOOK_DIR_MAIN = 'ebooks'
  35.     DELETE_EXTS = [
  36.         '.mbp']
  37.     SUPPORTS_SUB_DIRS = True
  38.  
  39.  
  40. class IREXDR800(IREXDR1000):
  41.     name = 'IRex Digital Reader 800 Device Interface'
  42.     description = _('Communicate with the IRex Digital Reader 800')
  43.     PRODUCT_ID = [
  44.         2]
  45.     WINDOWS_MAIN_MEM = 'DR800'
  46.     FORMATS = [
  47.         'epub',
  48.         'pdb',
  49.         'html',
  50.         'pdf',
  51.         'txt']
  52.     EBOOK_DIR_MAIN = 'Books'
  53.     DELETE_EXTS = []
  54.     SUPPORTS_SUB_DIRS = True
  55.  
  56.