[ Index ] |
PHP Cross Reference of Unnamed Project |
[Summary view] [Print] [Text view]
1 //BEGIN CE prefs 2 3 // Les modifications apportées à ce fichier ( \\se3\install\packages\firefox\firefox-profile.js ) 4 // seront appliquées aux clients firefox dès leur prochain démarrage 5 // 6 // Pour déterminer les noms de variables, tapez dans la barre d'adresse de firefox : 7 // about:config 8 9 // choisir lockPref() pour fixer la valeur d'une variable en interdisant à l'utilisateur de la changer 10 // choisir defaultPref() pour définir une valeur par défaut d'une variable 11 // choisir pref() pour écraser une valeur d'une variable que l'utilisateur a défini 12 13 // Les variables suivantes sont prédéfinies : 14 // computername : nom du poste sur lequel s'exécute firefox 15 // parcs : Array des noms de Parcs auxquels la machine appartient 16 // username : nom de login de l'utilisateur en cours 17 // userGroups : Array contenant les noms des groupes auxquels l'utilisateur appartient (groupOfNames ou posixGroup) 18 // userdomain : Nom de domaine utilisé au login de l'utilisateur ( domaine SambaEdu ou Nom du poste si login local) 19 20 // Après modification, faites une copie de sauvegarde de ce fichier 21 // car il sera écrasé si vous faites une mise à jour de l'application firefox.xml 22 23 try { 24 25 // Pour des infos détaillées sur les paramètres de firefox, voir : 26 // http://kb.mozillazine.org/About:config_entries 27 28 // valeur fixe de 4 Mo pour le cache de Firefox 29 defaultPref("browser.cache.memory.capacity", 4000); 30 // Limitation de la memoire utilisee lorsque firefox est minimisé 31 defaultPref("config.trim_on_minimize", true); 32 // Libérer la charge mémoire en vidant le cache instentanément. 33 defaultPref("browser.turbo.enabled", true); 34 // Desactivation du cache de Firefox pour pages suivantes et précédentes 35 defaultPref("browser.sessionhistory.max_total_viewers", 0); 36 // Augmentation de la vitesse de chargement des pages 37 defaultPref("network.http.pipelining", true); 38 defaultPref(" network.http.pipelining.maxrequests", 9); 39 defaultPref("network.http.proxy.pipelining", true); 40 defaultPref("nglayout.initialpaint.delay", 0); 41 // optimiser le rendu et le chargement des pages 42 defaultPref("content.notify.backoffcount", 5); 43 defaultPref("ui.submenuDelay", 0); 44 defaultPref("plugin.expose_full_path", true); 45 46 // Disable Safe Browsing functionality pour eviter d'avoir un urlclassifier3.sqlite qui grossit 47 lockPref("browser.safebrowsing.enabled", false); 48 49 // Cache size 50 lockPref("browser.cache.disk.capacity", 0); 51 lockPref("browser.cache.disk.parent_directory", getenv("TMP")); 52 defaultPref("browser.downloadmanager.behavior", 1); 53 //defaultPref("browser.search.defaultengine", "engine://C%3A%5CProgram%20Files%5Cmozilla.org%5CMozilla%5Csearchplugins%5Cgoogle.src"); 54 defaultPref("dom.disable_open_during_load", true); 55 defaultPref("dom.disable_window_flip", true); 56 defaultPref("dom.disable_window_move_resize", true); 57 defaultPref("dom.disable_window_open_feature.status", true); 58 defaultPref("dom.disable_window_status_change", true); 59 defaultPref("intl.accept_languages", "fr-fr, en-us, en"); 60 // 0 : All cookies are allowed. (Default) 61 // 1 : Only cookies from the originating server are allowed. 62 // 2 : No cookies are allowed. 63 // 3 : Cookies are allowed based on the cookie P3P policy (Mozilla Suite only). 64 defaultPref("network.cookie.cookieBehavior", 1); 65 // 8 character string. The positions of the characters determine the type of sites and the character itself determines the behaviour. (Default: ffffaaaa) 66 // f :flag the cookie (cookie will display an icon in the cookie manager) 67 // d :downgrade the cookie to a session cookie (the cookie will be deleted when the browser closes) 68 // a :accept the cookie 69 // r :reject the cookie 70 // 1. First party cookies from sites with no privacy policy 71 // 2. Third party cookies from sites with no privacy policy 72 // 3. First party cookies from sites that collect personal information without permission 73 // 4. Third party cookies from sites that collect personal information without permission 74 // 5. First party cookies from sites that collect personal information only with permission 75 // 6. Third party cookies from sites that collect personal information only with permission 76 // 7. First party cookies from sites that don't collect personal information 77 // 8. Third party cookies from sites that don't collect personal information 78 //defaultPref("network.cookie.p3p", "ffffaaaa"); 79 defaultPref("network.cookie.lifetime.enabled", true); 80 defaultPref("network.ftp.anonymous_password", "user@malherbe.lyc14.ac-caen.fr"); 81 defaultPref("security.password_lifetime", 0); 82 defaultPref("update_notifications.enabled", false); 83 // Interdire l'installation d'extensions 84 //defaultPref("xpinstall.enabled", false); 85 86 // Désactivation des de mises à jour 87 defaultPref("app.update.enabled", false); 88 //defaultPref("app.update.lastUpdateTime.addon-background-update-timer", 1181895335); 89 //defaultPref("app.update.lastUpdateTime.background-update-timer", 1181895335); 90 //defaultPref("app.update.lastUpdateTime.blocklist-background-update-timer", 1181895335); 91 //defaultPref("app.update.lastUpdateTime.search-engine-update-timer", 1181895335); 92 // Pas cache disque 93 defaultPref("browser.cache.disk.enable", false); 94 defaultPref("browser.cache.memory.enable", true); 95 defaultPref("browser.download.manager.retention", 0); 96 // Pas de remplissage auto des zones de saise 97 defaultPref("browser.formfill.enable", false); 98 // Pas d'historique 99 defaultPref("browser.history_expire_days", 0); 100 defaultPref("browser.history_expire_days.mirror", 1); 101 // Désactivation des recherches de mises à jour 102 defaultPref("browser.search.update", false); 103 // Pas de contrôle Firefox = navigateur par défaut 104 defaultPref("browser.shell.checkDefaultBrowser", false); 105 defaultPref("browser.tabs.loadInBackground", false); 106 //defaultPref("extensions.lastAppVersion", "2.0.0.7"); 107 //defaultPref("extensions.update.enabled", true); 108 defaultPref("intl.charsetmenu.browser.cache", "ISO-8859-1, UTF-8"); 109 defaultPref("network.cookie.lifetimePolicy", 2); 110 defaultPref("network.cookie.prefsMigrated", false); 111 defaultPref("pref.browser.homepage.disable_button.current_page", false); 112 defaultPref("privacy.item.cookies", true); 113 // Pas d'affichage des mots de passe 114 defaultPref("privacy.item.passwords", false); 115 defaultPref("security.warn_entering_secure", false); 116 defaultPref("security.warn_entering_secure.show_once", false); 117 defaultPref("security.warn_entering_weak", false); 118 defaultPref("security.warn_entering_weak.show_once", false); 119 defaultPref("security.warn_leaving_secure", false); 120 defaultPref("security.warn_leaving_secure.show_once", false); 121 defaultPref("security.warn_submit_insecure", false); 122 defaultPref("security.warn_submit_insecure.show_once", false); 123 lockPref("signon.rememberSignons", false); 124 125 // Page de démarrage à définir ici 126 //pref("browser.startup.homepage", "http://www.google.fr/ig?hl=fr"); 127 128 // Page to open on browser startup 129 // 0: Blank 130 // 1 (default): Home (a.k.a. browser.startup.homepage) 131 // 2: Last (probably does not work) 132 defaultPref("browser.startup.page", 1); 133 134 // Page de bienvenue (au 1er démarrage) 135 if (getenv("USERNAME") == 'admin') defaultPref("startup.homepage_welcome_url", "http://www.etab.ac-caen.fr/serveurmalherbe/se3/wpkg/bienvenueFirefox.html"); 136 137 // Configuration Proxy 138 // Connexion directe à internet 139 defaultPref("network.proxy.type", 0); 140 141 // Configuration avec proxy.pac 142 // lockPref("network.proxy.type", 2); 143 // lockPref("network.proxy.autoconfig_url", "http://lcs.malherbe.lyc14.ac-caen.fr/proxy.pac"); 144 145 // Détection automatique des paramètres de proxy pour ce réseau 146 // lockPref("network.proxy.type", 4); 147 148 // Configuration manuelle du proxy 149 // lockPref("network.proxy.type", 1); 150 151 // defaultPref("network.proxy.backup.ftp", ""); 152 // defaultPref("network.proxy.backup.ftp_port", 0); 153 // defaultPref("network.proxy.backup.gopher", ""); 154 // defaultPref("network.proxy.backup.gopher_port", 0); 155 // defaultPref("network.proxy.backup.socks", ""); 156 // defaultPref("network.proxy.backup.socks_port", 0); 157 // defaultPref("network.proxy.backup.ssl", ""); 158 // defaultPref("network.proxy.backup.ssl_port", 0); 159 // defaultPref("network.proxy.ftp", "add.ip.du.proxy"); 160 // defaultPref("network.proxy.ftp_port", 8080); 161 // defaultPref("network.proxy.gopher", "add.ip.du.proxy"); 162 // defaultPref("network.proxy.gopher_port", 8080); 163 // defaultPref("network.proxy.http", "add.ip.du.proxy"); 164 // defaultPref("network.proxy.http_port", 8080); 165 // defaultPref("network.proxy.share_proxy_settings", true); 166 // defaultPref("network.proxy.socks", "add.ip.du.proxy"); 167 // defaultPref("network.proxy.socks_port", 8080); 168 // defaultPref("network.proxy.ssl", "add.ip.du.proxy"); 169 // defaultPref("network.proxy.ssl_port", 8080); 170 171 172 } catch(e) { 173 displayError("lockedPref", e); 174 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Tue Mar 17 22:47:18 2015 | Cross-referenced by PHPXref 0.7.1 |