home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2006 February / maximum-cd-2006-02.iso / Software / Apps / firefox_setup_1.5.exe / browser.xpi / bin / greprefs / all.js next >
Encoding:
Text File  |  2005-11-11  |  61.9 KB  |  1,292 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.  * Benjamin Smedberg <bsmedberg@covad.net>
  46.  
  47.  *
  48.  
  49.  * Alternatively, the contents of this file may be used under the terms of
  50.  
  51.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  52.  
  53.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  54.  
  55.  * in which case the provisions of the GPL or the LGPL are applicable instead
  56.  
  57.  * of those above. If you wish to allow use of your version of this file only
  58.  
  59.  * under the terms of either the GPL or the LGPL, and not to allow others to
  60.  
  61.  * use your version of this file under the terms of the MPL, indicate your
  62.  
  63.  * decision by deleting the provisions above and replace them with the notice
  64.  
  65.  * and other provisions required by the GPL or the LGPL. If you do not delete
  66.  
  67.  * the provisions above, a recipient may use your version of this file under
  68.  
  69.  * the terms of any one of the MPL, the GPL or the LGPL.
  70.  
  71.  *
  72.  
  73.  * ***** END LICENSE BLOCK ***** */
  74.  
  75.  
  76.  
  77. /* The prefs in this file are shipped with the GRE and should apply to all
  78.  
  79.  * embedding situations. Application-specific preferences belong somewhere else,
  80.  
  81.  * for example xpfe/bootstrap/browser-prefs.js
  82.  
  83.  *
  84.  
  85.  * Platform-specific #ifdefs at the end of this file override the generic
  86.  
  87.  * entries at the top.
  88.  
  89.  */
  90.  
  91.  
  92.  
  93. // SYNTAX HINTS:  dashes are delimiters.  Use underscores instead.
  94.  
  95. //  The first character after a period must be alphabetic.
  96.  
  97.  
  98.  
  99. pref("keyword.URL", "http://www.google.com/search?ie=UTF-8&oe=utf-8&q=");
  100.  
  101. pref("keyword.enabled", false);
  102.  
  103. pref("general.useragent.locale", "chrome://navigator/locale/navigator.properties");
  104.  
  105. pref("general.useragent.contentlocale", "chrome://navigator-region/locale/region.properties");
  106.  
  107.  
  108.  
  109. pref("general.config.obscure_value", 13); // for MCD .cfg files
  110.  
  111.  
  112.  
  113. pref("browser.cache.disk.enable",           true);
  114.  
  115. pref("browser.cache.disk.capacity",         51200);
  116.  
  117. pref("browser.cache.memory.enable",         true);
  118.  
  119. //pref("browser.cache.memory.capacity",     -1);
  120.  
  121. // -1 = determine dynamically, 0 = none, n = memory capacity in kilobytes
  122.  
  123. pref("browser.cache.disk_cache_ssl",        false);
  124.  
  125. // 0 = once-per-session, 1 = each-time, 2 = never, 3 = when-appropriate/automatically
  126.  
  127. pref("browser.cache.check_doc_frequency",   3);
  128.  
  129. // Fastback caching - if this pref is negative, then we calculate the number
  130.  
  131. // of content viewers to cache based on the amount of available memory.
  132.  
  133. pref("browser.sessionhistory.max_total_viewers", -1);
  134.  
  135.  
  136.  
  137. pref("browser.display.use_document_fonts",  1);  // 0 = never, 1 = quick, 2 = always
  138.  
  139. pref("browser.display.use_document_colors", true);
  140.  
  141. pref("browser.display.use_system_colors",   false);
  142.  
  143. pref("browser.display.foreground_color",    "#000000");
  144.  
  145. pref("browser.display.background_color",    "#FFFFFF");
  146.  
  147. pref("browser.display.force_inline_alttext", false); // true = force ALT text for missing images to be layed out inline
  148.  
  149. // 0 = no external leading, 
  150.  
  151. // 1 = use external leading only when font provides, 
  152.  
  153. // 2 = add extra leading both internal leading and external leading are zero
  154.  
  155. pref("browser.display.normal_lineheight_calc_control", 2);
  156.  
  157. pref("browser.display.show_image_placeholders", true); // true = show image placeholders while image is loaded and when image is broken
  158.  
  159. pref("browser.anchor_color",                "#0000EE");
  160.  
  161. pref("browser.active_color",                "#EE0000");
  162.  
  163. pref("browser.visited_color",               "#551A8B");
  164.  
  165. pref("browser.underline_anchors",           true);
  166.  
  167. pref("browser.blink_allowed",               true);
  168.  
  169. pref("browser.enable_automatic_image_resizing", false);
  170.  
  171.  
  172.  
  173. pref("browser.display.use_focus_colors",    false);
  174.  
  175. pref("browser.display.focus_background_color", "#117722");
  176.  
  177. pref("browser.display.focus_text_color",     "#ffffff");
  178.  
  179. pref("browser.display.focus_ring_width",     1);
  180.  
  181. pref("browser.display.focus_ring_on_anything", false);
  182.  
  183.  
  184.  
  185. pref("browser.helperApps.alwaysAsk.force",  false);
  186.  
  187. pref("browser.helperApps.neverAsk.saveToDisk", "");
  188.  
  189. pref("browser.helperApps.neverAsk.openFile", "");
  190.  
  191.  
  192.  
  193. // xxxbsmedberg: where should prefs for the toolkit go?
  194.  
  195. pref("browser.chrome.toolbar_tips",         true);
  196.  
  197. // 0 = Pictures Only, 1 = Text Only, 2 = Pictures and Text
  198.  
  199. pref("browser.chrome.toolbar_style",        2);
  200.  
  201. // max image size for which it is placed in the tab icon for tabbrowser.
  202.  
  203. // if 0, no images are used for tab icons for image documents.
  204.  
  205. pref("browser.chrome.image_icons.max_size", 1024);
  206.  
  207.  
  208.  
  209.  
  210.  
  211. pref("accessibility.browsewithcaret", false);
  212.  
  213. pref("accessibility.warn_on_browsewithcaret", true);
  214.  
  215.  
  216.  
  217. //@line 110 "/cygdrive/c/builds/tinderbox/Fx-Mozilla1.8/WINNT_5.2_Depend/mozilla/modules/libpref/src/init/all.js"
  218.  
  219. // Tab focus model bit field:
  220.  
  221. // 1 focuses text controls, 2 focuses other form elements, 4 adds links.
  222.  
  223. // Most users will want 1, 3, or 7.
  224.  
  225. // On OS X, we use Full Keyboard Access system preference,
  226.  
  227. // unless accessibility.tabfocus is set by the user.
  228.  
  229. pref("accessibility.tabfocus", 7);
  230.  
  231. pref("accessibility.tabfocus_applies_to_xul", false);
  232.  
  233. //@line 121 "/cygdrive/c/builds/tinderbox/Fx-Mozilla1.8/WINNT_5.2_Depend/mozilla/modules/libpref/src/init/all.js"
  234.  
  235.  
  236.  
  237. pref("accessibility.usetexttospeech", "");
  238.  
  239. pref("accessibility.usebrailledisplay", "");
  240.  
  241. pref("accessibility.accesskeycausesactivation", true);
  242.  
  243.  
  244.  
  245. // Type Ahead Find
  246.  
  247. pref("accessibility.typeaheadfind", true);
  248.  
  249. pref("accessibility.typeaheadfind.autostart", true);
  250.  
  251. pref("accessibility.typeaheadfind.linksonly", true);
  252.  
  253. pref("accessibility.typeaheadfind.startlinksonly", false);
  254.  
  255. pref("accessibility.typeaheadfind.timeout", 4000);
  256.  
  257. pref("accessibility.typeaheadfind.enabletimeout", true);
  258.  
  259. pref("accessibility.typeaheadfind.soundURL", "default");
  260.  
  261. pref("accessibility.typeaheadfind.enablesound", true);
  262.  
  263.  
  264.  
  265. pref("browser.history_expire_days", 9);
  266.  
  267.  
  268.  
  269. // loading and rendering of framesets and iframes
  270.  
  271. pref("browser.frames.enabled", true);
  272.  
  273.  
  274.  
  275. // form submission
  276.  
  277. pref("browser.forms.submit.backwards_compatible", true);
  278.  
  279.  
  280.  
  281. // xxxbsmedberg more toolkit prefs?
  282.  
  283. // Tab browser preferences.
  284.  
  285. pref("browser.tabs.autoHide", true);
  286.  
  287. pref("browser.tabs.forceHide", false);
  288.  
  289. pref("browser.tabs.warnOnClose", true);
  290.  
  291. pref("browser.tabs.warnOnCloseOther", true);
  292.  
  293. // 0 = append, 1 = replace
  294.  
  295. pref("browser.tabs.loadGroup", 1);
  296.  
  297.  
  298.  
  299. // lets new tab/window load something different than first window
  300.  
  301. // -1 - use navigator startup preference
  302.  
  303. //  0 - loads blank page
  304.  
  305. //  1 - loads home page
  306.  
  307. //  2 - loads last page visited
  308.  
  309. pref("browser.tabs.loadOnNewTab", 0);
  310.  
  311. pref("browser.windows.loadOnNewWindow", 1);
  312.  
  313.  
  314.  
  315. // view source
  316.  
  317. pref("view_source.syntax_highlight", true);
  318.  
  319. pref("view_source.wrap_long_lines", false);
  320.  
  321.  
  322.  
  323. // dispatch left clicks only to content in browser (still allows clicks to chrome/xul)
  324.  
  325. pref("nglayout.events.dispatchLeftClickOnly", true);
  326.  
  327.  
  328.  
  329. // whether or not to use xbl form controls
  330.  
  331. pref("nglayout.debug.enable_xbl_forms", false);
  332.  
  333.  
  334.  
  335. // size of scrollbar snapping region
  336.  
  337. pref("slider.snapMultiplier", 6);
  338.  
  339.  
  340.  
  341. // option to choose plug-in finder
  342.  
  343. pref("application.use_ns_plugin_finder", false);
  344.  
  345.  
  346.  
  347. // URI fixup prefs
  348.  
  349. pref("browser.fixup.alternate.enabled", true);
  350.  
  351. pref("browser.fixup.alternate.prefix", "www.");
  352.  
  353. pref("browser.fixup.alternate.suffix", ".com");
  354.  
  355. pref("browser.fixup.hide_user_pass", true);
  356.  
  357.  
  358.  
  359. // Print header customization
  360.  
  361. // Use the following codes:
  362.  
  363. // &T - Title
  364.  
  365. // &U - Document URL
  366.  
  367. // &D - Date/Time
  368.  
  369. // &P - Page Number
  370.  
  371. // &PT - Page Number "of" Page total
  372.  
  373. // Set each header to a string containing zero or one of these codes
  374.  
  375. // and the code will be replaced in that string by the corresponding data
  376.  
  377. pref("print.print_headerleft", "&T");
  378.  
  379. pref("print.print_headercenter", "");
  380.  
  381. pref("print.print_headerright", "&U");
  382.  
  383. pref("print.print_footerleft", "&PT");
  384.  
  385. pref("print.print_footercenter", "");
  386.  
  387. pref("print.print_footerright", "&D");
  388.  
  389. pref("print.show_print_progress", true);
  390.  
  391.  
  392.  
  393. // xxxbsmedberg: more toolkit prefs
  394.  
  395.  
  396.  
  397. // When this is set to false each window has its own PrintSettings
  398.  
  399. // and a chnage in one window does not affect the others
  400.  
  401. pref("print.use_global_printsettings", true);
  402.  
  403.  
  404.  
  405. // Use the native dialog or the XP dialog?
  406.  
  407. pref("print.use_native_print_dialog", false);
  408.  
  409.  
  410.  
  411. // Save the Printings after each print job
  412.  
  413. pref("print.save_print_settings", true);
  414.  
  415.  
  416.  
  417. pref("print.whileInPrintPreview", true);
  418.  
  419.  
  420.  
  421. // Cache old Presentation when going into Print Preview
  422.  
  423. pref("print.always_cache_old_pres", false);
  424.  
  425.  
  426.  
  427. // Enables you to specify the gap from the edge of the paper to the margin
  428.  
  429. // this is used by both Printing and Print Preview
  430.  
  431. pref("print.print_edge_top", 0); // 1/100 of an inch
  432.  
  433. pref("print.print_edge_left", 0); // 1/100 of an inch
  434.  
  435. pref("print.print_edge_right", 0); // 1/100 of an inch
  436.  
  437. pref("print.print_edge_bottom", 0); // 1/100 of an inch
  438.  
  439.  
  440.  
  441.  
  442.  
  443. // Prefs used by libeditor. Prefs specific to seamonkey composer
  444.  
  445. // belong in mozilla/editor/ui/composer.js
  446.  
  447.  
  448.  
  449. pref("editor.use_custom_colors", false);
  450.  
  451. pref("editor.htmlWrapColumn", 72);
  452.  
  453. pref("editor.singleLine.pasteNewlines",     1);
  454.  
  455. pref("editor.quotesPreformatted",            false);
  456.  
  457. pref("editor.use_css",                       true);
  458.  
  459. pref("editor.css.default_length_unit",       "px");
  460.  
  461. pref("editor.resizing.preserve_ratio",       true);
  462.  
  463. pref("editor.positioning.offset",            0);
  464.  
  465.  
  466.  
  467.  
  468.  
  469. // Default Capability Preferences: Security-Critical! 
  470.  
  471. // Editing these may create a security risk - be sure you know what you're doing
  472.  
  473. //pref("capability.policy.default.barprop.visible.set", "UniversalBrowserWrite");
  474.  
  475.  
  476.  
  477. pref("capability.policy.default_policynames", "mailnews");
  478.  
  479.  
  480.  
  481. pref("capability.policy.default.DOMException.code", "allAccess");
  482.  
  483. pref("capability.policy.default.DOMException.message", "allAccess");
  484.  
  485. pref("capability.policy.default.DOMException.name", "allAccess");
  486.  
  487. pref("capability.policy.default.DOMException.result", "allAccess");
  488.  
  489. pref("capability.policy.default.DOMException.toString.get", "allAccess");
  490.  
  491.  
  492.  
  493. pref("capability.policy.default.History.back.get", "allAccess");
  494.  
  495. pref("capability.policy.default.History.current", "UniversalBrowserRead");
  496.  
  497. pref("capability.policy.default.History.forward.get", "allAccess");
  498.  
  499. pref("capability.policy.default.History.go.get", "allAccess");
  500.  
  501. pref("capability.policy.default.History.item", "UniversalBrowserRead");
  502.  
  503. pref("capability.policy.default.History.next", "UniversalBrowserRead");
  504.  
  505. pref("capability.policy.default.History.previous", "UniversalBrowserRead");
  506.  
  507. pref("capability.policy.default.History.toString", "UniversalBrowserRead");
  508.  
  509.  
  510.  
  511. pref("capability.policy.default.HTMLDocument.close.get", "allAccess");
  512.  
  513. pref("capability.policy.default.HTMLDocument.open.get", "allAccess");
  514.  
  515.  
  516.  
  517. pref("capability.policy.default.Location.hash.set", "allAccess");
  518.  
  519. pref("capability.policy.default.Location.href.set", "allAccess");
  520.  
  521. pref("capability.policy.default.Location.reload.get", "allAccess");
  522.  
  523. pref("capability.policy.default.Location.replace.get", "allAccess");
  524.  
  525.  
  526.  
  527. pref("capability.policy.default.Navigator.preference", "allAccess");
  528.  
  529. pref("capability.policy.default.Navigator.preferenceinternal.get", "UniversalPreferencesRead");
  530.  
  531. pref("capability.policy.default.Navigator.preferenceinternal.set", "UniversalPreferencesWrite");
  532.  
  533.  
  534.  
  535. pref("capability.policy.default.Window.blur.get", "allAccess");
  536.  
  537. pref("capability.policy.default.Window.close.get", "allAccess");
  538.  
  539. pref("capability.policy.default.Window.closed", "allAccess");
  540.  
  541. pref("capability.policy.default.Window.Components", "allAccess");
  542.  
  543. pref("capability.policy.default.Window.document", "allAccess");
  544.  
  545. pref("capability.policy.default.Window.focus.get", "allAccess");
  546.  
  547. pref("capability.policy.default.Window.frames", "allAccess");
  548.  
  549. pref("capability.policy.default.Window.history", "allAccess");
  550.  
  551. pref("capability.policy.default.Window.length", "allAccess");
  552.  
  553. pref("capability.policy.default.Window.location", "allAccess");
  554.  
  555. pref("capability.policy.default.Window.opener", "allAccess");
  556.  
  557. pref("capability.policy.default.Window.parent", "allAccess");
  558.  
  559. pref("capability.policy.default.Window.self", "allAccess");
  560.  
  561. pref("capability.policy.default.Window.top", "allAccess");
  562.  
  563. pref("capability.policy.default.Window.window", "allAccess");
  564.  
  565.  
  566.  
  567. // Restrictions on the DOM for mail/news - see bugs 66938 and 84545
  568.  
  569. pref("capability.policy.mailnews.sites", "mailbox: imap: news:");
  570.  
  571.  
  572.  
  573. pref("capability.policy.mailnews.*.attributes.get", "noAccess");
  574.  
  575. pref("capability.policy.mailnews.*.baseURI.get", "noAccess");
  576.  
  577. pref("capability.policy.mailnews.*.data.get", "noAccess");
  578.  
  579. pref("capability.policy.mailnews.*.getAttribute", "noAccess");
  580.  
  581. pref("capability.policy.mailnews.*.getAttributeNS", "noAccess");
  582.  
  583. pref("capability.policy.mailnews.*.getNamedItem", "noAccess");
  584.  
  585. pref("capability.policy.mailnews.*.getNamedItemNS", "noAccess");
  586.  
  587. pref("capability.policy.mailnews.*.host.get", "noAccess");
  588.  
  589. pref("capability.policy.mailnews.*.hostname.get", "noAccess");
  590.  
  591. pref("capability.policy.mailnews.*.href.get", "noAccess");
  592.  
  593. pref("capability.policy.mailnews.*.innerHTML.get", "noAccess");
  594.  
  595. pref("capability.policy.mailnews.*.lowSrc.get", "noAccess");
  596.  
  597. pref("capability.policy.mailnews.*.nodeValue.get", "noAccess");
  598.  
  599. pref("capability.policy.mailnews.*.pathname.get", "noAccess");
  600.  
  601. pref("capability.policy.mailnews.*.protocol.get", "noAccess");
  602.  
  603. pref("capability.policy.mailnews.*.src.get", "noAccess");
  604.  
  605. pref("capability.policy.mailnews.*.substringData.get", "noAccess");
  606.  
  607. pref("capability.policy.mailnews.*.text.get", "noAccess");
  608.  
  609. pref("capability.policy.mailnews.*.title.get", "noAccess");
  610.  
  611. pref("capability.policy.mailnews.DOMException.toString", "noAccess");
  612.  
  613. pref("capability.policy.mailnews.HTMLAnchorElement.toString", "noAccess");
  614.  
  615. pref("capability.policy.mailnews.HTMLDocument.domain", "noAccess");
  616.  
  617. pref("capability.policy.mailnews.HTMLDocument.URL", "noAccess");
  618.  
  619. pref("capability.policy.mailnews.Location.toString", "noAccess");
  620.  
  621. pref("capability.policy.mailnews.Range.toString", "noAccess");
  622.  
  623. pref("capability.policy.mailnews.Window.blur", "noAccess");
  624.  
  625. pref("capability.policy.mailnews.Window.focus", "noAccess");
  626.  
  627. pref("capability.policy.mailnews.Window.innerWidth.set", "noAccess");
  628.  
  629. pref("capability.policy.mailnews.Window.innerHeight.set", "noAccess");
  630.  
  631. pref("capability.policy.mailnews.Window.moveBy", "noAccess");
  632.  
  633. pref("capability.policy.mailnews.Window.moveTo", "noAccess");
  634.  
  635. pref("capability.policy.mailnews.Window.name.set", "noAccess");
  636.  
  637. pref("capability.policy.mailnews.Window.outerHeight.set", "noAccess");
  638.  
  639. pref("capability.policy.mailnews.Window.outerWidth.set", "noAccess");
  640.  
  641. pref("capability.policy.mailnews.Window.resizeBy", "noAccess");
  642.  
  643. pref("capability.policy.mailnews.Window.resizeTo", "noAccess");
  644.  
  645. pref("capability.policy.mailnews.Window.screenX.set", "noAccess");
  646.  
  647. pref("capability.policy.mailnews.Window.screenY.set", "noAccess");
  648.  
  649. pref("capability.policy.mailnews.Window.sizeToContent", "noAccess");
  650.  
  651. pref("capability.policy.mailnews.document.load", "noAccess");
  652.  
  653. pref("capability.policy.mailnews.XMLHttpRequest.channel", "noAccess");
  654.  
  655. pref("capability.policy.mailnews.XMLHttpRequest.responseXML", "noAccess");
  656.  
  657. pref("capability.policy.mailnews.XMLHttpRequest.responseText", "noAccess");
  658.  
  659. pref("capability.policy.mailnews.XMLHttpRequest.status", "noAccess");
  660.  
  661. pref("capability.policy.mailnews.XMLHttpRequest.statusText", "noAccess");
  662.  
  663. pref("capability.policy.mailnews.XMLHttpRequest.abort", "noAccess");
  664.  
  665. pref("capability.policy.mailnews.XMLHttpRequest.getAllResponseHeaders", "noAccess");
  666.  
  667. pref("capability.policy.mailnews.XMLHttpRequest.getResponseHeader", "noAccess");
  668.  
  669. pref("capability.policy.mailnews.XMLHttpRequest.open", "noAccess");
  670.  
  671. pref("capability.policy.mailnews.XMLHttpRequest.send", "noAccess");
  672.  
  673. pref("capability.policy.mailnews.XMLHttpRequest.setRequestHeader", "noAccess");
  674.  
  675. pref("capability.policy.mailnews.XMLHttpRequest.readyState", "noAccess");
  676.  
  677. pref("capability.policy.mailnews.XMLHttpRequest.overrideMimeType", "noAccess");
  678.  
  679. pref("capability.policy.mailnews.XMLHttpRequest.onload", "noAccess");
  680.  
  681. pref("capability.policy.mailnews.XMLHttpRequest.onerror", "noAccess");
  682.  
  683. pref("capability.policy.mailnews.XMLHttpRequest.onreadystatechange", "noAccess");
  684.  
  685. pref("capability.policy.mailnews.XMLSerializer.serializeToString", "noAccess");
  686.  
  687. pref("capability.policy.mailnews.XMLSerializer.serializeToStream", "noAccess");
  688.  
  689. pref("capability.policy.mailnews.DOMParser.parseFromString", "noAccess");
  690.  
  691. pref("capability.policy.mailnews.DOMParser.parseFromStream", "noAccess");
  692.  
  693. pref("capability.policy.mailnews.SOAPCall.transportURI", "noAccess");
  694.  
  695. pref("capability.policy.mailnews.SOAPCall.verifySourceHeader", "noAccess");
  696.  
  697. pref("capability.policy.mailnews.SOAPCall.invoke", "noAccess");
  698.  
  699. pref("capability.policy.mailnews.SOAPCall.asyncInvoke", "noAccess");
  700.  
  701. pref("capability.policy.mailnews.SOAPResponse.fault", "noAccess");
  702.  
  703. pref("capability.policy.mailnews.SOAPEncoding.styleURI", "noAccess");
  704.  
  705. pref("capability.policy.mailnews.SOAPEncoding.getAssociatedEncoding", "noAccess");
  706.  
  707. pref("capability.policy.mailnews.SOAPEncoding.setEncoder", "noAccess");
  708.  
  709. pref("capability.policy.mailnews.SOAPEncoding.getEncoder", "noAccess");
  710.  
  711. pref("capability.policy.mailnews.SOAPEncoding.setDecoder", "noAccess");
  712.  
  713. pref("capability.policy.mailnews.SOAPEncoding.setDecoder", "noAccess");
  714.  
  715. pref("capability.policy.mailnews.SOAPEncoding.getDecoder", "noAccess");
  716.  
  717. pref("capability.policy.mailnews.SOAPEncoding.defaultEncoder", "noAccess");
  718.  
  719. pref("capability.policy.mailnews.SOAPEncoding.defaultDecoder", "noAccess");
  720.  
  721. pref("capability.policy.mailnews.SOAPEncoding.schemaCollection", "noAccess");
  722.  
  723. pref("capability.policy.mailnews.SOAPEncoding.encode", "noAccess");
  724.  
  725. pref("capability.policy.mailnews.SOAPEncoding.decode", "noAccess");
  726.  
  727. pref("capability.policy.mailnews.SOAPEncoding.mapSchemaURI", "noAccess");
  728.  
  729. pref("capability.policy.mailnews.SOAPEncoding.unmapSchemaURI", "noAccess");
  730.  
  731. pref("capability.policy.mailnews.SOAPEncoding.getInternalSchemaURI", "noAccess");
  732.  
  733. pref("capability.policy.mailnews.SOAPEncoding.getExternalSchemaURI", "noAccess");
  734.  
  735. pref("capability.policy.mailnews.SOAPFault.element", "noAccess");
  736.  
  737. pref("capability.policy.mailnews.SOAPFault.faultNamespaceURI", "noAccess");
  738.  
  739. pref("capability.policy.mailnews.SOAPFault.faultCode", "noAccess");
  740.  
  741. pref("capability.policy.mailnews.SOAPFault.faultString", "noAccess");
  742.  
  743. pref("capability.policy.mailnews.SOAPFault.faultActor", "noAccess");
  744.  
  745. pref("capability.policy.mailnews.SOAPFault.detail", "noAccess");
  746.  
  747. pref("capability.policy.mailnews.SOAPHeaderBlock.actorURI", "noAccess");
  748.  
  749. pref("capability.policy.mailnews.SOAPHeaderBlock.mustUnderstand", "noAccess");
  750.  
  751. pref("capability.policy.mailnews.SOAPParameter", "noAccess");
  752.  
  753. pref("capability.policy.mailnews.SOAPPropertyBagMutator.propertyBag", "noAccess");
  754.  
  755. pref("capability.policy.mailnews.SOAPPropertyBagMutator.addProperty", "noAccess");
  756.  
  757. pref("capability.policy.mailnews.SchemaLoader.load", "noAccess");
  758.  
  759. pref("capability.policy.mailnews.SchemaLoader.loadAsync", "noAccess");
  760.  
  761. pref("capability.policy.mailnews.SchemaLoader.processSchemaElement", "noAccess");
  762.  
  763. pref("capability.policy.mailnews.SchemaLoader.onLoad", "noAccess");
  764.  
  765. pref("capability.policy.mailnews.SchemaLoader.onError", "noAccess");
  766.  
  767. pref("capability.policy.mailnews.WSDLLoader.load", "noAccess");
  768.  
  769. pref("capability.policy.mailnews.WSDLLoader.loadAsync", "noAccess");
  770.  
  771. pref("capability.policy.mailnews.WSDLLoader.onLoad", "noAccess");
  772.  
  773. pref("capability.policy.mailnews.WSDLLoader.onError", "noAccess");
  774.  
  775. pref("capability.policy.mailnews.WebServiceProxyFactory.createProxy", "noAccess");
  776.  
  777. pref("capability.policy.mailnews.WebServiceProxyFactory.createProxyAsync", "noAccess");
  778.  
  779. pref("capability.policy.mailnews.WebServiceProxyFactory.onLoad", "noAccess");
  780.  
  781. pref("capability.policy.mailnews.WebServiceProxyFactory.onError", "noAccess");
  782.  
  783.  
  784.  
  785. // XMLExtras
  786.  
  787. pref("capability.policy.default.XMLHttpRequest.channel", "noAccess");
  788.  
  789. pref("capability.policy.default.DOMParser.parseFromStream", "noAccess");
  790.  
  791.  
  792.  
  793. // Clipboard
  794.  
  795. pref("capability.policy.default.Clipboard.cutcopy", "noAccess");
  796.  
  797. pref("capability.policy.default.Clipboard.paste", "noAccess");
  798.  
  799.  
  800.  
  801. // Scripts & Windows prefs
  802.  
  803. pref("dom.disable_image_src_set",           false);
  804.  
  805. pref("dom.disable_window_flip",             false);
  806.  
  807. pref("dom.disable_window_move_resize",      false);
  808.  
  809. pref("dom.disable_window_status_change",    false);
  810.  
  811.  
  812.  
  813. pref("dom.disable_window_open_feature.titlebar",    false);
  814.  
  815. pref("dom.disable_window_open_feature.close",       false);
  816.  
  817. pref("dom.disable_window_open_feature.toolbar",     false);
  818.  
  819. pref("dom.disable_window_open_feature.location",    false);
  820.  
  821. pref("dom.disable_window_open_feature.directories", false);
  822.  
  823. pref("dom.disable_window_open_feature.personalbar", false);
  824.  
  825. pref("dom.disable_window_open_feature.menubar",     false);
  826.  
  827. pref("dom.disable_window_open_feature.scrollbars",  false);
  828.  
  829. pref("dom.disable_window_open_feature.resizable",   false);
  830.  
  831. pref("dom.disable_window_open_feature.minimizable", false);
  832.  
  833. pref("dom.disable_window_open_feature.status",      true);
  834.  
  835.  
  836.  
  837. pref("dom.allow_scripts_to_close_windows",          false);
  838.  
  839.  
  840.  
  841. pref("dom.disable_open_during_load",                false);
  842.  
  843. pref("dom.popup_maximum",                           20);
  844.  
  845. pref("dom.popup_allowed_events", "change click dblclick mouseup reset submit");
  846.  
  847. pref("dom.disable_open_click_delay", 1000);
  848.  
  849.  
  850.  
  851. // Disable popups from plugins by default
  852.  
  853. //   0 = openAllowed
  854.  
  855. //   1 = openControlled
  856.  
  857. //   2 = openAbused
  858.  
  859. pref("privacy.popups.disable_from_plugins", 2);
  860.  
  861.  
  862.  
  863. pref("dom.event.contextmenu.enabled",       true);
  864.  
  865.  
  866.  
  867. pref("javascript.enabled",                  true);
  868.  
  869. pref("javascript.allow.mailnews",           false);
  870.  
  871. pref("javascript.options.strict",           false);
  872.  
  873.  
  874.  
  875. // advanced prefs
  876.  
  877. pref("security.enable_java",                true);
  878.  
  879. pref("advanced.mailftp",                    false);
  880.  
  881. pref("image.animation_mode",                "normal");
  882.  
  883.  
  884.  
  885. // If there is ever a security firedrill that requires
  886.  
  887. // us to block certian ports global, this is the pref 
  888.  
  889. // to use.  Is is a comma delimited list of port numbers
  890.  
  891. // for example:
  892.  
  893. //   pref("network.security.ports.banned", "1,2,3,4,5");
  894.  
  895. // prevents necko connecting to ports 1-5 unless the protocol
  896.  
  897. // overrides.
  898.  
  899.  
  900.  
  901. // Default action for unlisted external protocol handlers
  902.  
  903. pref("network.protocol-handler.external-default", true);      // OK to load
  904.  
  905. pref("network.protocol-handler.warn-external-default", true); // warn before load
  906.  
  907.  
  908.  
  909. // Prevent using external protocol handlers for these schemes
  910.  
  911. pref("network.protocol-handler.external.hcp", false);
  912.  
  913. pref("network.protocol-handler.external.vbscript", false);
  914.  
  915. pref("network.protocol-handler.external.javascript", false);
  916.  
  917. pref("network.protocol-handler.external.data", false);
  918.  
  919. pref("network.protocol-handler.external.ms-help", false);
  920.  
  921. pref("network.protocol-handler.external.shell", false);
  922.  
  923. pref("network.protocol-handler.external.vnd.ms.radio", false);
  924.  
  925. //@line 469 "/cygdrive/c/builds/tinderbox/Fx-Mozilla1.8/WINNT_5.2_Depend/mozilla/modules/libpref/src/init/all.js"
  926.  
  927. pref("network.protocol-handler.external.disk", false);
  928.  
  929. pref("network.protocol-handler.external.disks", false);
  930.  
  931. pref("network.protocol-handler.external.afp", false);
  932.  
  933.  
  934.  
  935. // An exposed protocol handler is one that can be used in all contexts.  A
  936.  
  937. // non-exposed protocol handler is one that can only be used internally by the
  938.  
  939. // application.  For example, a non-exposed protocol would not be loaded by the
  940.  
  941. // application in response to a link click or a X-remote openURL command.
  942.  
  943. // Instead, it would be deferred to the system's external protocol handler.
  944.  
  945. // Only internal/built-in protocol handlers can be marked as exposed.
  946.  
  947.  
  948.  
  949. // This pref controls the default settings.  Per protocol settings can be used
  950.  
  951. // to override this value.
  952.  
  953. pref("network.protocol-handler.expose-all", true);
  954.  
  955.  
  956.  
  957. // Example: make IMAP an exposed protocol
  958.  
  959. // pref("network.protocol-handler.expose.imap", true);
  960.  
  961.  
  962.  
  963. pref("network.hosts.smtp_server",           "mail");
  964.  
  965. pref("network.hosts.pop_server",            "mail");
  966.  
  967.  
  968.  
  969. // <http>
  970.  
  971. pref("network.http.version", "1.1");      // default
  972.  
  973. // pref("network.http.version", "1.0");   // uncomment this out in case of problems
  974.  
  975. // pref("network.http.version", "0.9");   // it'll work too if you're crazy
  976.  
  977. // keep-alive option is effectively obsolete. Nevertheless it'll work with
  978.  
  979. // some older 1.0 servers:
  980.  
  981.  
  982.  
  983. pref("network.http.proxy.version", "1.1");    // default
  984.  
  985. // pref("network.http.proxy.version", "1.0"); // uncomment this out in case of problems
  986.  
  987.                                               // (required if using junkbuster proxy)
  988.  
  989.  
  990.  
  991. // enable caching of http documents
  992.  
  993. pref("network.http.use-cache", true);
  994.  
  995.  
  996.  
  997. // this preference can be set to override the socket type used for normal
  998.  
  999. // HTTP traffic.  an empty value indicates the normal TCP/IP socket type.
  1000.  
  1001. pref("network.http.default-socket-type", "");
  1002.  
  1003.  
  1004.  
  1005. pref("network.http.keep-alive", true); // set it to false in case of problems
  1006.  
  1007. pref("network.http.proxy.keep-alive", true);
  1008.  
  1009. pref("network.http.keep-alive.timeout", 300);
  1010.  
  1011.  
  1012.  
  1013. // limit the absolute number of http connections.
  1014.  
  1015. pref("network.http.max-connections", 24);
  1016.  
  1017.  
  1018.  
  1019. // limit the absolute number of http connections that can be established per
  1020.  
  1021. // host.  if a http proxy server is enabled, then the "server" is the proxy
  1022.  
  1023. // server.  Otherwise, "server" is the http origin server.
  1024.  
  1025. pref("network.http.max-connections-per-server", 8);
  1026.  
  1027.  
  1028.  
  1029. // if network.http.keep-alive is true, and if NOT connecting via a proxy, then
  1030.  
  1031. // a new connection will only be attempted if the number of active persistent
  1032.  
  1033. // connections to the server is less then max-persistent-connections-per-server.
  1034.  
  1035. pref("network.http.max-persistent-connections-per-server", 2);
  1036.  
  1037.  
  1038.  
  1039. // if network.http.keep-alive is true, and if connecting via a proxy, then a
  1040.  
  1041. // new connection will only be attempted if the number of active persistent
  1042.  
  1043. // connections to the proxy is less then max-persistent-connections-per-proxy.
  1044.  
  1045. pref("network.http.max-persistent-connections-per-proxy", 4);
  1046.  
  1047.  
  1048.  
  1049. // amount of time (in seconds) to suspend pending requests, before spawning a
  1050.  
  1051. // new connection, once the limit on the number of persistent connections per
  1052.  
  1053. // host has been reached.  however, a new connection will not be created if
  1054.  
  1055. // max-connections or max-connections-per-server has also been reached.
  1056.  
  1057. pref("network.http.request.max-start-delay", 10);
  1058.  
  1059.  
  1060.  
  1061. // Headers
  1062.  
  1063. pref("network.http.accept.default", "text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5");
  1064.  
  1065. pref("network.http.sendRefererHeader",      2); // 0=don't send any, 1=send only on clicks, 2=send on image requests as well
  1066.  
  1067.  
  1068.  
  1069. // Controls whether we send HTTPS referres to other HTTPS sites.
  1070.  
  1071. // By default this is enabled for compatibility (see bug 141641)
  1072.  
  1073. pref("network.http.sendSecureXSiteReferrer", true);
  1074.  
  1075.  
  1076.  
  1077. // Maximum number of consecutive redirects before aborting.
  1078.  
  1079. pref("network.http.redirection-limit", 20);
  1080.  
  1081.  
  1082.  
  1083. // Enable http compression: comment this out in case of problems with 1.1
  1084.  
  1085. // NOTE: support for "compress" has been disabled per bug 196406.
  1086.  
  1087. pref("network.http.accept-encoding" ,"gzip,deflate");
  1088.  
  1089.  
  1090.  
  1091. pref("network.http.pipelining"      , false);
  1092.  
  1093. pref("network.http.proxy.pipelining", false);
  1094.  
  1095.  
  1096.  
  1097. // Max number of requests in the pipeline
  1098.  
  1099. pref("network.http.pipelining.maxrequests" , 4);
  1100.  
  1101.  
  1102.  
  1103. // </http>
  1104.  
  1105.  
  1106.  
  1107. // This preference controls whether or not internationalized domain names (IDN)
  1108.  
  1109. // are handled.  IDN requires a nsIIDNService implementation.
  1110.  
  1111. pref("network.enableIDN", true);
  1112.  
  1113.  
  1114.  
  1115. // This preference, if true, causes all UTF-8 domain names to be normalized to
  1116.  
  1117. // punycode.  The intention is to allow UTF-8 domain names as input, but never
  1118.  
  1119. // generate them from punycode.
  1120.  
  1121. pref("network.IDN_show_punycode", false);
  1122.  
  1123.  
  1124.  
  1125. // TLDs with "network.IDN.whitelist.tld" explicitly set to true are treated as 
  1126.  
  1127. // IDN-safe. Otherwise, they're treated as unsafe and punycode will be used
  1128.  
  1129. // for displaying them in the UI (e.g. URL bar). Note that these preferences
  1130.  
  1131. // are referred to ONLY when "network.IDN_show_punycode" is false. In other
  1132.  
  1133. // words, all IDNs will be shown in punycode if "network.IDN_show_punycode"
  1134.  
  1135. // is true.
  1136.  
  1137.  
  1138.  
  1139. // ccTLDs
  1140.  
  1141. pref("network.IDN.whitelist.ac", true);
  1142.  
  1143. pref("network.IDN.whitelist.at", true);
  1144.  
  1145. pref("network.IDN.whitelist.br", true);
  1146.  
  1147. pref("network.IDN.whitelist.ch", true);
  1148.  
  1149. pref("network.IDN.whitelist.cl", true);
  1150.  
  1151. pref("network.IDN.whitelist.cn", true);
  1152.  
  1153. pref("network.IDN.whitelist.de", true);
  1154.  
  1155. pref("network.IDN.whitelist.dk", true);
  1156.  
  1157. pref("network.IDN.whitelist.fi", true);
  1158.  
  1159. pref("network.IDN.whitelist.gr", true);
  1160.  
  1161. pref("network.IDN.whitelist.hu", true);
  1162.  
  1163. pref("network.IDN.whitelist.io", true);
  1164.  
  1165. pref("network.IDN.whitelist.jp", true);
  1166.  
  1167. pref("network.IDN.whitelist.kr", true);
  1168.  
  1169. pref("network.IDN.whitelist.li", true);
  1170.  
  1171. pref("network.IDN.whitelist.lt", true);
  1172.  
  1173. pref("network.IDN.whitelist.no", true);
  1174.  
  1175. pref("network.IDN.whitelist.se", true);
  1176.  
  1177. pref("network.IDN.whitelist.sh", true);
  1178.  
  1179. pref("network.IDN.whitelist.th", true);
  1180.  
  1181. pref("network.IDN.whitelist.tm", true);
  1182.  
  1183. pref("network.IDN.whitelist.tw", true);
  1184.  
  1185. pref("network.IDN.whitelist.vn", true);
  1186.  
  1187.  
  1188.  
  1189. // non-ccTLDs
  1190.  
  1191. pref("network.IDN.whitelist.info", true);
  1192.  
  1193. pref("network.IDN.whitelist.museum", true);
  1194.  
  1195. pref("network.IDN.whitelist.org", true);
  1196.  
  1197.  
  1198.  
  1199. // If a domain includes any of the following characters, it may be a spoof 
  1200.  
  1201. // attempt and so we always display the domain name as punycode. This would 
  1202.  
  1203. // override the settings "network.IDN_show_punycode" and 
  1204.  
  1205. // "network.IDN.whitelist.*".
  1206.  
  1207. pref("network.IDN.blacklist_chars", "\u0020\u00A0\u00BC\u00BD\u01C3\u0337\u0338\u05C3\u05F4\u06D4\u0702\u115F\u1160\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u200B\u2024\u2027\u2028\u2029\u202F\u2039\u203A\u2044\u205F\u2154\u2155\u2156\u2159\u215A\u215B\u215F\u2215\u23AE\u29F6\u29F8\u2AFB\u2AFD\u2FF0\u2FF1\u2FF2\u2FF3\u2FF4\u2FF5\u2FF6\u2FF7\u2FF8\u2FF9\u2FFA\u2FFB\u3000\u3002\u3014\u3015\u3033\u3164\u321D\u321E\u33AE\u33AF\u33C6\u33DF\uFE14\uFE15\uFE3F\uFE5D\uFE5E\uFEFF\uFF0E\uFF0F\uFF61\uFFA0\uFFF9\uFFFA\uFFFB\uFFFC\uFFFD");
  1208.  
  1209.  
  1210.  
  1211. // This preference specifies a list of domains for which DNS lookups will be
  1212.  
  1213. // IPv4 only. Works around broken DNS servers which can't handle IPv6 lookups
  1214.  
  1215. // and/or allows the user to disable IPv6 on a per-domain basis. See bug 68796.
  1216.  
  1217. pref("network.dns.ipv4OnlyDomains", ".doubleclick.net");
  1218.  
  1219.  
  1220.  
  1221. // This preference can be used to turn off IPv6 name lookups. See bug 68796.
  1222.  
  1223. pref("network.dns.disableIPv6", false);
  1224.  
  1225.  
  1226.  
  1227. // This preference controls whether or not URLs with UTF-8 characters are
  1228.  
  1229. // escaped.  Set this preference to TRUE for strict RFC2396 conformance.
  1230.  
  1231. pref("network.standard-url.escape-utf8", true);
  1232.  
  1233.  
  1234.  
  1235. // This preference controls whether or not URLs are always encoded and sent as
  1236.  
  1237. // UTF-8.
  1238.  
  1239. pref("network.standard-url.encode-utf8", false);
  1240.  
  1241.  
  1242.  
  1243. // Idle timeout for ftp control connections - 5 minute default
  1244.  
  1245. pref("network.ftp.idleConnectionTimeout", 300);
  1246.  
  1247.  
  1248.  
  1249. // directory listing format
  1250.  
  1251. // 2: HTML
  1252.  
  1253. // 3: XUL directory viewer
  1254.  
  1255. // all other values are treated like 2
  1256.  
  1257. pref("network.dir.format", 2);
  1258.  
  1259.  
  1260.  
  1261. // enables the prefetch service (i.e., prefetching of <link rel="next"> URLs).
  1262.  
  1263. pref("network.prefetch-next", true);
  1264.  
  1265.  
  1266.  
  1267.  
  1268.  
  1269. // The following prefs pertain to the negotiate-auth extension (see bug 17578),
  1270.  
  1271. // which provides transparent Kerberos or NTLM authentication using the SPNEGO
  1272.  
  1273. // protocol.  Each pref is a comma-separated list of keys, where each key has
  1274.  
  1275. // the format:
  1276.  
  1277. //   [scheme "://"] [host [":" port]]
  1278.  
  1279. // For example, "foo.com" would match "http://www.foo.com/bar", etc.
  1280.  
  1281.  
  1282.  
  1283. // This list controls which URIs can use the negotiate-auth protocol.  This
  1284.  
  1285. // list should be limited to the servers you know you'll need to login to.
  1286.  
  1287. pref("network.negotiate-auth.trusted-uris", "");
  1288.  
  1289. // This list controls which URIs can support delegation.
  1290.  
  1291. pref("network.negotiate-auth.delegation-uris", "");
  1292.  
  1293.  
  1294.  
  1295. // Allow SPNEGO by default when challenged by a proxy server.
  1296.  
  1297. pref("network.negotiate-auth.allow-proxies", true);
  1298.  
  1299.  
  1300.  
  1301. // Path to a specific gssapi library
  1302.  
  1303. pref("network.negotiate-auth.gsslib", "");
  1304.  
  1305.  
  1306.  
  1307. // Specify if the gss lib comes standard with the OS
  1308.  
  1309. pref("network.negotiate-auth.using-native-gsslib", true);
  1310.  
  1311.  
  1312.  
  1313. //@line 663 "/cygdrive/c/builds/tinderbox/Fx-Mozilla1.8/WINNT_5.2_Depend/mozilla/modules/libpref/src/init/all.js"
  1314.  
  1315.  
  1316.  
  1317. // Default to using the SSPI intead of GSSAPI on windows 
  1318.  
  1319. pref("network.auth.use-sspi", true);
  1320.  
  1321.  
  1322.  
  1323. //@line 668 "/cygdrive/c/builds/tinderbox/Fx-Mozilla1.8/WINNT_5.2_Depend/mozilla/modules/libpref/src/init/all.js"
  1324.  
  1325.  
  1326.  
  1327. // The following prefs are used to enable automatic use of the operating
  1328.  
  1329. // system's NTLM implementation to silently authenticate the user with their
  1330.  
  1331. // Window's domain logon.  The trusted-uris pref follows the format of the
  1332.  
  1333. // trusted-uris pref for negotiate authentication.
  1334.  
  1335. pref("network.automatic-ntlm-auth.allow-proxies", true);
  1336.  
  1337. pref("network.automatic-ntlm-auth.trusted-uris", "");
  1338.  
  1339.  
  1340.  
  1341. // This preference controls whether or not the LM hash will be included in
  1342.  
  1343. // response to a NTLM challenge.  By default, this is disabled since servers
  1344.  
  1345. // should almost never need the LM hash, and the LM hash is what makes NTLM
  1346.  
  1347. // authentication less secure.  See bug 250691 for further details.
  1348.  
  1349. // NOTE: automatic-ntlm-auth which leverages the OS-provided NTLM
  1350.  
  1351. //       implementation will not be affected by this preference.
  1352.  
  1353. pref("network.ntlm.send-lm-response", false);
  1354.  
  1355.  
  1356.  
  1357. // sspitzer:  change this back to "news" when we get to beta.
  1358.  
  1359. // for now, set this to news.mozilla.org because you can only
  1360.  
  1361. // post to the server specified by this pref.
  1362.  
  1363. pref("network.hosts.nntp_server",           "news.mozilla.org");
  1364.  
  1365.  
  1366.  
  1367. pref("permissions.default.image",           1); // 1-Accept, 2-Deny, 3-dontAcceptForeign
  1368.  
  1369. pref("network.image.warnAboutImages",       false);
  1370.  
  1371. pref("network.proxy.autoconfig_url",        "");
  1372.  
  1373. pref("network.proxy.type",                  0);
  1374.  
  1375. pref("network.proxy.ftp",                   "");
  1376.  
  1377. pref("network.proxy.ftp_port",              0);
  1378.  
  1379. pref("network.proxy.gopher",                "");
  1380.  
  1381. pref("network.proxy.gopher_port",           0);
  1382.  
  1383. pref("network.proxy.http",                  "");
  1384.  
  1385. pref("network.proxy.http_port",             0);
  1386.  
  1387. pref("network.proxy.ssl",                   "");
  1388.  
  1389. pref("network.proxy.ssl_port",              0);
  1390.  
  1391. pref("network.proxy.socks",                 "");
  1392.  
  1393. pref("network.proxy.socks_port",            0);
  1394.  
  1395. pref("network.proxy.socks_version",         5);
  1396.  
  1397. pref("network.proxy.socks_remote_dns",      false);
  1398.  
  1399. pref("network.proxy.no_proxies_on",         "localhost, 127.0.0.1");
  1400.  
  1401. pref("network.proxy.failover_timeout",      1800); // 30 minutes
  1402.  
  1403. pref("network.online",                      true); //online/offline
  1404.  
  1405. pref("network.cookie.cookieBehavior",       0); // 0-Accept, 1-dontAcceptForeign, 2-dontUse, 3-p3p
  1406.  
  1407. pref("network.cookie.disableCookieForMailNews", true); // disable all cookies for mail
  1408.  
  1409. pref("network.cookie.lifetimePolicy",       0); // accept normally, 1-askBeforeAccepting, 2-acceptForSession,3-acceptForNDays
  1410.  
  1411. pref("network.cookie.alwaysAcceptSessionCookies", false);
  1412.  
  1413. pref("network.cookie.prefsMigrated",        false);
  1414.  
  1415. pref("network.cookie.lifetime.days",        90);
  1416.  
  1417.  
  1418.  
  1419. // The following default value is for p3p medium mode.
  1420.  
  1421. // See xpfe/components/permissions/content/cookieP3P.xul for the definitions of low/medium/hi
  1422.  
  1423. pref("network.cookie.p3p",                  "ffffaaaa");
  1424.  
  1425. pref("network.cookie.p3plevel",             1); // 0=low, 1=medium, 2=high, 3=custom
  1426.  
  1427.  
  1428.  
  1429. pref("network.enablePad",                   false); // Allow client to do proxy autodiscovery
  1430.  
  1431. pref("converter.html2txt.structs",          true); // Output structured phrases (strong, em, code, sub, sup, b, i, u)
  1432.  
  1433. pref("converter.html2txt.header_strategy",  1); // 0 = no indention; 1 = indention, increased with header level; 2 = numbering and slight indention
  1434.  
  1435.  
  1436.  
  1437. pref("ime.password.onFocus.dontCare",       false);
  1438.  
  1439. pref("ime.password.onBlur.dontCare",        false);
  1440.  
  1441.  
  1442.  
  1443. pref("intl.accept_languages",               "chrome://navigator/locale/navigator.properties");
  1444.  
  1445. pref("intl.accept_charsets",                "iso-8859-1,*,utf-8");
  1446.  
  1447. pref("intl.collationOption",                "chrome://navigator-platform/locale/navigator.properties");
  1448.  
  1449. pref("intl.menuitems.alwaysappendaccesskeys","chrome://navigator/locale/navigator.properties");
  1450.  
  1451. pref("intl.menuitems.insertseparatorbeforeaccesskeys","chrome://navigator/locale/navigator.properties");
  1452.  
  1453. pref("intl.charsetmenu.browser.static",     "chrome://navigator/locale/navigator.properties");
  1454.  
  1455. pref("intl.charsetmenu.browser.more1",      "chrome://navigator/locale/navigator.properties");
  1456.  
  1457. pref("intl.charsetmenu.browser.more2",      "chrome://navigator/locale/navigator.properties");
  1458.  
  1459. pref("intl.charsetmenu.browser.more3",      "chrome://navigator/locale/navigator.properties");
  1460.  
  1461. pref("intl.charsetmenu.browser.more4",      "chrome://navigator/locale/navigator.properties");
  1462.  
  1463. pref("intl.charsetmenu.browser.more5",      "chrome://navigator/locale/navigator.properties");
  1464.  
  1465. pref("intl.charsetmenu.browser.unicode",    "chrome://navigator/locale/navigator.properties");
  1466.  
  1467. pref("intl.charsetmenu.mailedit",           "chrome://navigator/locale/navigator.properties");
  1468.  
  1469. pref("intl.charsetmenu.browser.cache",      "");
  1470.  
  1471. pref("intl.charsetmenu.mailview.cache",     "");
  1472.  
  1473. pref("intl.charsetmenu.composer.cache",     "");
  1474.  
  1475. pref("intl.charsetmenu.browser.cache.size", 5);
  1476.  
  1477. pref("intl.charset.detector",               "chrome://navigator/locale/navigator.properties");
  1478.  
  1479. pref("intl.charset.default",                "chrome://navigator-platform/locale/navigator.properties");
  1480.  
  1481. pref("intl.content.langcode",               "chrome://communicator-region/locale/region.properties");
  1482.  
  1483. pref("intl.locale.matchOS",                 false);
  1484.  
  1485. // fallback charset list for Unicode conversion (converting from Unicode)
  1486.  
  1487. // currently used for mail send only to handle symbol characters (e.g Euro, trademark, smartquotes)
  1488.  
  1489. // for ISO-8859-1
  1490.  
  1491. pref("intl.fallbackCharsetList.ISO-8859-1", "windows-1252");
  1492.  
  1493. pref("font.language.group",                 "chrome://navigator/locale/navigator.properties");
  1494.  
  1495.  
  1496.  
  1497. pref("images.dither", "auto");
  1498.  
  1499. pref("security.directory",              "");
  1500.  
  1501.  
  1502.  
  1503. pref("signed.applets.codebase_principal_support", false);
  1504.  
  1505. pref("security.checkloaduri", true);
  1506.  
  1507. pref("security.xpconnect.plugin.unrestricted", true);
  1508.  
  1509. // security-sensitive dialogs should delay button enabling. In milliseconds.
  1510.  
  1511. pref("security.dialog_enable_delay", 2000);
  1512.  
  1513.  
  1514.  
  1515. // Modifier key prefs: default to Windows settings,
  1516.  
  1517. // menu access key = alt, accelerator key = control.
  1518.  
  1519. // Use 17 for Ctrl, 18 for Alt, 224 for Meta, 0 for none. Mac settings in macprefs.js
  1520.  
  1521. pref("ui.key.accelKey", 17);
  1522.  
  1523. pref("ui.key.generalAccessKey", 18);
  1524.  
  1525. pref("ui.key.menuAccessKey", 18);
  1526.  
  1527.  
  1528.  
  1529. pref("ui.key.menuAccessKeyFocuses", false); // overridden below
  1530.  
  1531. pref("ui.key.saveLink.shift", true); // true = shift, false = meta
  1532.  
  1533.  
  1534.  
  1535. // Middle-mouse handling
  1536.  
  1537. pref("middlemouse.paste", false);
  1538.  
  1539. pref("middlemouse.openNewWindow", true);
  1540.  
  1541. pref("middlemouse.contentLoadURL", false);
  1542.  
  1543. pref("middlemouse.scrollbarPosition", false);
  1544.  
  1545.  
  1546.  
  1547. // Clipboard behavior
  1548.  
  1549. pref("clipboard.autocopy", false);
  1550.  
  1551.  
  1552.  
  1553. // 0=lines, 1=pages, 2=history , 3=text size
  1554.  
  1555. pref("mousewheel.withnokey.action",0);
  1556.  
  1557. pref("mousewheel.withnokey.numlines",1);    
  1558.  
  1559. pref("mousewheel.withnokey.sysnumlines",true);
  1560.  
  1561. pref("mousewheel.withcontrolkey.action",0);
  1562.  
  1563. pref("mousewheel.withcontrolkey.numlines",1);
  1564.  
  1565. pref("mousewheel.withcontrolkey.sysnumlines",true);
  1566.  
  1567. // mousewheel.withshiftkey, see the Mac note below.
  1568.  
  1569. pref("mousewheel.withshiftkey.action",0);
  1570.  
  1571. pref("mousewheel.withshiftkey.numlines",1);
  1572.  
  1573. pref("mousewheel.withshiftkey.sysnumlines",true);
  1574.  
  1575. pref("mousewheel.withaltkey.action",2);
  1576.  
  1577. pref("mousewheel.withaltkey.numlines",1);
  1578.  
  1579. pref("mousewheel.withaltkey.sysnumlines",false);
  1580.  
  1581. pref("mousewheel.withmetakey.action",0);
  1582.  
  1583. pref("mousewheel.withmetakey.numlines",1);
  1584.  
  1585. pref("mousewheel.withmetakey.sysnumlines",true);
  1586.  
  1587.  
  1588.  
  1589. // on platforms where scroll messages differ between horizontal scroll
  1590.  
  1591. // and back/forward button events we can activate them by default
  1592.  
  1593. //@line 819 "/cygdrive/c/builds/tinderbox/Fx-Mozilla1.8/WINNT_5.2_Depend/mozilla/modules/libpref/src/init/all.js"
  1594.  
  1595. // activate horizontal scrolling by default
  1596.  
  1597. pref("mousewheel.horizscroll.withnokey.action",0);
  1598.  
  1599. pref("mousewheel.horizscroll.withnokey.numlines",1);
  1600.  
  1601. pref("mousewheel.horizscroll.withnokey.sysnumlines",true);
  1602.  
  1603. pref("mousewheel.horizscroll.withcontrolkey.action",0);
  1604.  
  1605. pref("mousewheel.horizscroll.withcontrolkey.numlines",1);
  1606.  
  1607. pref("mousewheel.horizscroll.withcontrolkey.sysnumlines",true);
  1608.  
  1609. pref("mousewheel.horizscroll.withshiftkey.action",0);
  1610.  
  1611. pref("mousewheel.horizscroll.withshiftkey.numlines",1);
  1612.  
  1613. pref("mousewheel.horizscroll.withshiftkey.sysnumlines",true);
  1614.  
  1615. pref("mousewheel.horizscroll.withaltkey.action",2);
  1616.  
  1617. pref("mousewheel.horizscroll.withaltkey.numlines",-1);
  1618.  
  1619. pref("mousewheel.horizscroll.withaltkey.sysnumlines",false);
  1620.  
  1621. pref("mousewheel.horizscroll.withmetakey.action",0);
  1622.  
  1623. pref("mousewheel.horizscroll.withmetakey.numlines",1);
  1624.  
  1625. pref("mousewheel.horizscroll.withmetakey.sysnumlines",true);
  1626.  
  1627. //@line 854 "/cygdrive/c/builds/tinderbox/Fx-Mozilla1.8/WINNT_5.2_Depend/mozilla/modules/libpref/src/init/all.js"
  1628.  
  1629.  
  1630.  
  1631. pref("profile.confirm_automigration",true);
  1632.  
  1633. // profile.migration_behavior determines how the profiles root is set
  1634.  
  1635. // 0 - use NS_APP_USER_PROFILES_ROOT_DIR
  1636.  
  1637. // 1 - create one based on the NS4.x profile root
  1638.  
  1639. // 2 - use, if not empty, profile.migration_directory otherwise same as 0
  1640.  
  1641. pref("profile.migration_behavior",0);
  1642.  
  1643. pref("profile.migration_directory", "");
  1644.  
  1645.  
  1646.  
  1647. // the amount of time (in seconds) that must elapse
  1648.  
  1649. // before we think your mozilla profile is defunct
  1650.  
  1651. // and you'd benefit from re-migrating from 4.x
  1652.  
  1653. // see bug #137886 for more details
  1654.  
  1655. //
  1656.  
  1657. // if -1, we never think your profile is defunct
  1658.  
  1659. // and users will never see the remigrate UI.
  1660.  
  1661. pref("profile.seconds_until_defunct", -1);
  1662.  
  1663. // We can show it anytime from menus
  1664.  
  1665. pref("profile.manage_only_at_launch", false);
  1666.  
  1667.  
  1668.  
  1669. pref("prefs.converted-to-utf8",false);
  1670.  
  1671.  
  1672.  
  1673. // --------------------------------------------------
  1674.  
  1675. // IBMBIDI 
  1676.  
  1677. // --------------------------------------------------
  1678.  
  1679. //
  1680.  
  1681. // ------------------
  1682.  
  1683. //  Text Direction
  1684.  
  1685. // ------------------
  1686.  
  1687. // 1 = directionLTRBidi *
  1688.  
  1689. // 2 = directionRTLBidi
  1690.  
  1691. pref("bidi.direction", 1);
  1692.  
  1693. // ------------------
  1694.  
  1695. //  Text Type
  1696.  
  1697. // ------------------
  1698.  
  1699. // 1 = charsettexttypeBidi *
  1700.  
  1701. // 2 = logicaltexttypeBidi
  1702.  
  1703. // 3 = visualtexttypeBidi
  1704.  
  1705. pref("bidi.texttype", 1);
  1706.  
  1707. // ------------------
  1708.  
  1709. //  Controls Text Mode
  1710.  
  1711. // ------------------
  1712.  
  1713. // 1 = logicalcontrolstextmodeBidiCmd
  1714.  
  1715. // 2 = visualcontrolstextmodeBidi <-- NO LONGER SUPPORTED
  1716.  
  1717. // 3 = containercontrolstextmodeBidi *
  1718.  
  1719. pref("bidi.controlstextmode", 1);
  1720.  
  1721. // ------------------
  1722.  
  1723. //  Numeral Style
  1724.  
  1725. // ------------------
  1726.  
  1727. // 0 = nominalnumeralBidi *
  1728.  
  1729. // 1 = regularcontextnumeralBidi
  1730.  
  1731. // 2 = hindicontextnumeralBidi
  1732.  
  1733. // 3 = arabicnumeralBidi
  1734.  
  1735. // 4 = hindinumeralBidi
  1736.  
  1737. pref("bidi.numeral", 0);
  1738.  
  1739. // ------------------
  1740.  
  1741. //  Support Mode
  1742.  
  1743. // ------------------
  1744.  
  1745. // 1 = mozillaBidisupport *
  1746.  
  1747. // 2 = OsBidisupport
  1748.  
  1749. // 3 = disableBidisupport
  1750.  
  1751. pref("bidi.support", 1);
  1752.  
  1753. // ------------------
  1754.  
  1755. //  Charset Mode
  1756.  
  1757. // ------------------
  1758.  
  1759. // 1 = doccharactersetBidi *
  1760.  
  1761. // 2 = defaultcharactersetBidi
  1762.  
  1763. pref("bidi.characterset", 1);
  1764.  
  1765.  
  1766.  
  1767.  
  1768.  
  1769. // used for double-click word selection behavior. Win will override.
  1770.  
  1771. pref("layout.word_select.eat_space_to_next_word", false);
  1772.  
  1773. pref("layout.word_select.stop_at_punctuation", true);
  1774.  
  1775.  
  1776.  
  1777. // pref to control whether or not to replace backslashes with Yen signs
  1778.  
  1779. // in documents encoded in one of Japanese legacy encodings (EUC-JP, 
  1780.  
  1781. // Shift_JIS, ISO-2022-JP)
  1782.  
  1783. pref("layout.enable_japanese_specific_transform", false);
  1784.  
  1785.  
  1786.  
  1787. // pref to force frames to be resizable
  1788.  
  1789. pref("layout.frames.force_resizability", false);
  1790.  
  1791.  
  1792.  
  1793. // pref to permit users to make verified SOAP calls by default
  1794.  
  1795. pref("capability.policy.default.SOAPCall.invokeVerifySourceHeader", "allAccess");
  1796.  
  1797.  
  1798.  
  1799. // if true, allow plug-ins to override internal imglib decoder mime types in full-page mode
  1800.  
  1801. pref("plugin.override_internal_types", false);
  1802.  
  1803. pref("plugin.expose_full_path", false); // if true navigator.plugins reveals full path
  1804.  
  1805.  
  1806.  
  1807. // See bug 136985.  Gives embedders a pref to hook into to show
  1808.  
  1809. // a popup blocker if they choose.
  1810.  
  1811. pref("browser.popups.showPopupBlocker", true);
  1812.  
  1813.  
  1814.  
  1815. // Pref to control whether the viewmanager code does double-buffering or not
  1816.  
  1817. // See http://bugzilla.mozilla.org/show_bug.cgi?id=169483 for further details...
  1818.  
  1819. pref("viewmanager.do_doublebuffering", true);
  1820.  
  1821.  
  1822.  
  1823. // which files will be selected for roaming by default.
  1824.  
  1825. // See sroaming/content/prefs/all.js
  1826.  
  1827. pref("roaming.default.files", "bookmarks.html,abook.mab,cookies.txt");
  1828.  
  1829. // display some general warning to the user about making backups, security etc.
  1830.  
  1831. pref("roaming.showInitialWarning", true);
  1832.  
  1833.  
  1834.  
  1835. // whether use prefs from system
  1836.  
  1837. pref("config.use_system_prefs", false);
  1838.  
  1839.  
  1840.  
  1841. // if the system has enabled accessibility
  1842.  
  1843. pref("config.use_system_prefs.accessibility", false);
  1844.  
  1845.  
  1846.  
  1847. /*
  1848.  
  1849.  * What are the entities that you want Mozilla to save using mnemonic
  1850.  
  1851.  * names rather than numeric codes? E.g. If set, we'll output  
  1852.  
  1853.  * otherwise, we may output 0xa0 depending on the charset.
  1854.  
  1855.  *
  1856.  
  1857.  * "none"   : don't use any entity names; only use numeric codes.
  1858.  
  1859.  * "basic"  : use entity names just for   & < > " for 
  1860.  
  1861.  *            interoperability/exchange with products that don't support more
  1862.  
  1863.  *            than that.
  1864.  
  1865.  * "latin1" : use entity names for 8bit accented letters and other special
  1866.  
  1867.  *            symbols between 128 and 255.
  1868.  
  1869.  * "html"   : use entity names for 8bit accented letters, greek letters, and
  1870.  
  1871.  *            other special markup symbols as defined in HTML4.
  1872.  
  1873.  */
  1874.  
  1875. //pref("editor.encode_entity",                 "html");
  1876.  
  1877.  
  1878.  
  1879. pref("editor.resizing.preserve_ratio",       true);
  1880.  
  1881. pref("editor.positioning.offset",            0);
  1882.  
  1883.  
  1884.  
  1885. pref("dom.max_script_run_time", 5);
  1886.  
  1887.  
  1888.  
  1889. pref("svg.enabled", true);
  1890.  
  1891.  
  1892.  
  1893. //@line 987 "/cygdrive/c/builds/tinderbox/Fx-Mozilla1.8/WINNT_5.2_Depend/mozilla/modules/libpref/src/init/all.js"
  1894.  
  1895. pref("font.name.serif.ar", "Times New Roman");
  1896.  
  1897. pref("font.name.sans-serif.ar", "Arial");
  1898.  
  1899. pref("font.name.monospace.ar", "Courier New");
  1900.  
  1901. pref("font.name.cursive.ar", "Comic Sans MS");
  1902.  
  1903.  
  1904.  
  1905. pref("font.name.serif.el", "Times New Roman");
  1906.  
  1907. pref("font.name.sans-serif.el", "Arial");
  1908.  
  1909. pref("font.name.monospace.el", "Courier New");
  1910.  
  1911. pref("font.name.cursive.el", "Comic Sans MS");
  1912.  
  1913.  
  1914.  
  1915. pref("font.name.serif.he", "Narkisim");
  1916.  
  1917. pref("font.name.sans-serif.he", "Arial");
  1918.  
  1919. pref("font.name.monospace.he", "Fixed Miriam Transparent");
  1920.  
  1921. pref("font.name.cursive.he", "Gutmann Yad");
  1922.  
  1923. pref("font.name-list.serif.he", "Narkisim, David");
  1924.  
  1925. pref("font.name-list.monospace.he", "Fixed Miriam Transparent, Miriam Fixed, Rod, Courier New");
  1926.  
  1927. pref("font.name-list.cursive.he", "Gutmann Yad, Ktav, Arial");
  1928.  
  1929.  
  1930.  
  1931. // For CJK fonts, we list a font twice in name-list, once in the native script and once in English
  1932.  
  1933. // because the name of a CJK font returned by Win32 API is beyond our control and depends on
  1934.  
  1935. // whether or not Mozilla is run on CJK Win 9x/ME or Win 2k/XP with a CJK locale.
  1936.  
  1937. // (see bug 227815)
  1938.  
  1939.  
  1940.  
  1941. pref("font.name.serif.ja", "∩╝¡∩╝│ ∩╝░µÿĵ£¥"); // "MS PMincho"
  1942.  
  1943. pref("font.name.sans-serif.ja", "∩╝¡∩╝│ ∩╝░πé┤πé╖πââπé»"); // "MS PGothic"
  1944.  
  1945. pref("font.name.monospace.ja", "∩╝¡∩╝│ πé┤πé╖πââπé»"); // "MS Gothic"
  1946.  
  1947. pref("font.name-list.serif.ja", "MS PMincho, ∩╝¡∩╝│ ∩╝░µÿĵ£¥, MS Mincho, MS PGothic, MS Gothic");
  1948.  
  1949. pref("font.name-list.sans-serif.ja", "MS PGothic, ∩╝¡∩╝│ ∩╝░πé┤πé╖πââπé», MS Gothic, MS PMincho, MS Mincho");
  1950.  
  1951. pref("font.name-list.monospace.ja", "MS Gothic, ∩╝¡∩╝│ πé┤πé╖πââπé», MS Mincho, ∩╝¡∩╝│ µÿĵ£¥, MS PGothic, MS PMincho");
  1952.  
  1953.  
  1954.  
  1955. pref("font.name.serif.ko", "δ░öφâò"); // "Batang" 
  1956.  
  1957. pref("font.name.sans-serif.ko", "Ω╡┤δª╝"); // "Gulim" 
  1958.  
  1959. pref("font.name.monospace.ko", "Ω╡┤δª╝∞▓┤"); // "GulimChe" 
  1960.  
  1961. pref("font.name.cursive.ko", "Ω╢ü∞ä£"); // "Gungseo"
  1962.  
  1963.  
  1964.  
  1965. pref("font.name-list.serif.ko", "Batang, δ░öφâò, Gulim, Ω╡┤δª╝"); 
  1966.  
  1967. pref("font.name-list.sans-serif.ko", "Gulim, Ω╡┤δª╝"); 
  1968.  
  1969. pref("font.name-list.monospace.ko", "GulimChe, Ω╡┤δª╝∞▓┤"); 
  1970.  
  1971. pref("font.name-list.cursive.ko", "Gungseo, Ω╢ü∞ä£"); 
  1972.  
  1973.  
  1974.  
  1975. pref("font.name.serif.th", "Times New Roman");
  1976.  
  1977. pref("font.name.sans-serif.th", "Arial");
  1978.  
  1979. pref("font.name.monospace.th", "Courier New");
  1980.  
  1981. pref("font.name.cursive.th", "Comic Sans MS");
  1982.  
  1983.  
  1984.  
  1985. pref("font.name.serif.tr", "Times New Roman");
  1986.  
  1987. pref("font.name.sans-serif.tr", "Arial");
  1988.  
  1989. pref("font.name.monospace.tr", "Courier New");
  1990.  
  1991. pref("font.name.cursive.tr", "Comic Sans MS");
  1992.  
  1993.  
  1994.  
  1995. pref("font.name.serif.x-baltic", "Times New Roman");
  1996.  
  1997. pref("font.name.sans-serif.x-baltic", "Arial");
  1998.  
  1999. pref("font.name.monospace.x-baltic", "Courier New");
  2000.  
  2001. pref("font.name.cursive.x-baltic", "Comic Sans MS");
  2002.  
  2003.  
  2004.  
  2005. pref("font.name.serif.x-central-euro", "Times New Roman");
  2006.  
  2007. pref("font.name.sans-serif.x-central-euro", "Arial");
  2008.  
  2009. pref("font.name.monospace.x-central-euro", "Courier New");
  2010.  
  2011. pref("font.name.cursive.x-central-euro", "Comic Sans MS");
  2012.  
  2013.  
  2014.  
  2015. pref("font.name.serif.x-cyrillic", "Times New Roman");
  2016.  
  2017. pref("font.name.sans-serif.x-cyrillic", "Arial");
  2018.  
  2019. pref("font.name.monospace.x-cyrillic", "Courier New");
  2020.  
  2021. pref("font.name.cursive.x-cyrillic", "Comic Sans MS");
  2022.  
  2023.  
  2024.  
  2025. pref("font.name.serif.x-unicode", "Times New Roman");
  2026.  
  2027. pref("font.name.sans-serif.x-unicode", "Arial");
  2028.  
  2029. pref("font.name.monospace.x-unicode", "Courier New");
  2030.  
  2031. pref("font.name.cursive.x-unicode", "Comic Sans MS");
  2032.  
  2033.  
  2034.  
  2035. pref("font.name.serif.x-western", "Times New Roman");
  2036.  
  2037. pref("font.name.sans-serif.x-western", "Arial");
  2038.  
  2039. pref("font.name.monospace.x-western", "Courier New");
  2040.  
  2041. pref("font.name.cursive.x-western", "Comic Sans MS");
  2042.  
  2043.  
  2044.  
  2045. pref("font.name.serif.zh-CN", "σ«ïΣ╜ô"); //MS Song
  2046.  
  2047. pref("font.name.sans-serif.zh-CN", "σ«ïΣ╜ô"); //MS Song
  2048.  
  2049. pref("font.name.monospace.zh-CN", "σ«ïΣ╜ô"); //MS Song
  2050.  
  2051. pref("font.name-list.serif.zh-CN", "MS Song, σ«ïΣ╜ô, SimSun");
  2052.  
  2053. pref("font.name-list.sans-serif.zh-CN", "MS Song, σ«ïΣ╜ô, SimSun");
  2054.  
  2055. pref("font.name-list.monospace.zh-CN", "MS Song, σ«ïΣ╜ô, SimSun");
  2056.  
  2057.  
  2058.  
  2059. // Per Taiwanese users' demand. They don't want to use TC fonts for
  2060.  
  2061. // rendering Latin letters. (bug 88579)
  2062.  
  2063. pref("font.name.serif.zh-TW", "Times New Roman"); 
  2064.  
  2065. pref("font.name.sans-serif.zh-TW", "Arial"); 
  2066.  
  2067. pref("font.name.monospace.zh-TW", "τ┤░µÿÄΘ½ö");  // MingLiU
  2068.  
  2069. pref("font.name-list.serif.zh-TW", "µû░τ┤░µÿÄΘ½ö,PMingLiu,τ┤░µÿÄΘ½ö,MingLiU"); 
  2070.  
  2071. pref("font.name-list.sans-serif.zh-TW", "µû░τ┤░µÿÄΘ½ö,PMingLiU,τ┤░µÿÄΘ½ö,MingLiU");
  2072.  
  2073. pref("font.name-list.monospace.zh-TW", "MingLiU,τ┤░µÿÄΘ½ö");
  2074.  
  2075.  
  2076.  
  2077. // hkscsm3u.ttf (HKSCS-2001) :  http://www.microsoft.com/hk/hkscs 
  2078.  
  2079. // Hong Kong users have the same demand about glyphs for Latin letters (bug 88579) 
  2080.  
  2081. pref("font.name.serif.zh-HK", "Times New Roman"); 
  2082.  
  2083. pref("font.name.sans-serif.zh-HK", "Arial"); 
  2084.  
  2085. pref("font.name.monospace.zh-HK", "τ┤░µÿÄΘ½ö_HKSCS"); 
  2086.  
  2087. pref("font.name-list.serif.zh-HK", "τ┤░µÿÄΘ½ö_HKSCS, MingLiu_HKSCS, Ming(for ISO10646), MingLiU, τ┤░µÿÄΘ½ö"); 
  2088.  
  2089. pref("font.name-list.sans-serif.zh-HK", "τ┤░µÿÄΘ½ö_HKSCS, MingLiU_HKSCS, Ming(for ISO10646), MingLiU, τ┤░µÿÄΘ½ö");  
  2090.  
  2091. pref("font.name-list.monospace.zh-HK", "MingLiU_HKSCS,  τ┤░µÿÄΘ½ö_HKSCS, Ming(for ISO10646), MingLiU, τ┤░µÿÄΘ½ö");
  2092.  
  2093.  
  2094.  
  2095. pref("font.name.serif.x-devanagari", "Mangal");
  2096.  
  2097. pref("font.name.sans-serif.x-devanagari", "Raghindi");
  2098.  
  2099. pref("font.name.monospace.x-devanagari", "Mangal");
  2100.  
  2101. pref("font.name-list.serif.x-devanagari", "Mangal, Raghindi");
  2102.  
  2103. pref("font.name-list.monospace.x-devanagari", "Mangal, Raghindi");
  2104.  
  2105.  
  2106.  
  2107. pref("font.name.serif.x-tamil", "Latha");
  2108.  
  2109. pref("font.name.sans-serif.x-tamil", "Code2000");
  2110.  
  2111. pref("font.name.monospace.x-tamil", "Latha");
  2112.  
  2113. pref("font.name-list.serif.x-tamil", "Latha, Code2000");
  2114.  
  2115. pref("font.name-list.monospace.x-tamil", "Latha, Code2000");
  2116.  
  2117.  
  2118.  
  2119. //@line 1100 "/cygdrive/c/builds/tinderbox/Fx-Mozilla1.8/WINNT_5.2_Depend/mozilla/modules/libpref/src/init/all.js"
  2120.  
  2121.  
  2122.  
  2123. pref("font.name.serif.x-armn", "Sylfaen");
  2124.  
  2125. pref("font.name.sans-serif.x-armn", "Arial AMU");
  2126.  
  2127. pref("font.name.monospace.x-armn", "Arial AMU");
  2128.  
  2129. pref("font.name-list.serif.x-armn", "Sylfaen,Arial Unicode MS, Code2000");
  2130.  
  2131. pref("font.name-list.monospace.x-armn", "Arial AMU, Arial Unicode MS, Code2000");
  2132.  
  2133.  
  2134.  
  2135. pref("font.name.serif.x-beng", "Akaash");
  2136.  
  2137. pref("font.name.sans-serif.x-beng", "Likhan");
  2138.  
  2139. pref("font.name.monospace.x-beng", "Mitra Mono");
  2140.  
  2141. pref("font.name-list.serif.x-beng", "Akaash, Ekushey Punarbhaba, Code2000, Arial Unicode MS"); 
  2142.  
  2143. pref("font.name-list.monospace.x-beng", "Likhan, Mukti Narrow, Code 2000, Arial Unicode MS");
  2144.  
  2145.  
  2146.  
  2147. pref("font.name.serif.x-cans", "Aboriginal Serif");
  2148.  
  2149. pref("font.name.sans-serif.x-cans", "Aboriginal Sans");
  2150.  
  2151. pref("font.name.monospace.x-cans", "Aboriginal Sans");
  2152.  
  2153. pref("font.name-list.serif.x-cans", "Aboriginal Serif, BJCree Uni");
  2154.  
  2155. pref("font.name-list.monospace.x-cans", "Aboriginal Sans, OskiDakelh, Pigiarniq, Uqammaq");
  2156.  
  2157.  
  2158.  
  2159. pref("font.name.serif.x-ethi", "Visual Geez Unicode");
  2160.  
  2161. pref("font.name.sans-serif.x-ethi", "GF Zemen Unicode");
  2162.  
  2163. pref("font.name.cursive.x-ethi", "Visual Geez Unicode Title");
  2164.  
  2165. pref("font.name.monospace.x-ethi", "Ethiopia Jiret");
  2166.  
  2167. pref("font.name-list.serif.x-ethi", "Visual Geez Unicode, Visual Geez Unicode Agazian, Code2000");
  2168.  
  2169. pref("font.name-list.monospace.x-ethi", "Ethiopia Jiret, Code2000");
  2170.  
  2171.  
  2172.  
  2173. pref("font.name.serif.x-geor", "Sylfaen");
  2174.  
  2175. pref("font.name.sans-serif.x-geor", "BPG Classic 99U");
  2176.  
  2177. pref("font.name.monospace.x-geor", "Code2000");
  2178.  
  2179. pref("font.name-list.serif.x-geor", "Sylfaen, BPG Paata Khutsuri U, TITUS Cyberbit Basic"); 
  2180.  
  2181. pref("font.name-list.monospace.x-geor", "BPG Classic 99U, Code2000, Arial Unicode MS");
  2182.  
  2183.  
  2184.  
  2185. pref("font.name.serif.x-gujr", "Shruti");
  2186.  
  2187. pref("font.name.sans-serif.x-gujr", "Shruti");
  2188.  
  2189. pref("font.name.monospace.x-gujr", "Code2000");
  2190.  
  2191. pref("font.name-list.serif.x-gujr", "Shruti, Code2000, Arial Unicode MS"); 
  2192.  
  2193. pref("font.name-list.monospace.x-gujr", "Code2000, Shruti, Arial Unicode MS");
  2194.  
  2195.  
  2196.  
  2197. pref("font.name.serif.x-guru", "Raavi");
  2198.  
  2199. pref("font.name.sans-serif.x-guru", "Code2000");
  2200.  
  2201. pref("font.name.monospace.x-guru", "Code2000");
  2202.  
  2203. pref("font.name-list.serif.x-guru", "Raavi, Saab, Code2000, Arial Unicode MS"); 
  2204.  
  2205. pref("font.name-list.monospace.x-guru", "Code2000, Raavi, Saab, Arial Unicode MS");
  2206.  
  2207.  
  2208.  
  2209. pref("font.name.serif.x-khmr", "PhnomPenh OT");
  2210.  
  2211. pref("font.name.sans-serif.x-khmr", "Khmer OS");
  2212.  
  2213. pref("font.name.monospace.x-khmr", "Code2000");
  2214.  
  2215. pref("font.name-list.serif.x-khmr", "PhnomPenh OT,.Mondulkiri U GR 1.5, Khmer OS");
  2216.  
  2217. pref("font.name-list.monospace.x-khmr", "Code2000, Khmer OS, Khmer OS System");
  2218.  
  2219.  
  2220.  
  2221. pref("font.name.serif.x-mlym", "Kartika");
  2222.  
  2223. pref("font.name.sans-serif.x-mlym", "Anjali-Beta");
  2224.  
  2225. pref("font.name.monospace.x-mlym", "Code2000");
  2226.  
  2227. pref("font.name-list.serif.x-mlym", "Kartika, ThoolikaUnicode, Code2000, Arial Unicode MS");
  2228.  
  2229. pref("font.name-list.monospace.x-mlym", "Code2000, Anjali-Beta");
  2230.  
  2231.  
  2232.  
  2233. pref("font.default.ar", "sans-serif");
  2234.  
  2235. pref("font.size.variable.ar", 16);
  2236.  
  2237. pref("font.size.fixed.ar", 13);
  2238.  
  2239.  
  2240.  
  2241. pref("font.default.el", "serif");
  2242.  
  2243. pref("font.size.variable.el", 16);
  2244.  
  2245. pref("font.size.fixed.el", 13);
  2246.  
  2247.  
  2248.  
  2249. pref("font.default.he", "sans-serif");
  2250.  
  2251. pref("font.size.variable.he", 16);
  2252.  
  2253. pref("font.size.fixed.he", 13);
  2254.  
  2255.  
  2256.  
  2257. pref("font.default.ja", "sans-serif");
  2258.  
  2259. pref("font.size.variable.ja", 16);
  2260.  
  2261. pref("font.size.fixed.ja", 16);
  2262.  
  2263.  
  2264.  
  2265. pref("font.default.ko", "sans-serif");
  2266.  
  2267. pref("font.size.variable.ko", 16);
  2268.  
  2269. pref("font.size.fixed.ko", 16);
  2270.  
  2271.  
  2272.  
  2273. pref("font.default.th", "serif");
  2274.  
  2275. pref("font.size.variable.th", 16);
  2276.  
  2277. pref("font.size.fixed.th", 13);
  2278.  
  2279.  
  2280.  
  2281. pref("font.default.tr", "serif");
  2282.  
  2283. pref("font.size.variable.tr", 16);
  2284.  
  2285. pref("font.size.fixed.tr", 13);
  2286.  
  2287.  
  2288.  
  2289. pref("font.default.x-baltic", "serif");
  2290.  
  2291. pref("font.size.variable.x-baltic", 16);
  2292.  
  2293. pref("font.size.fixed.x-baltic", 13);
  2294.  
  2295.  
  2296.  
  2297. pref("font.default.x-central-euro", "serif");
  2298.  
  2299. pref("font.size.variable.x-central-euro", 16);
  2300.  
  2301. pref("font.size.fixed.x-central-euro", 13);
  2302.  
  2303.  
  2304.  
  2305. pref("font.default.x-cyrillic", "serif");
  2306.  
  2307. pref("font.size.variable.x-cyrillic", 16);
  2308.  
  2309. pref("font.size.fixed.x-cyrillic", 13);
  2310.  
  2311.  
  2312.  
  2313. pref("font.default.x-devanagari", "serif");
  2314.  
  2315. pref("font.size.variable.x-devanagari", 16);
  2316.  
  2317. pref("font.size.fixed.x-devanagari", 13);
  2318.  
  2319.  
  2320.  
  2321. pref("font.default.x-tamil", "serif");
  2322.  
  2323. pref("font.size.variable.x-tamil", 16);
  2324.  
  2325. pref("font.size.fixed.x-tamil", 13);
  2326.  
  2327.  
  2328.  
  2329. pref("font.default.x-armn", "serif");
  2330.  
  2331. pref("font.size.variable.x-armn", 16);
  2332.  
  2333. pref("font.size.fixed.x-armn", 13);
  2334.  
  2335.  
  2336.  
  2337. pref("font.default.x-beng", "serif");
  2338.  
  2339. pref("font.size.variable.x-beng", 16);
  2340.  
  2341. pref("font.size.fixed.x-beng", 13);
  2342.  
  2343.  
  2344.  
  2345. pref("font.default.x-cans", "serif");
  2346.  
  2347. pref("font.size.variable.x-cans", 16);
  2348.  
  2349. pref("font.size.fixed.x-cans", 13);
  2350.  
  2351.  
  2352.  
  2353. pref("font.default.x-ethi", "serif");
  2354.  
  2355. pref("font.size.variable.x-ethi", 16);
  2356.  
  2357. pref("font.size.fixed.x-ethi", 13);
  2358.  
  2359.  
  2360.  
  2361. pref("font.default.x-geor", "serif");
  2362.  
  2363. pref("font.size.variable.x-geor", 16);
  2364.  
  2365. pref("font.size.fixed.x-geor", 13);
  2366.  
  2367.  
  2368.  
  2369. pref("font.default.x-gujr", "serif");
  2370.  
  2371. pref("font.size.variable.x-gujr", 16);
  2372.  
  2373. pref("font.size.fixed.x-gujr", 13);
  2374.  
  2375.  
  2376.  
  2377. pref("font.default.x-guru", "serif");
  2378.  
  2379. pref("font.size.variable.x-guru", 16);
  2380.  
  2381. pref("font.size.fixed.x-guru", 13);
  2382.  
  2383.  
  2384.  
  2385. pref("font.default.x-khmr", "serif");
  2386.  
  2387. pref("font.size.variable.x-khmr", 16);
  2388.  
  2389. pref("font.size.fixed.x-khmr", 13);
  2390.  
  2391.  
  2392.  
  2393. pref("font.default.x-mlym", "serif");
  2394.  
  2395. pref("font.size.variable.x-mlym", 16);
  2396.  
  2397. pref("font.size.fixed.x-mlym", 13);
  2398.  
  2399.  
  2400.  
  2401. pref("font.default.x-unicode", "serif");
  2402.  
  2403. pref("font.size.variable.x-unicode", 16);
  2404.  
  2405. pref("font.size.fixed.x-unicode", 13);
  2406.  
  2407.  
  2408.  
  2409. pref("font.default.x-western", "serif");
  2410.  
  2411. pref("font.size.variable.x-western", 16);
  2412.  
  2413. pref("font.size.fixed.x-western", 13);
  2414.  
  2415.  
  2416.  
  2417. pref("font.default.zh-CN", "sans-serif");
  2418.  
  2419. pref("font.size.variable.zh-CN", 16);
  2420.  
  2421. pref("font.size.fixed.zh-CN", 16);
  2422.  
  2423.  
  2424.  
  2425. pref("font.default.zh-TW", "sans-serif");
  2426.  
  2427. pref("font.size.variable.zh-TW", 16);
  2428.  
  2429. pref("font.size.fixed.zh-TW", 16);
  2430.  
  2431.  
  2432.  
  2433. pref("font.default.zh-HK", "sans-serif");
  2434.  
  2435. pref("font.size.variable.zh-HK", 16);
  2436.  
  2437. pref("font.size.fixed.zh-HK", 16);
  2438.  
  2439.  
  2440.  
  2441. pref("ui.key.menuAccessKeyFocuses", true);
  2442.  
  2443.  
  2444.  
  2445. // override double-click word selection behavior.
  2446.  
  2447. pref("layout.word_select.eat_space_to_next_word", true);
  2448.  
  2449.  
  2450.  
  2451. // print_extra_margin enables platforms to specify an extra gap or margin
  2452.  
  2453. // around the content of the page for Print Preview only
  2454.  
  2455. pref("print.print_extra_margin", 90); // twips (90 twips is an eigth of an inch)
  2456.  
  2457.  
  2458.  
  2459. // This indicates whether it should use the native dialog or the XP Dialog
  2460.  
  2461. pref("print.use_native_print_dialog", true);
  2462.  
  2463.  
  2464.  
  2465. // Whether to extend the native dialog with information on printing frames.
  2466.  
  2467. pref("print.extend_native_print_dialog", true);
  2468.  
  2469.  
  2470.  
  2471. // Locate Java by scanning the Sun JRE installation directory with a minimum version
  2472.  
  2473. // Note: Does not scan if security.enable_java is not true
  2474.  
  2475. pref("plugin.scan.SunJRE", "1.3");
  2476.  
  2477.  
  2478.  
  2479. // Locate plugins by scanning the Adobe Acrobat installation directory with a minimum version
  2480.  
  2481. pref("plugin.scan.Acrobat", "5.0");
  2482.  
  2483.  
  2484.  
  2485. // Locate plugins by scanning the Quicktime installation directory with a minimum version
  2486.  
  2487. pref("plugin.scan.Quicktime", "5.0");
  2488.  
  2489.  
  2490.  
  2491. // Locate and scan the Window Media Player installation directory for plugins with a minimum version
  2492.  
  2493. pref("plugin.scan.WindowsMediaPlayer", "7.0");
  2494.  
  2495.  
  2496.  
  2497. // Locate plugins by the directories specified in the Windows registry for PLIDs
  2498.  
  2499. // Which is currently HKLM\Software\MozillaPlugins\xxxPLIDxxx\Path
  2500.  
  2501. pref("plugin.scan.plid.all", true);
  2502.  
  2503.  
  2504.  
  2505. // Controls the scanning of the Navigator 4.x directory for plugins
  2506.  
  2507. // When pref is missing, the default is to pickup popular plugins such as
  2508.  
  2509. // Flash, Shockwave, Acrobat, and Quicktime. If set to true, ALL plugins
  2510.  
  2511. // will be picked up and if set to false the scan will not happen at all
  2512.  
  2513. //pref("plugin.scan.4xPluginFolder", false);
  2514.  
  2515.  
  2516.  
  2517. // Help Windows NT, 2000, and XP dialup a RAS connection
  2518.  
  2519. // when a network address is unreachable.
  2520.  
  2521. pref("network.autodial-helper.enabled", true);
  2522.  
  2523.  
  2524.  
  2525. // Pref to control whether we set ddeexec subkeys for the http
  2526.  
  2527. // Internet shortcut protocol if we are handling it.  These
  2528.  
  2529. // subkeys will be set only while we are running (to avoid the
  2530.  
  2531. // problem of Windows showing an alert when it tries to use DDE
  2532.  
  2533. // and we're not already running).
  2534.  
  2535. pref("advanced.system.supportDDEExec", true);
  2536.  
  2537.  
  2538.  
  2539. // Use CP932 compatible map for JIS X 0208
  2540.  
  2541. pref("intl.jis0208.map", "CP932");
  2542.  
  2543.  
  2544.  
  2545. // Switch the keyboard layout per window
  2546.  
  2547. pref("intl.keyboard.per_window_layout", false);
  2548.  
  2549.  
  2550.  
  2551. //@line 1317 "/cygdrive/c/builds/tinderbox/Fx-Mozilla1.8/WINNT_5.2_Depend/mozilla/modules/libpref/src/init/all.js"
  2552.  
  2553.  
  2554.  
  2555. //@line 1504 "/cygdrive/c/builds/tinderbox/Fx-Mozilla1.8/WINNT_5.2_Depend/mozilla/modules/libpref/src/init/all.js"
  2556.  
  2557.  
  2558.  
  2559. //@line 1693 "/cygdrive/c/builds/tinderbox/Fx-Mozilla1.8/WINNT_5.2_Depend/mozilla/modules/libpref/src/init/all.js"
  2560.  
  2561.  
  2562.  
  2563. //@line 1774 "/cygdrive/c/builds/tinderbox/Fx-Mozilla1.8/WINNT_5.2_Depend/mozilla/modules/libpref/src/init/all.js"
  2564.  
  2565.  
  2566.  
  2567. //@line 2192 "/cygdrive/c/builds/tinderbox/Fx-Mozilla1.8/WINNT_5.2_Depend/mozilla/modules/libpref/src/init/all.js"
  2568.  
  2569.  
  2570.  
  2571. //@line 2260 "/cygdrive/c/builds/tinderbox/Fx-Mozilla1.8/WINNT_5.2_Depend/mozilla/modules/libpref/src/init/all.js"
  2572.  
  2573.  
  2574.  
  2575. //@line 2286 "/cygdrive/c/builds/tinderbox/Fx-Mozilla1.8/WINNT_5.2_Depend/mozilla/modules/libpref/src/init/all.js"
  2576.  
  2577.  
  2578.  
  2579. //@line 2306 "/cygdrive/c/builds/tinderbox/Fx-Mozilla1.8/WINNT_5.2_Depend/mozilla/modules/libpref/src/init/all.js"
  2580.  
  2581.  
  2582.  
  2583.