Marcel Telka
2023-10-26 935cb546e72c130d4eafd1784d30ba4ebffb600c
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source.  A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
 
# This is the template for package manifest (.p5m) file
# It contains all of the comments needed to re-construct
# the manual actions needed to convert "gmake install"
# prototype to final package shape. It collects all of the
# info originally held in install-sfw and prototype_* files.
#
# Significant portion of this file was created by hand-editing.
# So please do not reformat/sort the lines of this file strip the
# comments by using of the automate reformating tools.
#
# Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
# Copyright 2021, 2022, Andreas Wacknitz
 
# Note: illumos-gate delivers some colliding printing related commands and man pages.
#´      Thus, we move the colliding commands to the cups library folder and prepend the man page file names with "cups".
# Resolving file conflicts with illumos lp
# As with the commands in /usr/bin cups commands are designed to replace lp
# But as lp is still delivered by illumos-gate we need to rename all the commands
# and their man pages and prefix them with cups so that both softwares can be installed simultaneously
# There is two ways where we can go from here.
# 1. Remove lp if it is not needed anymore and properly suceeded by cups
# 2. Modify manifest in illumos-gate to provide mediators so users can properly choose 
 
set name=pkg.fmri value=pkg:/print/cups@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
set name=pkg.human-version value=$(HUMAN_VERSION)
set name=pkg.summary value="Common Unix Print System (CUPS)"
set name=com.oracle.info.description value="the Common Unix Print System (CUPS)"
set name=info.classification value="org.opensolaris.category.2008:System/Printing"
set name=info.upstream-url value=$(COMPONENT_PROJECT_URL)
set name=info.source-url value=$(COMPONENT_ARCHIVE_URL)
set name=org.opensolaris.consolidation value=$(CONSOLIDATION)
 
license $(COMPONENT_LICENSE_FILE) license="$(COMPONENT_LICENSE)"
 
<transform file path=usr.*/man/.+ -> default mangler.man.stability volatile>
<transform file path=usr/lib/cups/.+ ->default mode 0555>
# Drop 32-bit binaries:
<transform path=usr/bin/$(MACH32) -> drop>
<transform path=usr/sbin/$(MACH32) -> drop>
 
# When USB/non-postscript printer is detected in desktop no test-page can be printed
# when ghostscrip is not installed.
depend fmri=print/filter/ghostscript type=require
 
# Default test page is in cups-filters
depend fmri=print/cups-filters type=require
 
#
dir group=lp path=etc/cups
dir group=lp path=etc/cups/interfaces
dir group=lp path=etc/cups/ppd
dir group=lp path=etc/cups/profiles
dir group=lp path=etc/cups/ssl mode=0700
 
#
dir group=lp path=var/cache/cups mode=0775
dir group=lp path=var/cache/cups/rss mode=0775
dir group=lp path=var/log/cups
 
#
dir group=lp path=var/spool/cups mode=0710
dir group=lp path=var/spool/cups/tmp mode=01770
dir group=lp owner=lp path=var/spool/lp mode=0775
 
# edited file-objects
file group=lp mode=0640 path=etc/cups/cupsd.conf preserve=true
file group=lp mode=0640 path=etc/cups/cups-files.conf preserve=true
file path=lib/svc/manifest/application/cups.xml mode=0444 \
     restart_fmri=svc:/system/manifest-import:default
 
file Solaris/service-selector.xml path=lib/svc/manifest/application/print/service-selector.xml mode=0444 \
     restart_fmri=svc:/system/manifest-import:default
 
file Solaris/print-service-selector path=lib/svc/method/print-service-selector
 
# SMF service start method script
file Solaris/svc-cupsd path=lib/svc/method/svc-cupsd
 
# SMF help
file Solaris/ManageCUPS.html mode=0444 \
     path=usr/lib/help/auths/locale/C/ManageCUPS.html
 
link path=usr/lib/cups/bin/accept target=cupsaccept
link path=usr/lib/cups/bin/cupsdisable target=cupsaccept
link path=usr/lib/cups/bin/disable target=cupsaccept
link path=usr/lib/cups/bin/cupsenable target=cupsaccept
link path=usr/lib/cups/bin/enable target=cupsaccept
link path=usr/lib/cups/bin/cupsreject target=cupsaccept
link path=usr/lib/cups/bin/reject target=cupsaccept
 
# install the desktop menu related bits
file Solaris/desktop-print-management mode=0555 \
     path=usr/lib/cups/bin/desktop-print-management
file Solaris/desktop-print-management-applet mode=0555 \
     path=usr/lib/cups/bin/desktop-print-management-applet
file Solaris/smb mode=0555 \
     path=usr/lib/cups/backend/smb
 
# install the service to set up CUPS as the default print service
file Solaris/auth_attr path=etc/security/auth_attr.d/cups
file Solaris/prof_attr path=etc/security/prof_attr.d/cups
file Solaris/tsol_banner.ps path=usr/lib/cups/filter/tsol_banner.ps
file Solaris/tsol_separator.ps path=usr/lib/cups/filter/tsol_separator.ps
file Solaris/tsol_trailer.ps path=usr/lib/cups/filter/tsol_trailer.ps
 
# file-objects from sample-manifest
#file path=etc/cups/cups-files.conf
#file path=etc/cups/cups-files.conf.N
file path=etc/cups/cups-files.conf.default
#file path=etc/cups/cupsd.conf
#file path=etc/cups/cupsd.conf.N
file path=etc/cups/cupsd.conf.default
file path=etc/cups/snmp.conf
#file path=etc/cups/snmp.conf.N
file path=etc/cups/snmp.conf.default
file path=etc/dbus-1/system.d/cups.conf
#file path=lib/svc/manifest/application/cups.xml
 
# usr/bin/$(MACH32) is being filtered out by a transform rule:
file path=usr/bin/$(MACH32)/cancel
file path=usr/bin/$(MACH32)/cups-config
file path=usr/bin/$(MACH32)/cupstestppd
file path=usr/bin/$(MACH32)/ippeveprinter
file path=usr/bin/$(MACH32)/ippfind
file path=usr/bin/$(MACH32)/ipptool
file path=usr/bin/$(MACH32)/lp
file path=usr/bin/$(MACH32)/lpoptions
file path=usr/bin/$(MACH32)/lpq
file path=usr/bin/$(MACH32)/lpr
file path=usr/bin/$(MACH32)/lprm
file path=usr/bin/$(MACH32)/lpstat
file path=usr/bin/$(MACH32)/ppdc
file path=usr/bin/$(MACH32)/ppdhtml
file path=usr/bin/$(MACH32)/ppdi
file path=usr/bin/$(MACH32)/ppdmerge
file path=usr/bin/$(MACH32)/ppdpo
 
