home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2006 March / maximum-cd-2006-03.iso / Software / Apps / firefox_setup_1.5.exe / browser.xpi / bin / defaults / pref / firefox.js < prev    next >
Encoding:
Text File  |  2005-11-11  |  20.1 KB  |  393 lines

  1. /* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2.  
  3. /* ***** BEGIN LICENSE BLOCK *****
  4.  
  5.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  6.  
  7.  *
  8.  
  9.  * The contents of this file are subject to the Mozilla Public License Version
  10.  
  11.  * 1.1 (the "License"); you may not use this file except in compliance with
  12.  
  13.  * the License. You may obtain a copy of the License at
  14.  
  15.  * http://www.mozilla.org/MPL/
  16.  
  17.  *
  18.  
  19.  * Software distributed under the License is distributed on an "AS IS" basis,
  20.  
  21.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  22.  
  23.  * for the specific language governing rights and limitations under the
  24.  
  25.  * License.
  26.  
  27.  *
  28.  
  29.  * The Original Code is mozilla.org code.
  30.  
  31.  *
  32.  
  33.  * The Initial Developer of the Original Code is 
  34.  
  35.  * Netscape Communications Corporation.
  36.  
  37.  * Portions created by the Initial Developer are Copyright (C) 1998
  38.  
  39.  * the Initial Developer. All Rights Reserved.
  40.  
  41.  *
  42.  
  43.  * Contributor(s):
  44.  
  45.  *
  46.  
  47.  * Alternatively, the contents of this file may be used under the terms of
  48.  
  49.  * either the GNU General Public License Version 2 or later (the "GPL"), or 
  50.  
  51.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  52.  
  53.  * in which case the provisions of the GPL or the LGPL are applicable instead
  54.  
  55.  * of those above. If you wish to allow use of your version of this file only
  56.  
  57.  * under the terms of either the GPL or the LGPL, and not to allow others to
  58.  
  59.  * use your version of this file under the terms of the MPL, indicate your
  60.  
  61.  * decision by deleting the provisions above and replace them with the notice
  62.  
  63.  * and other provisions required by the GPL or the LGPL. If you do not delete
  64.  
  65.  * the provisions above, a recipient may use your version of this file under
  66.  
  67.  * the terms of any one of the MPL, the GPL or the LGPL.
  68.  
  69.  *
  70.  
  71.  * ***** END LICENSE BLOCK ***** */
  72.  
  73.  
  74.  
  75. // XXX Toolkit-specific preferences should be moved into toolkit.js
  76.  
  77.  
  78.  
  79. //@line 41 "/cygdrive/c/builds/tinderbox/Fx-Mozilla1.8/WINNT_5.2_Depend/mozilla/browser/app/profile/firefox.js"
  80.  
  81.  
  82.  
  83. //@line 44 "/cygdrive/c/builds/tinderbox/Fx-Mozilla1.8/WINNT_5.2_Depend/mozilla/browser/app/profile/firefox.js"
  84.  
  85.  
  86.  
  87. //@line 50 "/cygdrive/c/builds/tinderbox/Fx-Mozilla1.8/WINNT_5.2_Depend/mozilla/browser/app/profile/firefox.js"
  88.  
  89.  
  90.  
  91. pref("startup.homepage_override_url","chrome://browser-region/locale/region.properties");
  92.  
  93. pref("general.startup.browser", true);
  94.  
  95.  
  96.  
  97. pref("browser.chromeURL","chrome://browser/content/");
  98.  
  99. pref("browser.hiddenWindowChromeURL", "chrome://browser/content/hiddenWindow.xul");
  100.  
  101. pref("xpinstall.dialog.confirm", "chrome://mozapps/content/xpinstall/xpinstallConfirm.xul");
  102.  
  103. pref("xpinstall.dialog.progress.skin", "chrome://mozapps/content/extensions/extensions.xul?type=themes");
  104.  
  105. pref("xpinstall.dialog.progress.chrome", "chrome://mozapps/content/extensions/extensions.xul?type=extensions");
  106.  
  107. pref("xpinstall.dialog.progress.type.skin", "Extension:Manager-themes");
  108.  
  109. pref("xpinstall.dialog.progress.type.chrome", "Extension:Manager-extensions");
  110.  
  111.  
  112.  
  113. pref("extensions.getMoreExtensionsURL", "chrome://mozapps/locale/extensions/extensions.properties");
  114.  
  115. pref("extensions.getMoreThemesURL", "chrome://mozapps/locale/extensions/extensions.properties");
  116.  
  117. // Developers can set this to |true| if they are constantly changing files in their 
  118.  
  119. // extensions directory so that the extension system does not constantly think that
  120.  
  121. // their extensions are being updated and thus reregistered every time the app is
  122.  
  123. // started.
  124.  
  125. pref("extensions.ignoreMTimeChanges", false);
  126.  
  127. // Enables some extra Extension System Logging (can reduce performance)
  128.  
  129. pref("extensions.logging.enabled", false);
  130.  
  131.  
  132.  
  133. // App-specific update preferences
  134.  
  135.  
  136.  
  137. // Whether or not app updates are enabled
  138.  
  139. pref("app.update.enabled", true);
  140.  
  141.  
  142.  
  143. // This preference turns on app.update.mode and allows automatic download and
  144.  
  145. // install to take place. We use a separate boolean toggle for this to make
  146.  
  147. // the UI easier to construct.
  148.  
  149. pref("app.update.auto", true);
  150.  
  151.  
  152.  
  153. // Defines how the Application Update Service notifies the user about updates:
  154.  
  155. //
  156.  
  157. // AUM Set to:        Minor Releases:     Major Releases:
  158.  
  159. // 0                  download no prompt  download no prompt
  160.  
  161. // 1                  download no prompt  download no prompt if no incompatibilities
  162.  
  163. // 2                  download no prompt  prompt
  164.  
  165. //
  166.  
  167. // See chart in nsUpdateService.js.in for more details
  168.  
  169. //
  170.  
  171. pref("app.update.mode", 1);
  172.  
  173.  
  174.  
  175. // If set to true, the Update Service will present no UI for any event.
  176.  
  177. pref("app.update.silent", false);
  178.  
  179.  
  180.  
  181. // Update service URL:
  182.  
  183. pref("app.update.url", "https://aus2.mozilla.org/update/1/%PRODUCT%/%VERSION%/%BUILD_ID%/%BUILD_TARGET%/%LOCALE%/%CHANNEL%/update.xml");
  184.  
  185. // URL user can browse to manually if for some reason all update installation
  186.  
  187. // attempts fail.  TODO: Change this URL
  188.  
  189. pref("app.update.url.manual", "http://www.mozilla.org/products/firefox/");
  190.  
  191. // A default value for the "More information about this update" link
  192.  
  193. // supplied in the "An update is available" page of the update wizard. 
  194.  
  195. pref("app.update.url.details", "chrome://browser-region/locale/region.properties");
  196.  
  197.  
  198.  
  199. // User-settable override to app.update.url for testing purposes.
  200.  
  201. //pref("app.update.url.override", "");
  202.  
  203.  
  204.  
  205. // Interval: Time between checks for a new version (in seconds)
  206.  
  207. //           default=1 day
  208.  
  209. pref("app.update.interval", 86400);
  210.  
  211. // Interval: Time before prompting the user to download a new version that 
  212.  
  213. //           is available (in seconds) default=1 day
  214.  
  215. pref("app.update.nagTimer.download", 86400);
  216.  
  217. // Interval: Time before prompting the user to restart to install the latest
  218.  
  219. //           download (in seconds) default=30 minutes
  220.  
  221. pref("app.update.nagTimer.restart", 1800);
  222.  
  223. // Interval: When all registered timers should be checked (in milliseconds)
  224.  
  225. //           default=5 seconds
  226.  
  227. pref("app.update.timer", 600000);
  228.  
  229.  
  230.  
  231. // Whether or not we show a dialog box informing the user that the update was
  232.  
  233. // successfully applied. This is off in Firefox by default since we show a 
  234.  
  235. // upgrade start page instead! Other apps may wish to show this UI, and supply
  236.  
  237. // a whatsNewURL field in their brand.properties that contains a link to a page
  238.  
  239. // which tells users what's new in this new update.
  240.  
  241. pref("app.update.showInstalledUI", false);
  242.  
  243.  
  244.  
  245. // 0 = suppress prompting for incompatibilities if there are updates available
  246.  
  247. //     to newer versions of installed addons that resolve them.
  248.  
  249. // 1 = suppress prompting for incompatibilities only if there are VersionInfo
  250.  
  251. //     updates available to installed addons that resolve them, not newer
  252.  
  253. //     versions.
  254.  
  255. pref("app.update.incompatible.mode", 0);
  256.  
  257.  
  258.  
  259. // Symmetric (can be overridden by individual extensions) update preferences.
  260.  
  261. // e.g.
  262.  
  263. //  extensions.{GUID}.update.enabled
  264.  
  265. //  extensions.{GUID}.update.url
  266.  
  267. //  extensions.{GUID}.update.interval
  268.  
  269. //  .. etc ..
  270.  
  271. //
  272.  
  273. pref("extensions.update.enabled", true);
  274.  
  275. pref("extensions.update.url", "chrome://mozapps/locale/extensions/extensions.properties");
  276.  
  277. pref("extensions.update.interval", 86400);  // Check for updates to Extensions and 
  278.  
  279.                                             // Themes every week
  280.  
  281. // Non-symmetric (not shared by extensions) extension-specific [update] preferences
  282.  
  283. pref("extensions.getMoreExtensionsURL", "chrome://mozapps/locale/extensions/extensions.properties");
  284.  
  285. pref("extensions.getMoreThemesURL", "chrome://mozapps/locale/extensions/extensions.properties");
  286.  
  287. pref("extensions.dss.enabled", false);          // Dynamic Skin Switching                                               
  288.  
  289. pref("extensions.dss.switchPending", false);    // Non-dynamic switch pending after next
  290.  
  291.                                                 // restart.
  292.  
  293.  
  294.  
  295. pref("xpinstall.whitelist.add", "update.mozilla.org");
  296.  
  297. pref("xpinstall.whitelist.add.103", "addons.mozilla.org");
  298.  
  299.  
  300.  
  301. pref("keyword.enabled", true);
  302.  
  303. pref("keyword.URL", "http://www.google.com/search?btnI=I%27m+Feeling+Lucky&ie=UTF-8&oe=UTF-8&q=");
  304.  
  305.  
  306.  
  307. pref("general.useragent.locale", "en-US");
  308.  
  309. pref("general.skins.selectedSkin", "classic/1.0");
  310.  
  311. pref("general.useragent.extra.firefox", "Firefox/1.5");
  312.  
  313.  
  314.  
  315. pref("general.smoothScroll", false);
  316.  
  317. //@line 167 "/cygdrive/c/builds/tinderbox/Fx-Mozilla1.8/WINNT_5.2_Depend/mozilla/browser/app/profile/firefox.js"
  318.  
  319. pref("general.autoScroll", true);
  320.  
  321. //@line 169 "/cygdrive/c/builds/tinderbox/Fx-Mozilla1.8/WINNT_5.2_Depend/mozilla/browser/app/profile/firefox.js"
  322.  
  323.  
  324.  
  325. // Whether or not the application should check at startup each time if it 
  326.  
  327. // is the default browser.
  328.  
  329. pref("browser.shell.checkDefaultBrowser", true);
  330.  
  331.  
  332.  
  333. // 0 = blank, 1 = home (browser.startup.homepage), 2 = last
  334.  
  335. // XXXBlake Remove this stupid pref
  336.  
  337. pref("browser.startup.page",                1);
  338.  
  339. pref("browser.startup.homepage",              "resource:/browserconfig.properties");
  340.  
  341.  
  342.  
  343. pref("browser.cache.disk.capacity",         50000);
  344.  
  345. pref("browser.enable_automatic_image_resizing", true);
  346.  
  347. pref("browser.urlbar.matchOnlyTyped", false);
  348.  
  349. pref("browser.chrome.site_icons", true);
  350.  
  351. pref("browser.chrome.favicons", true);
  352.  
  353. pref("browser.formfill.enable", true);
  354.  
  355.  
  356.  
  357. pref("browser.download.useDownloadDir", true);
  358.  
  359. pref("browser.download.folderList", 0);
  360.  
  361. //@line 189 "/cygdrive/c/builds/tinderbox/Fx-Mozilla1.8/WINNT_5.2_Depend/mozilla/browser/app/profile/firefox.js"
  362.  
  363. pref("browser.download.manager.showAlertOnComplete", true);
  364.  
  365. //@line 193 "/cygdrive/c/builds/tinderbox/Fx-Mozilla1.8/WINNT_5.2_Depend/mozilla/browser/app/profile/firefox.js"
  366.  
  367. pref("browser.download.manager.showAlertInterval", 2000);
  368.  
  369. pref("browser.download.manager.retention", 2);
  370.  
  371. pref("browser.download.manager.showWhenStarting", true);
  372.  
  373. pref("browser.download.manager.useWindow", true);
  374.  
  375. pref("browser.download.manager.closeWhenDone", false);
  376.  
  377. pref("browser.download.manager.openDelay", 0);
  378.  
  379. pref("browser.download.manager.focusWhenStarting", false);
  380.  
  381. pref("browser.download.manager.flashCount", 2);
  382.  
  383.  
  384.  
  385. // pointer to the default engine name
  386.  
  387. pref("browser.search.defaultenginename",      "chrome://browser-region/locale/region.properties");
  388.  
  389. // pointer to the Web Search url (content area context menu)
  390.  
  391. pref("browser.search.defaulturl",             "chrome://browser-region/locale/region.properties");
  392.  
  393. // Ordering of Search Engines in the Engine list. 
  394.  
  395. pref("browser.search.order.1",                "chrome://browser-region/locale/region.properties");
  396.  
  397. pref("browser.search.order.2",                "chrome://browser-region/locale/region.properties");
  398.  
  399.  
  400.  
  401. pref("browser.search.param.Google.1.default", "chrome://branding/content/searchconfig.properties");
  402.  
  403. pref("browser.search.param.Google.1.custom",  "chrome://branding/content/searchconfig.properties");
  404.  
  405. pref("browser.search.order.Yahoo.1",          "chrome://branding/content/searchconfig.properties");
  406.  
  407. pref("browser.search.order.Yahoo.2",          "chrome://branding/content/searchconfig.properties");
  408.  
  409. pref("browser.search.order.Yahoo",            "chrome://branding/content/searchconfig.properties");
  410.  
  411.  
  412.  
  413. // basic search popup constraint: minimum sherlock plugin version displayed
  414.  
  415. // (note: must be a string representation of a float or it'll default to 0.0)
  416.  
  417. pref("browser.search.basic.min_ver", "0.0");
  418.  
  419.  
  420.  
  421. // send ping to the server to update
  422.  
  423. pref("browser.search.update", true);
  424.  
  425.  
  426.  
  427. pref("browser.history.grouping", "day");
  428.  
  429. pref("browser.sessionhistory.max_entries", 50);
  430.  
  431.  
  432.  
  433. // handle external links
  434.  
  435. // 0=default window, 1=current window/tab, 2=new window, 3=new tab in most recent window
  436.  
  437. pref("browser.link.open_external", 3);
  438.  
  439.  
  440.  
  441. // handle links targeting new windows
  442.  
  443. pref("browser.link.open_newwindow", 2);
  444.  
  445.  
  446.  
  447. // 0: no restrictions - divert everything
  448.  
  449. // 1: don't divert window.open at all
  450.  
  451. // 2: don't divert window.open with features
  452.  
  453. pref("browser.link.open_newwindow.restriction", 2);
  454.  
  455.  
  456.  
  457. // Tab browser preferences.
  458.  
  459. pref("browser.tabs.loadInBackground", true);
  460.  
  461. pref("browser.tabs.loadFolderAndReplace", true);
  462.  
  463. pref("browser.tabs.opentabfor.middleclick", true);
  464.  
  465. pref("browser.tabs.opentabfor.urlbar", true);
  466.  
  467. pref("browser.tabs.loadDivertedInBackground", false);
  468.  
  469. pref("browser.tabs.loadBookmarksInBackground", false);
  470.  
  471.  
  472.  
  473. // Smart Browsing prefs
  474.  
  475. pref("browser.related.enabled", true);
  476.  
  477. pref("browser.related.autoload", 1);  // 0 = Always, 1 = After first use, 2 = Never
  478.  
  479. pref("browser.related.provider", "http://www-rl.netscape.com/wtgn?");
  480.  
  481. pref("browser.related.disabledForDomains", "");
  482.  
  483. pref("browser.goBrowsing.enabled", true);
  484.  
  485.  
  486.  
  487. // Default bookmark sorting
  488.  
  489. pref("browser.bookmarks.sort.direction", "descending");
  490.  
  491. pref("browser.bookmarks.sort.resource", "rdf:http://home.netscape.com/NC-rdf#Name");
  492.  
  493.  
  494.  
  495. // Scripts & Windows prefs
  496.  
  497. pref("dom.disable_open_during_load",              true);
  498.  
  499. pref("javascript.options.showInConsole",          false);
  500.  
  501. // Make the status bar reliably present and unaffected by pages
  502.  
  503. pref("dom.disable_window_open_feature.status",    true);
  504.  
  505. // This is the pref to control the location bar, change this to true to 
  506.  
  507. // force this instead of or in addition to the status bar - this makes 
  508.  
  509. // the origin of popup windows more obvious to avoid spoofing but we 
  510.  
  511. // cannot do it by default because it affects UE for web applications.
  512.  
  513. pref("dom.disable_window_open_feature.location",  false);
  514.  
  515. pref("dom.disable_window_status_change",          true);
  516.  
  517. // allow JS to move and resize existing windows
  518.  
  519. pref("dom.disable_window_move_resize",            false);
  520.  
  521. // prevent JS from monkeying with window focus, etc
  522.  
  523. pref("dom.disable_window_flip",                   false);
  524.  
  525.  
  526.  
  527. pref("browser.trim_user_and_password",            true);
  528.  
  529.  
  530.  
  531. // popups.policy 1=allow,2=reject
  532.  
  533. pref("privacy.popups.policy",               1);
  534.  
  535. pref("privacy.popups.usecustom",            true);
  536.  
  537. pref("privacy.popups.firstTime",            true);
  538.  
  539. pref("privacy.popups.showBrowserMessage",   true);
  540.  
  541.  
  542.  
  543. pref("privacy.item.history",    true);
  544.  
  545. pref("privacy.item.formdata",   true);
  546.  
  547. pref("privacy.item.passwords",  false);
  548.  
  549. pref("privacy.item.downloads",  true);
  550.  
  551. pref("privacy.item.cookies",    false);
  552.  
  553. pref("privacy.item.cache",      true);
  554.  
  555. pref("privacy.item.siteprefs",  false);
  556.  
  557. pref("privacy.item.sessions",   true);
  558.  
  559.  
  560.  
  561. pref("privacy.sanitize.sanitizeOnShutdown", false);
  562.  
  563. pref("privacy.sanitize.promptOnSanitize", true);
  564.  
  565.  
  566.  
  567. pref("network.proxy.share_proxy_settings",  false); // use the same proxy settings for all protocols
  568.  
  569.  
  570.  
  571. pref("network.cookie.cookieBehavior",       0); // cookies enabled
  572.  
  573. pref("network.cookie.enableForCurrentSessionOnly", false);
  574.  
  575. pref("network.cookie.denyRemovedCookies", false);
  576.  
  577.  
  578.  
  579. // l12n and i18n
  580.  
  581. pref("intl.accept_languages", "chrome://global/locale/intl.properties");
  582.  
  583. // collationOption is only set on linux for japanese. see bug 18338 and 62015
  584.  
  585. // we need to check if this pref is still useful.
  586.  
  587. pref("intl.collationOption",  "chrome://global-platform/locale/intl.properties");
  588.  
  589. pref("intl.charsetmenu.browser.static", "chrome://global/locale/intl.properties");
  590.  
  591. pref("intl.charsetmenu.browser.more1",  "chrome://global/locale/intl.properties");
  592.  
  593. pref("intl.charsetmenu.browser.more2",  "chrome://global/locale/intl.properties");
  594.  
  595. pref("intl.charsetmenu.browser.more3",  "chrome://global/locale/intl.properties");
  596.  
  597. pref("intl.charsetmenu.browser.more4",  "chrome://global/locale/intl.properties");
  598.  
  599. pref("intl.charsetmenu.browser.more5",  "chrome://global/locale/intl.properties");
  600.  
  601. pref("intl.charsetmenu.browser.unicode",  "chrome://global/locale/intl.properties");
  602.  
  603. pref("intl.charset.detector", "chrome://global/locale/intl.properties");
  604.  
  605. pref("intl.charset.default",  "chrome://global-platform/locale/intl.properties");
  606.  
  607. pref("font.language.group", "chrome://global/locale/intl.properties");
  608.  
  609. pref("intl.menuitems.alwaysappendaccesskeys","chrome://global/locale/intl.properties");
  610.  
  611. pref("intl.menuitems.insertseparatorbeforeaccesskeys","chrome://global/locale/intl.properties");
  612.  
  613.  
  614.  
  615. // 0=lines, 1=pages, 2=history , 3=text size
  616.  
  617. //@line 327 "/cygdrive/c/builds/tinderbox/Fx-Mozilla1.8/WINNT_5.2_Depend/mozilla/browser/app/profile/firefox.js"
  618.  
  619. pref("mousewheel.withcontrolkey.action",3);
  620.  
  621. pref("mousewheel.withcontrolkey.sysnumlines",false);
  622.  
  623. pref("mousewheel.withshiftkey.action",2);
  624.  
  625. pref("mousewheel.withshiftkey.sysnumlines",false);
  626.  
  627. //@line 332 "/cygdrive/c/builds/tinderbox/Fx-Mozilla1.8/WINNT_5.2_Depend/mozilla/browser/app/profile/firefox.js"
  628.  
  629. pref("mousewheel.withaltkey.action",0);
  630.  
  631. pref("mousewheel.withaltkey.sysnumlines",false);
  632.  
  633.  
  634.  
  635. pref("profile.allow_automigration", false);   // setting to false bypasses automigration in the profile code
  636.  
  637.  
  638.  
  639. // Customizable toolbar stuff
  640.  
  641. pref("custtoolbar.personal_toolbar_folder", "");
  642.  
  643. pref("browser.throbber.url","chrome://browser-region/locale/region.properties");
  644.  
  645.  
  646.  
  647. // pref to control the alert notification 
  648.  
  649. pref("alerts.slideIncrement", 1);
  650.  
  651. pref("alerts.slideIncrementTime", 10);
  652.  
  653. pref("alerts.totalOpenTime", 4000);
  654.  
  655. pref("alerts.height", 50);
  656.  
  657.  
  658.  
  659. pref("browser.xul.error_pages.enabled", true);
  660.  
  661.  
  662.  
  663. pref("signon.rememberSignons",              true);
  664.  
  665. pref("signon.expireMasterPassword",         false);
  666.  
  667. pref("signon.SignonFileName", "signons.txt");
  668.  
  669.  
  670.  
  671. // We want to make sure mail URLs are handled externally...
  672.  
  673. pref("network.protocol-handler.external.mailto", true); // for mail
  674.  
  675. pref("network.protocol-handler.external.news", true);   // for news
  676.  
  677. pref("network.protocol-handler.external.snews", true);  // for secure news
  678.  
  679. pref("network.protocol-handler.external.nntp", true);   // also news
  680.  
  681. // ...without warning dialogs
  682.  
  683. pref("network.protocol-handler.warn-external.mailto", false);
  684.  
  685. pref("network.protocol-handler.warn-external.news", false);
  686.  
  687. pref("network.protocol-handler.warn-external.snews", false);
  688.  
  689. pref("network.protocol-handler.warn-external.nntp", false);
  690.  
  691.  
  692.  
  693. // By default, all protocol handlers are exposed.  This means that
  694.  
  695. // the browser will respond to openURL commands for all URL types.
  696.  
  697. // It will also try to open link clicks inside the browser before
  698.  
  699. // failing over to the system handlers.
  700.  
  701. pref("network.protocol-handler.expose-all", true);
  702.  
  703. pref("network.protocol-handler.expose.mailto", false);
  704.  
  705. pref("network.protocol-handler.expose.news", false);
  706.  
  707. pref("network.protocol-handler.expose.snews", false);
  708.  
  709. pref("network.protocol-handler.expose.nntp", false);
  710.  
  711.  
  712.  
  713. // Default security warning dialogs to show once.
  714.  
  715. pref("security.warn_entering_secure.show_once", true);
  716.  
  717. pref("security.warn_entering_weak.show_once", true);
  718.  
  719. pref("security.warn_leaving_secure.show_once", true);
  720.  
  721. pref("security.warn_viewing_mixed.show_once", true);
  722.  
  723. pref("security.warn_submit_insecure.show_once", true);
  724.  
  725.  
  726.  
  727. //@line 384 "/cygdrive/c/builds/tinderbox/Fx-Mozilla1.8/WINNT_5.2_Depend/mozilla/browser/app/profile/firefox.js"
  728.  
  729. pref("browser.urlbar.clickSelectsAll", true);
  730.  
  731. //@line 386 "/cygdrive/c/builds/tinderbox/Fx-Mozilla1.8/WINNT_5.2_Depend/mozilla/browser/app/profile/firefox.js"
  732.  
  733.  
  734.  
  735. pref("accessibility.typeaheadfind", false);
  736.  
  737. pref("accessibility.typeaheadfind.timeout", 5000);
  738.  
  739. pref("accessibility.typeaheadfind.linksonly", false);
  740.  
  741. pref("accessibility.typeaheadfind.flashBar", 1);
  742.  
  743.  
  744.  
  745. // Disable the default plugin for firefox
  746.  
  747. pref("plugin.default_plugin_disabled", true);
  748.  
  749.  
  750.  
  751. // plugin finder service url
  752.  
  753. pref("pfs.datasource.url", "https://pfs.mozilla.org/plugins/PluginFinderService.php?mimetype=%PLUGIN_MIMETYPE%&appID=%APP_ID%&appVersion=%APP_VERSION%&clientOS=%CLIENT_OS%&chromeLocale=%CHROME_LOCALE%");
  754.  
  755.  
  756.  
  757. //@line 399 "/cygdrive/c/builds/tinderbox/Fx-Mozilla1.8/WINNT_5.2_Depend/mozilla/browser/app/profile/firefox.js"
  758.  
  759. pref("browser.preferences.instantApply", false);
  760.  
  761. //@line 406 "/cygdrive/c/builds/tinderbox/Fx-Mozilla1.8/WINNT_5.2_Depend/mozilla/browser/app/profile/firefox.js"
  762.  
  763. pref("browser.preferences.animateFadeIn", false);
  764.  
  765. //@line 409 "/cygdrive/c/builds/tinderbox/Fx-Mozilla1.8/WINNT_5.2_Depend/mozilla/browser/app/profile/firefox.js"
  766.  
  767. pref("browser.display.screen_resolution", 96);
  768.  
  769. //@line 411 "/cygdrive/c/builds/tinderbox/Fx-Mozilla1.8/WINNT_5.2_Depend/mozilla/browser/app/profile/firefox.js"
  770.  
  771.  
  772.  
  773. pref("browser.download.show_plugins_in_list", true);
  774.  
  775. pref("browser.download.hide_plugins_without_extensions", true);
  776.  
  777.  
  778.  
  779. // Setting this pref to |true| forces BiDi UI menu items and keyboard shortcuts
  780.  
  781. // to be exposed. By default, only expose it for bidi-associated system locales.
  782.  
  783. pref("bidi.browser.ui", false);
  784.  
  785.