From f6299d9fad21c065d1e4c0f1093770835fb73adf Mon Sep 17 00:00:00 2001 From: Burt P Date: Wed, 24 Oct 2018 00:41:16 -0500 Subject: params: html_ok -> markup_ok The html_ok param added in 970174b0897d40b804808632784ffa1544d9da93 is misleading. It turns out that it is not HTML, but Pango Markup that is used by GTK, and a subset of that happens to also work as HTML4 for the HTML report generation. This change renames html_ok to markup_ok in ProgramParameters and adds a comment explaining what common set of tags may be used. Also, if report generation happens as a fallback after GUI initialization failed, then also disable markup, unless report will be generated as HTML. Pango markup info at: https://developer.gnome.org/pango/stable/PangoMarkupFormat.html Signed-off-by: Burt P --- modules/devices/printers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/devices/printers.c') diff --git a/modules/devices/printers.c b/modules/devices/printers.c index df02a6a2..15b720ba 100644 --- a/modules/devices/printers.c +++ b/modules/devices/printers.c @@ -216,7 +216,7 @@ scan_printers_do(void) printer_list, prn_id, dests[i].name, - dests[i].is_default ? ((params.html_ok) ? "Default" : "(Default)") : ""); + dests[i].is_default ? ((params.markup_ok) ? "Default" : "(Default)") : ""); printer_icons = h_strdup_cprintf("\nIcon$%s$%s=printer.png", printer_icons, prn_id, -- cgit v1.2.3