file usr/bin/cancel path=usr/lib/cups/bin/cancel mode=0555
file path=usr/bin/cups-config
file path=usr/bin/cupstestppd
file path=usr/bin/ippeveprinter
file path=usr/bin/ippfind
file path=usr/bin/ipptool
file usr/bin/lp path=usr/lib/cups/bin/lp mode=0555
file usr/bin/lpoptions path=usr/lib/cups/bin/lpoptions mode=0555
file usr/bin/lpq path=usr/lib/cups/bin/lpq mode=0555
file usr/bin/lpr path=usr/lib/cups/bin/lpr mode=0555
file usr/bin/lprm path=usr/lib/cups/bin/lprm mode=0555
file usr/bin/lpstat path=usr/lib/cups/bin/lpstat mode=0555
file path=usr/bin/ppdc
file path=usr/bin/ppdhtml
file path=usr/bin/ppdi
file path=usr/bin/ppdmerge
file path=usr/bin/ppdpo
file path=usr/include/cups/adminutil.h
file path=usr/include/cups/array.h
file path=usr/include/cups/backend.h
file path=usr/include/cups/cups.h
file path=usr/include/cups/dir.h
file path=usr/include/cups/file.h
file path=usr/include/cups/http.h
file path=usr/include/cups/ipp.h
file path=usr/include/cups/language.h
file path=usr/include/cups/ppd.h
file path=usr/include/cups/pwg.h
file path=usr/include/cups/raster.h
file path=usr/include/cups/sidechannel.h
file path=usr/include/cups/transcode.h
file path=usr/include/cups/versioning.h
# Libraries are in a separate manifest:
#link path=usr/lib/$(MACH64)/libcups.so target=libcups.so.2
#file path=usr/lib/$(MACH64)/libcups.so.2
#link path=usr/lib/$(MACH64)/libcupsimage.so target=libcupsimage.so.2
#file path=usr/lib/$(MACH64)/libcupsimage.so.2
file path=usr/lib/cups/backend/dnssd
link path=usr/lib/cups/backend/http target=ipp
link path=usr/lib/cups/backend/https target=ipp
file path=usr/lib/cups/backend/ipp
link path=usr/lib/cups/backend/ipps target=ipp
file path=usr/lib/cups/backend/lpd
file path=usr/lib/cups/backend/snmp
file path=usr/lib/cups/backend/socket
file path=usr/lib/cups/backend/usb
file path=usr/lib/cups/cgi-bin/admin.cgi
file path=usr/lib/cups/cgi-bin/classes.cgi
file path=usr/lib/cups/cgi-bin/help.cgi
file path=usr/lib/cups/cgi-bin/jobs.cgi
file path=usr/lib/cups/cgi-bin/printers.cgi
file path=usr/lib/cups/command/ippevepcl
file path=usr/lib/cups/command/ippeveps
file path=usr/lib/cups/daemon/cups-deviced
file path=usr/lib/cups/daemon/cups-driverd
file path=usr/lib/cups/daemon/cups-exec
file path=usr/lib/cups/daemon/cups-lpd
file path=usr/lib/cups/filter/commandtops
file path=usr/lib/cups/filter/gziptoany
file path=usr/lib/cups/filter/pstops
file path=usr/lib/cups/filter/rastertoepson
file path=usr/lib/cups/filter/rastertohp
file path=usr/lib/cups/filter/rastertolabel
file path=usr/lib/cups/filter/rastertopwg
file path=usr/lib/cups/monitor/bcp
file path=usr/lib/cups/monitor/tbcp
file path=usr/lib/cups/notifier/dbus
file path=usr/lib/cups/notifier/mailto
file path=usr/lib/cups/notifier/rss
# Libraries are in a separate manifest:
#link path=usr/lib/libcups.so target=libcups.so.2
#file path=usr/lib/libcups.so.2
#link path=usr/lib/libcupsimage.so target=libcupsimage.so.2
#file path=usr/lib/libcupsimage.so.2
 
