source: trunk/debathena/debathena/kiosk/prefs.js @ 24578

Revision 24578, 854 bytes checked in by rbasch, 14 years ago (diff)
In kiosk: * Add session management support via the D-Bus interface to the gdm launcher, so it terminates upon the end of the gdm session. (Trac: #548) * Make r-kiosk work in Firefox 3.6, by supplying a chrome.manifest and disabling the version-specific compatibility check. (Trac: #571)
Line 
1// Enable the navigation bar, and do not auto-hide it.
2user_pref("rkiosk.navbar", true);
3user_pref("browser.fullscreen.autohide", false);
4
5// Do not invoke external applications.
6user_pref("network.protocol-handler.external.mailto", false);
7user_pref("network.protocol-handler.external.news", false);
8user_pref("network.protocol-handler.external.nntp", false);
9user_pref("network.protocol-handler.external-default", false);
10
11// Disable the compatibility check for the r-kiosk extension
12// (the per-version preference is used in firefox 3.6+).
13user_pref("extensions.checkCompatibility", false);
14user_pref("extensions.checkCompatibility.3.6", false);
15
16// Set the home page.
17user_pref("browser.startup.homepage", "file:///usr/share/debathena-kiosk/index.html");
18user_pref("startup.homepage_override_url", "");
19user_pref("startup.homepage_welcome_url", "");
Note: See TracBrowser for help on using the repository browser.