home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 February / PCWorld_2008-02_cd.bin / temacd / songbird / Songbird_0.4_windows-i686.exe / xulrunner / greprefs / all.js next >
Text File  |  2007-12-19  |  68KB  |  1,431 lines

  1. /* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2. /* ***** BEGIN LICENSE BLOCK *****
  3.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.  *
  5.  * The contents of this file are subject to the Mozilla Public License Version
  6.  * 1.1 (the "License"); you may not use this file except in compliance with
  7.  * the License. You may obtain a copy of the License at
  8.  * http://www.mozilla.org/MPL/
  9.  *
  10.  * Software distributed under the License is distributed on an "AS IS" basis,
  11.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.  * for the specific language governing rights and limitations under the
  13.  * License.
  14.  *
  15.  * The Original Code is mozilla.org code.
  16.  *
  17.  * The Initial Developer of the Original Code is
  18.  * Netscape Communications Corporation.
  19.  * Portions created by the Initial Developer are Copyright (C) 1998
  20.  * the Initial Developer. All Rights Reserved.
  21.  *
  22.  * Contributor(s):
  23.  *   Benjamin Smedberg <bsmedberg@covad.net>
  24.  *
  25.  * Alternatively, the contents of this file may be used under the terms of
  26.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  27.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  28.  * in which case the provisions of the GPL or the LGPL are applicable instead
  29.  * of those above. If you wish to allow use of your version of this file only
  30.  * under the terms of either the GPL or the LGPL, and not to allow others to
  31.  * use your version of this file under the terms of the MPL, indicate your
  32.  * decision by deleting the provisions above and replace them with the notice
  33.  * and other provisions required by the GPL or the LGPL. If you do not delete
  34.  * the provisions above, a recipient may use your version of this file under
  35.  * the terms of any one of the MPL, the GPL or the LGPL.
  36.  *
  37.  * ***** END LICENSE BLOCK ***** */
  38.  
  39. /* The prefs in this file are shipped with the GRE and should apply to all
  40.  * embedding situations. Application-specific preferences belong somewhere else,
  41.  * for example xpfe/bootstrap/browser-prefs.js
  42.  *
  43.  * Platform-specific #ifdefs at the end of this file override the generic
  44.  * entries at the top.
  45.  */
  46.  
  47. // SYNTAX HINTS:  dashes are delimiters.  Use underscores instead.
  48. //  The first character after a period must be alphabetic.
  49.  
  50. pref("keyword.URL", "http://www.google.com/search?ie=UTF-8&oe=utf-8&q=");
  51. pref("keyword.enabled", false);
  52. pref("general.useragent.locale", "chrome://navigator/locale/navigator.properties");
  53.  
  54. pref("general.config.obscure_value", 13); // for MCD .cfg files
  55.  
  56. pref("general.warnOnAboutConfig", true);
  57.  
  58. // maximum number of dated backups to keep at any time
  59. pref("browser.bookmarks.max_backups",       5);
  60.  
  61. pref("browser.cache.disk.enable",           true);
  62. pref("browser.cache.disk.capacity",         51200);
  63. pref("browser.cache.memory.enable",         true);
  64. //pref("browser.cache.memory.capacity",     -1);
  65. // -1 = determine dynamically, 0 = none, n = memory capacity in kilobytes
  66. pref("browser.cache.disk_cache_ssl",        false);
  67. // 0 = once-per-session, 1 = each-time, 2 = never, 3 = when-appropriate/automatically
  68. pref("browser.cache.check_doc_frequency",   3);
  69.  
  70. pref("browser.cache.offline.enable",           true);
  71. // offline cache capacity in kilobytes
  72. pref("browser.cache.offline.capacity",         10240);
  73.  
  74. // Fastback caching - if this pref is negative, then we calculate the number
  75. // of content viewers to cache based on the amount of available memory.
  76. pref("browser.sessionhistory.max_total_viewers", -1);
  77.  
  78. pref("browser.display.use_document_fonts",  1);  // 0 = never, 1 = quick, 2 = always
  79. pref("browser.display.use_document_colors", true);
  80. pref("browser.display.use_system_colors",   false);
  81. pref("browser.display.foreground_color",    "#000000");
  82. pref("browser.display.background_color",    "#FFFFFF");
  83. pref("browser.display.force_inline_alttext", false); // true = force ALT text for missing images to be layed out inline
  84. // 0 = no external leading, 
  85. // 1 = use external leading only when font provides, 
  86. // 2 = add extra leading both internal leading and external leading are zero
  87. pref("browser.display.normal_lineheight_calc_control", 2);
  88. pref("browser.display.show_image_placeholders", true); // true = show image placeholders while image is loaded and when image is broken
  89. // min font device pixel size at which to turn on high quality
  90. pref("browser.display.auto_quality_min_font_size", 60);
  91. pref("browser.anchor_color",                "#0000EE");
  92. pref("browser.active_color",                "#EE0000");
  93. pref("browser.visited_color",               "#551A8B");
  94. pref("browser.underline_anchors",           true);
  95. pref("browser.blink_allowed",               true);
  96. pref("browser.enable_automatic_image_resizing", false);
  97.  
  98. // See http://whatwg.org/specs/web-apps/current-work/#ping
  99. pref("browser.send_pings", false);
  100. pref("browser.send_pings.max_per_link", 1);           // limit the number of pings that are sent per link click
  101. pref("browser.send_pings.require_same_host", false);  // only send pings to the same host if this is true
  102.  
  103. pref("browser.display.use_focus_colors",    false);
  104. pref("browser.display.focus_background_color", "#117722");
  105. pref("browser.display.focus_text_color",     "#ffffff");
  106. pref("browser.display.focus_ring_width",     1);
  107. pref("browser.display.focus_ring_on_anything", false);
  108.  
  109. pref("browser.helperApps.alwaysAsk.force",  false);
  110. pref("browser.helperApps.neverAsk.saveToDisk", "");
  111. pref("browser.helperApps.neverAsk.openFile", "");
  112.  
  113. // xxxbsmedberg: where should prefs for the toolkit go?
  114. pref("browser.chrome.toolbar_tips",         true);
  115. // 0 = Pictures Only, 1 = Text Only, 2 = Pictures and Text
  116. pref("browser.chrome.toolbar_style",        2);
  117. // max image size for which it is placed in the tab icon for tabbrowser.
  118. // if 0, no images are used for tab icons for image documents.
  119. pref("browser.chrome.image_icons.max_size", 1024);
  120.  
  121. pref("browser.triple_click_selects_paragraph", true);
  122.  
  123. pref("gfx.color_management.enabled", false);
  124. pref("gfx.color_management.display_profile", "");
  125.  
  126. pref("accessibility.browsewithcaret", false);
  127. pref("accessibility.warn_on_browsewithcaret", true);
  128.  
  129. //@line 130 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\modules\libpref\src\init\all.js"
  130. // Tab focus model bit field:
  131. // 1 focuses text controls, 2 focuses other form elements, 4 adds links.
  132. // Most users will want 1, 3, or 7.
  133. // On OS X, we use Full Keyboard Access system preference,
  134. // unless accessibility.tabfocus is set by the user.
  135. pref("accessibility.tabfocus", 7);
  136. pref("accessibility.tabfocus_applies_to_xul", false);
  137.  
  138. // On OS X, we follow the "Click in the scrollbar to:" system preference
  139. // unless this preference was set manually
  140. pref("ui.scrollToClick", 0);
  141.  
  142. //@line 146 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\modules\libpref\src\init\all.js"
  143.  
  144. pref("accessibility.usetexttospeech", "");
  145. pref("accessibility.usebrailledisplay", "");
  146. pref("accessibility.accesskeycausesactivation", true);
  147.  
  148. // Type Ahead Find
  149. pref("accessibility.typeaheadfind", true);
  150. pref("accessibility.typeaheadfind.autostart", true);
  151. // casesensitive: controls the find bar's case-sensitivity
  152. //     0 - "never"  (case-insensitive)
  153. //     1 - "always" (case-sensitive)
  154. // other - "auto"   (case-sensitive for mixed-case input, insensitive otherwise)
  155. pref("accessibility.typeaheadfind.casesensitive", 0);
  156. pref("accessibility.typeaheadfind.linksonly", true);
  157. pref("accessibility.typeaheadfind.startlinksonly", false);
  158. pref("accessibility.typeaheadfind.timeout", 4000);
  159. pref("accessibility.typeaheadfind.enabletimeout", true);
  160. pref("accessibility.typeaheadfind.soundURL", "beep");
  161. pref("accessibility.typeaheadfind.enablesound", true);
  162. pref("accessibility.typeaheadfind.prefillwithselection", true);
  163.  
  164. pref("browser.history_expire_days", 9);
  165.  
  166. // loading and rendering of framesets and iframes
  167. pref("browser.frames.enabled", true);
  168.  
  169. // form submission
  170. pref("browser.forms.submit.backwards_compatible", true);
  171.  
  172. // xxxbsmedberg more toolkit prefs?
  173. // Tab browser preferences.
  174. pref("browser.tabs.autoHide", true);
  175. pref("browser.tabs.forceHide", false);
  176. pref("browser.tabs.warnOnClose", true);
  177. pref("browser.tabs.warnOnCloseOther", true);
  178. pref("browser.tabs.warnOnOpen", true);
  179. pref("browser.tabs.maxOpenBeforeWarn", 15);
  180. // 0 = append, 1 = replace
  181. pref("browser.tabs.loadGroup", 1);
  182.  
  183. pref("toolkit.scrollbox.smoothScroll", true);
  184. pref("toolkit.scrollbox.scrollIncrement", 20);
  185. pref("toolkit.scrollbox.clickToScroll.scrollDelay", 150);
  186.  
  187. // lets new tab/window load something different than first window
  188. // -1 - use navigator startup preference
  189. //  0 - loads blank page
  190. //  1 - loads home page
  191. //  2 - loads last page visited
  192. pref("browser.tabs.loadOnNewTab", 0);
  193. pref("browser.windows.loadOnNewWindow", 1);
  194.  
  195. // view source
  196. pref("view_source.syntax_highlight", true);
  197. pref("view_source.wrap_long_lines", false);
  198.  
  199. // dispatch left clicks only to content in browser (still allows clicks to chrome/xul)
  200. pref("nglayout.events.dispatchLeftClickOnly", true);
  201.  
  202. // whether or not to draw images while dragging
  203. pref("nglayout.enable_drag_images", true);
  204.  
  205. // whether or not to use xbl form controls
  206. pref("nglayout.debug.enable_xbl_forms", false);
  207.  
  208. // scrollbar snapping region
  209. // 0 - off
  210. // 1 and higher - slider thickness multiple
  211. pref("slider.snapMultiplier", 0);
  212.  
  213. // option to choose plug-in finder
  214. pref("application.use_ns_plugin_finder", false);
  215.  
  216. // URI fixup prefs
  217. pref("browser.fixup.alternate.enabled", true);
  218. pref("browser.fixup.alternate.prefix", "www.");
  219. pref("browser.fixup.alternate.suffix", ".com");
  220. pref("browser.fixup.hide_user_pass", true);
  221.  
  222. // Print header customization
  223. // Use the following codes:
  224. // &T - Title
  225. // &U - Document URL
  226. // &D - Date/Time
  227. // &P - Page Number
  228. // &PT - Page Number "of" Page total
  229. // Set each header to a string containing zero or one of these codes
  230. // and the code will be replaced in that string by the corresponding data
  231. pref("print.print_headerleft", "&T");
  232. pref("print.print_headercenter", "");
  233. pref("print.print_headerright", "&U");
  234. pref("print.print_footerleft", "&PT");
  235. pref("print.print_footercenter", "");
  236. pref("print.print_footerright", "&D");
  237. pref("print.show_print_progress", true);
  238.  
  239. // xxxbsmedberg: more toolkit prefs
  240.  
  241. // When this is set to false each window has its own PrintSettings
  242. // and a change in one window does not affect the others
  243. pref("print.use_global_printsettings", true);
  244.  
  245. // Use the native dialog or the XP dialog?
  246. pref("print.use_native_print_dialog", false);
  247.  
  248. // Save the Printings after each print job
  249. pref("print.save_print_settings", true);
  250.  
  251. pref("print.whileInPrintPreview", true);
  252.  
  253. // Cache old Presentation when going into Print Preview
  254. pref("print.always_cache_old_pres", false);
  255.  
  256. // Enables you to specify the gap from the edge of the paper to the margin
  257. // this is used by both Printing and Print Preview
  258. pref("print.print_edge_top", 0); // 1/100 of an inch
  259. pref("print.print_edge_left", 0); // 1/100 of an inch
  260. pref("print.print_edge_right", 0); // 1/100 of an inch
  261. pref("print.print_edge_bottom", 0); // 1/100 of an inch
  262.  
  263. // Pref used by the spellchecker extension to control the 
  264. // maximum number of misspelled words that will be underlined
  265. // in a document.
  266. pref("extensions.spellcheck.inline.max-misspellings", 500);
  267.  
  268. // Prefs used by libeditor. Prefs specific to seamonkey composer
  269. // belong in mozilla/editor/ui/composer.js
  270.  
  271. pref("editor.use_custom_colors", false);
  272. pref("editor.htmlWrapColumn", 72);
  273. pref("editor.singleLine.pasteNewlines",     1);
  274. pref("editor.quotesPreformatted",            false);
  275. pref("editor.use_css",                       true);
  276. pref("editor.css.default_length_unit",       "px");
  277. pref("editor.resizing.preserve_ratio",       true);
  278. pref("editor.positioning.offset",            0);
  279.  
  280.  
  281. // Default Capability Preferences: Security-Critical! 
  282. // Editing these may create a security risk - be sure you know what you're doing
  283. //pref("capability.policy.default.barprop.visible.set", "UniversalBrowserWrite");
  284.  
  285. pref("capability.policy.default_policynames", "mailnews");
  286.  
  287. pref("capability.policy.default.DOMException.code", "allAccess");
  288. pref("capability.policy.default.DOMException.message", "allAccess");
  289. pref("capability.policy.default.DOMException.name", "allAccess");
  290. pref("capability.policy.default.DOMException.result", "allAccess");
  291. pref("capability.policy.default.DOMException.toString.get", "allAccess");
  292.  
  293. pref("capability.policy.default.History.back.get", "allAccess");
  294. pref("capability.policy.default.History.current", "UniversalBrowserRead");
  295. pref("capability.policy.default.History.forward.get", "allAccess");
  296. pref("capability.policy.default.History.go.get", "allAccess");
  297. pref("capability.policy.default.History.item", "UniversalBrowserRead");
  298. pref("capability.policy.default.History.next", "UniversalBrowserRead");
  299. pref("capability.policy.default.History.previous", "UniversalBrowserRead");
  300. pref("capability.policy.default.History.toString", "UniversalBrowserRead");
  301.  
  302. pref("capability.policy.default.Location.hash.set", "allAccess");
  303. pref("capability.policy.default.Location.href.set", "allAccess");
  304. pref("capability.policy.default.Location.replace.get", "allAccess");
  305.  
  306. pref("capability.policy.default.Navigator.preference", "allAccess");
  307. pref("capability.policy.default.Navigator.preferenceinternal.get", "UniversalPreferencesRead");
  308. pref("capability.policy.default.Navigator.preferenceinternal.set", "UniversalPreferencesWrite");
  309.  
  310. pref("capability.policy.default.Window.blur.get", "allAccess");
  311. pref("capability.policy.default.Window.close.get", "allAccess");
  312. pref("capability.policy.default.Window.closed.get", "allAccess");
  313. pref("capability.policy.default.Window.focus.get", "allAccess");
  314. pref("capability.policy.default.Window.frames.get", "allAccess");
  315. pref("capability.policy.default.Window.history.get", "allAccess");
  316. pref("capability.policy.default.Window.length.get", "allAccess");
  317. pref("capability.policy.default.Window.location", "allAccess");
  318. pref("capability.policy.default.Window.opener.get", "allAccess");
  319. pref("capability.policy.default.Window.parent.get", "allAccess");
  320. pref("capability.policy.default.Window.self.get", "allAccess");
  321. pref("capability.policy.default.Window.top.get", "allAccess");
  322. pref("capability.policy.default.Window.window.get", "allAccess");
  323.  
  324. pref("capability.policy.default.Selection.addSelectionListener", "UniversalXPConnect");
  325. pref("capability.policy.default.Selection.removeSelectionListener", "UniversalXPConnect");
  326.  
  327. // Restrictions on the DOM for mail/news - see bugs 66938 and 84545
  328. pref("capability.policy.mailnews.sites", "mailbox: imap: news:");
  329.  
  330. pref("capability.policy.mailnews.*.attributes.get", "noAccess");
  331. pref("capability.policy.mailnews.*.baseURI.get", "noAccess");
  332. pref("capability.policy.mailnews.*.data.get", "noAccess");
  333. pref("capability.policy.mailnews.*.getAttribute", "noAccess");
  334. pref("capability.policy.mailnews.HTMLDivElement.getAttribute", "sameOrigin");
  335. pref("capability.policy.mailnews.*.getAttributeNS", "noAccess");
  336. pref("capability.policy.mailnews.*.getNamedItem", "noAccess");
  337. pref("capability.policy.mailnews.*.getNamedItemNS", "noAccess");
  338. pref("capability.policy.mailnews.*.host.get", "noAccess");
  339. pref("capability.policy.mailnews.*.hostname.get", "noAccess");
  340. pref("capability.policy.mailnews.*.href.get", "noAccess");
  341. pref("capability.policy.mailnews.*.innerHTML.get", "noAccess");
  342. pref("capability.policy.mailnews.*.lowSrc.get", "noAccess");
  343. pref("capability.policy.mailnews.*.nodeValue.get", "noAccess");
  344. pref("capability.policy.mailnews.*.pathname.get", "noAccess");
  345. pref("capability.policy.mailnews.*.protocol.get", "noAccess");
  346. pref("capability.policy.mailnews.*.src.get", "noAccess");
  347. pref("capability.policy.mailnews.*.substringData.get", "noAccess");
  348. pref("capability.policy.mailnews.*.text.get", "noAccess");
  349. pref("capability.policy.mailnews.*.title.get", "noAccess");
  350. pref("capability.policy.mailnews.DOMException.toString", "noAccess");
  351. pref("capability.policy.mailnews.HTMLAnchorElement.toString", "noAccess");
  352. pref("capability.policy.mailnews.HTMLDocument.domain", "noAccess");
  353. pref("capability.policy.mailnews.HTMLDocument.URL", "noAccess");
  354. pref("capability.policy.mailnews.Location.toString", "noAccess");
  355. pref("capability.policy.mailnews.Range.toString", "noAccess");
  356. pref("capability.policy.mailnews.Window.blur", "noAccess");
  357. pref("capability.policy.mailnews.Window.focus", "noAccess");
  358. pref("capability.policy.mailnews.Window.innerWidth.set", "noAccess");
  359. pref("capability.policy.mailnews.Window.innerHeight.set", "noAccess");
  360. pref("capability.policy.mailnews.Window.moveBy", "noAccess");
  361. pref("capability.policy.mailnews.Window.moveTo", "noAccess");
  362. pref("capability.policy.mailnews.Window.name.set", "noAccess");
  363. pref("capability.policy.mailnews.Window.outerHeight.set", "noAccess");
  364. pref("capability.policy.mailnews.Window.outerWidth.set", "noAccess");
  365. pref("capability.policy.mailnews.Window.resizeBy", "noAccess");
  366. pref("capability.policy.mailnews.Window.resizeTo", "noAccess");
  367. pref("capability.policy.mailnews.Window.screenX.set", "noAccess");
  368. pref("capability.policy.mailnews.Window.screenY.set", "noAccess");
  369. pref("capability.policy.mailnews.Window.sizeToContent", "noAccess");
  370. pref("capability.policy.mailnews.document.load", "noAccess");
  371. pref("capability.policy.mailnews.XMLHttpRequest.channel", "noAccess");
  372. pref("capability.policy.mailnews.XMLHttpRequest.getInterface", "noAccess");
  373. pref("capability.policy.mailnews.XMLHttpRequest.responseXML", "noAccess");
  374. pref("capability.policy.mailnews.XMLHttpRequest.responseText", "noAccess");
  375. pref("capability.policy.mailnews.XMLHttpRequest.status", "noAccess");
  376. pref("capability.policy.mailnews.XMLHttpRequest.statusText", "noAccess");
  377. pref("capability.policy.mailnews.XMLHttpRequest.abort", "noAccess");
  378. pref("capability.policy.mailnews.XMLHttpRequest.getAllResponseHeaders", "noAccess");
  379. pref("capability.policy.mailnews.XMLHttpRequest.getResponseHeader", "noAccess");
  380. pref("capability.policy.mailnews.XMLHttpRequest.open", "noAccess");
  381. pref("capability.policy.mailnews.XMLHttpRequest.send", "noAccess");
  382. pref("capability.policy.mailnews.XMLHttpRequest.setRequestHeader", "noAccess");
  383. pref("capability.policy.mailnews.XMLHttpRequest.readyState", "noAccess");
  384. pref("capability.policy.mailnews.XMLHttpRequest.overrideMimeType", "noAccess");
  385. pref("capability.policy.mailnews.XMLHttpRequest.onload", "noAccess");
  386. pref("capability.policy.mailnews.XMLHttpRequest.onerror", "noAccess");
  387. pref("capability.policy.mailnews.XMLHttpRequest.onreadystatechange", "noAccess");
  388. pref("capability.policy.mailnews.XMLSerializer.serializeToString", "noAccess");
  389. pref("capability.policy.mailnews.XMLSerializer.serializeToStream", "noAccess");
  390. pref("capability.policy.mailnews.DOMParser.parseFromString", "noAccess");
  391. pref("capability.policy.mailnews.DOMParser.parseFromStream", "noAccess");
  392. pref("capability.policy.mailnews.SOAPCall.transportURI", "noAccess");
  393. pref("capability.policy.mailnews.SOAPCall.verifySourceHeader", "noAccess");
  394. pref("capability.policy.mailnews.SOAPCall.invoke", "noAccess");
  395. pref("capability.policy.mailnews.SOAPCall.asyncInvoke", "noAccess");
  396. pref("capability.policy.mailnews.SOAPResponse.fault", "noAccess");
  397. pref("capability.policy.mailnews.SOAPEncoding.styleURI", "noAccess");
  398. pref("capability.policy.mailnews.SOAPEncoding.getAssociatedEncoding", "noAccess");
  399. pref("capability.policy.mailnews.SOAPEncoding.setEncoder", "noAccess");
  400. pref("capability.policy.mailnews.SOAPEncoding.getEncoder", "noAccess");
  401. pref("capability.policy.mailnews.SOAPEncoding.setDecoder", "noAccess");
  402. pref("capability.policy.mailnews.SOAPEncoding.setDecoder", "noAccess");
  403. pref("capability.policy.mailnews.SOAPEncoding.getDecoder", "noAccess");
  404. pref("capability.policy.mailnews.SOAPEncoding.defaultEncoder", "noAccess");
  405. pref("capability.policy.mailnews.SOAPEncoding.defaultDecoder", "noAccess");
  406. pref("capability.policy.mailnews.SOAPEncoding.schemaCollection", "noAccess");
  407. pref("capability.policy.mailnews.SOAPEncoding.encode", "noAccess");
  408. pref("capability.policy.mailnews.SOAPEncoding.decode", "noAccess");
  409. pref("capability.policy.mailnews.SOAPEncoding.mapSchemaURI", "noAccess");
  410. pref("capability.policy.mailnews.SOAPEncoding.unmapSchemaURI", "noAccess");
  411. pref("capability.policy.mailnews.SOAPEncoding.getInternalSchemaURI", "noAccess");
  412. pref("capability.policy.mailnews.SOAPEncoding.getExternalSchemaURI", "noAccess");
  413. pref("capability.policy.mailnews.SOAPFault.element", "noAccess");
  414. pref("capability.policy.mailnews.SOAPFault.faultNamespaceURI", "noAccess");
  415. pref("capability.policy.mailnews.SOAPFault.faultCode", "noAccess");
  416. pref("capability.policy.mailnews.SOAPFault.faultString", "noAccess");
  417. pref("capability.policy.mailnews.SOAPFault.faultActor", "noAccess");
  418. pref("capability.policy.mailnews.SOAPFault.detail", "noAccess");
  419. pref("capability.policy.mailnews.SOAPHeaderBlock.actorURI", "noAccess");
  420. pref("capability.policy.mailnews.SOAPHeaderBlock.mustUnderstand", "noAccess");
  421. pref("capability.policy.mailnews.SOAPParameter", "noAccess");
  422. pref("capability.policy.mailnews.SOAPPropertyBagMutator.propertyBag", "noAccess");
  423. pref("capability.policy.mailnews.SOAPPropertyBagMutator.addProperty", "noAccess");
  424. pref("capability.policy.mailnews.SchemaLoader.load", "noAccess");
  425. pref("capability.policy.mailnews.SchemaLoader.loadAsync", "noAccess");
  426. pref("capability.policy.mailnews.SchemaLoader.processSchemaElement", "noAccess");
  427. pref("capability.policy.mailnews.SchemaLoader.onLoad", "noAccess");
  428. pref("capability.policy.mailnews.SchemaLoader.onError", "noAccess");
  429. pref("capability.policy.mailnews.WSDLLoader.load", "noAccess");
  430. pref("capability.policy.mailnews.WSDLLoader.loadAsync", "noAccess");
  431. pref("capability.policy.mailnews.WSDLLoader.onLoad", "noAccess");
  432. pref("capability.policy.mailnews.WSDLLoader.onError", "noAccess");
  433. pref("capability.policy.mailnews.WebServiceProxyFactory.createProxy", "noAccess");
  434. pref("capability.policy.mailnews.WebServiceProxyFactory.createProxyAsync", "noAccess");
  435. pref("capability.policy.mailnews.WebServiceProxyFactory.onLoad", "noAccess");
  436. pref("capability.policy.mailnews.WebServiceProxyFactory.onError", "noAccess");
  437.  
  438. // XMLExtras
  439. pref("capability.policy.default.XMLHttpRequest.channel", "noAccess");
  440. pref("capability.policy.default.XMLHttpRequest.getInterface", "noAccess");
  441. pref("capability.policy.default.XMLHttpRequest.open-uri", "allAccess");
  442. pref("capability.policy.default.DOMParser.parseFromStream", "noAccess");
  443.  
  444. // Clipboard
  445. pref("capability.policy.default.Clipboard.cutcopy", "noAccess");
  446. pref("capability.policy.default.Clipboard.paste", "noAccess");
  447.  
  448. // Scripts & Windows prefs
  449. pref("dom.disable_image_src_set",           false);
  450. pref("dom.disable_window_flip",             false);
  451. pref("dom.disable_window_move_resize",      false);
  452. pref("dom.disable_window_status_change",    false);
  453.  
  454. pref("dom.disable_window_open_feature.titlebar",    false);
  455. pref("dom.disable_window_open_feature.close",       false);
  456. pref("dom.disable_window_open_feature.toolbar",     false);
  457. pref("dom.disable_window_open_feature.location",    false);
  458. pref("dom.disable_window_open_feature.directories", false);
  459. pref("dom.disable_window_open_feature.personalbar", false);
  460. pref("dom.disable_window_open_feature.menubar",     false);
  461. pref("dom.disable_window_open_feature.scrollbars",  false);
  462. pref("dom.disable_window_open_feature.resizable",   true);
  463. pref("dom.disable_window_open_feature.minimizable", false);
  464. pref("dom.disable_window_open_feature.status",      true);
  465.  
  466. pref("dom.allow_scripts_to_close_windows",          false);
  467.  
  468. pref("dom.disable_open_during_load",                false);
  469. pref("dom.popup_maximum",                           20);
  470. pref("dom.popup_allowed_events", "change click dblclick mouseup reset submit");
  471. pref("dom.disable_open_click_delay", 1000);
  472.  
  473. pref("dom.storage.enabled", true);
  474.  
  475. // Disable popups from plugins by default
  476. //   0 = openAllowed
  477. //   1 = openControlled
  478. //   2 = openAbused
  479. pref("privacy.popups.disable_from_plugins", 2);
  480.  
  481. pref("dom.event.contextmenu.enabled",       true);
  482.  
  483. pref("javascript.enabled",                  true);
  484. pref("javascript.allow.mailnews",           false);
  485. pref("javascript.options.strict",           false);
  486. pref("javascript.options.relimit",          false);
  487.  
  488. // advanced prefs
  489. pref("security.enable_java",                true);
  490. pref("advanced.mailftp",                    false);
  491. pref("image.animation_mode",                "normal");
  492.  
  493. // Same-origin policy for file: URIs: 0=self, 1=samedir, 2=subdir, 3=anyfile
  494. pref("security.fileuri.origin_policy", 2);
  495.  
  496. // If there is ever a security firedrill that requires
  497. // us to block certian ports global, this is the pref 
  498. // to use.  Is is a comma delimited list of port numbers
  499. // for example:
  500. //   pref("network.security.ports.banned", "1,2,3,4,5");
  501. // prevents necko connecting to ports 1-5 unless the protocol
  502. // overrides.
  503.  
  504. // Default action for unlisted external protocol handlers
  505. pref("network.protocol-handler.external-default", true);      // OK to load
  506. pref("network.protocol-handler.warn-external-default", true); // warn before load
  507.  
  508. // Prevent using external protocol handlers for these schemes
  509. pref("network.protocol-handler.external.hcp", false);
  510. pref("network.protocol-handler.external.vbscript", false);
  511. pref("network.protocol-handler.external.javascript", false);
  512. pref("network.protocol-handler.external.data", false);
  513. pref("network.protocol-handler.external.ms-help", false);
  514. pref("network.protocol-handler.external.shell", false);
  515. pref("network.protocol-handler.external.vnd.ms.radio", false);
  516. //@line 522 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\modules\libpref\src\init\all.js"
  517. pref("network.protocol-handler.external.disk", false);
  518. pref("network.protocol-handler.external.disks", false);
  519. pref("network.protocol-handler.external.afp", false);
  520. pref("network.protocol-handler.external.moz-icon", false);
  521.  
  522. // An exposed protocol handler is one that can be used in all contexts.  A
  523. // non-exposed protocol handler is one that can only be used internally by the
  524. // application.  For example, a non-exposed protocol would not be loaded by the
  525. // application in response to a link click or a X-remote openURL command.
  526. // Instead, it would be deferred to the system's external protocol handler.
  527. // Only internal/built-in protocol handlers can be marked as exposed.
  528.  
  529. // This pref controls the default settings.  Per protocol settings can be used
  530. // to override this value.
  531. pref("network.protocol-handler.expose-all", true);
  532.  
  533. // Example: make IMAP an exposed protocol
  534. // pref("network.protocol-handler.expose.imap", true);
  535.  
  536. pref("network.hosts.smtp_server",           "mail");
  537. pref("network.hosts.pop_server",            "mail");
  538.  
  539. // <http>
  540. pref("network.http.version", "1.1");      // default
  541. // pref("network.http.version", "1.0");   // uncomment this out in case of problems
  542. // pref("network.http.version", "0.9");   // it'll work too if you're crazy
  543. // keep-alive option is effectively obsolete. Nevertheless it'll work with
  544. // some older 1.0 servers:
  545.  
  546. pref("network.http.proxy.version", "1.1");    // default
  547. // pref("network.http.proxy.version", "1.0"); // uncomment this out in case of problems
  548.                                               // (required if using junkbuster proxy)
  549.  
  550. // enable caching of http documents
  551. pref("network.http.use-cache", true);
  552.  
  553. // this preference can be set to override the socket type used for normal
  554. // HTTP traffic.  an empty value indicates the normal TCP/IP socket type.
  555. pref("network.http.default-socket-type", "");
  556.  
  557. pref("network.http.keep-alive", true); // set it to false in case of problems
  558. pref("network.http.proxy.keep-alive", true);
  559. pref("network.http.keep-alive.timeout", 300);
  560.  
  561. // limit the absolute number of http connections.
  562. pref("network.http.max-connections", 24);
  563.  
  564. // limit the absolute number of http connections that can be established per
  565. // host.  if a http proxy server is enabled, then the "server" is the proxy
  566. // server.  Otherwise, "server" is the http origin server.
  567. pref("network.http.max-connections-per-server", 8);
  568.  
  569. // if network.http.keep-alive is true, and if NOT connecting via a proxy, then
  570. // a new connection will only be attempted if the number of active persistent
  571. // connections to the server is less then max-persistent-connections-per-server.
  572. pref("network.http.max-persistent-connections-per-server", 2);
  573.  
  574. // if network.http.keep-alive is true, and if connecting via a proxy, then a
  575. // new connection will only be attempted if the number of active persistent
  576. // connections to the proxy is less then max-persistent-connections-per-proxy.
  577. pref("network.http.max-persistent-connections-per-proxy", 4);
  578.  
  579. // amount of time (in seconds) to suspend pending requests, before spawning a
  580. // new connection, once the limit on the number of persistent connections per
  581. // host has been reached.  however, a new connection will not be created if
  582. // max-connections or max-connections-per-server has also been reached.
  583. pref("network.http.request.max-start-delay", 10);
  584.  
  585. // Headers
  586. pref("network.http.accept.default", "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8");
  587. pref("network.http.sendRefererHeader",      2); // 0=don't send any, 1=send only on clicks, 2=send on image requests as well
  588.  
  589. // Controls whether we send HTTPS referres to other HTTPS sites.
  590. // By default this is enabled for compatibility (see bug 141641)
  591. pref("network.http.sendSecureXSiteReferrer", true);
  592.  
  593. // Maximum number of consecutive redirects before aborting.
  594. pref("network.http.redirection-limit", 20);
  595.  
  596. // Enable http compression: comment this out in case of problems with 1.1
  597. // NOTE: support for "compress" has been disabled per bug 196406.
  598. pref("network.http.accept-encoding" ,"gzip,deflate");
  599.  
  600. pref("network.http.pipelining"      , false);
  601. pref("network.http.proxy.pipelining", false);
  602.  
  603. // Max number of requests in the pipeline
  604. pref("network.http.pipelining.maxrequests" , 4);
  605.  
  606. // </http>
  607.  
  608. // If false, remote JAR files that are served with a content type other than
  609. // application/java-archive or application/x-jar will not be opened
  610. // by the jar channel.
  611. pref("network.jar.open-unsafe-types", false);
  612.  
  613. // This preference controls whether or not internationalized domain names (IDN)
  614. // are handled.  IDN requires a nsIIDNService implementation.
  615. pref("network.enableIDN", true);
  616.  
  617. // This preference, if true, causes all UTF-8 domain names to be normalized to
  618. // punycode.  The intention is to allow UTF-8 domain names as input, but never
  619. // generate them from punycode.
  620. pref("network.IDN_show_punycode", false);
  621.  
  622. // TLDs with "network.IDN.whitelist.tld" explicitly set to true are treated as 
  623. // IDN-safe. Otherwise, they're treated as unsafe and punycode will be used
  624. // for displaying them in the UI (e.g. URL bar). Note that these preferences
  625. // are referred to ONLY when "network.IDN_show_punycode" is false. In other
  626. // words, all IDNs will be shown in punycode if "network.IDN_show_punycode"
  627. // is true.
  628.  
  629. // ccTLDs
  630. pref("network.IDN.whitelist.ac", true);
  631. pref("network.IDN.whitelist.at", true);
  632. pref("network.IDN.whitelist.br", true);
  633. pref("network.IDN.whitelist.ch", true);
  634. pref("network.IDN.whitelist.cl", true);
  635. pref("network.IDN.whitelist.cn", true);
  636. pref("network.IDN.whitelist.de", true);
  637. pref("network.IDN.whitelist.dk", true);
  638. pref("network.IDN.whitelist.es", true);
  639. pref("network.IDN.whitelist.fi", true);
  640. pref("network.IDN.whitelist.gr", true);
  641. pref("network.IDN.whitelist.hu", true);
  642. pref("network.IDN.whitelist.io", true);
  643. pref("network.IDN.whitelist.is", true);
  644. pref("network.IDN.whitelist.jp", true);
  645. pref("network.IDN.whitelist.kr", true);
  646. pref("network.IDN.whitelist.li", true);
  647. pref("network.IDN.whitelist.lt", true);
  648. pref("network.IDN.whitelist.no", true);
  649. pref("network.IDN.whitelist.pl", true);
  650. pref("network.IDN.whitelist.se", true);
  651. pref("network.IDN.whitelist.sh", true);
  652. pref("network.IDN.whitelist.th", true);
  653. pref("network.IDN.whitelist.tm", true);
  654. pref("network.IDN.whitelist.tw", true);
  655. pref("network.IDN.whitelist.vn", true);
  656.  
  657. // non-ccTLDs
  658. pref("network.IDN.whitelist.biz", true);
  659. pref("network.IDN.whitelist.cat", true);
  660. pref("network.IDN.whitelist.info", true);
  661. pref("network.IDN.whitelist.museum", true);
  662. pref("network.IDN.whitelist.org", true);
  663.  
  664. // ".test" localised TLDs for ICANN's top-level IDN trial
  665. pref("network.IDN.whitelist.xn--0zwm56d", true);
  666. pref("network.IDN.whitelist.xn--11b5bs3a9aj6g", true);
  667. pref("network.IDN.whitelist.xn--80akhbyknj4f", true);
  668. pref("network.IDN.whitelist.xn--9t4b11yi5a", true);
  669. pref("network.IDN.whitelist.xn--deba0ad", true);
  670. pref("network.IDN.whitelist.xn--g6w251d", true);
  671. pref("network.IDN.whitelist.xn--hgbk6aj7f53bba", true);
  672. pref("network.IDN.whitelist.xn--hlcj6aya9esc7a", true);
  673. pref("network.IDN.whitelist.xn--jxalpdlp", true);
  674. pref("network.IDN.whitelist.xn--kgbechtv", true);
  675. pref("network.IDN.whitelist.xn--zckzah", true);
  676.  
  677. // If a domain includes any of the following characters, it may be a spoof 
  678. // attempt and so we always display the domain name as punycode. This would 
  679. // override the settings "network.IDN_show_punycode" and 
  680. // "network.IDN.whitelist.*".
  681. 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");
  682.  
  683. // This preference specifies a list of domains for which DNS lookups will be
  684. // IPv4 only. Works around broken DNS servers which can't handle IPv6 lookups
  685. // and/or allows the user to disable IPv6 on a per-domain basis. See bug 68796.
  686. pref("network.dns.ipv4OnlyDomains", "");
  687.  
  688. // This preference can be used to turn off IPv6 name lookups. See bug 68796.
  689. pref("network.dns.disableIPv6", false);
  690.  
  691. // This preference controls whether or not URLs with UTF-8 characters are
  692. // escaped.  Set this preference to TRUE for strict RFC2396 conformance.
  693. pref("network.standard-url.escape-utf8", true);
  694.  
  695. // This preference controls whether or not URLs are always encoded and sent as
  696. // UTF-8.
  697. pref("network.standard-url.encode-utf8", true);
  698.  
  699. // This preference controls whether or not queries are encoded and sent as
  700. // UTF-8.
  701. pref("network.standard-url.encode-query-utf8", false);
  702.  
  703. // Idle timeout for ftp control connections - 5 minute default
  704. pref("network.ftp.idleConnectionTimeout", 300);
  705.  
  706. // directory listing format
  707. // 2: HTML
  708. // 3: XUL directory viewer
  709. // all other values are treated like 2
  710. pref("network.dir.format", 2);
  711.  
  712. // enables the prefetch service (i.e., prefetching of <link rel="next"> URLs).
  713. pref("network.prefetch-next", true);
  714.  
  715.  
  716. // The following prefs pertain to the negotiate-auth extension (see bug 17578),
  717. // which provides transparent Kerberos or NTLM authentication using the SPNEGO
  718. // protocol.  Each pref is a comma-separated list of keys, where each key has
  719. // the format:
  720. //   [scheme "://"] [host [":" port]]
  721. // For example, "foo.com" would match "http://www.foo.com/bar", etc.
  722.  
  723. // This list controls which URIs can use the negotiate-auth protocol.  This
  724. // list should be limited to the servers you know you'll need to login to.
  725. pref("network.negotiate-auth.trusted-uris", "");
  726. // This list controls which URIs can support delegation.
  727. pref("network.negotiate-auth.delegation-uris", "");
  728.  
  729. // Allow SPNEGO by default when challenged by a proxy server.
  730. pref("network.negotiate-auth.allow-proxies", true);
  731.  
  732. // Path to a specific gssapi library
  733. pref("network.negotiate-auth.gsslib", "");
  734.  
  735. // Specify if the gss lib comes standard with the OS
  736. pref("network.negotiate-auth.using-native-gsslib", true);
  737.  
  738. //@line 744 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\modules\libpref\src\init\all.js"
  739.  
  740. // Default to using the SSPI intead of GSSAPI on windows 
  741. pref("network.auth.use-sspi", true);
  742.  
  743. //@line 749 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\modules\libpref\src\init\all.js"
  744.  
  745. // The following prefs are used to enable automatic use of the operating
  746. // system's NTLM implementation to silently authenticate the user with their
  747. // Window's domain logon.  The trusted-uris pref follows the format of the
  748. // trusted-uris pref for negotiate authentication.
  749. pref("network.automatic-ntlm-auth.allow-proxies", true);
  750. pref("network.automatic-ntlm-auth.trusted-uris", "");
  751.  
  752. // This preference controls whether or not the LM hash will be included in
  753. // response to a NTLM challenge.  By default, this is disabled since servers
  754. // should almost never need the LM hash, and the LM hash is what makes NTLM
  755. // authentication less secure.  See bug 250691 for further details.
  756. // NOTE: automatic-ntlm-auth which leverages the OS-provided NTLM
  757. //       implementation will not be affected by this preference.
  758. pref("network.ntlm.send-lm-response", false);
  759.  
  760. // sspitzer:  change this back to "news" when we get to beta.
  761. // for now, set this to news.mozilla.org because you can only
  762. // post to the server specified by this pref.
  763. pref("network.hosts.nntp_server",           "news.mozilla.org");
  764.  
  765. pref("permissions.default.image",           1); // 1-Accept, 2-Deny, 3-dontAcceptForeign
  766. pref("network.proxy.type",                  0);
  767. pref("network.proxy.ftp",                   "");
  768. pref("network.proxy.ftp_port",              0);
  769. pref("network.proxy.gopher",                "");
  770. pref("network.proxy.gopher_port",           0);
  771. pref("network.proxy.http",                  "");
  772. pref("network.proxy.http_port",             0);
  773. pref("network.proxy.ssl",                   "");
  774. pref("network.proxy.ssl_port",              0);
  775. pref("network.proxy.socks",                 "");
  776. pref("network.proxy.socks_port",            0);
  777. pref("network.proxy.socks_version",         5);
  778. pref("network.proxy.socks_remote_dns",      false);
  779. pref("network.proxy.no_proxies_on",         "localhost, 127.0.0.1");
  780. pref("network.proxy.failover_timeout",      1800); // 30 minutes
  781. pref("network.online",                      true); //online/offline
  782. pref("network.cookie.cookieBehavior",       0); // 0-Accept, 1-dontAcceptForeign, 2-dontUse
  783. pref("network.cookie.disableCookieForMailNews", true); // disable all cookies for mail
  784. pref("network.cookie.lifetimePolicy",       0); // accept normally, 1-askBeforeAccepting, 2-acceptForSession,3-acceptForNDays
  785. pref("network.cookie.alwaysAcceptSessionCookies", false);
  786. pref("network.cookie.prefsMigrated",        false);
  787. pref("network.cookie.lifetime.days",        90);
  788.  
  789. // The PAC file to load.  Ignored unless network.proxy.type is 2.
  790. pref("network.proxy.autoconfig_url", "");
  791.  
  792. // If we cannot load the PAC file, then try again (doubling from interval_min
  793. // until we reach interval_max or the PAC file is successfully loaded).
  794. pref("network.proxy.autoconfig_retry_interval_min", 5);    // 5 seconds
  795. pref("network.proxy.autoconfig_retry_interval_max", 300);  // 5 minutes
  796.  
  797. pref("converter.html2txt.structs",          true); // Output structured phrases (strong, em, code, sub, sup, b, i, u)
  798. pref("converter.html2txt.header_strategy",  1); // 0 = no indention; 1 = indention, increased with header level; 2 = numbering and slight indention
  799.  
  800. pref("intl.accept_languages",               "chrome://navigator/locale/navigator.properties");
  801. pref("intl.accept_charsets",                "iso-8859-1,*,utf-8");
  802. pref("intl.menuitems.alwaysappendaccesskeys","chrome://navigator/locale/navigator.properties");
  803. pref("intl.menuitems.insertseparatorbeforeaccesskeys","chrome://navigator/locale/navigator.properties");
  804. pref("intl.charsetmenu.browser.static",     "chrome://navigator/locale/navigator.properties");
  805. pref("intl.charsetmenu.browser.more1",      "chrome://navigator/locale/navigator.properties");
  806. pref("intl.charsetmenu.browser.more2",      "chrome://navigator/locale/navigator.properties");
  807. pref("intl.charsetmenu.browser.more3",      "chrome://navigator/locale/navigator.properties");
  808. pref("intl.charsetmenu.browser.more4",      "chrome://navigator/locale/navigator.properties");
  809. pref("intl.charsetmenu.browser.more5",      "chrome://navigator/locale/navigator.properties");
  810. pref("intl.charsetmenu.browser.unicode",    "chrome://navigator/locale/navigator.properties");
  811. pref("intl.charsetmenu.mailedit",           "chrome://navigator/locale/navigator.properties");
  812. pref("intl.charsetmenu.browser.cache",      "");
  813. pref("intl.charsetmenu.mailview.cache",     "");
  814. pref("intl.charsetmenu.composer.cache",     "");
  815. pref("intl.charsetmenu.browser.cache.size", 5);
  816. pref("intl.charset.detector",               "chrome://navigator/locale/navigator.properties");
  817. pref("intl.charset.default",                "chrome://navigator-platform/locale/navigator.properties");
  818. pref("intl.content.langcode",               "chrome://communicator-region/locale/region.properties");
  819. pref("intl.ellipsis",                       "chrome://global-platform/locale/intl.properties");
  820. pref("intl.locale.matchOS",                 false);
  821. // fallback charset list for Unicode conversion (converting from Unicode)
  822. // currently used for mail send only to handle symbol characters (e.g Euro, trademark, smartquotes)
  823. // for ISO-8859-1
  824. pref("intl.fallbackCharsetList.ISO-8859-1", "windows-1252");
  825. pref("font.language.group",                 "chrome://navigator/locale/navigator.properties");
  826.  
  827. pref("font.mathfont-family", "STIXNonUnicode, STIXSize1, STIXGeneral, Cambria Math, Standard Symbols L, DejaVu Sans");
  828.  
  829. pref("images.dither", "auto");
  830. pref("security.directory",              "");
  831.  
  832. pref("signed.applets.codebase_principal_support", false);
  833. pref("security.checkloaduri", true);
  834. pref("security.xpconnect.plugin.unrestricted", true);
  835. // security-sensitive dialogs should delay button enabling. In milliseconds.
  836. pref("security.dialog_enable_delay", 2000);
  837.  
  838. // Modifier key prefs: default to Windows settings,
  839. // menu access key = alt, accelerator key = control.
  840. // Use 17 for Ctrl, 18 for Alt, 224 for Meta, 0 for none. Mac settings in macprefs.js
  841. pref("ui.key.accelKey", 17);
  842. pref("ui.key.menuAccessKey", 18);
  843. pref("ui.key.generalAccessKey", -1);
  844.  
  845. // If generalAccessKey is -1, use the following two prefs instead.
  846. // Use 0 for disabled, 1 for Shift, 2 for Ctrl, 4 for Alt, 8 for Meta
  847. // (values can be combined, e.g. 5 for Alt+Shift)
  848. pref("ui.key.chromeAccess", 4);
  849. pref("ui.key.contentAccess", 5);
  850.  
  851. pref("ui.key.menuAccessKeyFocuses", false); // overridden below
  852. pref("ui.key.saveLink.shift", true); // true = shift, false = meta
  853.  
  854. // Middle-mouse handling
  855. pref("middlemouse.paste", false);
  856. pref("middlemouse.openNewWindow", true);
  857. pref("middlemouse.contentLoadURL", false);
  858. pref("middlemouse.scrollbarPosition", false);
  859.  
  860. // Clipboard behavior
  861. pref("clipboard.autocopy", false);
  862.  
  863. // mouse wheel scroll transaction period of time (in milliseconds)
  864. pref("mousewheel.transaction.timeout", 1500);
  865. // mouse wheel scroll transaction is held even if the mouse cursor is moved.
  866. pref("mousewheel.transaction.ignoremovedelay", 100);
  867.  
  868. // 0=lines, 1=pages, 2=history , 3=text size
  869. pref("mousewheel.withnokey.action",0);
  870. pref("mousewheel.withnokey.numlines",1);    
  871. pref("mousewheel.withnokey.sysnumlines",true);
  872. pref("mousewheel.withcontrolkey.action",0);
  873. pref("mousewheel.withcontrolkey.numlines",1);
  874. pref("mousewheel.withcontrolkey.sysnumlines",true);
  875. // mousewheel.withshiftkey, see the Mac note below.
  876. pref("mousewheel.withshiftkey.action",0);
  877. pref("mousewheel.withshiftkey.numlines",1);
  878. pref("mousewheel.withshiftkey.sysnumlines",true);
  879. pref("mousewheel.withaltkey.action",2);
  880. pref("mousewheel.withaltkey.numlines",1);
  881. pref("mousewheel.withaltkey.sysnumlines",false);
  882. pref("mousewheel.withmetakey.action",0);
  883. pref("mousewheel.withmetakey.numlines",1);
  884. pref("mousewheel.withmetakey.sysnumlines",true);
  885.  
  886. // on platforms where scroll messages differ between horizontal scroll
  887. // and back/forward button events we can activate them by default
  888. //@line 910 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\modules\libpref\src\init\all.js"
  889. // activate horizontal scrolling by default
  890. pref("mousewheel.horizscroll.withnokey.action",0);
  891. pref("mousewheel.horizscroll.withnokey.numlines",1);
  892. pref("mousewheel.horizscroll.withnokey.sysnumlines",true);
  893. pref("mousewheel.horizscroll.withcontrolkey.action",0);
  894. pref("mousewheel.horizscroll.withcontrolkey.numlines",1);
  895. pref("mousewheel.horizscroll.withcontrolkey.sysnumlines",true);
  896. pref("mousewheel.horizscroll.withshiftkey.action",0);
  897. pref("mousewheel.horizscroll.withshiftkey.numlines",1);
  898. pref("mousewheel.horizscroll.withshiftkey.sysnumlines",true);
  899. pref("mousewheel.horizscroll.withaltkey.action",2);
  900. pref("mousewheel.horizscroll.withaltkey.numlines",-1);
  901. pref("mousewheel.horizscroll.withaltkey.sysnumlines",false);
  902. pref("mousewheel.horizscroll.withmetakey.action",0);
  903. pref("mousewheel.horizscroll.withmetakey.numlines",1);
  904. pref("mousewheel.horizscroll.withmetakey.sysnumlines",true);
  905. //@line 945 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\modules\libpref\src\init\all.js"
  906.  
  907. pref("profile.confirm_automigration",true);
  908. // profile.migration_behavior determines how the profiles root is set
  909. // 0 - use NS_APP_USER_PROFILES_ROOT_DIR
  910. // 1 - create one based on the NS4.x profile root
  911. // 2 - use, if not empty, profile.migration_directory otherwise same as 0
  912. pref("profile.migration_behavior",0);
  913. pref("profile.migration_directory", "");
  914.  
  915. // the amount of time (in seconds) that must elapse
  916. // before we think your mozilla profile is defunct
  917. // and you'd benefit from re-migrating from 4.x
  918. // see bug #137886 for more details
  919. //
  920. // if -1, we never think your profile is defunct
  921. // and users will never see the remigrate UI.
  922. pref("profile.seconds_until_defunct", -1);
  923. // We can show it anytime from menus
  924. pref("profile.manage_only_at_launch", false);
  925.  
  926. pref("prefs.converted-to-utf8",false);
  927.  
  928. // --------------------------------------------------
  929. // IBMBIDI 
  930. // --------------------------------------------------
  931. //
  932. // ------------------
  933. //  Text Direction
  934. // ------------------
  935. // 1 = directionLTRBidi *
  936. // 2 = directionRTLBidi
  937. pref("bidi.direction", 1);
  938. // ------------------
  939. //  Text Type
  940. // ------------------
  941. // 1 = charsettexttypeBidi *
  942. // 2 = logicaltexttypeBidi
  943. // 3 = visualtexttypeBidi
  944. pref("bidi.texttype", 1);
  945. // ------------------
  946. //  Controls Text Mode
  947. // ------------------
  948. // 1 = logicalcontrolstextmodeBidiCmd
  949. // 2 = visualcontrolstextmodeBidi <-- NO LONGER SUPPORTED
  950. // 3 = containercontrolstextmodeBidi *
  951. pref("bidi.controlstextmode", 1);
  952. // ------------------
  953. //  Numeral Style
  954. // ------------------
  955. // 0 = nominalnumeralBidi *
  956. // 1 = regularcontextnumeralBidi
  957. // 2 = hindicontextnumeralBidi
  958. // 3 = arabicnumeralBidi
  959. // 4 = hindinumeralBidi
  960. pref("bidi.numeral", 0);
  961. // ------------------
  962. //  Support Mode
  963. // ------------------
  964. // 1 = mozillaBidisupport *
  965. // 2 = OsBidisupport
  966. // 3 = disableBidisupport
  967. pref("bidi.support", 1);
  968. // ------------------
  969. //  Charset Mode
  970. // ------------------
  971. // 1 = doccharactersetBidi *
  972. // 2 = defaultcharactersetBidi
  973. pref("bidi.characterset", 1);
  974. // Whether delete and backspace should immediately delete characters not
  975. // visually adjacent to the caret, or adjust the visual position of the caret
  976. // on the first keypress and delete the character on a second keypress
  977. pref("bidi.edit.delete_immediately", false);
  978.  
  979. // Bidi caret movement style:
  980. // 0 = logical
  981. // 1 = visual
  982. // 2 = visual, but logical during selection
  983. pref("bidi.edit.caret_movement_style", 2);
  984.  
  985. // used for double-click word selection behavior. Win will override.
  986. pref("layout.word_select.eat_space_to_next_word", false);
  987. pref("layout.word_select.stop_at_punctuation", true);
  988.  
  989. // controls caret style and word-delete during text selection
  990. // 0 = use platform default
  991. // 1 = caret moves and blinks as when there is no selection; word
  992. //     delete deselects the selection and then deletes word (Windows default)
  993. // 2 = caret moves to selection edge and is not visible during selection; 
  994. //     word delete deletes the selection (Mac default)
  995. // 3 = caret moves and blinks as when there is no selection; word delete
  996. //     deletes the selection (Unix default)
  997. pref("layout.selection.caret_style", 0);
  998.  
  999. // pref to control whether or not to replace backslashes with Yen signs
  1000. // in documents encoded in one of Japanese legacy encodings (EUC-JP, 
  1001. // Shift_JIS, ISO-2022-JP)
  1002. pref("layout.enable_japanese_specific_transform", false);
  1003.  
  1004. // pref to force frames to be resizable
  1005. pref("layout.frames.force_resizability", false);
  1006.  
  1007. // pref to report CSS errors to the error console
  1008. pref("layout.css.report_errors", true);
  1009.  
  1010. // pref for which side vertical scrollbars should be on
  1011. // 0 = end-side in UI direction
  1012. // 1 = end-side in document/content direction
  1013. // 2 = right
  1014. // 3 = left
  1015. pref("layout.scrollbar.side", 0);
  1016.  
  1017. // pref to permit users to make verified SOAP calls by default
  1018. pref("capability.policy.default.SOAPCall.invokeVerifySourceHeader", "allAccess");
  1019.  
  1020. // if true, allow plug-ins to override internal imglib decoder mime types in full-page mode
  1021. pref("plugin.override_internal_types", false);
  1022. pref("plugin.expose_full_path", false); // if true navigator.plugins reveals full path
  1023.  
  1024. // See bug 136985.  Gives embedders a pref to hook into to show
  1025. // a popup blocker if they choose.
  1026. pref("browser.popups.showPopupBlocker", true);
  1027.  
  1028. // Pref to control whether the viewmanager code does double-buffering or not
  1029. // See http://bugzilla.mozilla.org/show_bug.cgi?id=169483 for further details...
  1030. pref("viewmanager.do_doublebuffering", true);
  1031.  
  1032. // which files will be selected for roaming by default.
  1033. // See sroaming/content/prefs/all.js
  1034. pref("roaming.default.files", "bookmarks.html,abook.mab,cookies.txt");
  1035. // display some general warning to the user about making backups, security etc.
  1036. pref("roaming.showInitialWarning", true);
  1037.  
  1038. // whether use prefs from system
  1039. pref("config.use_system_prefs", false);
  1040.  
  1041. // if the system has enabled accessibility
  1042. pref("config.use_system_prefs.accessibility", false);
  1043.  
  1044. /*
  1045.  * What are the entities that you want Mozilla to save using mnemonic
  1046.  * names rather than numeric codes? E.g. If set, we'll output  
  1047.  * otherwise, we may output 0xa0 depending on the charset.
  1048.  *
  1049.  * "none"   : don't use any entity names; only use numeric codes.
  1050.  * "basic"  : use entity names just for   & < > " for 
  1051.  *            interoperability/exchange with products that don't support more
  1052.  *            than that.
  1053.  * "latin1" : use entity names for 8bit accented letters and other special
  1054.  *            symbols between 128 and 255.
  1055.  * "html"   : use entity names for 8bit accented letters, greek letters, and
  1056.  *            other special markup symbols as defined in HTML4.
  1057.  */
  1058. //pref("editor.encode_entity",                 "html");
  1059.  
  1060. pref("editor.resizing.preserve_ratio",       true);
  1061. pref("editor.positioning.offset",            0);
  1062.  
  1063. pref("dom.max_chrome_script_run_time", 20);
  1064. pref("dom.max_script_run_time", 10);
  1065.  
  1066. pref("svg.enabled", true);
  1067.  
  1068. //@line 1108 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\modules\libpref\src\init\all.js"
  1069. pref("font.name.serif.ar", "Times New Roman");
  1070. pref("font.name.sans-serif.ar", "Arial");
  1071. pref("font.name.monospace.ar", "Courier New");
  1072. pref("font.name.cursive.ar", "Comic Sans MS");
  1073.  
  1074. pref("font.name.serif.el", "Times New Roman");
  1075. pref("font.name.sans-serif.el", "Arial");
  1076. pref("font.name.monospace.el", "Courier New");
  1077. pref("font.name.cursive.el", "Comic Sans MS");
  1078.  
  1079. pref("font.name.serif.he", "Narkisim");
  1080. pref("font.name.sans-serif.he", "Arial");
  1081. pref("font.name.monospace.he", "Fixed Miriam Transparent");
  1082. pref("font.name.cursive.he", "Guttman Yad");
  1083. pref("font.name-list.serif.he", "Narkisim, David");
  1084. pref("font.name-list.monospace.he", "Fixed Miriam Transparent, Miriam Fixed, Rod, Courier New");
  1085. pref("font.name-list.cursive.he", "Guttman Yad, Ktav, Arial");
  1086.  
  1087. // For CJK fonts, we list a font twice in name-list, once in the native script and once in English
  1088. // because the name of a CJK font returned by Win32 API is beyond our control and depends on
  1089. // whether or not Mozilla is run on CJK Win 9x/ME or Win 2k/XP with a CJK locale.
  1090. // (see bug 227815)
  1091.  
  1092. pref("font.name.serif.ja", "∩╝¡∩╝│ ∩╝░µÿĵ£¥"); // "MS PMincho"
  1093. pref("font.name.sans-serif.ja", "∩╝¡∩╝│ ∩╝░πé┤πé╖πââπé»"); // "MS PGothic"
  1094. pref("font.name.monospace.ja", "∩╝¡∩╝│ πé┤πé╖πââπé»"); // "MS Gothic"
  1095. pref("font.name-list.serif.ja", "MS PMincho, ∩╝¡∩╝│ ∩╝░µÿĵ£¥, MS Mincho, MS PGothic, MS Gothic");
  1096. pref("font.name-list.sans-serif.ja", "MS PGothic, ∩╝¡∩╝│ ∩╝░πé┤πé╖πââπé», MS Gothic, MS PMincho, MS Mincho");
  1097. pref("font.name-list.monospace.ja", "MS Gothic, ∩╝¡∩╝│ πé┤πé╖πââπé», MS Mincho, ∩╝¡∩╝│ µÿĵ£¥, MS PGothic, MS PMincho");
  1098.  
  1099. pref("font.name.serif.ko", "δ░öφâò"); // "Batang" 
  1100. pref("font.name.sans-serif.ko", "Ω╡┤δª╝"); // "Gulim" 
  1101. pref("font.name.monospace.ko", "Ω╡┤δª╝∞▓┤"); // "GulimChe" 
  1102. pref("font.name.cursive.ko", "Ω╢ü∞ä£"); // "Gungseo"
  1103.  
  1104. pref("font.name-list.serif.ko", "Batang, δ░öφâò, Gulim, Ω╡┤δª╝"); 
  1105. pref("font.name-list.sans-serif.ko", "Gulim, Ω╡┤δª╝"); 
  1106. pref("font.name-list.monospace.ko", "GulimChe, Ω╡┤δª╝∞▓┤"); 
  1107. pref("font.name-list.cursive.ko", "Gungseo, Ω╢ü∞ä£"); 
  1108.  
  1109. pref("font.name.serif.th", "Times New Roman");
  1110. pref("font.name.sans-serif.th", "Arial");
  1111. pref("font.name.monospace.th", "Courier New");
  1112. pref("font.name.cursive.th", "Comic Sans MS");
  1113.  
  1114. pref("font.name.serif.tr", "Times New Roman");
  1115. pref("font.name.sans-serif.tr", "Arial");
  1116. pref("font.name.monospace.tr", "Courier New");
  1117. pref("font.name.cursive.tr", "Comic Sans MS");
  1118.  
  1119. pref("font.name.serif.x-baltic", "Times New Roman");
  1120. pref("font.name.sans-serif.x-baltic", "Arial");
  1121. pref("font.name.monospace.x-baltic", "Courier New");
  1122. pref("font.name.cursive.x-baltic", "Comic Sans MS");
  1123.  
  1124. pref("font.name.serif.x-central-euro", "Times New Roman");
  1125. pref("font.name.sans-serif.x-central-euro", "Arial");
  1126. pref("font.name.monospace.x-central-euro", "Courier New");
  1127. pref("font.name.cursive.x-central-euro", "Comic Sans MS");
  1128.  
  1129. pref("font.name.serif.x-cyrillic", "Times New Roman");
  1130. pref("font.name.sans-serif.x-cyrillic", "Arial");
  1131. pref("font.name.monospace.x-cyrillic", "Courier New");
  1132. pref("font.name.cursive.x-cyrillic", "Comic Sans MS");
  1133.  
  1134. pref("font.name.serif.x-unicode", "Times New Roman");
  1135. pref("font.name.sans-serif.x-unicode", "Arial");
  1136. pref("font.name.monospace.x-unicode", "Courier New");
  1137. pref("font.name.cursive.x-unicode", "Comic Sans MS");
  1138.  
  1139. pref("font.name.serif.x-western", "Times New Roman");
  1140. pref("font.name.sans-serif.x-western", "Arial");
  1141. pref("font.name.monospace.x-western", "Courier New");
  1142. pref("font.name.cursive.x-western", "Comic Sans MS");
  1143.  
  1144. pref("font.name.serif.zh-CN", "σ«ïΣ╜ô"); //MS Song
  1145. pref("font.name.sans-serif.zh-CN", "σ«ïΣ╜ô"); //MS Song
  1146. pref("font.name.monospace.zh-CN", "σ«ïΣ╜ô"); //MS Song
  1147. pref("font.name-list.serif.zh-CN", "MS Song, σ«ïΣ╜ô, SimSun");
  1148. pref("font.name-list.sans-serif.zh-CN", "MS Song, σ«ïΣ╜ô, SimSun");
  1149. pref("font.name-list.monospace.zh-CN", "MS Song, σ«ïΣ╜ô, SimSun");
  1150.  
  1151. // Per Taiwanese users' demand. They don't want to use TC fonts for
  1152. // rendering Latin letters. (bug 88579)
  1153. pref("font.name.serif.zh-TW", "Times New Roman"); 
  1154. pref("font.name.sans-serif.zh-TW", "Arial"); 
  1155. pref("font.name.monospace.zh-TW", "τ┤░µÿÄΘ½ö");  // MingLiU
  1156. pref("font.name-list.serif.zh-TW", "µû░τ┤░µÿÄΘ½ö,PMingLiu,τ┤░µÿÄΘ½ö,MingLiU"); 
  1157. pref("font.name-list.sans-serif.zh-TW", "µû░τ┤░µÿÄΘ½ö,PMingLiU,τ┤░µÿÄΘ½ö,MingLiU");
  1158. pref("font.name-list.monospace.zh-TW", "MingLiU,τ┤░µÿÄΘ½ö");
  1159.  
  1160. // hkscsm3u.ttf (HKSCS-2001) :  http://www.microsoft.com/hk/hkscs 
  1161. // Hong Kong users have the same demand about glyphs for Latin letters (bug 88579) 
  1162. pref("font.name.serif.zh-HK", "Times New Roman"); 
  1163. pref("font.name.sans-serif.zh-HK", "Arial"); 
  1164. pref("font.name.monospace.zh-HK", "τ┤░µÿÄΘ½ö_HKSCS"); 
  1165. pref("font.name-list.serif.zh-HK", "τ┤░µÿÄΘ½ö_HKSCS, MingLiu_HKSCS, Ming(for ISO10646), MingLiU, τ┤░µÿÄΘ½ö"); 
  1166. pref("font.name-list.sans-serif.zh-HK", "τ┤░µÿÄΘ½ö_HKSCS, MingLiU_HKSCS, Ming(for ISO10646), MingLiU, τ┤░µÿÄΘ½ö");  
  1167. pref("font.name-list.monospace.zh-HK", "MingLiU_HKSCS,  τ┤░µÿÄΘ½ö_HKSCS, Ming(for ISO10646), MingLiU, τ┤░µÿÄΘ½ö");
  1168.  
  1169. pref("font.name.serif.x-devanagari", "Mangal");
  1170. pref("font.name.sans-serif.x-devanagari", "Raghindi");
  1171. pref("font.name.monospace.x-devanagari", "Mangal");
  1172. pref("font.name-list.serif.x-devanagari", "Mangal, Raghindi");
  1173. pref("font.name-list.monospace.x-devanagari", "Mangal, Raghindi");
  1174.  
  1175. pref("font.name.serif.x-tamil", "Latha");
  1176. pref("font.name.sans-serif.x-tamil", "Code2000");
  1177. pref("font.name.monospace.x-tamil", "Latha");
  1178. pref("font.name-list.serif.x-tamil", "Latha, Code2000");
  1179. pref("font.name-list.monospace.x-tamil", "Latha, Code2000");
  1180.  
  1181. //@line 1221 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\modules\libpref\src\init\all.js"
  1182.  
  1183. pref("font.name.serif.x-armn", "Sylfaen");
  1184. pref("font.name.sans-serif.x-armn", "Arial AMU");
  1185. pref("font.name.monospace.x-armn", "Arial AMU");
  1186. pref("font.name-list.serif.x-armn", "Sylfaen,Arial Unicode MS, Code2000");
  1187. pref("font.name-list.monospace.x-armn", "Arial AMU, Arial Unicode MS, Code2000");
  1188.  
  1189. pref("font.name.serif.x-beng", "Akaash");
  1190. pref("font.name.sans-serif.x-beng", "Likhan");
  1191. pref("font.name.monospace.x-beng", "Mitra Mono");
  1192. pref("font.name-list.serif.x-beng", "Akaash, Ekushey Punarbhaba, Code2000, Arial Unicode MS"); 
  1193. pref("font.name-list.monospace.x-beng", "Likhan, Mukti Narrow, Code 2000, Arial Unicode MS");
  1194.  
  1195. pref("font.name.serif.x-cans", "Aboriginal Serif");
  1196. pref("font.name.sans-serif.x-cans", "Aboriginal Sans");
  1197. pref("font.name.monospace.x-cans", "Aboriginal Sans");
  1198. pref("font.name-list.serif.x-cans", "Aboriginal Serif, BJCree Uni");
  1199. pref("font.name-list.monospace.x-cans", "Aboriginal Sans, OskiDakelh, Pigiarniq, Uqammaq");
  1200.  
  1201. pref("font.name.serif.x-ethi", "Visual Geez Unicode");
  1202. pref("font.name.sans-serif.x-ethi", "GF Zemen Unicode");
  1203. pref("font.name.cursive.x-ethi", "Visual Geez Unicode Title");
  1204. pref("font.name.monospace.x-ethi", "Ethiopia Jiret");
  1205. pref("font.name-list.serif.x-ethi", "Visual Geez Unicode, Visual Geez Unicode Agazian, Code2000");
  1206. pref("font.name-list.monospace.x-ethi", "Ethiopia Jiret, Code2000");
  1207.  
  1208. pref("font.name.serif.x-geor", "Sylfaen");
  1209. pref("font.name.sans-serif.x-geor", "BPG Classic 99U");
  1210. pref("font.name.monospace.x-geor", "Code2000");
  1211. pref("font.name-list.serif.x-geor", "Sylfaen, BPG Paata Khutsuri U, TITUS Cyberbit Basic"); 
  1212. pref("font.name-list.monospace.x-geor", "BPG Classic 99U, Code2000, Arial Unicode MS");
  1213.  
  1214. pref("font.name.serif.x-gujr", "Shruti");
  1215. pref("font.name.sans-serif.x-gujr", "Shruti");
  1216. pref("font.name.monospace.x-gujr", "Code2000");
  1217. pref("font.name-list.serif.x-gujr", "Shruti, Code2000, Arial Unicode MS"); 
  1218. pref("font.name-list.monospace.x-gujr", "Code2000, Shruti, Arial Unicode MS");
  1219.  
  1220. pref("font.name.serif.x-guru", "Raavi");
  1221. pref("font.name.sans-serif.x-guru", "Code2000");
  1222. pref("font.name.monospace.x-guru", "Code2000");
  1223. pref("font.name-list.serif.x-guru", "Raavi, Saab, Code2000, Arial Unicode MS"); 
  1224. pref("font.name-list.monospace.x-guru", "Code2000, Raavi, Saab, Arial Unicode MS");
  1225.  
  1226. pref("font.name.serif.x-khmr", "PhnomPenh OT");
  1227. pref("font.name.sans-serif.x-khmr", "Khmer OS");
  1228. pref("font.name.monospace.x-khmr", "Code2000");
  1229. pref("font.name-list.serif.x-khmr", "PhnomPenh OT,.Mondulkiri U GR 1.5, Khmer OS");
  1230. pref("font.name-list.monospace.x-khmr", "Code2000, Khmer OS, Khmer OS System");
  1231.  
  1232. pref("font.name.serif.x-mlym", "Kartika");
  1233. pref("font.name.sans-serif.x-mlym", "Anjali-Beta");
  1234. pref("font.name.monospace.x-mlym", "Code2000");
  1235. pref("font.name-list.serif.x-mlym", "Kartika, ThoolikaUnicode, Code2000, Arial Unicode MS");
  1236. pref("font.name-list.monospace.x-mlym", "Code2000, Anjali-Beta");
  1237.  
  1238. pref("font.default.ar", "sans-serif");
  1239. pref("font.size.variable.ar", 16);
  1240. pref("font.size.fixed.ar", 13);
  1241.  
  1242. pref("font.default.el", "serif");
  1243. pref("font.size.variable.el", 16);
  1244. pref("font.size.fixed.el", 13);
  1245.  
  1246. pref("font.default.he", "sans-serif");
  1247. pref("font.size.variable.he", 16);
  1248. pref("font.size.fixed.he", 13);
  1249.  
  1250. pref("font.default.ja", "sans-serif");
  1251. pref("font.size.variable.ja", 16);
  1252. pref("font.size.fixed.ja", 16);
  1253.  
  1254. pref("font.default.ko", "sans-serif");
  1255. pref("font.size.variable.ko", 16);
  1256. pref("font.size.fixed.ko", 16);
  1257.  
  1258. pref("font.default.th", "serif");
  1259. pref("font.size.variable.th", 16);
  1260. pref("font.size.fixed.th", 13);
  1261.  
  1262. pref("font.default.tr", "serif");
  1263. pref("font.size.variable.tr", 16);
  1264. pref("font.size.fixed.tr", 13);
  1265.  
  1266. pref("font.default.x-baltic", "serif");
  1267. pref("font.size.variable.x-baltic", 16);
  1268. pref("font.size.fixed.x-baltic", 13);
  1269.  
  1270. pref("font.default.x-central-euro", "serif");
  1271. pref("font.size.variable.x-central-euro", 16);
  1272. pref("font.size.fixed.x-central-euro", 13);
  1273.  
  1274. pref("font.default.x-cyrillic", "serif");
  1275. pref("font.size.variable.x-cyrillic", 16);
  1276. pref("font.size.fixed.x-cyrillic", 13);
  1277.  
  1278. pref("font.default.x-devanagari", "serif");
  1279. pref("font.size.variable.x-devanagari", 16);
  1280. pref("font.size.fixed.x-devanagari", 13);
  1281.  
  1282. pref("font.default.x-tamil", "serif");
  1283. pref("font.size.variable.x-tamil", 16);
  1284. pref("font.size.fixed.x-tamil", 13);
  1285.  
  1286. pref("font.default.x-armn", "serif");
  1287. pref("font.size.variable.x-armn", 16);
  1288. pref("font.size.fixed.x-armn", 13);
  1289.  
  1290. pref("font.default.x-beng", "serif");
  1291. pref("font.size.variable.x-beng", 16);
  1292. pref("font.size.fixed.x-beng", 13);
  1293.  
  1294. pref("font.default.x-cans", "serif");
  1295. pref("font.size.variable.x-cans", 16);
  1296. pref("font.size.fixed.x-cans", 13);
  1297.  
  1298. pref("font.default.x-ethi", "serif");
  1299. pref("font.size.variable.x-ethi", 16);
  1300. pref("font.size.fixed.x-ethi", 13);
  1301.  
  1302. pref("font.default.x-geor", "serif");
  1303. pref("font.size.variable.x-geor", 16);
  1304. pref("font.size.fixed.x-geor", 13);
  1305.  
  1306. pref("font.default.x-gujr", "serif");
  1307. pref("font.size.variable.x-gujr", 16);
  1308. pref("font.size.fixed.x-gujr", 13);
  1309.  
  1310. pref("font.default.x-guru", "serif");
  1311. pref("font.size.variable.x-guru", 16);
  1312. pref("font.size.fixed.x-guru", 13);
  1313.  
  1314. pref("font.default.x-khmr", "serif");
  1315. pref("font.size.variable.x-khmr", 16);
  1316. pref("font.size.fixed.x-khmr", 13);
  1317.  
  1318. pref("font.default.x-mlym", "serif");
  1319. pref("font.size.variable.x-mlym", 16);
  1320. pref("font.size.fixed.x-mlym", 13);
  1321.  
  1322. pref("font.default.x-unicode", "serif");
  1323. pref("font.size.variable.x-unicode", 16);
  1324. pref("font.size.fixed.x-unicode", 13);
  1325.  
  1326. pref("font.default.x-western", "serif");
  1327. pref("font.size.variable.x-western", 16);
  1328. pref("font.size.fixed.x-western", 13);
  1329.  
  1330. pref("font.default.zh-CN", "sans-serif");
  1331. pref("font.size.variable.zh-CN", 16);
  1332. pref("font.size.fixed.zh-CN", 16);
  1333.  
  1334. pref("font.default.zh-TW", "sans-serif");
  1335. pref("font.size.variable.zh-TW", 16);
  1336. pref("font.size.fixed.zh-TW", 16);
  1337.  
  1338. pref("font.default.zh-HK", "sans-serif");
  1339. pref("font.size.variable.zh-HK", 16);
  1340. pref("font.size.fixed.zh-HK", 16);
  1341.  
  1342. pref("ui.key.menuAccessKeyFocuses", true);
  1343.  
  1344. // override double-click word selection behavior.
  1345. pref("layout.word_select.eat_space_to_next_word", true);
  1346.  
  1347. // scrollbar snapping region
  1348. pref("slider.snapMultiplier", 6);
  1349.  
  1350. // print_extra_margin enables platforms to specify an extra gap or margin
  1351. // around the content of the page for Print Preview only
  1352. pref("print.print_extra_margin", 90); // twips (90 twips is an eigth of an inch)
  1353.  
  1354. // This indicates whether it should use the native dialog or the XP Dialog
  1355. pref("print.use_native_print_dialog", true);
  1356.  
  1357. // Whether to extend the native dialog with information on printing frames.
  1358. pref("print.extend_native_print_dialog", true);
  1359.  
  1360. // Locate Java by scanning the Sun JRE installation directory with a minimum version
  1361. // Note: Does not scan if security.enable_java is not true
  1362. pref("plugin.scan.SunJRE", "1.3");
  1363.  
  1364. // Locate plugins by scanning the Adobe Acrobat installation directory with a minimum version
  1365. pref("plugin.scan.Acrobat", "5.0");
  1366.  
  1367. // Locate plugins by scanning the Quicktime installation directory with a minimum version
  1368. pref("plugin.scan.Quicktime", "5.0");
  1369.  
  1370. // Locate and scan the Window Media Player installation directory for plugins with a minimum version
  1371. pref("plugin.scan.WindowsMediaPlayer", "7.0");
  1372.  
  1373. // Locate plugins by the directories specified in the Windows registry for PLIDs
  1374. // Which is currently HKLM\Software\MozillaPlugins\xxxPLIDxxx\Path
  1375. pref("plugin.scan.plid.all", true);
  1376.  
  1377. // Controls the scanning of the Navigator 4.x directory for plugins
  1378. // When pref is missing, the default is to pickup popular plugins such as
  1379. // Flash, Shockwave, Acrobat, and Quicktime. If set to true, ALL plugins
  1380. // will be picked up and if set to false the scan will not happen at all
  1381. //pref("plugin.scan.4xPluginFolder", false);
  1382.  
  1383. // Help Windows NT, 2000, and XP dialup a RAS connection
  1384. // when a network address is unreachable.
  1385. pref("network.autodial-helper.enabled", true);
  1386.  
  1387. // Pref to control whether we set ddeexec subkeys for the http
  1388. // Internet shortcut protocol if we are handling it.  These
  1389. // subkeys will be set only while we are running (to avoid the
  1390. // problem of Windows showing an alert when it tries to use DDE
  1391. // and we're not already running).
  1392. pref("advanced.system.supportDDEExec", true);
  1393.  
  1394. // Use CP932 compatible map for JIS X 0208
  1395. pref("intl.jis0208.map", "CP932");
  1396.  
  1397. // Switch the keyboard layout per window
  1398. pref("intl.keyboard.per_window_layout", false);
  1399.  
  1400. //@line 1441 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\modules\libpref\src\init\all.js"
  1401.  
  1402. //@line 1810 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\modules\libpref\src\init\all.js"
  1403.  
  1404. //@line 1998 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\modules\libpref\src\init\all.js"
  1405.  
  1406. //@line 2089 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\modules\libpref\src\init\all.js"
  1407.  
  1408. //@line 2354 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\modules\libpref\src\init\all.js"
  1409.  
  1410. //@line 2422 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\modules\libpref\src\init\all.js"
  1411.  
  1412. //@line 2448 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\modules\libpref\src\init\all.js"
  1413.  
  1414. //@line 2468 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\modules\libpref\src\init\all.js"
  1415.  
  1416. //@line 2476 "c:\builds\xulrunner\xr_trunk_dubya\mozilla\modules\libpref\src\init\all.js"
  1417.  
  1418. // Login Manager prefs
  1419. pref("signon.rememberSignons",              true);
  1420. pref("signon.expireMasterPassword",         false);
  1421. pref("signon.SignonFileName",               "signons.txt"); // obsolete 
  1422. pref("signon.SignonFileName2",              "signons2.txt"); // obsolete
  1423. pref("signon.SignonFileName3",              "signons3.txt");
  1424. pref("signon.autofillForms",                true); 
  1425. pref("signon.debug",                        false); // logs to Error Console
  1426.  
  1427. // Zoom prefs
  1428. pref("fullZoom.minPercent", 50);
  1429. pref("fullZoom.maxPercent", 300);
  1430. pref("toolkit.zoomManager.fullZoomValues", ".5,.75,1,1.25,1.5,2,3");
  1431.