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

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.6)
  3.  
  4. __license__ = 'GPL 3'
  5. __copyright__ = '2009, Kovid Goyal <kovid@kovidgoyal.net>'
  6. __docformat__ = 'restructuredtext en'
  7. from calibre.devices.usbms.driver import USBMS
  8.  
  9. class BLACKBERRY(USBMS):
  10.     name = 'Blackberry Device Interface'
  11.     gui_name = 'Blackberry'
  12.     description = _('Communicate with the Blackberry smart phone.')
  13.     author = _('Kovid Goyal')
  14.     supported_platforms = [
  15.         'windows',
  16.         'linux',
  17.         'osx']
  18.     FORMATS = [
  19.         'mobi',
  20.         'prc']
  21.     VENDOR_ID = [
  22.         4042]
  23.     PRODUCT_ID = [
  24.         32772,
  25.         4]
  26.     BCD = [
  27.         512,
  28.         263,
  29.         528,
  30.         513]
  31.     VENDOR_NAME = 'RIM'
  32.     WINDOWS_MAIN_MEM = 'BLACKBERRY_SD'
  33.     MAIN_MEMORY_VOLUME_LABEL = 'Blackberry SD Card'
  34.     EBOOK_DIR_MAIN = 'eBooks'
  35.     SUPPORTS_SUB_DIRS = True
  36.  
  37.