~ubuntu-branches/ubuntu/raring/hplip/raring

« back to all changes in this revision

Viewing changes to base/codes.py

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2009-12-14 20:08:44 UTC
  • mfrom: (2.1.118 lucid)
  • Revision ID: james.westby@ubuntu.com-20091214200844-z8qhqwgppbu3t7ze
Tags: 3.9.10-4
KBSD patch from KiBi (Closes: #560796)

Show diffs side-by-side

added added

removed removed

Lines of Context:
511
511
AGENT_TYPE_LG = 17 # light grey
512
512
AGENT_TYPE_G = 18 # medium grey
513
513
AGENT_TYPE_PG = 19 # photo grey
 
514
AGENT_TYPE_BLACK_B8800 = 39 # For PS B8800
514
515
AGENT_TYPE_WHITE = 0x20 # For ISO 10180 compatibility
515
516
AGENT_TYPE_RED = 0x21 # For ISO 10180 compatibility
516
517
AGENT_TYPE_UNSPECIFIED = 0x3e # (62) Used for kind = 5, 6, 7, 8, or 9
564
565
ALIGN_TYPE_LIDIL_0_5_4 = 11
565
566
ALIGN_TYPE_OJ_PRO = 12 # OJ Pro L7xxx
566
567
ALIGN_TYPE_AIO = 13 # AiO Non-LIDIL (OJ J4500/J4600)
 
568
ALIGN_TYPE_LIDIL_DJ_D1600 = 14
567
569
 
568
570
# clean-types
569
571
CLEAN_TYPE_UNSUPPORTED = -1
594
596
#STATUS_TYPE_S_LIDIL = 7 # DEPRECATED
595
597
STATUS_TYPE_PJL = 8
596
598
STATUS_TYPE_PML_AND_PJL = 9 # Same as types 3(tbx)+8(hp:)
 
599
STATUS_TYPE_LEDM = 10 # Low-end Data Model
597
600
 
598
601
# status-battery-check
599
602
STATUS_BATTERY_CHECK_NONE = 0
624
627
FAX_TYPE_NONE = 0
625
628
FAX_TYPE_BLACK_SEND_EARLY_OPEN = 1 # newer models
626
629
FAX_TYPE_BLACK_SEND_LATE_OPEN = 2 # older models
627
 
FAX_TYPE_BLACK_AND_COLOR_SEND = 3 # future
 
630
FAX_TYPE_BLACK_AND_COLOR_SEND = 3 # future/OZ
628
631
FAX_TYPE_SOAP = 4
629
632
 
630
633
# pcard-types
641
644
SCAN_TYPE_SOAP = 3
642
645
SCAN_TYPE_MARVEL = 4
643
646
SCAN_TYPE_SOAP2 = 5
 
647
SCAN_TYPE_SCL_DUPLEX = 6
644
648
 
645
649
# scan-styles
646
650
SCAN_STYLE_NONE = 0
723
727
IO_MODE_MLC_GUSHER = 6
724
728
IO_MODE_MLC_MISER = 7
725
729
 
726
 
# plugins
 
730
# plugin
727
731
PLUGIN_NONE = 0
728
732
PLUGIN_REQUIRED = 1
729
733
PLUGIN_OPTIONAL = 2
751
755
PLUGIN_REASON_RESERVED_40000 = 0x40000
752
756
 
753
757
# embedded web server
 
758
EWS_NOT_SUPPORTED = -1
754
759
EWS_NONE = 0
755
760
EWS_PRESENT = 1
756
761
 
795
800
JOB_STORAGE_HOLD_TYPE_PUBLIC = 0
796
801
JOB_STORAGE_HOLD_TYPE_PRIVATE = 1
797
802
 
 
803
# WIfi Config
 
804
WIFI_CONFIG_UNSUPPORTED = -1
 
805
WIFI_CONFIG_NONE = 0
 
806
WIFI_CONFIG_USB_XML = 1
798
807
 
 
808
# support-released
 
809
SUPPORT_UNRELEASED = 0
 
810
SUPPORT_RELEASED = 1
799
811
 
800
812