-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSAMSUNG-PRINTER-EXT-TC
1468 lines (1305 loc) · 64 KB
/
SAMSUNG-PRINTER-EXT-TC
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
SAMSUNG-PRINTER-EXT-TC DEFINITIONS ::= BEGIN
-- Module: Printer MIB TC
-- File: SamsungPrinttc.mib
-- Editors: [email protected]
-- Date: July 17, 2004
-- Version: 1.00
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE
FROM SNMPv2-SMI -- RFC 1442/1902/2578
TEXTUAL-CONVENTION
FROM SNMPv2-TC -- RFC 1443/1903/2579
samsungCommonMIB
FROM SAMSUNG-COMMON-MIB;
scmPrintTC MODULE-IDENTITY
LAST-UPDATED "0407170000Z" -- 17 Jul 2004
ORGANIZATION "Samsung Common Management Interface Working Group"
CONTACT-INFO "
SCMI Editors
E-Mail: [email protected]
--
--
"
DESCRIPTION "
Version: 1.00
SCMI Extensions to Printer MIB Textual Conventions.
This Module provides Samsung extensions of the IETF Printer MIB.
Copyright (C) 2003-2004 Samsung Corporation. All Rights Reserved."
::= { samsungCommonMIB 54 }
--
-- SCMI Extensions to Printer MIB Textual Convention Definitions:
--
-- ScmPrtAuxSheetContent
-- ScmPrtAuxSheetType
-- ScmPrtChannelType
-- ScmPrtGroupSupport
-- ScmPrtIETFPrintMIBGroupSupport
-- ScmPrtInterpreterLangFamily
-- ScmPrtMediaTypeErrorPolicy
-- ScmPrtMediumClassType
-- ScmPrtMediumSize
-- ScmPrtOutputOffsetStackingType
-- ScmPrtOutputStaplePosition
-- ScmPrtPageSizeErrorPolicy
-- ScmPrtPCLFontSource
-- ScmPrtPlex
-- ScmPrtPrintQuality
-- ScmPrtPrintScreen
-- ScmPrtTraySwitch
-- ScmPrtGeneralMonoPrintOpt
--
ScmPrtAuxSheetContent ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "
Auxiliary sheets are added by the printing system and
are not part of the actual print job. Examples include
error pages and banner pages.
This textual convention is used to specify the information
content of auxiliary sheets."
SYNTAX INTEGER {
other(1),
unknown(2),
notSpecified(3),
concise(5), -- content of page is concise
verbose(6) -- content of page is verbose
}
ScmPrtAuxSheetType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "
Auxiliary sheets are added by the printing system and
are not part of the actual print job.
This attribute uniquely identifies an auxiliary-sheet,
which includes the types jobErrorSheet and printerStartupSheet.
'printerStartupSheet' is a sheet printed shortly after power-up
when the device is ready. Typical startup pages include test
patterns and/or printer configuration information.
'jobErrorSheet' is a sheet printed with error messages
generated during the printing of a job-result-set that is to be
printed with the hardcopy output of that job-result-set, and
should be printed on an ending sheet of the job-result-set, or
some similar sheet. These sheets are not
a part of any job-copy. If no error messages have been
generated, the device need not print an extra page.
The default for this page type should be 'On'.
The following Auxiliary-sheet-package types can be specified
either for a job component (job result set or job copy) or
document (document result set or document copy).
For now, only the jobSetStart package has been enumerated.
'jobSetStart' - Auxiliary-sheet starts each result-set
Sometimes referred to as a jobBanner sheet
'jobSetEnd' - Auxiliary-sheet at the end of a result set "
REFERENCE "
ISO/IEC 10175-1:1996(E)
Section 9.10.2.2: Delivery-methods for hardcopy output logs
Section 9.11.1: Auxiliary-sheet-package identifier"
SYNTAX INTEGER {
other(-1),
unknown(-2),
notSpecified(-3),
jobSetStart(1),
jobSetEnd(2),
printerStartupSheet(101),
jobErrorSheet(102)
}
ScmPrtChannelType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "
This enumeration indicates the type of channel that is
receiving jobs.
This enumeration is being added to the IETF Printer MIB.
This is an IETF type 2 enum."
SYNTAX INTEGER {
other(1),
chSerialPort(3),
chParallelPort(4),
chIEEE1284Port(5),
chSCSIPort(6),
chAppleTalkPAP(7),
-- AppleTalk Printer
-- Access Protocol (PAP)
--
-- prtChannelInformation entry:
--
-- Printer Name
-- Keyword: Name
-- Status: Optional
-- Multiplicity: Single
-- Description: The name of the
-- printer within the AppleTalk
-- naming scope
chLPDServer(8),
-- prtChannelInformation entry:
--
-- Printer queue name
-- Keyword: Queue
-- Syntax: Name
-- Status: Mandatory
-- Multiplicity: Single
-- Description: queue name as
-- defined in RFC 1179.
chNetwareRPrinter(9),
-- Novell, Inc.
-- For each entry of this type, the
-- prtChannelInformation must have a pair
-- of keywords. For Netware 3.x channels
-- this must be a (PServer, Printer) pair.
-- For Netware 4.x channels and for
-- IntranetWare channels this must be a
-- (NDSTree, NDSPrinter) pair.
--
-- prtChannelInformation entries:
-- Print Server Name
-- Keyword: PServer
-- Syntax: Name
-- Status: Mandatory
-- Multiplicity: Single
-- Description: The Pserver's SAP name
--
-- Printer Number
-- Keyword: Printer
-- Syntax: Integer
-- Status: Mandatory
-- Multiplicity: Single
-- Description: The printer number
--
-- NDSTree
-- Keyword: NDSTree
-- Syntax: Name
-- Multiplicity: Single
-- Description: The tree's SAP name
--
-- NDS Printer object
-- Keyword: NDSPrinter
-- Syntax: Text (Unicode)
-- Status: Mandatory
-- Multiplicity: Single
-- Description: The fully qualified
-- name of the Printer
--
-- In the Netware 3.x environment, the
-- client checks the Bindery object
-- representing the named PServer. The
-- client then checks for queues which
-- are associated with the numbered
-- printer. In the 4.x and IntraNetware
-- environment, the client looks up the
-- queues which are associated with the
-- NDS Printer Object in the named Tree.
-- Depending on client access rights to
-- those queues, the client submits jobs
-- to the appropriate queue.
chNetwarePServer(10),
-- Novell,Inc.
-- For each entry of this type, the
-- prtChannelInformation must have a pair
-- of keywords. For Netware 3.x channels
-- this must be a (Server, PServer) pair.
-- For Netware 4.x and IntranetWare
-- channels, this must be a
-- (NDSTree, NDSPServer) pair.
--
-- prtChannelInformation entries:
--
-- Server Name
-- Keyword: Server
-- Syntax: Name
-- Status: Mandatory
-- Multiplicity: Single
-- Description: The SAP name of the
-- server for which the PServer is
-- defined.
--
-- PServer
-- Keyword: PServer
-- Syntax: Name
-- Status: Mandatory
-- Multiplicity: Single
-- Description: The bindery name of
-- the PServer
--
-- NDS Tree
-- Keyword: NDSTree
-- Syntax: Name
-- Status: Mandatory
-- Multiplicity: Single
-- Description: The NDS Tree name
--
-- PServer
-- Keyword: NDSPServer
-- Syntax: Text (Unicode)
-- Status: Mandatory
-- Multiplicity: Single
-- Description: The fully qualified
-- name of the PServer object in the
-- tree.
--
-- In the 3.x environment, the client
-- checks the bindery object
-- representing the named PServer on the
-- named Server. In the 4.x and
-- IntranetWare environment,
-- the client checks the NDS object
-- representing the named PServer in the
-- named Tree. In either case, the
-- client then checks for all queues
-- associated with the Pserver object.
-- Depending on client access rights
-- to those queues, the client submits
-- jobs to the appropriate queue.
chPort9100(11),
-- DEPRECATED
chAppSocket(12),
-- A bi-directional, LPD-like,
-- protocol using 9101 for
-- control and 9100 for data.
-- Adobe Systems, Inc.
chFTP(13), -- RFC 959
chTFTP(14), -- RFC 1350
chDLCLLCPort(15),
chIBM3270(16), -- IBM Coax
chIBM5250(17), -- IBM Twinax
chFax(18),
chIEEE1394(19),
chTransport1(20),
-- TCP port 35, see reserved TCP port list
-- in RFC 1700 or current "Assigned
-- Numbers" RFC. This RFC should also be
-- referenced for other channel
-- enumerations utilizing TCP port
-- numbers 0 through 1024.
chCPAP(21), -- TCP port 170, Digital
-- Equipment Corp.
chPCPrint(26), -- Banyan
chServerMessageBlock(27),
-- File/Print sharing protocol used by
-- various network operating systems
-- from IBM 3Com, Microsoft and others
--
-- prtChannelInformation entry:
--
-- Service Name
-- Keyword: Name
-- Syntax: Name
-- Status: Optional
-- Multiplicity: Single
-- Description: The service name of
-- the printer
chPSM(28), -- Printing Systems
-- Manager, IBM
chSystemObjectManager(31), -- IBM
chDECLAT(32),
-- Digital Equipment Corp.
--
-- prtChannelInformation entries:
--
-- Port Name
-- Keyword: Port
-- Syntax: Name
-- Status: Conditionally
-- Mandatory
-- (see note below)
-- Multiplicity: Single
-- Description: LAT port name
--
-- Service Name
-- Keyword: Service
-- Syntax: Name
-- Status: Conditionally
-- Mandatory
-- Multiplicity: Single
-- Description: LAT service
-- name
--
-- The LAT channel may be
-- identified by either a port or
-- service, so either a
-- Port or Service entry must be
-- specified, but not both.
chNPAP(33),
chUSB(34), -- Universal Serial Bus
chIRDA(35), -- Infrared Data Assoc. Prot.
chPrintXChange(36), -- PrintXChange Protocol
chPortTCP(37),
-- A unidirectional "raw" TCP
-- channel that uses an administratively
-- assigned TCP port address.
--
-- prtChannelInformation entry:
--
-- Port Number
-- Keyword: Port
-- Syntax: decimal number
-- Status: Mandatory
-- Multiplicity: Single
-- Description: TCP port number
chBidirPortTCP(38),
-- A bidirectional version of chPortTCP
--
-- prtChannelInformation entries:
-- (See chPortTCP)
chUNPP(39),
-- Universal Network Printing
-- Protocol(UNPP). A bi-directional,
-- multiport network printing
-- application protocol available on
-- multiple transport protocols.
-- Underscore, Inc.
-- Contact: [email protected]
chAppleTalkADSP(40),
-- AppleTalk Data Stream Protocol.
-- ADSP is part of the AppleTalk
-- suite of protocols.
-- It is a symmetric, connection-
-- oriented protocol that makes
-- possible the establishment
-- and maintenance of full-duplex
-- streams of data bytes between
-- two sockets in an AppleTalk
-- internet.
-- See Inside AppleTalk, second
-- Edition, by Sidhu, Andrews and
-- Oppenheimer.
chPortSPX(41),
-- Sequenced Packet Exchange (SPX)
-- socket.
-- Novell, Inc. Similar to TCP, a
-- bi-directional data pipe using
-- Novell SPX as a transport.
--
-- prtChannelInformation entries:
--
-- Network Number
-- Keyword: Net
-- Syntax: HexString
-- Status: Mandatory
-- Multiplicity: Single
-- Description: The network number
--
-- Node Number
-- Keyword: Node
-- Syntax: HexString
-- Status: Mandatory
-- Multiplicity: Single
-- Description: The node number
--
-- Socket Number
-- Keyword: Socket
-- Syntax: HexString
-- Status: Mandatory
-- Multiplicity: Single
-- Description: The SPX socket number
--
-- There must be exactly one "Net" and
-- one "Node" and one "Socket" entry. A
-- HexString is a binary value
-- represented as a string of
-- ASCII characters using hexadecimal
-- notation.
chPortHTTP(42),
-- Hypertext Transfer Protocol. See IETF
-- documents relating to HTTP 1.0/1.1
-- (RFCs 1945 and 2068,etc.)
chNDPS(43)
-- Novell, Inc.
--
-- prtChannelInformation entry:
--
-- Printer Agent Name
-- Keyword: PA
-- Syntax: Name
-- Status: Mandatory
-- Multiplicity: Single
-- Description: The NDPS Printer
-- Agent Name
}
ScmPrtGroupSupport ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "
The terse conformance statement of ALL mandatory, conditionally
mandatory, and optional Printer MIB Extension object groups,
specified in a bit-mask.
The current set of values (which may be extended in the future)
is given below:
1 : scmPrtBaseGroup -- 2**0
2 : scmPrtGeneralGroup -- 2**1
4 : scmPrtInputGroup -- 2**2
8 : scmPrtOutputGroup -- 2**3
16 : scmPrtChannelGroup -- 2**4
32 : scmPrtInterpreterGroup -- 2**5
64 : scmPrtInputAliasGroup -- 2**6
128 : scmPrtGeneralAuxSheetGroup -- 2**7
256 : scmPrtGeneralProdSpecificGroup -- 2**8
512 : scmPrtAuxPackageGroup -- 2**9
1024 : scmPrtChannelProdSpecificGroup -- 2**10
2048 : scmPrtInterpProdSpecificGroup -- 2**11
4096 : scmPrtInterpPCLGroup -- 2**12
8192 : scmPrtInterpPCLProdSpecificGroup -- 2**13
16384 : scmPrtMediumTypeSupportedGroup -- 2**14
Usage: Conforming management agents shall ALWAYS accurately
report their support for SCMI Printer MIB Extensions
object groups."
SYNTAX INTEGER (0..2147483647) -- biggest int = 2**31-1
ScmPrtIETFPrintMIBGroupSupport ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "
The terse conformance statement of ALL mandatory, conditionally
mandatory, and optional IETF Printer MIB object groups,
specified in a bit-mask.
The current set of values (which may be extended in the future)
is given below:
1 : prtGeneralGroup -- 2**0 (mandatory)
2 : prtResponsiblePartyGroup -- 2**1
4 : prtInputGroup -- 2**2 (mandatory)
8 : prtExtendedInputGroup -- 2**3
16 : prtInputMediaGroup -- 2**4
32 : prtOutputGroup -- 2**5 (mandatory)
64 : prtExtendedOutputGroup -- 2**6
128 : prtOutputDimensionsGroup -- 2**7
256 : prtOutputFeaturesGroup -- 2**8
512 : prtMarkerGroup -- 2**9 (mandatory)
1024 : prtMarkerSuppliesGroup -- 2**10
2048 : prtMarkerColorantGroup -- 2**11
4096 : prtMediaPathGroup -- 2**12 (mandatory)
8192 : prtChannelGroup -- 2**13 (mandatory)
16384 : prtInterpreterGroup -- 2**14 (mandatory)
32768 : prtConsoleGroup -- 2**15 (mandatory)
65536 : prtAlertTableGroup -- 2**16 (mandatory)
131072 : prtAuxiliarySheetGroup -- 2**17
262144 : prtInputSwitchingGroup -- 2**18
Usage: Conforming management agents shall ALWAYS accurately
report their support for IETF Printer MIB object groups."
REFERENCE "See: IETF Printer MIB"
SYNTAX INTEGER (0..2147483647) -- biggest int = 2**31-1
ScmPrtInterpreterLangFamily ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "
This enumeration indicates the type of interpreter that is
receiving jobs.
This enumeration is being added to the IETF Printer MIB.
This value is an IETF type 2 enumeration."
SYNTAX INTEGER {
other(1),
unknown(2),
langPCL(3), -- PCL. Starting with PCL version 5,
-- HP-GL/2 is included as part of the
-- PCL language.
-- PCL and HP-GL/2 are registered
-- trademarks of Hewlett-Packard
-- Company.
langHPGL(4), -- Hewlett-Packard Graphics Language.
-- HP-GL is a registered trademark of
-- Hewlett-Packard Company.
langPJL(5), -- Peripheral Job Language. Appears in
-- the data stream between data intended
-- for a page description language.
-- Hewlett-Packard Co.
langPS(6), -- PostScript (tm) Language
-- Postscript - a trademark of Adobe
-- Systems Incorporated which may be
-- registered in certain jurisdictions
langIPDS(7), -- Intelligent Printer Data Stream
-- Bi-directional print data stream for
-- documents consisting of data objects
-- (text, image, graphics, bar codes),
-- resources (fonts, overlays) and page,
-- form and finishing instructions.
-- Facilitates system level device
-- control, document tracking and error
-- recovery throughout the print
-- process.
-- Pennant Systems, IBM
langPPDS(8), -- IBM Personal Printer Data Stream.
-- Originally called IBM ASCII, the name
-- was changed to PPDS when the Laser
-- Printer was introduced in 1989.
-- Lexmark International, Inc.
langEscapeP(9), -- Epson Corp.
langEpson(10),
langDDIF(11), -- Digital Document Interchange Format
-- Digital Equipment Corp., Maynard MA
langInterpress(12),
-- Samsung Corp.
langISO6429(13), -- ISO 6429. Control functions for
-- Coded Character Sets (has ASCII
-- control characters, plus additional
-- controls for
-- character imaging devices.)
-- ISO Standard, Geneva, Switzerland
langLineData(14),-- line-data: Lines of data as
-- separate ASCII or EBCDIC records
-- and containing no control functions
-- (no CR, LF, HT, FF, etc.)
-- For use with traditional line
-- printers. May use CR and/or LF to
-- delimit lines, instead of records.
-- See ISO 10175 Document Printing
-- Application(DPA)
-- ISO standard, Geneva, Switzerland
langMODCA(15), -- Mixed Object Document Content
-- Architecture
-- Definitions that allow the
-- composition, interchange, and
-- presentation of final form
-- documents as a collection of data
-- objects (text, image, graphics, bar
-- codes), resources (fonts, overlays)
-- and page, form and finishing
-- instructions.
-- Pennant Systems, IBM
langREGIS(16), -- Remote Graphics Instruction Set,
-- Digital Equipment Corp., Maynard MA
langSCS(17), -- SNA Character String
-- Bi-directional print data stream for
-- SNA LU-1 mode of communication.
-- IBM
langSPDL(18), -- ISO 10180 Standard Page Description
-- Language
-- ISO Standard
langTEK4014(19), -- Tektronix Corp.
langPDS(20),
langIGP(21), -- Printronix Corp.
langCodeV(22), -- Magnum Code-V, Image and printer
-- control language used to control
-- impact/dot-matrix printers.
-- QMS, Inc., Mobile AL
langDSCDSE(23), -- DSC-DSE: Data Stream Compatible and
-- Emulation Bi-directional print data
-- stream for non-SNA (DSC) and SNA LU-3
-- 3270 controller (DSE) communications
-- IBM
langWPS(24), -- Windows Printing System, Resource
-- based command/data stream used by
-- Microsoft At Work Peripherals.
-- Developed by the Microsoft
-- Corporation.
langLN03(25), -- Early DEC-PPL3, Digital Equipment
-- Corp.
langCCITT(26),
langQUIC(27), -- QUIC (Quality Information Code), Page
-- Description Language for laser
-- printers. Included graphics, printer
-- control capability and emulation of
-- other well-known printer .
-- QMS, Inc.
langCPAP(28), -- Common Printer Access Protocol
-- Digital Equipment Corp.
langDecPPL(29), -- Digital ANSI-Compliant Printing
-- Protocol
-- (DEC-PPL)
-- Digital Equipment Corp.
langSimpleText(30),
-- simple-text: character coded data,
-- including NUL, CR , LF, HT, and FF
-- control characters. See ISO 10175
-- Document Printing Application (DPA)
-- ISO standard, Geneva, Switzerland
langNPAP(31), -- Network Printer Alliance Protocol
-- (NPAP). This protocol has been
-- superseded by the IEEE 1284.1 TIPSI
-- Std (ref. LangTIPSI(49)).
langDOC(32), -- Document Option Commands, Appears in
-- the data stream between data
-- intended for a page description .
-- QMS, Inc.
langimPress(33), -- imPRESS, Page description language
-- originally developed for the
-- ImageServer product line. A binary
-- language providing representations
-- of text, simple graphics, and some
-- large forms (simple
-- bit-map and CCITT group /
-- encoded).The
-- language was intended to be sent over
-- an 8-bit channel and supported early
-- document preparation languages (e.g.
-- TeX and TROFF).
-- QMS, Inc.
langPinwriter(34),
-- 24 wire dot matrix printer for
-- USA, Europe, and Asia except
-- Japan.
-- More widely used in Germany, and
-- some Asian countries than in US.
-- NEC
langNPDL(35), -- Page printer for Japanese market.
-- NEC
langNEC201PL(36),-- Serial printer language used in
-- the Japanese market.
-- NEC
langAutomatic(37),
-- Automatic PDL sensing. Automatic
-- sensing of the interpreter
-- language family by the printer
-- examining the document content.
-- Which actual interpreter language
-- families are sensed depends on
-- the printer implementation.
langPages(38), -- Page printer Advanced Graphic
-- Escape Set
-- IBM Japan
langLIPS(39), -- LBP Image Processing System
langTIFF(40), -- Tagged Image File Format (Aldus)
langDiagnostic(41),
-- A hex dump of the input to the
-- interpreter
langPSPrinter(42),
-- The PostScript Language used for
-- control (with any PDLs)
-- Adobe Systems Incorporated
langCaPSL(43), -- Canon Print Systems Language
langEXCL(44), -- Extended Command Language
-- Talaris Systems Inc.
langLCDS(45), -- Line Conditioned Data Stream
-- Samsung Corporation
langXES(46), -- Samsung Escape Sequences
-- Samsung Corporation
langPCLXL(47), -- Printer Control Language. Extended
-- language features for printing, and
-- printer control.
-- Hewlett-Packard Co.
langART(48), -- Advanced Rendering Tools (ART).
-- Page Description language
-- originally developed for the Laser
-- Press printers.
-- Technical reference manual: "ART IV
-- Reference Manual", No F33M.
-- Fuji Samsung Co., Ltd.
langTIPSI(49), -- Transport Independent Printer
-- System Interface (ref. IEEE Std.
-- 1284.1)
langPrescribe(50),
-- Page description and printer
-- control language. It can be
-- described with ordinary ASCII
-- Technical reference manual:
-- "PRESCRIBE II Programming Manual"
langLinePrinter(51),
-- A simple-text character stream which
-- supports the control codes LF, VT,
-- FF, and plus Centronics or
-- Dataproducts Vertical Format Unit
-- (VFU) language is commonly used on
-- many older model line and matrix
-- printers.
langIDP(52), -- Imaging Device Protocol
-- Apple Computer.
langXJCL(53), -- Samsung Job Control Language (JCL).
-- A Job Control language originally
-- developed for the LaserPress printers
-- and is capable of switching PDLs.
-- Technical reference manual:
-- "ART IV Reference Manual", No F33M.
-- Fuji Samsung Co., Ltd.
langPDF(54), -- Adobe Portable Document Format
-- Adobe Systems, Inc.
langRPDL(55), -- Ricoh Page Description Language for
-- printers.
-- Technical manual "RPDL command
-- reference" No.307029
-- RICOH, Co. LTD
langIntermecIPL(56),
-- Intermec Printer Language for label
-- printers.
-- Technical Manual: "IPL Programmers
-- Reference Manual"
-- Intermec Corporation
langUBIFingerprint(57),
-- An intelligent basic-like programming
-- language for label printers.
-- Reference Manual: "UBI Fingerprint
-- 7.1", No. 1-960434-00
-- United Barcode Industries
langUBIDirectProtocol(58)
-- An intelligent control language for
-- label printers.
-- Programmers guide: " UBI Direct
-- Protocol", No. 1-960419-00
-- United Barcode Industries
}
ScmPrtMediaTypeErrorPolicy ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "
Controls interpreter behavior when the requested Media Type
is not currently available.
* The values 'other' and 'unknown' are deprecated for
conforming implementations.
* 'abortJob' will cause the interpreter to abort the job
with an appropriate error condition.
* 'ignore' will cause the job to be printed on the default
media as specified by scmPrtInterpInputIndexDefault OR
scmPrtInterpPaperSizeDefault OR any available media
deemed appropriate by the implementation.
No adjustment will be made to the image size.
Exact semantics of this setting are product specific.
* 'interactWithOperator' will cause the printer to interact
with the operator to determine what to do. For example,
display a message at the operator console requesting the
desired media. The semantics of this policy vary among
different products and environments.
* 'ignoreAfterTimeout' will cause the job to be ignored
same as 'ignore' above, but not till after
scmPrtInterpErrorPolicyTimeout expires."
REFERENCE "
See: ScmPrtPageSizeErrorPolicy"
SYNTAX INTEGER {
other(1),
unknown(2),
notSpecified(3),
abortJob(4),
ignore(5),
interactWithOperator(6),
ignoreAfterTimeout(11)
}
ScmPrtMediumClassType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "
Paper size classes for a printer."
SYNTAX INTEGER {
other (1),
unknown(2),
notSpecified(3),
northAmerica(4),
iso(5),
jis(6)
}
ScmPrtMediumSize ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "
This attribute specifies the size of this medium by means of a
pre-defined value. The medium size specified in this manner may
be one of the standard sizes to which object identifiers have
been assigned in ISO/IEC 10175 (DPA), or another applicable
standard, or for which a value has been created.
Enumerations for DPA defined medium sizes are derived by adding
1000 to the ISO/IEC 10175 enumerations.
SCMI defined enumerations start at 10."
REFERENCE "ISO/IEC 10175-1:1996(E), Section 9.6.5: Medium-size"
SYNTAX INTEGER {
other(1),
unknown(2),
notSpecified(3),
-- SCMI defined medium sizes
mediumSize13x18(10), -- 13 by 18 inches
-- DPA defined medium sizes
naLetter(1000), -- 8.5 by 11 inches
naLegal(1001), -- 8.5 by 14 inches
na10x13Envelope(1002), -- 10 by 13 inches
na9x12Envelope(1003), -- 9 by 12 inches
naNumber10Envelope(1004), -- 4.125 by 9.5 inches
na7x9Envelope(1005), -- 7 by 9 inches
na9x11Envelope(1006), -- 9 by 11 inches
na10x14Envelope(1007), -- 10 by 14 inches
naNumber9Envelope(1008), --
na6x9Envelope(1009), -- 6 by 9 inches
na10x15Envelope(1010), -- 10 by 15 inches
a(1011), -- 8.5 by 11 inches
b(1012), -- 11 by 17 inches
c(1013), -- 17 by 22 inches
d(1014), -- 22 by 34 inches
e(1015), -- 34 by 44 inches
monarchEnvelope(1016), -- 3.87 by 7.5 inches
isoA0(1020), -- 841 by 1189 mm
isoA1(1021), -- 594 by 841 mm
isoA2(1022), -- 420 by 594 mm
isoA3(1023), -- 297 by 420 mm
isoA4(1024), -- 210 by 297 mm
isoA5(1025), -- 148 by 210 mm
isoA6(1026), -- 105 by 148 mm
isoA7(1027), -- 74 by 105 mm
isoA8(1028), -- 52 by 74 mm
isoA9(1029), -- 37 by 52 mm
isoA10(1030), -- 26 by 37 mm
isoB0(1040), -- 1000 by 1414 mm
isoB1(1041), -- 707 by 1000 mm
isoB2(1042), -- 500 by 707 mm
isoB3(1043), -- 353 by 500 mm
isoB4(1044), -- 250 by 353 mm
isoB5(1045), -- 176 by 250 mm
isoB6(1046), -- 125 by 176 mm
isoB7(1047), -- 88 by 125 mm
isoB8(1048), -- 62 by 88 mm
isoB9(1049), -- 44 by 62 mm
isoB10(1050), -- 31 by 44 mm
isoC3(1063), -- 324 by 458 mm
isoC4(1064), -- 229 by 324 mm
isoC5(1065), -- 162 by 229 mm
isoC6(1066), -- 114 by 162 mm
isoDesignatedLong(1067), -- 110 by 220 mm
jisB0(1080), -- 1030 by 1456 mm
jisB1(1081), -- 728 by 1030 mm
jisB2(1082), -- 515 by 728 mm
jisB3(1083), -- 364 by 515 mm
jisB4(1084), -- 257 by 364 mm
jisB5(1085), -- 182 by 257 mm
jisB6(1086), -- 128 by 182 mm
jisB7(1087), -- 91 by 128 mm
jisB8(1088), -- 64 by 91 mm
jisB9(1089), -- 45 by 64 mm
jisB10(1090), -- 32 by 45 mm
executive(1100), -- 7.25 by 10.5 inches
folio(1101), -- 8.5 by 13 inches
invoice(1102), -- 5.5 by 8.5 inches
ledger(1103), -- aka statement, 11 by 17 inches
quarto(1104) -- 8.5 by 10.83 inches
}
ScmPrtOutputOffsetStackingType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "
Offset stacking types further refining that specified by
the object prtOutputOffsetStacking in the Printer MIB.
- offsetOnJob means that each job is offset but copies within
the job are not offset.
- offsetOnJobAndCopy means that there is an offset on job and
copy boundaries."
REFERENCE "Printer MIB prtOutputOffsetStacking object"
SYNTAX INTEGER {
other(1),
unknown(2),
notSpecified(3),
noOffset(4),
offsetOnJob(5),
offsetOnJobandCopy(6)
}
ScmPrtOutputStaplePosition ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "
This Textual Convention enumerates possible staple positions.
The staple positions enumerated are relative to the
physical layout of the finishing device.
The observer is on the front side of the finisher which
is defined as for sheets passing through the finisher.
The 'front' side is the side from which staples are pushed.
The physical corners of the finishing device are specified
by designating the corner of the finisher where a portrait
long-edge fed sheet with english/left-to-right text is stapled
as staplePosCorner1, and then the other corners are numbered
in a counter-clockwise direction with the observer on the
front side of the finisher.
'staplePosCorner1', 'staplePosCorner2', 'staplePosCorner3', and
'staplePosCorner4' indicate a single staple in the specified
corner. This object does not specify the angle of the staple,
e.g. 90, 45 or zero degrees.
'stapleEdge...' indicates multiple staples on the edge
specified. 'stapleEdge12' is the edge which include Corner1
and Corner2.
The current set of values (which may be extended in the future)
is given below:
1 : staplePosCorner1 -- 2**0
2 : staplePosCorner2 -- 2**1
4 : staplePosCorner3 -- 2**2
8 : staplePosCorner4 -- 2**3
16 : stapleEdge12 -- 2**4
32 : stapleEdge23 -- 2**5
64 : stapleEdge34 -- 2**6
128 : stapleEdge14 -- 2**7"
REFERENCE "
See: 'scmPrtOutputStaplePosDefault'
See: 'scmPrtOutputStaplePosSupported'"
SYNTAX INTEGER(0..255)
ScmPrtPageSizeErrorPolicy ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "
Controls interpreter behavior when the requested Page Size
is not currently available.
* The values 'other' and 'unknown' are deprecated for
conforming implementations.
* 'abortJob' will cause the interpreter to abort the job
with an appropriate error condition.
* 'ignore' will cause the job to be printed on the default
media as specified by scmPrtInterpInputIndexDefault OR