gitextract_5_mh9h8m/ ├── .gitattributes ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ └── differential-shellcheck.yml ├── .gitignore ├── .pylintrc ├── ABOUT-NLS ├── AUTHORS ├── COPYING ├── ChangeLog-OLD ├── HIG.py ├── Makefile.am ├── NEWS ├── OpenPrintingRequest.py ├── PhysicalDevice.py ├── README.md ├── SearchCriterion.py ├── ToolbarSearchEntry.py ├── aclocal.m4 ├── applet.py ├── asyncconn.py ├── asyncipp.py ├── asyncpk1.py ├── authconn.py ├── bootstrap ├── check-device-ids.py ├── config.guess ├── config.py.in ├── config.rpath ├── config.sub ├── configure.ac ├── cupshelpers/ │ ├── __init__.py │ ├── config.py.in │ ├── cupshelpers.py │ ├── installdriver.py │ ├── openprinting.py │ ├── ppds.py │ └── xmldriverprefs.py ├── cupspk.py ├── dbus/ │ ├── com.redhat.NewPrinterNotification.conf │ ├── com.redhat.PrinterDriversInstaller.conf │ ├── org.fedoraproject.Config.Printing.service.in │ ├── org.fedoraproject.Config.Printing.xml │ └── scp-dbus-service.in ├── debug.py ├── dnssdresolve.py ├── errordialogs.py ├── firewallsettings.py ├── gitlog-to-changelog ├── gtkinklevel.py ├── gui.py ├── install-printerdriver.in ├── install-printerdriver.py ├── install-sh ├── installpackage.py ├── jobviewer.py ├── killtimer.py ├── man/ │ └── system-config-printer.xml ├── mkinstalldirs ├── monitor.py ├── newprinter.py ├── options.py ├── optionwidgets.py ├── po/ │ ├── ChangeLog │ ├── LINGUAS │ ├── Makefile.in.in │ ├── Makevars │ ├── POTFILES.in │ ├── Rules-quot │ ├── ar.po │ ├── as.po │ ├── ast.po │ ├── bg.po │ ├── bn.po │ ├── bn_IN.po │ ├── boldquot.sed │ ├── br.po │ ├── bs.po │ ├── ca.po │ ├── cs.po │ ├── cy.po │ ├── da.po │ ├── de.po │ ├── el.po │ ├── en@boldquot.header │ ├── en@quot.header │ ├── en_GB.po │ ├── es.po │ ├── et.po │ ├── fa.po │ ├── fi.po │ ├── fr.po │ ├── fur.po │ ├── gu.po │ ├── he.po │ ├── hi.po │ ├── hr.po │ ├── hu.po │ ├── id.po │ ├── insert-header.sin │ ├── is.po │ ├── it.po │ ├── ja.po │ ├── ka.po │ ├── kab.po │ ├── kk.po │ ├── kn.po │ ├── ko.po │ ├── lo.po │ ├── lt.po │ ├── lv.po │ ├── mai.po │ ├── ml.po │ ├── mr.po │ ├── ms.po │ ├── nb.po │ ├── nds.po │ ├── nl.po │ ├── nn.po │ ├── oc.po │ ├── or.po │ ├── pa.po │ ├── pl.po │ ├── pt.po │ ├── pt_BR.po │ ├── quot.sed │ ├── remove-potcdate.sin │ ├── ro.po │ ├── ru.po │ ├── si.po │ ├── sk.po │ ├── sl.po │ ├── sr.po │ ├── sr@latin.po │ ├── sv.po │ ├── system-config-printer.pot │ ├── ta.po │ ├── te.po │ ├── th.po │ ├── tr.po │ ├── uk.po │ ├── vi.po │ ├── zh_CN.po │ ├── zh_Hans.po │ └── zh_TW.po ├── ppdcache.py ├── ppdippstr.py ├── ppdsloader.py ├── print-applet.desktop.in ├── printerproperties.py ├── probe_printer.py ├── profile-ppds.py ├── pyproject.toml ├── pysmb.py ├── scp-dbus-service.py ├── serversettings.py ├── setup.py ├── smburi.py ├── statereason.py ├── system-config-printer-applet.in ├── system-config-printer.appdata.xml.in ├── system-config-printer.desktop.in ├── system-config-printer.in ├── system-config-printer.py ├── test/ │ └── test-cups-driver.py ├── test_PhysicalDevice.py ├── test_ppds.py ├── timedops.py ├── troubleshoot/ │ ├── CheckLocalServerPublishing.py │ ├── CheckNetworkServerSanity.py │ ├── CheckPPDSanity.py │ ├── CheckPrinterSanity.py │ ├── CheckSELinux.py │ ├── CheckUSBPermissions.py │ ├── ChooseNetworkPrinter.py │ ├── ChoosePrinter.py │ ├── DeviceListed.py │ ├── ErrorLogCheckpoint.py │ ├── ErrorLogFetch.py │ ├── ErrorLogParse.py │ ├── LocalOrRemote.py │ ├── Locale.py │ ├── NetworkCUPSPrinterShared.py │ ├── PrintTestPage.py │ ├── PrinterStateReasons.py │ ├── QueueNotEnabled.py │ ├── QueueRejectingJobs.py │ ├── RemoteAddress.py │ ├── SchedulerNotRunning.py │ ├── ServerFirewalled.py │ ├── Shrug.py │ ├── VerifyPackages.py │ ├── Welcome.py │ ├── __init__.py │ └── base.py ├── udev/ │ ├── .gitignore │ ├── 70-printers.rules │ ├── configure-printer@.service.in │ ├── udev-add-printer │ └── udev-configure-printer.c ├── ui/ │ ├── AboutDialog.ui │ ├── ConnectDialog.ui │ ├── ConnectingDialog.ui │ ├── InstallDialog.ui │ ├── JobsWindow.ui │ ├── NewPrinterName.ui │ ├── NewPrinterWindow.ui │ ├── PrinterPropertiesDialog.ui │ ├── PrintersWindow.ui │ ├── SMBBrowseDialog.ui │ ├── ServerSettingsDialog.ui │ ├── WaitWindow.ui │ ├── remove-gtkalignment.xsl │ └── statusicon_popupmenu.ui ├── userdefault.py └── xml/ ├── preferreddrivers.rng ├── preferreddrivers.xml └── validate.py