Skip to content

Commit acb474d

Browse files
author
Your Name
committed
Improve deprecation warnings with IPP Everywhere guidance (#1357)
1 parent 89c5134 commit acb474d

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

scheduler/printers.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1367,10 +1367,10 @@ cupsdLoadAllPrinters(void)
13671367
}
13681368

13691369
if (found_raw)
1370-
cupsdLogMessage(CUPSD_LOG_WARN, "Raw queues are deprecated and will stop working in a future version of CUPS. See https://github.com/OpenPrinting/cups/issues/103");
1370+
cupsdLogMessage(CUPSD_LOG_WARN, "Raw queues are deprecated and will stop working in a future version of CUPS. Use IPP Everywhere drivers (\"-m everywhere\") or Printer Applications instead. See https://github.com/OpenPrinting/cups/issues/103");
13711371

13721372
if (found_driver)
1373-
cupsdLogMessage(CUPSD_LOG_WARN, "Printer drivers are deprecated and will stop working in a future version of CUPS. See https://github.com/OpenPrinting/cups/issues/103");
1373+
cupsdLogMessage(CUPSD_LOG_WARN, "Printer drivers are deprecated and will stop working in a future version of CUPS. Use IPP Everywhere drivers (\"-m everywhere\") or Printer Applications instead. See https://github.com/OpenPrinting/cups/issues/103");
13741374

13751375
cupsFileClose(fp);
13761376
}

systemv/lpadmin.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -611,7 +611,7 @@ main(int argc, /* I - Number of command-line arguments */
611611
#ifdef __APPLE__
612612
_cupsLangPuts(stderr, _("lpadmin: Raw queues are no longer supported on macOS."));
613613
#else
614-
_cupsLangPuts(stderr, _("lpadmin: Raw queues are deprecated and will stop working in a future version of CUPS."));
614+
_cupsLangPuts(stderr, _("lpadmin: Raw queues are deprecated and will stop working in a future version of CUPS. Use IPP Everywhere drivers (\"-m everywhere\") or Printer Applications instead."));
615615
#endif /* __APPLE__ */
616616

617617
if (device_uri && (!strncmp(device_uri, "ipp://", 6) || !strncmp(device_uri, "ipps://", 7)) && strstr(device_uri, "/printers/"))
@@ -623,7 +623,7 @@ main(int argc, /* I - Number of command-line arguments */
623623
}
624624
else if ((ppd_name && strcmp(ppd_name, "everywhere") && strncmp(ppd_name, "driverless:", 11)) || file)
625625
{
626-
_cupsLangPuts(stderr, _("lpadmin: Printer drivers are deprecated and will stop working in a future version of CUPS."));
626+
_cupsLangPuts(stderr, _("lpadmin: Printer drivers are deprecated and will stop working in a future version of CUPS. Use IPP Everywhere drivers (\"-m everywhere\") or Printer Applications instead."));
627627
}
628628

629629
if (num_options || file)

templates/printer-added.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
successfully.
55

66
<blockquote>
7-
<b>Note:</b> Printer drivers and raw queues are deprecated and will stop working in a future version of CUPS.
7+
<b>Note:</b> Printer drivers and raw queues are deprecated and will stop working in a future version of CUPS. Use IPP Everywhere drivers (select "everywhere" as the model) or Printer Applications instead. See <a href="https://github.com/OpenPrinting/cups/issues/103">issue #103</a> for more information.
88
</blockquote>
99

1010
<FORM ACTION="admin/" METHOD="POST">

0 commit comments

Comments
 (0)