[debian-edu-commits] r80125 - in branches/wheezy/debian-edu-config: debian share/iceweasel/defaults/preferences
pere at alioth.debian.org
pere at alioth.debian.org
Sat May 18 08:11:48 UTC 2013
Author: pere
Date: 2013-05-18 08:11:48 +0000 (Sat, 18 May 2013)
New Revision: 80125
Modified:
branches/wheezy/debian-edu-config/debian/changelog
branches/wheezy/debian-edu-config/share/iceweasel/defaults/preferences/debian-edu.js
Log:
* Adjust Iceweasel setup in debian-edu.js based on
<URL: http://bootpolish.net/home_ltsp_ltspiceweaselhacks >:
- Disable location-bar suggestion feature that is sludgy on
thin-clients.
- Tell Iceweasel to not look for upgrades.
- Allow it to look for new extentions.
- Use LANG environment variable to choose locale.
- Disable default browser checking.
Modified: branches/wheezy/debian-edu-config/debian/changelog
===================================================================
--- branches/wheezy/debian-edu-config/debian/changelog 2013-05-18 07:48:12 UTC (rev 80124)
+++ branches/wheezy/debian-edu-config/debian/changelog 2013-05-18 08:11:48 UTC (rev 80125)
@@ -4,6 +4,14 @@
* Make debian-edu-bless more robust and make it possible to adjust
parameters using environment variables. Document in a comment at
the top how to do this.
+ * Adjust Iceweasel setup in debian-edu.js based on
+ <URL: http://bootpolish.net/home_ltsp_ltspiceweaselhacks >:
+ - Disable location-bar suggestion feature that is sludgy on
+ thin-clients.
+ - Tell Iceweasel to not look for upgrades.
+ - Allow it to look for new extentions.
+ - Use LANG environment variable to choose locale.
+ - Disable default browser checking.
-- Petter Reinholdtsen <pere at debian.org> Sat, 18 May 2013 09:41:59 +0200
Modified: branches/wheezy/debian-edu-config/share/iceweasel/defaults/preferences/debian-edu.js
===================================================================
--- branches/wheezy/debian-edu-config/share/iceweasel/defaults/preferences/debian-edu.js 2013-05-18 07:48:12 UTC (rev 80124)
+++ branches/wheezy/debian-edu-config/share/iceweasel/defaults/preferences/debian-edu.js 2013-05-18 08:11:48 UTC (rev 80125)
@@ -29,3 +29,19 @@
// https://bugs.edge.launchpad.net/ubuntu/+source/firefox-3.0/+bug/229745
pref("browser.safebrowsing.malware.enabled", false);
pref("browser.safebrowsing.enabled", false);
+
+// Disable location-bar suggestion feature that is sludgy on
+// thin-clients.
+pref("browser.urlbar.maxRichResults", 0);
+
+// Tell Iceweasel to not look for upgrades. Use apt to upgrade.
+pref("app.update.enabled", false);
+
+// But it is allowed to look for new extentions.
+pref("extensions.update.enabled", true);
+
+// Use LANG environment variable to choose locale.
+pref("intl.locale.matchOS", true);
+
+// Disable default browser checking.
+pref("browser.shell.checkDefaultBrowser", false);
More information about the debian-edu-commits
mailing list