home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.6)
-
- __license__ = 'GPL v3'
- __copyright__ = '2009, John Schember <john at nachtimwald.com>'
- __docformat__ = 'restructuredtext en'
- from calibre.devices.usbms.driver import USBMS
-
- class N770(USBMS):
- name = 'Nokia 770 Device Interface'
- gui_name = 'Nokia 770'
- description = _('Communicate with the Nokia 770 internet tablet.')
- author = 'John Schember'
- supported_platforms = [
- 'windows',
- 'linux',
- 'osx']
- FORMATS = [
- 'mobi',
- 'prc',
- 'epub',
- 'html',
- 'zip',
- 'fb2',
- 'chm',
- 'pdb',
- 'tcr',
- 'txt',
- 'rtf']
- VENDOR_ID = [
- 1057]
- PRODUCT_ID = [
- 1073]
- BCD = [
- 776]
- VENDOR_NAME = 'NOKIA'
- WINDOWS_MAIN_MEM = '770'
- MAIN_MEMORY_VOLUME_LABEL = 'N770 Main Memory'
- EBOOK_DIR_MAIN = 'My Ebooks'
- SUPPORTS_SUB_DIRS = True
-
-
- class N810(N770):
- name = 'Nokia 810 Device Interface'
- gui_name = 'Nokia 810'
- description = _('Communicate with the Nokia 810 internet tablet.')
- PRODUCT_ID = [
- 150]
- BCD = [
- 790]
- WINDOWS_MAIN_MEM = 'N810'
- MAIN_MEMORY_VOLUME_LABEL = 'N810 Main Memory'
-
-
- class E71X(USBMS):
- name = 'Nokia E71X device interface'
- gui_name = 'Nokia E71X'
- description = 'Communicate with the Nokia E71X'
- author = 'Kovid Goyal'
- supported_platforms = [
- 'windows',
- 'linux',
- 'osx']
- VENDOR_ID = [
- 1057]
- PRODUCT_ID = [
- 416]
- BCD = [
- 256]
- FORMATS = [
- 'mobi',
- 'prc']
- EBOOK_DIR_MAIN = 'eBooks'
- SUPPORTS_SUB_DIRS = True
- VENDOR_NAME = 'NOKIA'
- WINDOWS_MAIN_MEM = 'S60'
-
-
- class E52(USBMS):
- name = 'Nokia E52 device interface'
- gui_name = 'Nokia E52'
- description = _('Communicate with the Nokia E52')
- author = 'David Ignjic'
- supported_platforms = [
- 'windows',
- 'linux',
- 'osx']
- VENDOR_ID = [
- 1057]
- PRODUCT_ID = [
- 461]
- BCD = [
- 256]
- FORMATS = [
- 'mobi',
- 'prc']
- EBOOK_DIR_MAIN = 'eBooks'
- SUPPORTS_SUB_DIRS = True
- VENDOR_NAME = 'NOKIA'
- WINDOWS_MAIN_MEM = 'S60'
-
-