home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2011 January / maximum-cd-2011-01.iso / DiscContents / calibre-0.7.26.msi / file_757 (.txt) < prev    next >
Encoding:
Python Compiled Bytecode  |  2010-10-31  |  1.7 KB  |  57 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.         'djvu',
  24.         'txt']
  25.     VENDOR_ID = [
  26.         7787]
  27.     PRODUCT_ID = [
  28.         1]
  29.     BCD = [
  30.         802]
  31.     VENDOR_NAME = 'IREX'
  32.     WINDOWS_MAIN_MEM = 'DR1000'
  33.     OSX_MAIN_MEM = 'iRex DR1000 Media'
  34.     MAIN_MEMORY_VOLUME_LABEL = 'IRex Digital Reader 1000 Main Memory'
  35.     EBOOK_DIR_MAIN = 'ebooks'
  36.     DELETE_EXTS = [
  37.         '.mbp']
  38.     SUPPORTS_SUB_DIRS = True
  39.  
  40.  
  41. class IREXDR800(IREXDR1000):
  42.     name = 'IRex Digital Reader 800 Device Interface'
  43.     description = _('Communicate with the IRex Digital Reader 800')
  44.     PRODUCT_ID = [
  45.         2]
  46.     WINDOWS_MAIN_MEM = 'DR800'
  47.     FORMATS = [
  48.         'epub',
  49.         'pdb',
  50.         'html',
  51.         'pdf',
  52.         'txt']
  53.     EBOOK_DIR_MAIN = 'Books'
  54.     DELETE_EXTS = []
  55.     SUPPORTS_SUB_DIRS = True
  56.  
  57.