home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.6)
-
- __license__ = 'GPL 3'
- __copyright__ = '2009, Kovid Goyal <kovid@kovidgoyal.net>'
- __docformat__ = 'restructuredtext en'
- from calibre.devices.usbms.driver import USBMS
-
- class BLACKBERRY(USBMS):
- name = 'Blackberry Device Interface'
- gui_name = 'Blackberry'
- description = _('Communicate with the Blackberry smart phone.')
- author = _('Kovid Goyal')
- supported_platforms = [
- 'windows',
- 'linux',
- 'osx']
- FORMATS = [
- 'mobi',
- 'prc']
- VENDOR_ID = [
- 4042]
- PRODUCT_ID = [
- 32772,
- 4]
- BCD = [
- 512,
- 263,
- 528,
- 513]
- VENDOR_NAME = 'RIM'
- WINDOWS_MAIN_MEM = 'BLACKBERRY_SD'
- MAIN_MEMORY_VOLUME_LABEL = 'Blackberry SD Card'
- EBOOK_DIR_MAIN = 'eBooks'
- SUPPORTS_SUB_DIRS = True
-
-