Ignore:
Timestamp:
Dec 23, 2011, 1:09:01 PM (12 years ago)
Author:
Jessica B. Hamrick <jhamrick@…>
Branches:
no-cups
Children:
aded2d1
Parents:
94a4825
git-author:
Jessica B. Hamrick <jhamrick@…> (12/23/11 13:09:01)
git-committer:
Jessica B. Hamrick <jhamrick@…> (12/23/11 13:09:01)
Message:

Constants; small changes in printer

File:
1 edited

Legend:

Unmodified
Added
Removed
  • server/lib/gutenbach/ipp/constants.py

    r94a4825 rf6e2532  
     1__all__ = [
     2    'Misc',
     3    'JobStates',
     4    'PrinterStates',
     5    'Operations',
     6    'SuccessCodes',
     7    'ClientErrorCodes',
     8    'ServerErrorCodes',
     9    'ErrorCodes',
     10    'StatusCodes',
     11    'CUPSPrinterType',
     12    'AttributeTags',
     13    'OutOfBandTags',
     14    'IntegerTags',
     15    'OctetStringTags',
     16    'CharacterStringTags',
     17    'operations_attribute_value_tags',
     18    'job_attribute_value_tags',
     19    'printer_attribute_value_tags',
     20]
     21
    122class Misc():
    223    """Miscellaneous config options for the IPP server.
     
    311332    MEMBER_ATTR_NAME      = 0x4a
    312333
    313 class Tags(AttributeTags, OutOfBandTags, IntegerTags, OctetStringTags, CharacterStringTags):
    314     pass
    315 
    316334operations_attribute_value_tags = {
    317335    'attributes-charset': CharacterStringTags.CHARSET,
     
    349367    "pdl-override-supported": CharacterStringTags.KEYWORD,
    350368    "printer-up-time": IntegerTags.INTEGER,
    351     "compression-supported": CharacterStringTags.KEYWORD
     369    "compression-supported": CharacterStringTags.KEYWORD,
     370    "multiple-operation-time-out": IntegerTags.INTEGER,
     371    "multiple-document-jobs-supported": IntegerTags.BOOLEAN
    352372    }
    353373   
Note: See TracChangeset for help on using the changeset viewer.