Shorten DR1000 profile class name. Enable DR1000 driver.

This commit is contained in:
John Schember 2009-07-09 19:14:53 -04:00
parent 7a3c3fca42
commit 3039992085
2 changed files with 6 additions and 4 deletions

View File

@ -349,6 +349,7 @@ from calibre.devices.bebook.driver import BEBOOK, BEBOOK_MINI
from calibre.devices.blackberry.driver import BLACKBERRY from calibre.devices.blackberry.driver import BLACKBERRY
from calibre.devices.cybookg3.driver import CYBOOKG3 from calibre.devices.cybookg3.driver import CYBOOKG3
from calibre.devices.eb600.driver import EB600 from calibre.devices.eb600.driver import EB600
from calibre.devices.irexdr.driver import IRexDR1000
from calibre.devices.jetbook.driver import JETBOOK from calibre.devices.jetbook.driver import JETBOOK
from calibre.devices.kindle.driver import KINDLE, KINDLE2, KINDLE_DX from calibre.devices.kindle.driver import KINDLE, KINDLE2, KINDLE_DX
from calibre.devices.prs500.driver import PRS500 from calibre.devices.prs500.driver import PRS500
@ -393,6 +394,7 @@ plugins += [
BLACKBERRY, BLACKBERRY,
CYBOOKG3, CYBOOKG3,
EB600, EB600,
IRexDR1000,
JETBOOK, JETBOOK,
KINDLE, KINDLE,
KINDLE2, KINDLE2,

View File

@ -146,7 +146,7 @@ class IlliadInput(InputProfile):
fbase = 12 fbase = 12
fsizes = [7.5, 9, 10, 12, 15.5, 20, 22, 24] fsizes = [7.5, 9, 10, 12, 15.5, 20, 22, 24]
class IRexDigitalReader1000Input(InputProfile): class IRexDR1000Input(InputProfile):
author = 'John Schember' author = 'John Schember'
name = 'IRex Digital Reader 1000' name = 'IRex Digital Reader 1000'
@ -161,7 +161,7 @@ class IRexDigitalReader1000Input(InputProfile):
input_profiles = [InputProfile, SonyReaderInput, MSReaderInput, input_profiles = [InputProfile, SonyReaderInput, MSReaderInput,
MobipocketInput, HanlinV3Input, CybookG3Input, CybookOpus, KindleInput, MobipocketInput, HanlinV3Input, CybookG3Input, CybookOpus, KindleInput,
IlliadInput, IRexDigitalReader1000Input] IlliadInput, IRexDR1000Input]
class OutputProfile(Plugin): class OutputProfile(Plugin):
@ -317,7 +317,7 @@ class IlliadOutput(OutputProfile):
fbase = 12 fbase = 12
fsizes = [7.5, 9, 10, 12, 15.5, 20, 22, 24] fsizes = [7.5, 9, 10, 12, 15.5, 20, 22, 24]
class IRexDigitalReader1000Output(OutputProfile): class IRexDR1000Output(OutputProfile):
author = 'John Schember' author = 'John Schember'
name = 'IRex Digital Reader 1000' name = 'IRex Digital Reader 1000'
@ -334,4 +334,4 @@ class IRexDigitalReader1000Output(OutputProfile):
output_profiles = [OutputProfile, SonyReaderOutput, MSReaderOutput, output_profiles = [OutputProfile, SonyReaderOutput, MSReaderOutput,
MobipocketOutput, HanlinV3Output, CybookG3Output, KindleOutput, MobipocketOutput, HanlinV3Output, CybookG3Output, KindleOutput,
SonyReaderLandscapeOutput, KindleDXOutput, IlliadOutput, SonyReaderLandscapeOutput, KindleDXOutput, IlliadOutput,
IRexDigitalReader1000Output] IRexDR1000Output]