]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
"lp -i job-id -H hold" did not work (STR #nnn)
authormsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>
Mon, 24 Feb 2014 16:09:05 +0000 (16:09 +0000)
committermsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>
Mon, 24 Feb 2014 16:09:05 +0000 (16:09 +0000)
Add Set-Job-Attributes and Set-Document-Attributes to job and document
creation operation lists.

git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@11640 a1ca3aef-8c08-0410-bb20-df032aa958be

CHANGES-1.7.txt
cups/encode.c

index c3afe3a634114c27b084fd7c57c12321ee4090aa..ddc4c4912d4fbca3efef67f85e06755cac38f511 100644 (file)
@@ -6,6 +6,7 @@ CHANGES IN CUPS V1.7.2
        - Security: The scheduler now blocks URLs containing embedded HTML
          (STR #4356)
        - Documentation fixes (STR #3259, STR #4346)
+       - "lp -i job-id -H hold" did not work (STR #nnn)
        - CUPS didn't compile on older platforms (STR #4338)
        - Several libcups files did not have the Apple license exception
          notice (STR #4361)
index f31c05ac3256761434ed113eb5340bb921d49b08..fb590246cff6a87987fd39f7865c12b7e00e87c4 100644 (file)
@@ -35,6 +35,8 @@ static const ipp_op_t ipp_job_creation[] =
   IPP_OP_PRINT_URI,
   IPP_OP_VALIDATE_JOB,
   IPP_OP_CREATE_JOB,
+  IPP_OP_HOLD_JOB,
+  IPP_OP_SET_JOB_ATTRIBUTES,
   IPP_OP_CUPS_NONE
 };
 
@@ -44,6 +46,8 @@ static const ipp_op_t ipp_doc_creation[] =
   IPP_OP_PRINT_URI,
   IPP_OP_SEND_DOCUMENT,
   IPP_OP_SEND_URI,
+  IPP_OP_SET_JOB_ATTRIBUTES,
+  IPP_OP_SET_DOCUMENT_ATTRIBUTES,
   IPP_OP_CUPS_NONE
 };