Changeset 7a7a09e for server


Ignore:
Timestamp:
Dec 20, 2011, 4:16:34 PM (12 years ago)
Author:
Jessica B. Hamrick <jhamrick@…>
Branches:
no-cups
Children:
e70c020
Parents:
9d9bc15
git-author:
Jessica B. Hamrick <jhamrick@…> (12/20/11 16:16:34)
git-committer:
Jessica B. Hamrick <jhamrick@…> (12/20/11 16:16:34)
Message:

Add skeleton structures for print-job

Location:
server/lib/gutenbach
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • server/lib/gutenbach/ipp/operations/__init__.py

    r5e44432 r7a7a09e  
    159159from get_printer_attributes import verify_get_printer_attributes_request
    160160from get_printer_attributes import make_get_printer_attributes_response
     161from print_job import verify_print_job_request, make_print_job_response
    161162
    162163__all__ = ['verify_cups_get_classes_request',
     
    170171           'verify_get_printer_attributes_request',
    171172           'make_get_printer_attributes_response',
     173           'verify_print_job_request',
     174           'make_print_job_response',
    172175
    173176           'verify_operations',
  • server/lib/gutenbach/server/requests.py

    r5e44432 r7a7a09e  
    7474
    7575    def print_job(self, request):
     76        """RFC 2911: 3.2.1 Print-Job Operation
     77
     78        This REQUIRED operation allows a client to submit a print job
     79        with only one document and supply the document data (rather
     80        than just a reference to the data). See Section 15 for the
     81        suggested steps for processing create operations and their
     82        Operation and Job Template attributes.
     83
     84        """
     85       
    7686        pass
    7787
Note: See TracChangeset for help on using the changeset viewer.