diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2006-06-19 02:52:03 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2006-06-19 02:52:03 +0800 |
commit | c6573cb04bdc216e7e5ea3657cb1186eaf0f1095 (patch) | |
tree | 769cc33a1564a50d1414cb6b6b6f7306c1635840 /data | |
parent | 0db1af2c76d4cae33992f82a1736f6ed743b7dc1 (diff) | |
download | gsoc2013-epiphany-c6573cb04bdc216e7e5ea3657cb1186eaf0f1095.tar.gz gsoc2013-epiphany-c6573cb04bdc216e7e5ea3657cb1186eaf0f1095.tar.zst gsoc2013-epiphany-c6573cb04bdc216e7e5ea3657cb1186eaf0f1095.zip |
A embed/mozilla/GeckoPrintService.cpp: A
2006-06-18 Christian Persch <chpe@cvs.gnome.org>
* configure.ac:
* data/default-prefs-common.js:
* embed/Makefile.am:
* embed/ephy-embed-shell.c: (ephy_embed_shell_dispose),
(ephy_embed_shell_set_page_setup),
(ephy_embed_shell_get_page_setup),
(ephy_embed_shell_set_print_settings),
(ephy_embed_shell_get_print_settings):
* embed/ephy-embed-shell.h:
* embed/mozilla/EphyBrowser.cpp:
* embed/mozilla/EphyBrowser.h:
* embed/mozilla/EphyUtils.cpp:
* embed/mozilla/EphyUtils.h:
* embed/mozilla/Makefile.am:
A embed/mozilla/GeckoPrintService.cpp:
A embed/mozilla/GeckoPrintService.h:
A embed/mozilla/GeckoPrintSession.cpp:
A embed/mozilla/GeckoPrintSession.h:
* embed/mozilla/MozRegisterComponents.cpp:
R embed/mozilla/PrintingPromptService.cpp:
R embed/mozilla/PrintingPromptService.h:
* embed/mozilla/mozilla-embed-single.cpp:
R embed/print-dialog.c:
R embed/print-dialog.h:
* src/ephy-shell.c: (ephy_shell_dispose),
(ephy_shell_get_prefs_dialog):
* src/ephy-shell.h:
* src/epiphany.defs:
* src/window-commands.c: (page_setup_done_cb),
(window_cmd_file_print_setup):
Drop libgnomeprint[ui] and use gtk printing.
Diffstat (limited to 'data')
-rw-r--r-- | data/default-prefs-common.js | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/data/default-prefs-common.js b/data/default-prefs-common.js index 874fd2993..824b3f11b 100644 --- a/data/default-prefs-common.js +++ b/data/default-prefs-common.js @@ -102,8 +102,9 @@ pref("browser.xul.error_pages.enabled", true); // unset weird xulrunner default UA string pref("general.useragent.extra.simple", ""); -// disable pings +// we don't want ping(uin)s pref("browser.send_pings", false); +pref("browser.send_pings.require_same_host", true); // disable blink tags pref("browser.blink_allowed", false); @@ -111,7 +112,18 @@ pref("browser.blink_allowed", false); // enable spatial navigation (only works if the extension is built with gecko) pref("snav.enabled", true); +// don't leak UI language +// pref("general.useragent.locale", "en") + // spellcheck // pref("extensions.spellcheck.inline.max-misspellings", -1); // 0: disabled, 1: only textareas, 2: check textareas and single-line input fields pref("layout.spellcheckDefault", 1); + +// print settings +pref("print.use_global_printsettings", false); +pref("print.save_print_settings", false); +pref("print.show_print_progress", true); +pref("print.printer_list", ""); +pref("postscript.enabled", true); +pref("postscript.cups.enabled", false); |