file path=usr/lib/pkgconfig/cups.pc
# We don't provide 32-bit binaries but only libraries:
file path=usr/sbin/$(MACH32)/cupsaccept
file path=usr/sbin/$(MACH32)/cupsctl
file path=usr/sbin/$(MACH32)/cupsd
link path=usr/sbin/$(MACH32)/cupsdisable target=cupsaccept
link path=usr/sbin/$(MACH32)/cupsenable target=cupsaccept
file path=usr/sbin/$(MACH32)/cupsfilter
link path=usr/sbin/$(MACH32)/cupsreject target=cupsaccept
file path=usr/sbin/$(MACH32)/lpadmin
file path=usr/sbin/$(MACH32)/lpc
file path=usr/sbin/$(MACH32)/lpinfo
file path=usr/sbin/$(MACH32)/lpmove
file path=usr/sbin/cupsaccept
file usr/sbin/cupsaccept path=usr/lib/cups/bin/cupsaccept mode=0555
file path=usr/sbin/cupsctl
file path=usr/sbin/cupsd
link path=usr/sbin/cupsdisable target=cupsaccept
link path=usr/sbin/cupsenable target=cupsaccept
file path=usr/sbin/cupsfilter
link path=usr/sbin/cupsreject target=cupsaccept
file usr/sbin/lpadmin path=usr/lib/cups/bin/lpadmin mode=0555
file usr/sbin/lpc path=usr/lib/cups/bin/lpc mode=0555
file usr/sbin/lpinfo path=usr/lib/cups/bin/lpinfo mode=0555
file usr/sbin/lpmove path=usr/lib/cups/bin/lpmove mode=0555
file path=usr/share/applications/cups.desktop
file path=usr/share/cups/drv/sample.drv
file path=usr/share/cups/examples/color.drv
file path=usr/share/cups/examples/constraint.drv
file path=usr/share/cups/examples/custom.drv
file path=usr/share/cups/examples/grouping.drv
file path=usr/share/cups/examples/laserjet-basic.drv
file path=usr/share/cups/examples/laserjet-pjl.drv
file path=usr/share/cups/examples/minimum.drv
file path=usr/share/cups/examples/postscript.drv
file path=usr/share/cups/examples/r300-basic.drv
file path=usr/share/cups/examples/r300-colorman.drv
file path=usr/share/cups/examples/r300-remote.drv
file path=usr/share/cups/ipptool/cancel-current-job.test
file path=usr/share/cups/ipptool/color.jpg
file path=usr/share/cups/ipptool/create-job-format.test
file path=usr/share/cups/ipptool/create-job-sheets.test
file path=usr/share/cups/ipptool/create-job-timeout.test
file path=usr/share/cups/ipptool/create-job.test
file path=usr/share/cups/ipptool/create-printer-subscription.test
file path=usr/share/cups/ipptool/cups-create-local-printer.test
file path=usr/share/cups/ipptool/document-a4.pdf
file path=usr/share/cups/ipptool/document-a4.ps
file path=usr/share/cups/ipptool/document-letter.pdf
file path=usr/share/cups/ipptool/document-letter.ps
file path=usr/share/cups/ipptool/fax-job.test
file path=usr/share/cups/ipptool/get-completed-jobs.test
file path=usr/share/cups/ipptool/get-devices.test
file path=usr/share/cups/ipptool/get-job-attributes.test
file path=usr/share/cups/ipptool/get-job-attributes2.test
file path=usr/share/cups/ipptool/get-job-template-attributes.test
file path=usr/share/cups/ipptool/get-jobs.test
file path=usr/share/cups/ipptool/get-notifications.test
file path=usr/share/cups/ipptool/get-ppd-printer.test
file path=usr/share/cups/ipptool/get-ppd.test
file path=usr/share/cups/ipptool/get-ppds-drv-only.test
file path=usr/share/cups/ipptool/get-ppds-language.test
file path=usr/share/cups/ipptool/get-ppds-make-and-model.test
file path=usr/share/cups/ipptool/get-ppds-make.test
file path=usr/share/cups/ipptool/get-ppds-product.test
file path=usr/share/cups/ipptool/get-ppds-psversion.test
file path=usr/share/cups/ipptool/get-ppds.test
file path=usr/share/cups/ipptool/get-printer-attributes-suite.test
file path=usr/share/cups/ipptool/get-printer-attributes.test
file path=usr/share/cups/ipptool/get-printer-description-attributes.test
file path=usr/share/cups/ipptool/get-printers-printer-id.test
file path=usr/share/cups/ipptool/get-printers.test
file path=usr/share/cups/ipptool/get-subscriptions.test
file path=usr/share/cups/ipptool/gray.jpg
file path=usr/share/cups/ipptool/identify-printer-display.test
file path=usr/share/cups/ipptool/identify-printer-multiple.test
file path=usr/share/cups/ipptool/identify-printer.test
file path=usr/share/cups/ipptool/ipp-1.1.test
file path=usr/share/cups/ipptool/ipp-2.0.test
file path=usr/share/cups/ipptool/ipp-2.1.test
file path=usr/share/cups/ipptool/ipp-2.2.test
file path=usr/share/cups/ipptool/ipp-backend.test
file path=usr/share/cups/ipptool/ipp-everywhere.test
file path=usr/share/cups/ipptool/onepage-a4.pdf
file path=usr/share/cups/ipptool/onepage-a4.ps
file path=usr/share/cups/ipptool/onepage-letter.pdf
file path=usr/share/cups/ipptool/onepage-letter.ps
file path=usr/share/cups/ipptool/print-job-and-wait.test
file path=usr/share/cups/ipptool/print-job-deflate.test
file path=usr/share/cups/ipptool/print-job-gzip.test
file path=usr/share/cups/ipptool/print-job-hold.test
file path=usr/share/cups/ipptool/print-job-letter.test
file path=usr/share/cups/ipptool/print-job-manual.test
file path=usr/share/cups/ipptool/print-job-media-col.test
file path=usr/share/cups/ipptool/print-job-media-needed.test
file path=usr/share/cups/ipptool/print-job-password.test
file path=usr/share/cups/ipptool/print-job.test
file path=usr/share/cups/ipptool/print-uri.test
file path=usr/share/cups/ipptool/set-attrs-hold.test
file path=usr/share/cups/ipptool/testfile.jpg
file path=usr/share/cups/ipptool/testfile.pcl
file path=usr/share/cups/ipptool/testfile.pdf
file path=usr/share/cups/ipptool/testfile.ps
file path=usr/share/cups/ipptool/testfile.txt
file path=usr/share/cups/ipptool/validate-job.test
file path=usr/share/cups/mime/mime.convs
#file path=usr/share/cups/mime/mime.convs.O
file path=usr/share/cups/mime/mime.types
#file path=usr/share/cups/mime/mime.types.O
file path=usr/share/cups/ppdc/epson.h
file path=usr/share/cups/ppdc/font.defs
file path=usr/share/cups/ppdc/hp.h
file path=usr/share/cups/ppdc/label.h
file path=usr/share/cups/ppdc/media.defs
file path=usr/share/cups/ppdc/raster.defs
file path=usr/share/cups/templates/add-class.tmpl
file path=usr/share/cups/templates/add-printer.tmpl
file path=usr/share/cups/templates/admin.tmpl
file path=usr/share/cups/templates/choose-device.tmpl
file path=usr/share/cups/templates/choose-make.tmpl
file path=usr/share/cups/templates/choose-model.tmpl
file path=usr/share/cups/templates/choose-serial.tmpl
file path=usr/share/cups/templates/choose-uri.tmpl
file path=usr/share/cups/templates/class-added.tmpl
file path=usr/share/cups/templates/class-confirm.tmpl
file path=usr/share/cups/templates/class-deleted.tmpl
file path=usr/share/cups/templates/class-jobs-header.tmpl
file path=usr/share/cups/templates/class-modified.tmpl
file path=usr/share/cups/templates/class.tmpl
file path=usr/share/cups/templates/classes-header.tmpl
file path=usr/share/cups/templates/classes.tmpl
file path=usr/share/cups/templates/command.tmpl
file path=usr/share/cups/templates/da/add-class.tmpl
file path=usr/share/cups/templates/da/add-printer.tmpl
file path=usr/share/cups/templates/da/admin.tmpl
file path=usr/share/cups/templates/da/choose-device.tmpl
file path=usr/share/cups/templates/da/choose-make.tmpl
file path=usr/share/cups/templates/da/choose-model.tmpl
file path=usr/share/cups/templates/da/choose-serial.tmpl
file path=usr/share/cups/templates/da/choose-uri.tmpl
file path=usr/share/cups/templates/da/class-added.tmpl
file path=usr/share/cups/templates/da/class-confirm.tmpl
file path=usr/share/cups/templates/da/class-deleted.tmpl
file path=usr/share/cups/templates/da/class-jobs-header.tmpl
file path=usr/share/cups/templates/da/class-modified.tmpl
file path=usr/share/cups/templates/da/class.tmpl
file path=usr/share/cups/templates/da/classes-header.tmpl
file path=usr/share/cups/templates/da/classes.tmpl
file path=usr/share/cups/templates/da/command.tmpl
file path=usr/share/cups/templates/da/edit-config.tmpl
file path=usr/share/cups/templates/da/error-op.tmpl
file path=usr/share/cups/templates/da/error.tmpl
file path=usr/share/cups/templates/da/header.tmpl
file path=usr/share/cups/templates/da/help-header.tmpl
file path=usr/share/cups/templates/da/help-printable.tmpl
file path=usr/share/cups/templates/da/help-trailer.tmpl
file path=usr/share/cups/templates/da/job-cancel.tmpl
file path=usr/share/cups/templates/da/job-hold.tmpl
file path=usr/share/cups/templates/da/job-move.tmpl
file path=usr/share/cups/templates/da/job-moved.tmpl
file path=usr/share/cups/templates/da/job-release.tmpl
file path=usr/share/cups/templates/da/job-restart.tmpl
file path=usr/share/cups/templates/da/jobs-header.tmpl
file path=usr/share/cups/templates/da/jobs.tmpl
file path=usr/share/cups/templates/da/list-available-printers.tmpl
file path=usr/share/cups/templates/da/modify-class.tmpl
file path=usr/share/cups/templates/da/modify-printer.tmpl
file path=usr/share/cups/templates/da/norestart.tmpl
file path=usr/share/cups/templates/da/option-boolean.tmpl
file path=usr/share/cups/templates/da/option-conflict.tmpl
file path=usr/share/cups/templates/da/option-header.tmpl
file path=usr/share/cups/templates/da/option-pickmany.tmpl
file path=usr/share/cups/templates/da/option-pickone.tmpl
file path=usr/share/cups/templates/da/option-trailer.tmpl
file path=usr/share/cups/templates/da/pager.tmpl
file path=usr/share/cups/templates/da/printer-accept.tmpl
file path=usr/share/cups/templates/da/printer-added.tmpl
file path=usr/share/cups/templates/da/printer-cancel-jobs.tmpl
file path=usr/share/cups/templates/da/printer-configured.tmpl
file path=usr/share/cups/templates/da/printer-confirm.tmpl
file path=usr/share/cups/templates/da/printer-default.tmpl
file path=usr/share/cups/templates/da/printer-deleted.tmpl
file path=usr/share/cups/templates/da/printer-jobs-header.tmpl
file path=usr/share/cups/templates/da/printer-modified.tmpl
file path=usr/share/cups/templates/da/printer-reject.tmpl
file path=usr/share/cups/templates/da/printer-start.tmpl
file path=usr/share/cups/templates/da/printer-stop.tmpl
file path=usr/share/cups/templates/da/printer.tmpl
file path=usr/share/cups/templates/da/printers-header.tmpl
file path=usr/share/cups/templates/da/printers.tmpl
file path=usr/share/cups/templates/da/restart.tmpl
file path=usr/share/cups/templates/da/search.tmpl
file path=usr/share/cups/templates/da/set-printer-options-header.tmpl
file path=usr/share/cups/templates/da/set-printer-options-trailer.tmpl
file path=usr/share/cups/templates/da/test-page.tmpl
file path=usr/share/cups/templates/da/trailer.tmpl
file path=usr/share/cups/templates/da/users.tmpl
file path=usr/share/cups/templates/de/add-class.tmpl
file path=usr/share/cups/templates/de/add-printer.tmpl
file path=usr/share/cups/templates/de/admin.tmpl
file path=usr/share/cups/templates/de/choose-device.tmpl
file path=usr/share/cups/templates/de/choose-make.tmpl
file path=usr/share/cups/templates/de/choose-model.tmpl
file path=usr/share/cups/templates/de/choose-serial.tmpl
file path=usr/share/cups/templates/de/choose-uri.tmpl
file path=usr/share/cups/templates/de/class-added.tmpl
file path=usr/share/cups/templates/de/class-confirm.tmpl
file path=usr/share/cups/templates/de/class-deleted.tmpl
file path=usr/share/cups/templates/de/class-jobs-header.tmpl
file path=usr/share/cups/templates/de/class-modified.tmpl
file path=usr/share/cups/templates/de/class.tmpl
file path=usr/share/cups/templates/de/classes-header.tmpl
file path=usr/share/cups/templates/de/classes.tmpl
file path=usr/share/cups/templates/de/command.tmpl
file path=usr/share/cups/templates/de/edit-config.tmpl
file path=usr/share/cups/templates/de/error-op.tmpl
file path=usr/share/cups/templates/de/error.tmpl
file path=usr/share/cups/templates/de/header.tmpl
file path=usr/share/cups/templates/de/help-header.tmpl
file path=usr/share/cups/templates/de/help-printable.tmpl
file path=usr/share/cups/templates/de/help-trailer.tmpl
file path=usr/share/cups/templates/de/job-cancel.tmpl
file path=usr/share/cups/templates/de/job-hold.tmpl
file path=usr/share/cups/templates/de/job-move.tmpl
file path=usr/share/cups/templates/de/job-moved.tmpl
file path=usr/share/cups/templates/de/job-release.tmpl
file path=usr/share/cups/templates/de/job-restart.tmpl
file path=usr/share/cups/templates/de/jobs-header.tmpl
file path=usr/share/cups/templates/de/jobs.tmpl
file path=usr/share/cups/templates/de/list-available-printers.tmpl
file path=usr/share/cups/templates/de/modify-class.tmpl
file path=usr/share/cups/templates/de/modify-printer.tmpl
file path=usr/share/cups/templates/de/norestart.tmpl
file path=usr/share/cups/templates/de/option-boolean.tmpl
file path=usr/share/cups/templates/de/option-conflict.tmpl
file path=usr/share/cups/templates/de/option-header.tmpl
file path=usr/share/cups/templates/de/option-pickmany.tmpl
file path=usr/share/cups/templates/de/option-pickone.tmpl
file path=usr/share/cups/templates/de/option-trailer.tmpl
file path=usr/share/cups/templates/de/pager.tmpl
file path=usr/share/cups/templates/de/printer-accept.tmpl
file path=usr/share/cups/templates/de/printer-added.tmpl
file path=usr/share/cups/templates/de/printer-cancel-jobs.tmpl
file path=usr/share/cups/templates/de/printer-configured.tmpl
file path=usr/share/cups/templates/de/printer-confirm.tmpl
file path=usr/share/cups/templates/de/printer-default.tmpl
file path=usr/share/cups/templates/de/printer-deleted.tmpl
file path=usr/share/cups/templates/de/printer-jobs-header.tmpl
file path=usr/share/cups/templates/de/printer-modified.tmpl
file path=usr/share/cups/templates/de/printer-reject.tmpl
file path=usr/share/cups/templates/de/printer-start.tmpl
file path=usr/share/cups/templates/de/printer-stop.tmpl
file path=usr/share/cups/templates/de/printer.tmpl
file path=usr/share/cups/templates/de/printers-header.tmpl
file path=usr/share/cups/templates/de/printers.tmpl
file path=usr/share/cups/templates/de/restart.tmpl
file path=usr/share/cups/templates/de/search.tmpl
file path=usr/share/cups/templates/de/set-printer-options-header.tmpl
file path=usr/share/cups/templates/de/set-printer-options-trailer.tmpl
file path=usr/share/cups/templates/de/test-page.tmpl
file path=usr/share/cups/templates/de/trailer.tmpl
file path=usr/share/cups/templates/de/users.tmpl
file path=usr/share/cups/templates/edit-config.tmpl
file path=usr/share/cups/templates/error-op.tmpl
file path=usr/share/cups/templates/error.tmpl
file path=usr/share/cups/templates/es/add-class.tmpl
file path=usr/share/cups/templates/es/add-printer.tmpl
file path=usr/share/cups/templates/es/admin.tmpl
file path=usr/share/cups/templates/es/choose-device.tmpl
file path=usr/share/cups/templates/es/choose-make.tmpl
file path=usr/share/cups/templates/es/choose-model.tmpl
file path=usr/share/cups/templates/es/choose-serial.tmpl
file path=usr/share/cups/templates/es/choose-uri.tmpl
file path=usr/share/cups/templates/es/class-added.tmpl
file path=usr/share/cups/templates/es/class-confirm.tmpl
file path=usr/share/cups/templates/es/class-deleted.tmpl
file path=usr/share/cups/templates/es/class-jobs-header.tmpl
file path=usr/share/cups/templates/es/class-modified.tmpl
file path=usr/share/cups/templates/es/class.tmpl
file path=usr/share/cups/templates/es/classes-header.tmpl
file path=usr/share/cups/templates/es/classes.tmpl
file path=usr/share/cups/templates/es/command.tmpl
file path=usr/share/cups/templates/es/edit-config.tmpl
file path=usr/share/cups/templates/es/error-op.tmpl
file path=usr/share/cups/templates/es/error.tmpl
file path=usr/share/cups/templates/es/header.tmpl
file path=usr/share/cups/templates/es/help-header.tmpl
file path=usr/share/cups/templates/es/help-printable.tmpl
file path=usr/share/cups/templates/es/help-trailer.tmpl
file path=usr/share/cups/templates/es/job-cancel.tmpl
file path=usr/share/cups/templates/es/job-hold.tmpl
file path=usr/share/cups/templates/es/job-move.tmpl
file path=usr/share/cups/templates/es/job-moved.tmpl
file path=usr/share/cups/templates/es/job-release.tmpl
file path=usr/share/cups/templates/es/job-restart.tmpl
file path=usr/share/cups/templates/es/jobs-header.tmpl
file path=usr/share/cups/templates/es/jobs.tmpl
file path=usr/share/cups/templates/es/list-available-printers.tmpl
file path=usr/share/cups/templates/es/modify-class.tmpl
file path=usr/share/cups/templates/es/modify-printer.tmpl
file path=usr/share/cups/templates/es/norestart.tmpl
file path=usr/share/cups/templates/es/option-boolean.tmpl
file path=usr/share/cups/templates/es/option-conflict.tmpl
file path=usr/share/cups/templates/es/option-header.tmpl
file path=usr/share/cups/templates/es/option-pickmany.tmpl
file path=usr/share/cups/templates/es/option-pickone.tmpl
file path=usr/share/cups/templates/es/option-trailer.tmpl
file path=usr/share/cups/templates/es/pager.tmpl
file path=usr/share/cups/templates/es/printer-accept.tmpl
file path=usr/share/cups/templates/es/printer-added.tmpl
file path=usr/share/cups/templates/es/printer-cancel-jobs.tmpl
file path=usr/share/cups/templates/es/printer-configured.tmpl
file path=usr/share/cups/templates/es/printer-confirm.tmpl
file path=usr/share/cups/templates/es/printer-default.tmpl
file path=usr/share/cups/templates/es/printer-deleted.tmpl
file path=usr/share/cups/templates/es/printer-jobs-header.tmpl
file path=usr/share/cups/templates/es/printer-modified.tmpl
file path=usr/share/cups/templates/es/printer-reject.tmpl
file path=usr/share/cups/templates/es/printer-start.tmpl
file path=usr/share/cups/templates/es/printer-stop.tmpl
file path=usr/share/cups/templates/es/printer.tmpl
file path=usr/share/cups/templates/es/printers-header.tmpl
file path=usr/share/cups/templates/es/printers.tmpl
file path=usr/share/cups/templates/es/restart.tmpl
file path=usr/share/cups/templates/es/search.tmpl
file path=usr/share/cups/templates/es/set-printer-options-header.tmpl
file path=usr/share/cups/templates/es/set-printer-options-trailer.tmpl
file path=usr/share/cups/templates/es/test-page.tmpl
file path=usr/share/cups/templates/es/trailer.tmpl
file path=usr/share/cups/templates/es/users.tmpl
file path=usr/share/cups/templates/fr/add-class.tmpl
file path=usr/share/cups/templates/fr/add-printer.tmpl
file path=usr/share/cups/templates/fr/admin.tmpl
file path=usr/share/cups/templates/fr/choose-device.tmpl
file path=usr/share/cups/templates/fr/choose-make.tmpl
file path=usr/share/cups/templates/fr/choose-model.tmpl
file path=usr/share/cups/templates/fr/choose-serial.tmpl
file path=usr/share/cups/templates/fr/choose-uri.tmpl
file path=usr/share/cups/templates/fr/class-added.tmpl
file path=usr/share/cups/templates/fr/class-confirm.tmpl
file path=usr/share/cups/templates/fr/class-deleted.tmpl
file path=usr/share/cups/templates/fr/class-jobs-header.tmpl
file path=usr/share/cups/templates/fr/class-modified.tmpl
file path=usr/share/cups/templates/fr/class.tmpl
file path=usr/share/cups/templates/fr/classes-header.tmpl
file path=usr/share/cups/templates/fr/classes.tmpl
file path=usr/share/cups/templates/fr/command.tmpl
file path=usr/share/cups/templates/fr/edit-config.tmpl
file path=usr/share/cups/templates/fr/error-op.tmpl
file path=usr/share/cups/templates/fr/error.tmpl
file path=usr/share/cups/templates/fr/header.tmpl
file path=usr/share/cups/templates/fr/help-header.tmpl
file path=usr/share/cups/templates/fr/help-printable.tmpl
file path=usr/share/cups/templates/fr/help-trailer.tmpl
file path=usr/share/cups/templates/fr/job-cancel.tmpl
file path=usr/share/cups/templates/fr/job-hold.tmpl
file path=usr/share/cups/templates/fr/job-move.tmpl
file path=usr/share/cups/templates/fr/job-moved.tmpl
file path=usr/share/cups/templates/fr/job-release.tmpl
file path=usr/share/cups/templates/fr/job-restart.tmpl
file path=usr/share/cups/templates/fr/jobs-header.tmpl
file path=usr/share/cups/templates/fr/jobs.tmpl
file path=usr/share/cups/templates/fr/list-available-printers.tmpl
file path=usr/share/cups/templates/fr/modify-class.tmpl
file path=usr/share/cups/templates/fr/modify-printer.tmpl
file path=usr/share/cups/templates/fr/norestart.tmpl
file path=usr/share/cups/templates/fr/option-boolean.tmpl
file path=usr/share/cups/templates/fr/option-conflict.tmpl
file path=usr/share/cups/templates/fr/option-header.tmpl
file path=usr/share/cups/templates/fr/option-pickmany.tmpl
file path=usr/share/cups/templates/fr/option-pickone.tmpl
file path=usr/share/cups/templates/fr/option-trailer.tmpl
file path=usr/share/cups/templates/fr/pager.tmpl
file path=usr/share/cups/templates/fr/printer-accept.tmpl
file path=usr/share/cups/templates/fr/printer-added.tmpl
file path=usr/share/cups/templates/fr/printer-cancel-jobs.tmpl
file path=usr/share/cups/templates/fr/printer-configured.tmpl
file path=usr/share/cups/templates/fr/printer-confirm.tmpl
file path=usr/share/cups/templates/fr/printer-default.tmpl
file path=usr/share/cups/templates/fr/printer-deleted.tmpl
file path=usr/share/cups/templates/fr/printer-jobs-header.tmpl
file path=usr/share/cups/templates/fr/printer-modified.tmpl
file path=usr/share/cups/templates/fr/printer-reject.tmpl
file path=usr/share/cups/templates/fr/printer-start.tmpl
file path=usr/share/cups/templates/fr/printer-stop.tmpl
file path=usr/share/cups/templates/fr/printer.tmpl
file path=usr/share/cups/templates/fr/printers-header.tmpl
file path=usr/share/cups/templates/fr/printers.tmpl
file path=usr/share/cups/templates/fr/restart.tmpl
file path=usr/share/cups/templates/fr/search.tmpl
file path=usr/share/cups/templates/fr/set-printer-options-header.tmpl
file path=usr/share/cups/templates/fr/set-printer-options-trailer.tmpl
file path=usr/share/cups/templates/fr/test-page.tmpl
file path=usr/share/cups/templates/fr/trailer.tmpl
file path=usr/share/cups/templates/fr/users.tmpl
file path=usr/share/cups/templates/header.tmpl
file path=usr/share/cups/templates/help-header.tmpl
file path=usr/share/cups/templates/help-printable.tmpl
file path=usr/share/cups/templates/help-trailer.tmpl
file path=usr/share/cups/templates/ja/add-class.tmpl
file path=usr/share/cups/templates/ja/add-printer.tmpl
file path=usr/share/cups/templates/ja/admin.tmpl
file path=usr/share/cups/templates/ja/choose-device.tmpl
file path=usr/share/cups/templates/ja/choose-make.tmpl
file path=usr/share/cups/templates/ja/choose-model.tmpl
file path=usr/share/cups/templates/ja/choose-serial.tmpl
file path=usr/share/cups/templates/ja/choose-uri.tmpl
file path=usr/share/cups/templates/ja/class-added.tmpl
file path=usr/share/cups/templates/ja/class-confirm.tmpl
file path=usr/share/cups/templates/ja/class-deleted.tmpl
file path=usr/share/cups/templates/ja/class-jobs-header.tmpl
file path=usr/share/cups/templates/ja/class-modified.tmpl
file path=usr/share/cups/templates/ja/class.tmpl
file path=usr/share/cups/templates/ja/classes-header.tmpl
file path=usr/share/cups/templates/ja/classes.tmpl
file path=usr/share/cups/templates/ja/command.tmpl
file path=usr/share/cups/templates/ja/edit-config.tmpl
file path=usr/share/cups/templates/ja/error-op.tmpl
file path=usr/share/cups/templates/ja/error.tmpl
file path=usr/share/cups/templates/ja/header.tmpl
file path=usr/share/cups/templates/ja/help-header.tmpl
file path=usr/share/cups/templates/ja/help-printable.tmpl
file path=usr/share/cups/templates/ja/help-trailer.tmpl
file path=usr/share/cups/templates/ja/job-cancel.tmpl
file path=usr/share/cups/templates/ja/job-hold.tmpl
file path=usr/share/cups/templates/ja/job-move.tmpl
file path=usr/share/cups/templates/ja/job-moved.tmpl
file path=usr/share/cups/templates/ja/job-release.tmpl
file path=usr/share/cups/templates/ja/job-restart.tmpl
file path=usr/share/cups/templates/ja/jobs-header.tmpl
file path=usr/share/cups/templates/ja/jobs.tmpl
file path=usr/share/cups/templates/ja/list-available-printers.tmpl
file path=usr/share/cups/templates/ja/modify-class.tmpl
file path=usr/share/cups/templates/ja/modify-printer.tmpl
file path=usr/share/cups/templates/ja/norestart.tmpl
file path=usr/share/cups/templates/ja/option-boolean.tmpl
file path=usr/share/cups/templates/ja/option-conflict.tmpl
file path=usr/share/cups/templates/ja/option-header.tmpl
file path=usr/share/cups/templates/ja/option-pickmany.tmpl
file path=usr/share/cups/templates/ja/option-pickone.tmpl
file path=usr/share/cups/templates/ja/option-trailer.tmpl
file path=usr/share/cups/templates/ja/pager.tmpl
file path=usr/share/cups/templates/ja/printer-accept.tmpl
file path=usr/share/cups/templates/ja/printer-added.tmpl
file path=usr/share/cups/templates/ja/printer-cancel-jobs.tmpl
file path=usr/share/cups/templates/ja/printer-configured.tmpl
file path=usr/share/cups/templates/ja/printer-confirm.tmpl
file path=usr/share/cups/templates/ja/printer-default.tmpl
file path=usr/share/cups/templates/ja/printer-deleted.tmpl
file path=usr/share/cups/templates/ja/printer-jobs-header.tmpl
file path=usr/share/cups/templates/ja/printer-modified.tmpl
file path=usr/share/cups/templates/ja/printer-reject.tmpl
file path=usr/share/cups/templates/ja/printer-start.tmpl
file path=usr/share/cups/templates/ja/printer-stop.tmpl
file path=usr/share/cups/templates/ja/printer.tmpl
file path=usr/share/cups/templates/ja/printers-header.tmpl
file path=usr/share/cups/templates/ja/printers.tmpl
file path=usr/share/cups/templates/ja/restart.tmpl
file path=usr/share/cups/templates/ja/search.tmpl
file path=usr/share/cups/templates/ja/set-printer-options-header.tmpl
file path=usr/share/cups/templates/ja/set-printer-options-trailer.tmpl
file path=usr/share/cups/templates/ja/test-page.tmpl
file path=usr/share/cups/templates/ja/trailer.tmpl
file path=usr/share/cups/templates/ja/users.tmpl
file path=usr/share/cups/templates/job-cancel.tmpl
file path=usr/share/cups/templates/job-hold.tmpl
file path=usr/share/cups/templates/job-move.tmpl
file path=usr/share/cups/templates/job-moved.tmpl
file path=usr/share/cups/templates/job-release.tmpl
file path=usr/share/cups/templates/job-restart.tmpl
file path=usr/share/cups/templates/jobs-header.tmpl
file path=usr/share/cups/templates/jobs.tmpl
file path=usr/share/cups/templates/list-available-printers.tmpl
file path=usr/share/cups/templates/modify-class.tmpl
file path=usr/share/cups/templates/modify-printer.tmpl
file path=usr/share/cups/templates/norestart.tmpl
file path=usr/share/cups/templates/option-boolean.tmpl
file path=usr/share/cups/templates/option-conflict.tmpl
file path=usr/share/cups/templates/option-header.tmpl
file path=usr/share/cups/templates/option-pickmany.tmpl
file path=usr/share/cups/templates/option-pickone.tmpl
file path=usr/share/cups/templates/option-trailer.tmpl
file path=usr/share/cups/templates/pager.tmpl
file path=usr/share/cups/templates/printer-accept.tmpl
file path=usr/share/cups/templates/printer-added.tmpl
file path=usr/share/cups/templates/printer-cancel-jobs.tmpl
file path=usr/share/cups/templates/printer-configured.tmpl
file path=usr/share/cups/templates/printer-confirm.tmpl
file path=usr/share/cups/templates/printer-default.tmpl
file path=usr/share/cups/templates/printer-deleted.tmpl
file path=usr/share/cups/templates/printer-jobs-header.tmpl
file path=usr/share/cups/templates/printer-modified.tmpl
file path=usr/share/cups/templates/printer-reject.tmpl
file path=usr/share/cups/templates/printer-start.tmpl
file path=usr/share/cups/templates/printer-stop.tmpl
file path=usr/share/cups/templates/printer.tmpl
file path=usr/share/cups/templates/printers-header.tmpl
file path=usr/share/cups/templates/printers.tmpl
file path=usr/share/cups/templates/pt_BR/add-class.tmpl
file path=usr/share/cups/templates/pt_BR/add-printer.tmpl
file path=usr/share/cups/templates/pt_BR/admin.tmpl
file path=usr/share/cups/templates/pt_BR/choose-device.tmpl
file path=usr/share/cups/templates/pt_BR/choose-make.tmpl
file path=usr/share/cups/templates/pt_BR/choose-model.tmpl
file path=usr/share/cups/templates/pt_BR/choose-serial.tmpl
file path=usr/share/cups/templates/pt_BR/choose-uri.tmpl
file path=usr/share/cups/templates/pt_BR/class-added.tmpl
file path=usr/share/cups/templates/pt_BR/class-confirm.tmpl
file path=usr/share/cups/templates/pt_BR/class-deleted.tmpl
file path=usr/share/cups/templates/pt_BR/class-jobs-header.tmpl
file path=usr/share/cups/templates/pt_BR/class-modified.tmpl
file path=usr/share/cups/templates/pt_BR/class.tmpl
file path=usr/share/cups/templates/pt_BR/classes-header.tmpl
file path=usr/share/cups/templates/pt_BR/classes.tmpl
file path=usr/share/cups/templates/pt_BR/command.tmpl
file path=usr/share/cups/templates/pt_BR/edit-config.tmpl
file path=usr/share/cups/templates/pt_BR/error-op.tmpl
file path=usr/share/cups/templates/pt_BR/error.tmpl
file path=usr/share/cups/templates/pt_BR/header.tmpl
file path=usr/share/cups/templates/pt_BR/help-header.tmpl
file path=usr/share/cups/templates/pt_BR/help-printable.tmpl
file path=usr/share/cups/templates/pt_BR/help-trailer.tmpl
file path=usr/share/cups/templates/pt_BR/job-cancel.tmpl
file path=usr/share/cups/templates/pt_BR/job-hold.tmpl
file path=usr/share/cups/templates/pt_BR/job-move.tmpl
file path=usr/share/cups/templates/pt_BR/job-moved.tmpl
file path=usr/share/cups/templates/pt_BR/job-release.tmpl
file path=usr/share/cups/templates/pt_BR/job-restart.tmpl
file path=usr/share/cups/templates/pt_BR/jobs-header.tmpl
file path=usr/share/cups/templates/pt_BR/jobs.tmpl
file path=usr/share/cups/templates/pt_BR/list-available-printers.tmpl
file path=usr/share/cups/templates/pt_BR/modify-class.tmpl
file path=usr/share/cups/templates/pt_BR/modify-printer.tmpl
file path=usr/share/cups/templates/pt_BR/norestart.tmpl
file path=usr/share/cups/templates/pt_BR/option-boolean.tmpl
file path=usr/share/cups/templates/pt_BR/option-conflict.tmpl
file path=usr/share/cups/templates/pt_BR/option-header.tmpl
file path=usr/share/cups/templates/pt_BR/option-pickmany.tmpl
file path=usr/share/cups/templates/pt_BR/option-pickone.tmpl
file path=usr/share/cups/templates/pt_BR/option-trailer.tmpl
file path=usr/share/cups/templates/pt_BR/pager.tmpl
file path=usr/share/cups/templates/pt_BR/printer-accept.tmpl
file path=usr/share/cups/templates/pt_BR/printer-added.tmpl
file path=usr/share/cups/templates/pt_BR/printer-cancel-jobs.tmpl
file path=usr/share/cups/templates/pt_BR/printer-configured.tmpl
file path=usr/share/cups/templates/pt_BR/printer-confirm.tmpl
file path=usr/share/cups/templates/pt_BR/printer-default.tmpl
file path=usr/share/cups/templates/pt_BR/printer-deleted.tmpl
file path=usr/share/cups/templates/pt_BR/printer-jobs-header.tmpl
file path=usr/share/cups/templates/pt_BR/printer-modified.tmpl
file path=usr/share/cups/templates/pt_BR/printer-reject.tmpl
file path=usr/share/cups/templates/pt_BR/printer-start.tmpl
file path=usr/share/cups/templates/pt_BR/printer-stop.tmpl
file path=usr/share/cups/templates/pt_BR/printer.tmpl
file path=usr/share/cups/templates/pt_BR/printers-header.tmpl
file path=usr/share/cups/templates/pt_BR/printers.tmpl
file path=usr/share/cups/templates/pt_BR/restart.tmpl
file path=usr/share/cups/templates/pt_BR/search.tmpl
file path=usr/share/cups/templates/pt_BR/set-printer-options-header.tmpl
file path=usr/share/cups/templates/pt_BR/set-printer-options-trailer.tmpl
file path=usr/share/cups/templates/pt_BR/test-page.tmpl
file path=usr/share/cups/templates/pt_BR/trailer.tmpl
file path=usr/share/cups/templates/pt_BR/users.tmpl
file path=usr/share/cups/templates/restart.tmpl
file path=usr/share/cups/templates/ru/add-class.tmpl
file path=usr/share/cups/templates/ru/add-printer.tmpl
file path=usr/share/cups/templates/ru/admin.tmpl
file path=usr/share/cups/templates/ru/choose-device.tmpl
file path=usr/share/cups/templates/ru/choose-make.tmpl
file path=usr/share/cups/templates/ru/choose-model.tmpl
file path=usr/share/cups/templates/ru/choose-serial.tmpl
file path=usr/share/cups/templates/ru/choose-uri.tmpl
file path=usr/share/cups/templates/ru/class-added.tmpl
file path=usr/share/cups/templates/ru/class-confirm.tmpl
file path=usr/share/cups/templates/ru/class-deleted.tmpl
file path=usr/share/cups/templates/ru/class-jobs-header.tmpl
file path=usr/share/cups/templates/ru/class-modified.tmpl
file path=usr/share/cups/templates/ru/class.tmpl
file path=usr/share/cups/templates/ru/classes-header.tmpl
file path=usr/share/cups/templates/ru/classes.tmpl
file path=usr/share/cups/templates/ru/command.tmpl
file path=usr/share/cups/templates/ru/edit-config.tmpl
file path=usr/share/cups/templates/ru/error-op.tmpl
file path=usr/share/cups/templates/ru/error.tmpl
file path=usr/share/cups/templates/ru/header.tmpl
file path=usr/share/cups/templates/ru/help-header.tmpl
file path=usr/share/cups/templates/ru/help-printable.tmpl
file path=usr/share/cups/templates/ru/help-trailer.tmpl
file path=usr/share/cups/templates/ru/job-cancel.tmpl
file path=usr/share/cups/templates/ru/job-hold.tmpl
file path=usr/share/cups/templates/ru/job-move.tmpl
file path=usr/share/cups/templates/ru/job-moved.tmpl
file path=usr/share/cups/templates/ru/job-release.tmpl
file path=usr/share/cups/templates/ru/job-restart.tmpl
file path=usr/share/cups/templates/ru/jobs-header.tmpl
file path=usr/share/cups/templates/ru/jobs.tmpl
file path=usr/share/cups/templates/ru/list-available-printers.tmpl
file path=usr/share/cups/templates/ru/modify-class.tmpl
file path=usr/share/cups/templates/ru/modify-printer.tmpl
file path=usr/share/cups/templates/ru/norestart.tmpl
file path=usr/share/cups/templates/ru/option-boolean.tmpl
file path=usr/share/cups/templates/ru/option-conflict.tmpl
file path=usr/share/cups/templates/ru/option-header.tmpl
file path=usr/share/cups/templates/ru/option-pickmany.tmpl
file path=usr/share/cups/templates/ru/option-pickone.tmpl
file path=usr/share/cups/templates/ru/option-trailer.tmpl
file path=usr/share/cups/templates/ru/pager.tmpl
file path=usr/share/cups/templates/ru/printer-accept.tmpl
file path=usr/share/cups/templates/ru/printer-added.tmpl
file path=usr/share/cups/templates/ru/printer-cancel-jobs.tmpl
file path=usr/share/cups/templates/ru/printer-configured.tmpl
file path=usr/share/cups/templates/ru/printer-confirm.tmpl
file path=usr/share/cups/templates/ru/printer-default.tmpl
file path=usr/share/cups/templates/ru/printer-deleted.tmpl
file path=usr/share/cups/templates/ru/printer-jobs-header.tmpl
file path=usr/share/cups/templates/ru/printer-modified.tmpl
file path=usr/share/cups/templates/ru/printer-reject.tmpl
file path=usr/share/cups/templates/ru/printer-start.tmpl
file path=usr/share/cups/templates/ru/printer-stop.tmpl
file path=usr/share/cups/templates/ru/printer.tmpl
file path=usr/share/cups/templates/ru/printers-header.tmpl
file path=usr/share/cups/templates/ru/printers.tmpl
file path=usr/share/cups/templates/ru/restart.tmpl
file path=usr/share/cups/templates/ru/search.tmpl
file path=usr/share/cups/templates/ru/set-printer-options-header.tmpl
file path=usr/share/cups/templates/ru/set-printer-options-trailer.tmpl
file path=usr/share/cups/templates/ru/test-page.tmpl
file path=usr/share/cups/templates/ru/trailer.tmpl
file path=usr/share/cups/templates/ru/users.tmpl
file path=usr/share/cups/templates/search.tmpl
file path=usr/share/cups/templates/set-printer-options-header.tmpl
file path=usr/share/cups/templates/set-printer-options-trailer.tmpl
file path=usr/share/cups/templates/test-page.tmpl
file path=usr/share/cups/templates/trailer.tmpl
file path=usr/share/cups/templates/users.tmpl
file path=usr/share/cups/usb/org.cups.usb-quirks
file path=usr/share/doc/cups/apple-touch-icon.png
file path=usr/share/doc/cups/cups-printable.css
file path=usr/share/doc/cups/cups.css
file path=usr/share/doc/cups/da/index.html
file path=usr/share/doc/cups/de/index.html
file path=usr/share/doc/cups/es/index.html
file path=usr/share/doc/cups/fr/index.html
file path=usr/share/doc/cups/help/accounting.html
file path=usr/share/doc/cups/help/admin.html
file path=usr/share/doc/cups/help/api-admin.html
file path=usr/share/doc/cups/help/api-filter.html
file path=usr/share/doc/cups/help/api-ppd.html
file path=usr/share/doc/cups/help/cgi.html
file path=usr/share/doc/cups/help/cupspm.html
file path=usr/share/doc/cups/help/encryption.html
file path=usr/share/doc/cups/help/firewalls.html
file path=usr/share/doc/cups/help/glossary.html
file path=usr/share/doc/cups/help/kerberos.html
file path=usr/share/doc/cups/help/license.html
file path=usr/share/doc/cups/help/man-backend.html
file path=usr/share/doc/cups/help/man-cancel.html
file path=usr/share/doc/cups/help/man-classes.conf.html
file path=usr/share/doc/cups/help/man-client.conf.html
file path=usr/share/doc/cups/help/man-cups-config.html
file path=usr/share/doc/cups/help/man-cups-files.conf.html
file path=usr/share/doc/cups/help/man-cups-lpd.html
file path=usr/share/doc/cups/help/man-cups-snmp.html
file path=usr/share/doc/cups/help/man-cups.html
file path=usr/share/doc/cups/help/man-cupsaccept.html
file path=usr/share/doc/cups/help/man-cupsd-helper.html
file path=usr/share/doc/cups/help/man-cupsd-logs.html
file path=usr/share/doc/cups/help/man-cupsd.conf.html
file path=usr/share/doc/cups/help/man-cupsd.html
file path=usr/share/doc/cups/help/man-cupsenable.html
file path=usr/share/doc/cups/help/man-cupstestppd.html
file path=usr/share/doc/cups/help/man-filter.html
file path=usr/share/doc/cups/help/man-ippevepcl.html
file path=usr/share/doc/cups/help/man-ippeveprinter.html
file path=usr/share/doc/cups/help/man-ippfind.html
file path=usr/share/doc/cups/help/man-ipptool.html
file path=usr/share/doc/cups/help/man-ipptoolfile.html
file path=usr/share/doc/cups/help/man-lp.html
file path=usr/share/doc/cups/help/man-lpadmin.html
file path=usr/share/doc/cups/help/man-lpc.html
file path=usr/share/doc/cups/help/man-lpinfo.html
file path=usr/share/doc/cups/help/man-lpmove.html
file path=usr/share/doc/cups/help/man-lpoptions.html
file path=usr/share/doc/cups/help/man-lpq.html
file path=usr/share/doc/cups/help/man-lpr.html
file path=usr/share/doc/cups/help/man-lprm.html
file path=usr/share/doc/cups/help/man-lpstat.html
file path=usr/share/doc/cups/help/man-mime.convs.html
file path=usr/share/doc/cups/help/man-mime.types.html
file path=usr/share/doc/cups/help/man-notifier.html
file path=usr/share/doc/cups/help/man-ppdc.html
file path=usr/share/doc/cups/help/man-ppdhtml.html
file path=usr/share/doc/cups/help/man-ppdi.html
file path=usr/share/doc/cups/help/man-ppdmerge.html
file path=usr/share/doc/cups/help/man-ppdpo.html
file path=usr/share/doc/cups/help/man-printers.conf.html
file path=usr/share/doc/cups/help/man-subscriptions.conf.html
file path=usr/share/doc/cups/help/network.html
file path=usr/share/doc/cups/help/options.html
file path=usr/share/doc/cups/help/overview.html
file path=usr/share/doc/cups/help/policies.html
file path=usr/share/doc/cups/help/postscript-driver.html
file path=usr/share/doc/cups/help/ppd-compiler.html
file path=usr/share/doc/cups/help/raster-driver.html
file path=usr/share/doc/cups/help/ref-ppdcfile.html
file path=usr/share/doc/cups/help/security.html
file path=usr/share/doc/cups/help/sharing.html
file path=usr/share/doc/cups/help/spec-banner.html
file path=usr/share/doc/cups/help/spec-command.html
file path=usr/share/doc/cups/help/spec-design.html
file path=usr/share/doc/cups/help/spec-ipp.html
file path=usr/share/doc/cups/help/spec-ppd.html
file path=usr/share/doc/cups/help/spec-raster.html
file path=usr/share/doc/cups/help/spec-stp.html
file path=usr/share/doc/cups/help/translation.html
file path=usr/share/doc/cups/images/cups-block-diagram.png
file path=usr/share/doc/cups/images/cups-command-chain.png
file path=usr/share/doc/cups/images/cups-postscript-chain.png
file path=usr/share/doc/cups/images/cups-raster-chain.png
file path=usr/share/doc/cups/images/cups.png
file path=usr/share/doc/cups/images/raster-organization.png
file path=usr/share/doc/cups/images/raster.png
file path=usr/share/doc/cups/images/sample-image.png
file path=usr/share/doc/cups/images/smiley.jpg
file path=usr/share/doc/cups/images/wait.gif
file path=usr/share/doc/cups/index.html
file path=usr/share/doc/cups/ja/index.html
file path=usr/share/doc/cups/pt_BR/index.html
file path=usr/share/doc/cups/robots.txt
file path=usr/share/doc/cups/ru/index.html
file path=usr/share/icons/hicolor/128x128/apps/cups.png
file path=usr/share/icons/hicolor/16x16/apps/cups.png
file path=usr/share/icons/hicolor/32x32/apps/cups.png
file path=usr/share/icons/hicolor/64x64/apps/cups.png
file path=usr/share/locale/ca/cups_ca.po
file path=usr/share/locale/cs/cups_cs.po
file path=usr/share/locale/da/cups_da.po
file path=usr/share/locale/de/cups_de.po
file path=usr/share/locale/en/cups_en.po
file path=usr/share/locale/es/cups_es.po
file path=usr/share/locale/fr/cups_fr.po
file path=usr/share/locale/it/cups_it.po
file path=usr/share/locale/ja/cups_ja.po
file path=usr/share/locale/pt_BR/cups_pt_BR.po
file path=usr/share/locale/ru/cups_ru.po
file path=usr/share/locale/zh_CN/cups_zh_CN.po
file usr/share/man/man1/cancel.1 path=usr/share/man/man1/cupscancel.1
file path=usr/share/man/man1/cups-config.1
file path=usr/share/man/man1/cups.1
file path=usr/share/man/man1/cupstestppd.1
file path=usr/share/man/man1/ippeveprinter.1
file path=usr/share/man/man1/ippfind.1
file path=usr/share/man/man1/ipptool.1
file usr/share/man/man1/lp.1 path=usr/share/man/man1/cupslp.1
file usr/share/man/man1/lpoptions.1 path=usr/share/man/man1/cupslpoptions.1
file usr/share/man/man1/lpq.1 path=usr/share/man/man1/cupslpq.1
file usr/share/man/man1/lpr.1 path=usr/share/man/man1/cupslpr.1
file usr/share/man/man1/lprm.1 path=usr/share/man/man1/cupslprm.1
file usr/share/man/man1/lpstat.1 path=usr/share/man/man1/cupslpstat.1
file path=usr/share/man/man1/ppdc.1
file path=usr/share/man/man1/ppdhtml.1
file path=usr/share/man/man1/ppdi.1
file path=usr/share/man/man1/ppdmerge.1
file path=usr/share/man/man1/ppdpo.1
file path=usr/share/man/man5/classes.conf.5
file path=usr/share/man/man5/client.conf.5
file path=usr/share/man/man5/cups-files.conf.5
file path=usr/share/man/man5/cups-snmp.conf.5
file path=usr/share/man/man5/cupsd-logs.5
file path=usr/share/man/man5/cupsd.conf.5
file path=usr/share/man/man5/ipptoolfile.5
file path=usr/share/man/man5/mailto.conf.5
file path=usr/share/man/man5/mime.convs.5
file path=usr/share/man/man5/mime.types.5
file path=usr/share/man/man5/ppdcfile.5
file usr/share/man/man5/printers.conf.5 path=usr/share/man/man5/cupsprinters.conf.5
file path=usr/share/man/man5/subscriptions.conf.5
file path=usr/share/man/man7/backend.7
file path=usr/share/man/man7/filter.7
file path=usr/share/man/man7/ippevepcl.7
link path=usr/share/man/man7/ippeveps.7 target=ippevepcl.7
file path=usr/share/man/man7/notifier.7
link path=usr/share/man/man8/cups-deviced.8 target=cupsd-helper.8
link path=usr/share/man/man8/cups-driverd.8 target=cupsd-helper.8
link path=usr/share/man/man8/cups-exec.8 target=cupsd-helper.8
file path=usr/share/man/man8/cups-lpd.8
file path=usr/share/man/man8/cups-snmp.8
file path=usr/share/man/man8/cupsaccept.8
file path=usr/share/man/man8/cupsctl.8
file path=usr/share/man/man8/cupsd-helper.8
file path=usr/share/man/man8/cupsd.8
link path=usr/share/man/man8/cupsdisable.8 target=cupsenable.8
file path=usr/share/man/man8/cupsenable.8
file path=usr/share/man/man8/cupsfilter.8
link path=usr/share/man/man8/cupsreject.8 target=cupsaccept.8
file usr/share/man/man8/lpadmin.8 path=usr/share/man/man8/cupslpadmin.8
file usr/share/man/man8/lpc.8 path=usr/share/man/man8/cupslpc.8
file usr/share/man/man8/lpinfo.8 path=usr/share/man/man8/cupslpinfo.8
file usr/share/man/man8/lpmove.8 path=usr/share/man/man8/cupslpmove.8