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

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.6)
  3.  
  4. from __future__ import with_statement
  5. __license__ = 'GPL v3'
  6. __copyright__ = '2009, Kovid Goyal <kovid@kovidgoyal.net>'
  7. __docformat__ = 'restructuredtext en'
  8. from calibre.devices.usbms.driver import USBMS
  9.  
  10. class IRIVER_STORY(USBMS):
  11.     name = 'Iriver Story Device Interface'
  12.     gui_name = 'Iriver Story'
  13.     description = _('Communicate with the Iriver Story reader.')
  14.     author = 'Kovid Goyal'
  15.     supported_platforms = [
  16.         'windows',
  17.         'osx',
  18.         'linux']
  19.     FORMATS = [
  20.         'epub',
  21.         'pdf',
  22.         'txt']
  23.     VENDOR_ID = [
  24.         4102]
  25.     PRODUCT_ID = [
  26.         16419]
  27.     BCD = [
  28.         803]
  29.     VENDOR_NAME = 'IRIVER'
  30.     WINDOWS_MAIN_MEM = 'STORY'
  31.     WINDOWS_CARD_A_MEM = 'STORY'
  32.     MAIN_MEMORY_VOLUME_LABEL = 'Story Main Memory'
  33.     STORAGE_CARD_VOLUME_LABEL = 'Story Storage Card'
  34.     EBOOK_DIR_MAIN = 'Book'
  35.     SUPPORTS_SUB_DIRS = True
  36.  
  37.