home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / usr / share / firefox / greprefs / all.js next >
Encoding:
Text File  |  2007-04-03  |  60.2 KB  |  1,362 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://global/locale/intl.properties");
  53. pref("general.useragent.contentlocale", "chrome://browser-region/locale/region.properties");
  54.  
  55. pref("general.config.obscure_value", 0); // for MCD .cfg files
  56. pref("general.config.filename", "firefox.cfg");
  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. // Fastback caching - if this pref is negative, then we calculate the number
  70. // of content viewers to cache based on the amount of available memory.
  71. pref("browser.sessionhistory.max_total_viewers", -1);
  72.  
  73. pref("browser.display.use_document_fonts",  1);  // 0 = never, 1 = quick, 2 = always
  74. pref("browser.display.use_document_colors", true);
  75. pref("browser.display.use_system_colors",   false);
  76. pref("browser.display.foreground_color",    "#000000");
  77. pref("browser.display.background_color",    "#FFFFFF");
  78. pref("browser.display.force_inline_alttext", false); // true = force ALT text for missing images to be layed out inline
  79. // 0 = no external leading, 
  80. // 1 = use external leading only when font provides, 
  81. // 2 = add extra leading both internal leading and external leading are zero
  82. pref("browser.display.normal_lineheight_calc_control", 2);
  83. pref("browser.display.show_image_placeholders", true); // true = show image placeholders while image is loaded and when image is broken
  84. pref("browser.anchor_color",                "#0000EE");
  85. pref("browser.active_color",                "#EE0000");
  86. pref("browser.visited_color",               "#551A8B");
  87. pref("browser.underline_anchors",           true);
  88. pref("browser.blink_allowed",               true);
  89. pref("browser.enable_automatic_image_resizing", false);
  90.  
  91. pref("browser.display.use_focus_colors",    false);
  92. pref("browser.display.focus_background_color", "#117722");
  93. pref("browser.display.focus_text_color",     "#ffffff");
  94. pref("browser.display.focus_ring_width",     1);
  95. pref("browser.display.focus_ring_on_anything", false);
  96.  
  97. pref("browser.helperApps.alwaysAsk.force",  false);
  98. pref("browser.helperApps.neverAsk.saveToDisk", "");
  99. pref("browser.helperApps.neverAsk.openFile", "");
  100.  
  101. // xxxbsmedberg: where should prefs for the toolkit go?
  102. pref("browser.chrome.toolbar_tips",         true);
  103. // 0 = Pictures Only, 1 = Text Only, 2 = Pictures and Text
  104. pref("browser.chrome.toolbar_style",        2);
  105. // max image size for which it is placed in the tab icon for tabbrowser.
  106. // if 0, no images are used for tab icons for image documents.
  107. pref("browser.chrome.image_icons.max_size", 1024);
  108.  
  109.  
  110. pref("accessibility.browsewithcaret", false);
  111. pref("accessibility.warn_on_browsewithcaret", true);
  112.  
  113. //@line 114 "/build/buildd/firefox-2.0.0.3+1/modules/libpref/src/init/all.js"
  114. // Tab focus model bit field:
  115. // 1 focuses text controls, 2 focuses other form elements, 4 adds links.
  116. // Most users will want 1, 3, or 7.
  117. // On OS X, we use Full Keyboard Access system preference,
  118. // unless accessibility.tabfocus is set by the user.
  119. pref("accessibility.tabfocus", 7);
  120. pref("accessibility.tabfocus_applies_to_xul", false);
  121. //@line 125 "/build/buildd/firefox-2.0.0.3+1/modules/libpref/src/init/all.js"
  122.  
  123. pref("accessibility.usetexttospeech", "");
  124. pref("accessibility.usebrailledisplay", "");
  125. pref("accessibility.accesskeycausesactivation", true);
  126.  
  127. // Type Ahead Find
  128. pref("accessibility.typeaheadfind", true);
  129. pref("accessibility.typeaheadfind.autostart", true);
  130. // casesensitive: controls the find bar's case-sensitivity
  131. //     0 - "never"  (case-insensitive)
  132. //     1 - "always" (case-sensitive)
  133. // other - "auto"   (case-sensitive for mixed-case input, insensitive otherwise)
  134. pref("accessibility.typeaheadfind.casesensitive", 0);
  135. pref("accessibility.typeaheadfind.linksonly", true);
  136. pref("accessibility.typeaheadfind.startlinksonly", false);
  137. pref("accessibility.typeaheadfind.timeout", 4000);
  138. pref("accessibility.typeaheadfind.enabletimeout", true);
  139. pref("accessibility.typeaheadfind.soundURL", "beep");
  140. pref("accessibility.typeaheadfind.enablesound", true);
  141.  
  142. pref("browser.history_expire_days", 9);
  143.  
  144. // loading and rendering of framesets and iframes
  145. pref("browser.frames.enabled", true);
  146.  
  147. // form submission
  148. pref("browser.forms.submit.backwards_compatible", true);
  149.  
  150. // xxxbsmedberg more toolkit prefs?
  151. // Tab browser preferences.
  152. pref("browser.tabs.autoHide", true);
  153. pref("browser.tabs.forceHide", false);
  154. pref("browser.tabs.warnOnClose", true);
  155. pref("browser.tabs.warnOnCloseOther", true);
  156. pref("browser.tabs.warnOnOpen", true);
  157. pref("browser.tabs.maxOpenBeforeWarn", 15);
  158. // 0 = append, 1 = replace
  159. pref("browser.tabs.loadGroup", 1);
  160.  
  161. pref("toolkit.scrollbox.scrollIncrement", 20);
  162. pref("toolkit.scrollbox.clickToScroll.scrollDelay", 150);
  163.  
  164. // lets new tab/window load something different than first window
  165. // -1 - use navigator startup preference
  166. //  0 - loads blank page
  167. //  1 - loads home page
  168. //  2 - loads last page visited
  169. pref("browser.tabs.loadOnNewTab", 0);
  170. pref("browser.windows.loadOnNewWindow", 1);
  171.  
  172. // view source
  173. pref("view_source.syntax_highlight", true);
  174. pref("view_source.wrap_long_lines", false);
  175.  
  176. // dispatch left clicks only to content in browser (still allows clicks to chrome/xul)
  177. pref("nglayout.events.dispatchLeftClickOnly", true);
  178.  
  179. // whether or not to use xbl form controls
  180. pref("nglayout.debug.enable_xbl_forms", false);
  181.  
  182. // size of scrollbar snapping region
  183. pref("slider.snapMultiplier", 6);
  184.  
  185. // Default to using the system filepicker if possible, but allow
  186. // toggling to use the XUL filepicker
  187. pref("ui.allow_platform_file_picker", true);
  188.  
  189. // option to choose plug-in finder
  190. pref("application.use_ns_plugin_finder", false);
  191.  
  192. // URI fixup prefs
  193. pref("browser.fixup.alternate.enabled", true);
  194. pref("browser.fixup.alternate.prefix", "www.");
  195. pref("browser.fixup.alternate.suffix", ".com");
  196. pref("browser.fixup.hide_user_pass", true);
  197.  
  198. // Print header customization
  199. // Use the following codes:
  200. // &T - Title
  201. // &U - Document URL
  202. // &D - Date/Time
  203. // &P - Page Number
  204. // &PT - Page Number "of" Page total
  205. // Set each header to a string containing zero or one of these codes
  206. // and the code will be replaced in that string by the corresponding data
  207. pref("print.print_headerleft", "&T");
  208. pref("print.print_headercenter", "");
  209. pref("print.print_headerright", "&U");
  210. pref("print.print_footerleft", "&PT");
  211. pref("print.print_footercenter", "");
  212. pref("print.print_footerright", "&D");
  213. pref("print.show_print_progress", true);
  214.  
  215. // xxxbsmedberg: more toolkit prefs
  216.  
  217. // When this is set to false each window has its own PrintSettings
  218. // and a chnage in one window does not affect the others
  219. pref("print.use_global_printsettings", true);
  220.  
  221. // Use the native dialog or the XP dialog?
  222. pref("print.use_native_print_dialog", false);
  223.  
  224. // Save the Printings after each print job
  225. pref("print.save_print_settings", true);
  226.  
  227. pref("print.whileInPrintPreview", true);
  228.  
  229. // Cache old Presentation when going into Print Preview
  230. pref("print.always_cache_old_pres", false);
  231.  
  232. // Enables you to specify the gap from the edge of the paper to the margin
  233. // this is used by both Printing and Print Preview
  234. pref("print.print_edge_top", 0); // 1/100 of an inch
  235. pref("print.print_edge_left", 0); // 1/100 of an inch
  236. pref("print.print_edge_right", 0); // 1/100 of an inch
  237. pref("print.print_edge_bottom", 0); // 1/100 of an inch
  238.  
  239. // Pref used by the spellchecker extension to control the 
  240. // maximum number of misspelled words that will be underlined
  241. // in a document.
  242. pref("extensions.spellcheck.inline.max-misspellings", 500);
  243.  
  244. // Prefs used by libeditor. Prefs specific to seamonkey composer
  245. // belong in mozilla/editor/ui/composer.js
  246.  
  247. pref("editor.use_custom_colors", false);
  248. pref("editor.htmlWrapColumn", 72);
  249. pref("editor.singleLine.pasteNewlines",     1);
  250. pref("editor.quotesPreformatted",            false);
  251. pref("editor.use_css",                       true);
  252. pref("editor.css.default_length_unit",       "px");
  253. pref("editor.resizing.preserve_ratio",       true);
  254. pref("editor.positioning.offset",            0);
  255.  
  256.  
  257. // Default Capability Preferences: Security-Critical! 
  258. // Editing these may create a security risk - be sure you know what you're doing
  259. //pref("capability.policy.default.barprop.visible.set", "UniversalBrowserWrite");
  260.  
  261. pref("capability.policy.default_policynames", "mailnews");
  262.  
  263. pref("capability.policy.default.DOMException.code", "allAccess");
  264. pref("capability.policy.default.DOMException.message", "allAccess");
  265. pref("capability.policy.default.DOMException.name", "allAccess");
  266. pref("capability.policy.default.DOMException.result", "allAccess");
  267. pref("capability.policy.default.DOMException.toString.get", "allAccess");
  268.  
  269. pref("capability.policy.default.History.back.get", "allAccess");
  270. pref("capability.policy.default.History.current", "UniversalBrowserRead");
  271. pref("capability.policy.default.History.forward.get", "allAccess");
  272. pref("capability.policy.default.History.go.get", "allAccess");
  273. pref("capability.policy.default.History.item", "UniversalBrowserRead");
  274. pref("capability.policy.default.History.next", "UniversalBrowserRead");
  275. pref("capability.policy.default.History.previous", "UniversalBrowserRead");
  276. pref("capability.policy.default.History.toString", "UniversalBrowserRead");
  277.  
  278. pref("capability.policy.default.HTMLDocument.open.get", "allAccess");
  279.  
  280. pref("capability.policy.default.Location.hash.set", "allAccess");
  281. pref("capability.policy.default.Location.href.set", "allAccess");
  282. pref("capability.policy.default.Location.replace.get", "allAccess");
  283.  
  284. pref("capability.policy.default.Navigator.preference", "allAccess");
  285. pref("capability.policy.default.Navigator.preferenceinternal.get", "UniversalPreferencesRead");
  286. pref("capability.policy.default.Navigator.preferenceinternal.set", "UniversalPreferencesWrite");
  287.  
  288. pref("capability.policy.default.Window.blur.get", "allAccess");
  289. pref("capability.policy.default.Window.close.get", "allAccess");
  290. pref("capability.policy.default.Window.closed.get", "allAccess");
  291. pref("capability.policy.default.Window.Components", "allAccess");
  292. pref("capability.policy.default.Window.document.get", "allAccess");
  293. pref("capability.policy.default.Window.focus.get", "allAccess");
  294. pref("capability.policy.default.Window.frames.get", "allAccess");
  295. pref("capability.policy.default.Window.history.get", "allAccess");
  296. pref("capability.policy.default.Window.length.get", "allAccess");
  297. pref("capability.policy.default.Window.location", "allAccess");
  298. pref("capability.policy.default.Window.opener.get", "allAccess");
  299. pref("capability.policy.default.Window.parent.get", "allAccess");
  300. pref("capability.policy.default.Window.self.get", "allAccess");
  301. pref("capability.policy.default.Window.top.get", "allAccess");
  302. pref("capability.policy.default.Window.window.get", "allAccess");
  303.  
  304. pref("capability.policy.default.Selection.addSelectionListener", "UniversalXPConnect");
  305. pref("capability.policy.default.Selection.removeSelectionListener", "UniversalXPConnect");
  306.  
  307. // Restrictions on the DOM for mail/news - see bugs 66938 and 84545
  308. pref("capability.policy.mailnews.sites", "mailbox: imap: news:");
  309.  
  310. pref("capability.policy.mailnews.*.attributes.get", "noAccess");
  311. pref("capability.policy.mailnews.*.baseURI.get", "noAccess");
  312. pref("capability.policy.mailnews.*.data.get", "noAccess");
  313. pref("capability.policy.mailnews.*.getAttribute", "noAccess");
  314. pref("capability.policy.mailnews.HTMLDivElement.getAttribute", "sameOrigin");
  315. pref("capability.policy.mailnews.*.getAttributeNS", "noAccess");
  316. pref("capability.policy.mailnews.*.getNamedItem", "noAccess");
  317. pref("capability.policy.mailnews.*.getNamedItemNS", "noAccess");
  318. pref("capability.policy.mailnews.*.host.get", "noAccess");
  319. pref("capability.policy.mailnews.*.hostname.get", "noAccess");
  320. pref("capability.policy.mailnews.*.href.get", "noAccess");
  321. pref("capability.policy.mailnews.*.innerHTML.get", "noAccess");
  322. pref("capability.policy.mailnews.*.lowSrc.get", "noAccess");
  323. pref("capability.policy.mailnews.*.nodeValue.get", "noAccess");
  324. pref("capability.policy.mailnews.*.pathname.get", "noAccess");
  325. pref("capability.policy.mailnews.*.protocol.get", "noAccess");
  326. pref("capability.policy.mailnews.*.src.get", "noAccess");
  327. pref("capability.policy.mailnews.*.substringData.get", "noAccess");
  328. pref("capability.policy.mailnews.*.text.get", "noAccess");
  329. pref("capability.policy.mailnews.*.title.get", "noAccess");
  330. pref("capability.policy.mailnews.DOMException.toString", "noAccess");
  331. pref("capability.policy.mailnews.HTMLAnchorElement.toString", "noAccess");
  332. pref("capability.policy.mailnews.HTMLDocument.domain", "noAccess");
  333. pref("capability.policy.mailnews.HTMLDocument.URL", "noAccess");
  334. pref("capability.policy.mailnews.Location.toString", "noAccess");
  335. pref("capability.policy.mailnews.Range.toString", "noAccess");
  336. pref("capability.policy.mailnews.Window.blur", "noAccess");
  337. pref("capability.policy.mailnews.Window.focus", "noAccess");
  338. pref("capability.policy.mailnews.Window.innerWidth.set", "noAccess");
  339. pref("capability.policy.mailnews.Window.innerHeight.set", "noAccess");
  340. pref("capability.policy.mailnews.Window.moveBy", "noAccess");
  341. pref("capability.policy.mailnews.Window.moveTo", "noAccess");
  342. pref("capability.policy.mailnews.Window.name.set", "noAccess");
  343. pref("capability.policy.mailnews.Window.outerHeight.set", "noAccess");
  344. pref("capability.policy.mailnews.Window.outerWidth.set", "noAccess");
  345. pref("capability.policy.mailnews.Window.resizeBy", "noAccess");
  346. pref("capability.policy.mailnews.Window.resizeTo", "noAccess");
  347. pref("capability.policy.mailnews.Window.screenX.set", "noAccess");
  348. pref("capability.policy.mailnews.Window.screenY.set", "noAccess");
  349. pref("capability.policy.mailnews.Window.sizeToContent", "noAccess");
  350. pref("capability.policy.mailnews.document.load", "noAccess");
  351. pref("capability.policy.mailnews.XMLHttpRequest.channel", "noAccess");
  352. pref("capability.policy.mailnews.XMLHttpRequest.getInterface", "noAccess");
  353. pref("capability.policy.mailnews.XMLHttpRequest.responseXML", "noAccess");
  354. pref("capability.policy.mailnews.XMLHttpRequest.responseText", "noAccess");
  355. pref("capability.policy.mailnews.XMLHttpRequest.status", "noAccess");
  356. pref("capability.policy.mailnews.XMLHttpRequest.statusText", "noAccess");
  357. pref("capability.policy.mailnews.XMLHttpRequest.abort", "noAccess");
  358. pref("capability.policy.mailnews.XMLHttpRequest.getAllResponseHeaders", "noAccess");
  359. pref("capability.policy.mailnews.XMLHttpRequest.getResponseHeader", "noAccess");
  360. pref("capability.policy.mailnews.XMLHttpRequest.open", "noAccess");
  361. pref("capability.policy.mailnews.XMLHttpRequest.send", "noAccess");
  362. pref("capability.policy.mailnews.XMLHttpRequest.setRequestHeader", "noAccess");
  363. pref("capability.policy.mailnews.XMLHttpRequest.readyState", "noAccess");
  364. pref("capability.policy.mailnews.XMLHttpRequest.overrideMimeType", "noAccess");
  365. pref("capability.policy.mailnews.XMLHttpRequest.onload", "noAccess");
  366. pref("capability.policy.mailnews.XMLHttpRequest.onerror", "noAccess");
  367. pref("capability.policy.mailnews.XMLHttpRequest.onreadystatechange", "noAccess");
  368. pref("capability.policy.mailnews.XMLSerializer.serializeToString", "noAccess");
  369. pref("capability.policy.mailnews.XMLSerializer.serializeToStream", "noAccess");
  370. pref("capability.policy.mailnews.DOMParser.parseFromString", "noAccess");
  371. pref("capability.policy.mailnews.DOMParser.parseFromStream", "noAccess");
  372. pref("capability.policy.mailnews.SOAPCall.transportURI", "noAccess");
  373. pref("capability.policy.mailnews.SOAPCall.verifySourceHeader", "noAccess");
  374. pref("capability.policy.mailnews.SOAPCall.invoke", "noAccess");
  375. pref("capability.policy.mailnews.SOAPCall.asyncInvoke", "noAccess");
  376. pref("capability.policy.mailnews.SOAPResponse.fault", "noAccess");
  377. pref("capability.policy.mailnews.SOAPEncoding.styleURI", "noAccess");
  378. pref("capability.policy.mailnews.SOAPEncoding.getAssociatedEncoding", "noAccess");
  379. pref("capability.policy.mailnews.SOAPEncoding.setEncoder", "noAccess");
  380. pref("capability.policy.mailnews.SOAPEncoding.getEncoder", "noAccess");
  381. pref("capability.policy.mailnews.SOAPEncoding.setDecoder", "noAccess");
  382. pref("capability.policy.mailnews.SOAPEncoding.setDecoder", "noAccess");
  383. pref("capability.policy.mailnews.SOAPEncoding.getDecoder", "noAccess");
  384. pref("capability.policy.mailnews.SOAPEncoding.defaultEncoder", "noAccess");
  385. pref("capability.policy.mailnews.SOAPEncoding.defaultDecoder", "noAccess");
  386. pref("capability.policy.mailnews.SOAPEncoding.schemaCollection", "noAccess");
  387. pref("capability.policy.mailnews.SOAPEncoding.encode", "noAccess");
  388. pref("capability.policy.mailnews.SOAPEncoding.decode", "noAccess");
  389. pref("capability.policy.mailnews.SOAPEncoding.mapSchemaURI", "noAccess");
  390. pref("capability.policy.mailnews.SOAPEncoding.unmapSchemaURI", "noAccess");
  391. pref("capability.policy.mailnews.SOAPEncoding.getInternalSchemaURI", "noAccess");
  392. pref("capability.policy.mailnews.SOAPEncoding.getExternalSchemaURI", "noAccess");
  393. pref("capability.policy.mailnews.SOAPFault.element", "noAccess");
  394. pref("capability.policy.mailnews.SOAPFault.faultNamespaceURI", "noAccess");
  395. pref("capability.policy.mailnews.SOAPFault.faultCode", "noAccess");
  396. pref("capability.policy.mailnews.SOAPFault.faultString", "noAccess");
  397. pref("capability.policy.mailnews.SOAPFault.faultActor", "noAccess");
  398. pref("capability.policy.mailnews.SOAPFault.detail", "noAccess");
  399. pref("capability.policy.mailnews.SOAPHeaderBlock.actorURI", "noAccess");
  400. pref("capability.policy.mailnews.SOAPHeaderBlock.mustUnderstand", "noAccess");
  401. pref("capability.policy.mailnews.SOAPParameter", "noAccess");
  402. pref("capability.policy.mailnews.SOAPPropertyBagMutator.propertyBag", "noAccess");
  403. pref("capability.policy.mailnews.SOAPPropertyBagMutator.addProperty", "noAccess");
  404. pref("capability.policy.mailnews.SchemaLoader.load", "noAccess");
  405. pref("capability.policy.mailnews.SchemaLoader.loadAsync", "noAccess");
  406. pref("capability.policy.mailnews.SchemaLoader.processSchemaElement", "noAccess");
  407. pref("capability.policy.mailnews.SchemaLoader.onLoad", "noAccess");
  408. pref("capability.policy.mailnews.SchemaLoader.onError", "noAccess");
  409. pref("capability.policy.mailnews.WSDLLoader.load", "noAccess");
  410. pref("capability.policy.mailnews.WSDLLoader.loadAsync", "noAccess");
  411. pref("capability.policy.mailnews.WSDLLoader.onLoad", "noAccess");
  412. pref("capability.policy.mailnews.WSDLLoader.onError", "noAccess");
  413. pref("capability.policy.mailnews.WebServiceProxyFactory.createProxy", "noAccess");
  414. pref("capability.policy.mailnews.WebServiceProxyFactory.createProxyAsync", "noAccess");
  415. pref("capability.policy.mailnews.WebServiceProxyFactory.onLoad", "noAccess");
  416. pref("capability.policy.mailnews.WebServiceProxyFactory.onError", "noAccess");
  417.  
  418. // XMLExtras
  419. pref("capability.policy.default.XMLHttpRequest.channel", "noAccess");
  420. pref("capability.policy.default.XMLHttpRequest.getInterface", "noAccess");
  421. pref("capability.policy.default.DOMParser.parseFromStream", "noAccess");
  422.  
  423. // Clipboard
  424. pref("capability.policy.default.Clipboard.cutcopy", "noAccess");
  425. pref("capability.policy.default.Clipboard.paste", "noAccess");
  426.  
  427. // Scripts & Windows prefs
  428. pref("dom.disable_image_src_set",           false);
  429. pref("dom.disable_window_flip",             false);
  430. pref("dom.disable_window_move_resize",      false);
  431. pref("dom.disable_window_status_change",    false);
  432.  
  433. pref("dom.disable_window_open_feature.titlebar",    false);
  434. pref("dom.disable_window_open_feature.close",       false);
  435. pref("dom.disable_window_open_feature.toolbar",     false);
  436. pref("dom.disable_window_open_feature.location",    false);
  437. pref("dom.disable_window_open_feature.directories", false);
  438. pref("dom.disable_window_open_feature.personalbar", false);
  439. pref("dom.disable_window_open_feature.menubar",     false);
  440. pref("dom.disable_window_open_feature.scrollbars",  false);
  441. pref("dom.disable_window_open_feature.resizable",   false);
  442. pref("dom.disable_window_open_feature.minimizable", false);
  443. pref("dom.disable_window_open_feature.status",      true);
  444.  
  445. pref("dom.allow_scripts_to_close_windows",          false);
  446.  
  447. pref("dom.disable_open_during_load",                false);
  448. pref("dom.popup_maximum",                           20);
  449. pref("dom.popup_allowed_events", "change click dblclick mouseup reset submit");
  450. pref("dom.disable_open_click_delay", 1000);
  451.  
  452. pref("dom.storage.enabled", true);
  453.  
  454. // Disable popups from plugins by default
  455. //   0 = openAllowed
  456. //   1 = openControlled
  457. //   2 = openAbused
  458. pref("privacy.popups.disable_from_plugins", 2);
  459.  
  460. pref("dom.event.contextmenu.enabled",       false);
  461.  
  462. pref("javascript.enabled",                  true);
  463. pref("javascript.allow.mailnews",           false);
  464. pref("javascript.options.strict",           false);
  465.  
  466. // advanced prefs
  467. pref("security.enable_java",                true);
  468. pref("advanced.mailftp",                    false);
  469. pref("image.animation_mode",                "normal");
  470.  
  471. // If there is ever a security firedrill that requires
  472. // us to block certian ports global, this is the pref 
  473. // to use.  Is is a comma delimited list of port numbers
  474. // for example:
  475. //   pref("network.security.ports.banned", "1,2,3,4,5");
  476. // prevents necko connecting to ports 1-5 unless the protocol
  477. // overrides.
  478.  
  479. // Default action for unlisted external protocol handlers
  480. pref("network.protocol-handler.external-default", true);      // OK to load
  481. pref("network.protocol-handler.warn-external-default", true); // warn before load
  482.  
  483. // Prevent using external protocol handlers for these schemes
  484. pref("network.protocol-handler.external.hcp", false);
  485. pref("network.protocol-handler.external.vbscript", false);
  486. pref("network.protocol-handler.external.javascript", false);
  487. pref("network.protocol-handler.external.data", false);
  488. pref("network.protocol-handler.external.ms-help", false);
  489. pref("network.protocol-handler.external.shell", false);
  490. pref("network.protocol-handler.external.vnd.ms.radio", false);
  491. //@line 497 "/build/buildd/firefox-2.0.0.3+1/modules/libpref/src/init/all.js"
  492. pref("network.protocol-handler.external.disk", false);
  493. pref("network.protocol-handler.external.disks", false);
  494. pref("network.protocol-handler.external.afp", false);
  495.  
  496. // An exposed protocol handler is one that can be used in all contexts.  A
  497. // non-exposed protocol handler is one that can only be used internally by the
  498. // application.  For example, a non-exposed protocol would not be loaded by the
  499. // application in response to a link click or a X-remote openURL command.
  500. // Instead, it would be deferred to the system's external protocol handler.
  501. // Only internal/built-in protocol handlers can be marked as exposed.
  502.  
  503. // This pref controls the default settings.  Per protocol settings can be used
  504. // to override this value.
  505. pref("network.protocol-handler.expose-all", true);
  506.  
  507. // Example: make IMAP an exposed protocol
  508. // pref("network.protocol-handler.expose.imap", true);
  509.  
  510. pref("network.hosts.smtp_server",           "mail");
  511. pref("network.hosts.pop_server",            "mail");
  512.  
  513. // <http>
  514. pref("network.http.version", "1.1");      // default
  515. // pref("network.http.version", "1.0");   // uncomment this out in case of problems
  516. // pref("network.http.version", "0.9");   // it'll work too if you're crazy
  517. // keep-alive option is effectively obsolete. Nevertheless it'll work with
  518. // some older 1.0 servers:
  519.  
  520. pref("network.http.proxy.version", "1.1");    // default
  521. // pref("network.http.proxy.version", "1.0"); // uncomment this out in case of problems
  522.                                               // (required if using junkbuster proxy)
  523.  
  524. // enable caching of http documents
  525. pref("network.http.use-cache", true);
  526.  
  527. // this preference can be set to override the socket type used for normal
  528. // HTTP traffic.  an empty value indicates the normal TCP/IP socket type.
  529. pref("network.http.default-socket-type", "");
  530.  
  531. pref("network.http.keep-alive", true); // set it to false in case of problems
  532. pref("network.http.proxy.keep-alive", true);
  533. pref("network.http.keep-alive.timeout", 300);
  534.  
  535. // limit the absolute number of http connections.
  536. pref("network.http.max-connections", 24);
  537.  
  538. // limit the absolute number of http connections that can be established per
  539. // host.  if a http proxy server is enabled, then the "server" is the proxy
  540. // server.  Otherwise, "server" is the http origin server.
  541. pref("network.http.max-connections-per-server", 8);
  542.  
  543. // if network.http.keep-alive is true, and if NOT connecting via a proxy, then
  544. // a new connection will only be attempted if the number of active persistent
  545. // connections to the server is less then max-persistent-connections-per-server.
  546. pref("network.http.max-persistent-connections-per-server", 2);
  547.  
  548. // if network.http.keep-alive is true, and if connecting via a proxy, then a
  549. // new connection will only be attempted if the number of active persistent
  550. // connections to the proxy is less then max-persistent-connections-per-proxy.
  551. pref("network.http.max-persistent-connections-per-proxy", 4);
  552.  
  553. // amount of time (in seconds) to suspend pending requests, before spawning a
  554. // new connection, once the limit on the number of persistent connections per
  555. // host has been reached.  however, a new connection will not be created if
  556. // max-connections or max-connections-per-server has also been reached.
  557. pref("network.http.request.max-start-delay", 10);
  558.  
  559. // Headers
  560. 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");
  561. pref("network.http.sendRefererHeader",      2); // 0=don't send any, 1=send only on clicks, 2=send on image requests as well
  562.  
  563. // Controls whether we send HTTPS referres to other HTTPS sites.
  564. // By default this is enabled for compatibility (see bug 141641)
  565. pref("network.http.sendSecureXSiteReferrer", true);
  566.  
  567. // Maximum number of consecutive redirects before aborting.
  568. pref("network.http.redirection-limit", 20);
  569.  
  570. // Enable http compression: comment this out in case of problems with 1.1
  571. // NOTE: support for "compress" has been disabled per bug 196406.
  572. pref("network.http.accept-encoding" ,"gzip,deflate");
  573.  
  574. pref("network.http.pipelining"      , false);
  575. pref("network.http.proxy.pipelining", false);
  576.  
  577. // Max number of requests in the pipeline
  578. pref("network.http.pipelining.maxrequests" , 4);
  579.  
  580. // </http>
  581.  
  582. // This preference controls whether or not internationalized domain names (IDN)
  583. // are handled.  IDN requires a nsIIDNService implementation.
  584. pref("network.enableIDN", true);
  585.  
  586. // This preference, if true, causes all UTF-8 domain names to be normalized to
  587. // punycode.  The intention is to allow UTF-8 domain names as input, but never
  588. // generate them from punycode.
  589. pref("network.IDN_show_punycode", false);
  590.  
  591. // TLDs with "network.IDN.whitelist.tld" explicitly set to true are treated as 
  592. // IDN-safe. Otherwise, they're treated as unsafe and punycode will be used
  593. // for displaying them in the UI (e.g. URL bar). Note that these preferences
  594. // are referred to ONLY when "network.IDN_show_punycode" is false. In other
  595. // words, all IDNs will be shown in punycode if "network.IDN_show_punycode"
  596. // is true.
  597.  
  598. // ccTLDs
  599. pref("network.IDN.whitelist.ac", true);
  600. pref("network.IDN.whitelist.at", true);
  601. pref("network.IDN.whitelist.br", true);
  602. pref("network.IDN.whitelist.ch", true);
  603. pref("network.IDN.whitelist.cl", true);
  604. pref("network.IDN.whitelist.cn", true);
  605. pref("network.IDN.whitelist.de", true);
  606. pref("network.IDN.whitelist.dk", true);
  607. pref("network.IDN.whitelist.fi", true);
  608. pref("network.IDN.whitelist.gr", true);
  609. pref("network.IDN.whitelist.hu", true);
  610. pref("network.IDN.whitelist.io", true);
  611. pref("network.IDN.whitelist.is", true);
  612. pref("network.IDN.whitelist.jp", true);
  613. pref("network.IDN.whitelist.kr", true);
  614. pref("network.IDN.whitelist.li", true);
  615. pref("network.IDN.whitelist.lt", true);
  616. pref("network.IDN.whitelist.no", true);
  617. pref("network.IDN.whitelist.se", true);
  618. pref("network.IDN.whitelist.sh", true);
  619. pref("network.IDN.whitelist.th", true);
  620. pref("network.IDN.whitelist.tm", true);
  621. pref("network.IDN.whitelist.tw", true);
  622. pref("network.IDN.whitelist.vn", true);
  623.  
  624. // non-ccTLDs
  625. pref("network.IDN.whitelist.biz", true);
  626. pref("network.IDN.whitelist.cat", true);
  627. pref("network.IDN.whitelist.info", true);
  628. pref("network.IDN.whitelist.museum", true);
  629. pref("network.IDN.whitelist.org", true);
  630.  
  631. // If a domain includes any of the following characters, it may be a spoof 
  632. // attempt and so we always display the domain name as punycode. This would 
  633. // override the settings "network.IDN_show_punycode" and 
  634. // "network.IDN.whitelist.*".
  635. 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");
  636.  
  637. // This preference specifies a list of domains for which DNS lookups will be
  638. // IPv4 only. Works around broken DNS servers which can't handle IPv6 lookups
  639. // and/or allows the user to disable IPv6 on a per-domain basis. See bug 68796.
  640. pref("network.dns.ipv4OnlyDomains", ".doubleclick.net");
  641.  
  642. // This preference can be used to turn off IPv6 name lookups. See bug 68796.
  643. pref("network.dns.disableIPv6", false);
  644.  
  645. // This preference controls whether or not URLs with UTF-8 characters are
  646. // escaped.  Set this preference to TRUE for strict RFC2396 conformance.
  647. pref("network.standard-url.escape-utf8", true);
  648.  
  649. // This preference controls whether or not URLs are always encoded and sent as
  650. // UTF-8.
  651. pref("network.standard-url.encode-utf8", false);
  652.  
  653. // Idle timeout for ftp control connections - 5 minute default
  654. pref("network.ftp.idleConnectionTimeout", 300);
  655.  
  656. // directory listing format
  657. // 2: HTML
  658. // 3: XUL directory viewer
  659. // all other values are treated like 2
  660. pref("network.dir.format", 2);
  661.  
  662. // enables the prefetch service (i.e., prefetching of <link rel="next"> URLs).
  663. pref("network.prefetch-next", true);
  664.  
  665.  
  666. // The following prefs pertain to the negotiate-auth extension (see bug 17578),
  667. // which provides transparent Kerberos or NTLM authentication using the SPNEGO
  668. // protocol.  Each pref is a comma-separated list of keys, where each key has
  669. // the format:
  670. //   [scheme "://"] [host [":" port]]
  671. // For example, "foo.com" would match "http://www.foo.com/bar", etc.
  672.  
  673. // This list controls which URIs can use the negotiate-auth protocol.  This
  674. // list should be limited to the servers you know you'll need to login to.
  675. pref("network.negotiate-auth.trusted-uris", "");
  676. // This list controls which URIs can support delegation.
  677. pref("network.negotiate-auth.delegation-uris", "");
  678.  
  679. // Allow SPNEGO by default when challenged by a proxy server.
  680. pref("network.negotiate-auth.allow-proxies", true);
  681.  
  682. // Path to a specific gssapi library
  683. pref("network.negotiate-auth.gsslib", "");
  684.  
  685. // Specify if the gss lib comes standard with the OS
  686. pref("network.negotiate-auth.using-native-gsslib", true);
  687.  
  688. //@line 699 "/build/buildd/firefox-2.0.0.3+1/modules/libpref/src/init/all.js"
  689.  
  690. // The following prefs are used to enable automatic use of the operating
  691. // system's NTLM implementation to silently authenticate the user with their
  692. // Window's domain logon.  The trusted-uris pref follows the format of the
  693. // trusted-uris pref for negotiate authentication.
  694. pref("network.automatic-ntlm-auth.allow-proxies", true);
  695. pref("network.automatic-ntlm-auth.trusted-uris", "");
  696.  
  697. // This preference controls whether or not the LM hash will be included in
  698. // response to a NTLM challenge.  By default, this is disabled since servers
  699. // should almost never need the LM hash, and the LM hash is what makes NTLM
  700. // authentication less secure.  See bug 250691 for further details.
  701. // NOTE: automatic-ntlm-auth which leverages the OS-provided NTLM
  702. //       implementation will not be affected by this preference.
  703. pref("network.ntlm.send-lm-response", false);
  704.  
  705. // sspitzer:  change this back to "news" when we get to beta.
  706. // for now, set this to news.mozilla.org because you can only
  707. // post to the server specified by this pref.
  708. pref("network.hosts.nntp_server",           "news.mozilla.org");
  709.  
  710. pref("permissions.default.image",           1); // 1-Accept, 2-Deny, 3-dontAcceptForeign
  711. pref("network.image.warnAboutImages",       false);
  712. pref("network.proxy.type",                  0);
  713. pref("network.proxy.ftp",                   "");
  714. pref("network.proxy.ftp_port",              0);
  715. pref("network.proxy.gopher",                "");
  716. pref("network.proxy.gopher_port",           0);
  717. pref("network.proxy.http",                  "");
  718. pref("network.proxy.http_port",             0);
  719. pref("network.proxy.ssl",                   "");
  720. pref("network.proxy.ssl_port",              0);
  721. pref("network.proxy.socks",                 "");
  722. pref("network.proxy.socks_port",            0);
  723. pref("network.proxy.socks_version",         5);
  724. pref("network.proxy.socks_remote_dns",      false);
  725. pref("network.proxy.no_proxies_on",         "localhost, 127.0.0.1");
  726. pref("network.proxy.failover_timeout",      1800); // 30 minutes
  727. pref("network.online",                      true); //online/offline
  728. pref("network.cookie.cookieBehavior",       0); // 0-Accept, 1-dontAcceptForeign, 2-dontUse, 3-p3p
  729. pref("network.cookie.disableCookieForMailNews", true); // disable all cookies for mail
  730. pref("network.cookie.lifetimePolicy",       0); // accept normally, 1-askBeforeAccepting, 2-acceptForSession,3-acceptForNDays
  731. pref("network.cookie.alwaysAcceptSessionCookies", false);
  732. pref("network.cookie.prefsMigrated",        false);
  733. pref("network.cookie.lifetime.days",        90);
  734.  
  735. // The PAC file to load.  Ignored unless network.proxy.type is 2.
  736. pref("network.proxy.autoconfig_url", "");
  737.  
  738. // If we cannot load the PAC file, then try again (doubling from interval_min
  739. // until we reach interval_max or the PAC file is successfully loaded).
  740. pref("network.proxy.autoconfig_retry_interval_min", 5);    // 5 seconds
  741. pref("network.proxy.autoconfig_retry_interval_max", 300);  // 5 minutes
  742.  
  743. // The following default value is for p3p medium mode.
  744. // See xpfe/components/permissions/content/cookieP3P.xul for the definitions of low/medium/hi
  745. pref("network.cookie.p3p",                  "ffffaaaa");
  746. pref("network.cookie.p3plevel",             1); // 0=low, 1=medium, 2=high, 3=custom
  747.  
  748. pref("network.enablePad",                   false); // Allow client to do proxy autodiscovery
  749. pref("converter.html2txt.structs",          true); // Output structured phrases (strong, em, code, sub, sup, b, i, u)
  750. pref("converter.html2txt.header_strategy",  1); // 0 = no indention; 1 = indention, increased with header level; 2 = numbering and slight indention
  751.  
  752. pref("ime.password.onFocus.dontCare",       false);
  753. pref("ime.password.onBlur.dontCare",        false);
  754.  
  755. pref("intl.accept_languages",               "chrome://global/locale/intl.properties");
  756. pref("intl.accept_charsets",                "iso-8859-1,*,utf-8");
  757. pref("intl.collationOption",                "chrome://global-platform/locale/intl.properties");
  758. pref("intl.menuitems.alwaysappendaccesskeys","chrome://global/locale/intl.properties");
  759. pref("intl.menuitems.insertseparatorbeforeaccesskeys","chrome://global/locale/intl.properties");
  760. pref("intl.charsetmenu.browser.static",     "chrome://global/locale/intl.properties");
  761. pref("intl.charsetmenu.browser.more1",      "chrome://global/locale/intl.properties");
  762. pref("intl.charsetmenu.browser.more2",      "chrome://global/locale/intl.properties");
  763. pref("intl.charsetmenu.browser.more3",      "chrome://global/locale/intl.properties");
  764. pref("intl.charsetmenu.browser.more4",      "chrome://global/locale/intl.properties");
  765. pref("intl.charsetmenu.browser.more5",      "chrome://global/locale/intl.properties");
  766. pref("intl.charsetmenu.browser.unicode",    "chrome://global/locale/intl.properties");
  767. pref("intl.charsetmenu.mailedit",           "chrome://global/locale/intl.properties");
  768. pref("intl.charsetmenu.browser.cache",      "");
  769. pref("intl.charsetmenu.mailview.cache",     "");
  770. pref("intl.charsetmenu.composer.cache",     "");
  771. pref("intl.charsetmenu.browser.cache.size", 5);
  772. pref("intl.charset.detector",               "chrome://global/locale/intl.properties");
  773. pref("intl.charset.default",                "chrome://global-platform/locale/intl.properties");
  774. pref("intl.content.langcode",               "chrome://browser-region/locale/region.properties");
  775. pref("intl.locale.matchOS",                 false);
  776. // fallback charset list for Unicode conversion (converting from Unicode)
  777. // currently used for mail send only to handle symbol characters (e.g Euro, trademark, smartquotes)
  778. // for ISO-8859-1
  779. pref("intl.fallbackCharsetList.ISO-8859-1", "windows-1252");
  780. pref("font.language.group",                 "chrome://global/locale/intl.properties");
  781.  
  782. pref("images.dither", "auto");
  783. pref("security.directory",              "");
  784.  
  785. pref("signed.applets.codebase_principal_support", false);
  786. pref("security.checkloaduri", true);
  787. pref("security.xpconnect.plugin.unrestricted", true);
  788. // security-sensitive dialogs should delay button enabling. In milliseconds.
  789. pref("security.dialog_enable_delay", 2000);
  790.  
  791. // Modifier key prefs: default to Windows settings,
  792. // menu access key = alt, accelerator key = control.
  793. // Use 17 for Ctrl, 18 for Alt, 224 for Meta, 0 for none. Mac settings in macprefs.js
  794. pref("ui.key.accelKey", 17);
  795. pref("ui.key.menuAccessKey", 18);
  796. pref("ui.key.generalAccessKey", -1);
  797.  
  798. // If generalAccessKey is -1, use the following two prefs instead.
  799. // Use 0 for disabled, 1 for Shift, 2 for Ctrl, 4 for Alt, 8 for Meta
  800. // (values can be combined, e.g. 5 for Alt+Shift)
  801. pref("ui.key.chromeAccess", 4);
  802. pref("ui.key.contentAccess", 5);
  803.  
  804. pref("ui.key.menuAccessKeyFocuses", false); // overridden below
  805. pref("ui.key.saveLink.shift", true); // true = shift, false = meta
  806.  
  807. // Middle-mouse handling
  808. pref("middlemouse.paste", false);
  809. pref("middlemouse.openNewWindow", true);
  810. pref("middlemouse.contentLoadURL", false);
  811. pref("middlemouse.scrollbarPosition", false);
  812.  
  813. // Clipboard behavior
  814. pref("clipboard.autocopy", false);
  815.  
  816. // 0=lines, 1=pages, 2=history , 3=text size
  817. pref("mousewheel.withnokey.action",0);
  818. pref("mousewheel.withnokey.numlines",1);    
  819. pref("mousewheel.withnokey.sysnumlines",true);
  820. pref("mousewheel.withcontrolkey.action",0);
  821. pref("mousewheel.withcontrolkey.numlines",1);
  822. pref("mousewheel.withcontrolkey.sysnumlines",true);
  823. // mousewheel.withshiftkey, see the Mac note below.
  824. pref("mousewheel.withshiftkey.action",0);
  825. pref("mousewheel.withshiftkey.numlines",1);
  826. pref("mousewheel.withshiftkey.sysnumlines",true);
  827. pref("mousewheel.withaltkey.action",2);
  828. pref("mousewheel.withaltkey.numlines",1);
  829. pref("mousewheel.withaltkey.sysnumlines",false);
  830. pref("mousewheel.withmetakey.action",0);
  831. pref("mousewheel.withmetakey.numlines",1);
  832. pref("mousewheel.withmetakey.sysnumlines",true);
  833.  
  834. // on platforms where scroll messages differ between horizontal scroll
  835. // and back/forward button events we can activate them by default
  836. //@line 881 "/build/buildd/firefox-2.0.0.3+1/modules/libpref/src/init/all.js"
  837. // disable horizontal scrolling to be able to use back/forward buttons
  838. pref("mousewheel.horizscroll.withnokey.action",2);
  839. pref("mousewheel.horizscroll.withnokey.numlines",-1);
  840. pref("mousewheel.horizscroll.withnokey.sysnumlines",false);
  841. pref("mousewheel.horizscroll.withcontrolkey.action",2);
  842. pref("mousewheel.horizscroll.withcontrolkey.numlines",-1);
  843. pref("mousewheel.horizscroll.withcontrolkey.sysnumlines",false);
  844. pref("mousewheel.horizscroll.withshiftkey.action",2);
  845. pref("mousewheel.horizscroll.withshiftkey.numlines",-1);
  846. pref("mousewheel.horizscroll.withshiftkey.sysnumlines",false);
  847. pref("mousewheel.horizscroll.withaltkey.action",2);
  848. pref("mousewheel.horizscroll.withaltkey.numlines",-1);
  849. pref("mousewheel.horizscroll.withaltkey.sysnumlines",false);
  850. pref("mousewheel.horizscroll.withmetakey.action",2);
  851. pref("mousewheel.horizscroll.withmetakey.numlines",-1);
  852. pref("mousewheel.horizscroll.withmetakey.sysnumlines",false);
  853. //@line 898 "/build/buildd/firefox-2.0.0.3+1/modules/libpref/src/init/all.js"
  854.  
  855. pref("profile.confirm_automigration",true);
  856. // profile.migration_behavior determines how the profiles root is set
  857. // 0 - use NS_APP_USER_PROFILES_ROOT_DIR
  858. // 1 - create one based on the NS4.x profile root
  859. // 2 - use, if not empty, profile.migration_directory otherwise same as 0
  860. pref("profile.migration_behavior",0);
  861. pref("profile.migration_directory", "");
  862.  
  863. // the amount of time (in seconds) that must elapse
  864. // before we think your mozilla profile is defunct
  865. // and you'd benefit from re-migrating from 4.x
  866. // see bug #137886 for more details
  867. //
  868. // if -1, we never think your profile is defunct
  869. // and users will never see the remigrate UI.
  870. pref("profile.seconds_until_defunct", -1);
  871. // We can show it anytime from menus
  872. pref("profile.manage_only_at_launch", false);
  873.  
  874. pref("prefs.converted-to-utf8",false);
  875.  
  876. // --------------------------------------------------
  877. // IBMBIDI 
  878. // --------------------------------------------------
  879. //
  880. // ------------------
  881. //  Text Direction
  882. // ------------------
  883. // 1 = directionLTRBidi *
  884. // 2 = directionRTLBidi
  885. pref("bidi.direction", 1);
  886. // ------------------
  887. //  Text Type
  888. // ------------------
  889. // 1 = charsettexttypeBidi *
  890. // 2 = logicaltexttypeBidi
  891. // 3 = visualtexttypeBidi
  892. pref("bidi.texttype", 1);
  893. // ------------------
  894. //  Controls Text Mode
  895. // ------------------
  896. // 1 = logicalcontrolstextmodeBidiCmd
  897. // 2 = visualcontrolstextmodeBidi <-- NO LONGER SUPPORTED
  898. // 3 = containercontrolstextmodeBidi *
  899. pref("bidi.controlstextmode", 1);
  900. // ------------------
  901. //  Numeral Style
  902. // ------------------
  903. // 0 = nominalnumeralBidi *
  904. // 1 = regularcontextnumeralBidi
  905. // 2 = hindicontextnumeralBidi
  906. // 3 = arabicnumeralBidi
  907. // 4 = hindinumeralBidi
  908. pref("bidi.numeral", 0);
  909. // ------------------
  910. //  Support Mode
  911. // ------------------
  912. // 1 = mozillaBidisupport *
  913. // 2 = OsBidisupport
  914. // 3 = disableBidisupport
  915. pref("bidi.support", 1);
  916. // ------------------
  917. //  Charset Mode
  918. // ------------------
  919. // 1 = doccharactersetBidi *
  920. // 2 = defaultcharactersetBidi
  921. pref("bidi.characterset", 1);
  922.  
  923.  
  924. // used for double-click word selection behavior. Win will override.
  925. pref("layout.word_select.eat_space_to_next_word", false);
  926. pref("layout.word_select.stop_at_punctuation", true);
  927.  
  928. // controls caret style during text selection
  929. // 0 = use platform default
  930. // 1 = caret moves and blinks as when there is no selection
  931. // 2 = caret moves to selection edge and is not visible during selection
  932. pref("layout.selection.caret_style", 0);
  933.  
  934. // pref to control whether or not to replace backslashes with Yen signs
  935. // in documents encoded in one of Japanese legacy encodings (EUC-JP, 
  936. // Shift_JIS, ISO-2022-JP)
  937. pref("layout.enable_japanese_specific_transform", false);
  938.  
  939. // pref to force frames to be resizable
  940. pref("layout.frames.force_resizability", false);
  941.  
  942. // pref to report CSS errors to the error console
  943. pref("layout.css.report_errors", true);
  944.  
  945. // pref to permit users to make verified SOAP calls by default
  946. pref("capability.policy.default.SOAPCall.invokeVerifySourceHeader", "allAccess");
  947.  
  948. // if true, allow plug-ins to override internal imglib decoder mime types in full-page mode
  949. pref("plugin.override_internal_types", false);
  950. pref("plugin.expose_full_path", false); // if true navigator.plugins reveals full path
  951.  
  952. // See bug 136985.  Gives embedders a pref to hook into to show
  953. // a popup blocker if they choose.
  954. pref("browser.popups.showPopupBlocker", true);
  955.  
  956. // Pref to control whether the viewmanager code does double-buffering or not
  957. // See http://bugzilla.mozilla.org/show_bug.cgi?id=169483 for further details...
  958. pref("viewmanager.do_doublebuffering", true);
  959.  
  960. // which files will be selected for roaming by default.
  961. // See sroaming/content/prefs/all.js
  962. pref("roaming.default.files", "bookmarks.html,abook.mab,cookies.txt");
  963. // display some general warning to the user about making backups, security etc.
  964. pref("roaming.showInitialWarning", true);
  965.  
  966. // whether use prefs from system
  967. pref("config.use_system_prefs", false);
  968.  
  969. // if the system has enabled accessibility
  970. pref("config.use_system_prefs.accessibility", false);
  971.  
  972. /*
  973.  * What are the entities that you want Mozilla to save using mnemonic
  974.  * names rather than numeric codes? E.g. If set, we'll output  
  975.  * otherwise, we may output 0xa0 depending on the charset.
  976.  *
  977.  * "none"   : don't use any entity names; only use numeric codes.
  978.  * "basic"  : use entity names just for   & < > " for 
  979.  *            interoperability/exchange with products that don't support more
  980.  *            than that.
  981.  * "latin1" : use entity names for 8bit accented letters and other special
  982.  *            symbols between 128 and 255.
  983.  * "html"   : use entity names for 8bit accented letters, greek letters, and
  984.  *            other special markup symbols as defined in HTML4.
  985.  */
  986. //pref("editor.encode_entity",                 "html");
  987.  
  988. pref("editor.resizing.preserve_ratio",       true);
  989. pref("editor.positioning.offset",            0);
  990.  
  991. pref("dom.max_chrome_script_run_time", 20);
  992. pref("dom.max_script_run_time", 10);
  993.  
  994. pref("svg.enabled", true);
  995.  
  996. //@line 1371 "/build/buildd/firefox-2.0.0.3+1/modules/libpref/src/init/all.js"
  997.  
  998. //@line 1563 "/build/buildd/firefox-2.0.0.3+1/modules/libpref/src/init/all.js"
  999.  
  1000. //@line 1752 "/build/buildd/firefox-2.0.0.3+1/modules/libpref/src/init/all.js"
  1001.  
  1002. //@line 1841 "/build/buildd/firefox-2.0.0.3+1/modules/libpref/src/init/all.js"
  1003.  
  1004. //@line 1844 "/build/buildd/firefox-2.0.0.3+1/modules/libpref/src/init/all.js"
  1005. // Handled differently under Mac/Windows
  1006. pref("network.hosts.smtp_server", "localhost");
  1007. pref("network.hosts.pop_server", "pop");
  1008. pref("network.protocol-handler.warn-external.file", false);
  1009. pref("layout.css.dpi", -1); // max(96dpi, System setting)
  1010. pref("browser.drag_out_of_frame_style", 1);
  1011. pref("editor.singleLine.pasteNewlines", 0);
  1012.  
  1013. // Middle-mouse handling
  1014. pref("middlemouse.paste", true);
  1015. pref("middlemouse.contentLoadURL", true);
  1016. pref("middlemouse.openNewWindow", true);
  1017. pref("middlemouse.scrollbarPosition", true);
  1018.  
  1019. // Clipboard behavior
  1020. pref("clipboard.autocopy", true);
  1021.  
  1022. pref("browser.urlbar.clickSelectsAll", false);
  1023.  
  1024. // Tab focus model bit field:
  1025. // 1 focuses text controls, 2 focuses other form elements, 4 adds links.
  1026. // Leave this at the default, 7, to match mozilla1.0-era user expectations.
  1027. // pref("accessibility.tabfocus", 1);
  1028.  
  1029. // override double-click word selection behavior.
  1030. pref("layout.word_select.stop_at_punctuation", false);
  1031.  
  1032. // autocomplete keyboard grab workaround
  1033. pref("autocomplete.grab_during_popup", true);
  1034. pref("autocomplete.ungrab_during_mode_switch", true);
  1035.  
  1036. // turn off scrollbar snapping
  1037. pref("slider.snapMultiplier", 0);
  1038.  
  1039. pref("helpers.global_mime_types_file", "/etc/mime.types");
  1040. pref("helpers.global_mailcap_file", "/etc/mailcap");
  1041. pref("helpers.private_mime_types_file", "~/.mime.types");
  1042. pref("helpers.private_mailcap_file", "~/.mailcap");
  1043. pref("java.global_java_version_file", "/etc/.java/versions");
  1044. pref("java.private_java_version_file", "~/.java/versions");
  1045. pref("java.default_java_location_solaris", "/usr/j2se");
  1046. pref("java.default_java_location_others", "/usr/java");
  1047. pref("java.java_plugin_library_name", "javaplugin_oji");
  1048. pref("applications.telnet", "xterm -e telnet %h %p");
  1049. pref("applications.tn3270", "xterm -e tn3270 %h");
  1050. pref("applications.rlogin", "xterm -e rlogin %h");
  1051. pref("applications.rlogin_with_user", "xterm -e rlogin %h -l %u");
  1052. pref("print.print_command", "lpr ${MOZ_PRINTER_NAME:+-P\"$MOZ_PRINTER_NAME\"}");
  1053. pref("print.printer_list", ""); // list of printers, separated by spaces
  1054. pref("print.print_reversed", false);
  1055. pref("print.print_color", true);
  1056. pref("print.print_landscape", false);
  1057. pref("print.print_paper_size", 0);
  1058.  
  1059. // Enables you to specify the gap from the edge of the paper to the margin
  1060. // this is used by both Printing and Print Preview
  1061. pref("print.print_edge_top", 4); // 1/100 of an inch
  1062. pref("print.print_edge_left", 4); // 1/100 of an inch
  1063. pref("print.print_edge_right", 4); // 1/100 of an inch
  1064. pref("print.print_edge_bottom", 4); // 1/100 of an inch
  1065.  
  1066. // print_extra_margin enables platforms to specify an extra gap or margin
  1067. // around the content of the page for Print Preview only
  1068. pref("print.print_extra_margin", 0); // twips
  1069.  
  1070. pref("print.whileInPrintPreview", false);
  1071.  
  1072. pref("font.allow_double_byte_special_chars", true);
  1073. // font names
  1074.  
  1075. // ar
  1076.  
  1077. //@line 1917 "/build/buildd/firefox-2.0.0.3+1/modules/libpref/src/init/all.js"
  1078.  
  1079. pref("font.name.serif.el", "serif");
  1080. pref("font.name.sans-serif.el", "sans-serif");
  1081. pref("font.name.monospace.el", "monospace");
  1082.  
  1083. pref("font.name.serif.he", "serif");
  1084. pref("font.name.sans-serif.he", "sans-serif");
  1085. pref("font.name.monospace.he", "monospace");
  1086.  
  1087. pref("font.name.serif.ja", "serif");
  1088. pref("font.name.sans-serif.ja", "sans-serif");
  1089. pref("font.name.monospace.ja", "monospace");
  1090.  
  1091. pref("font.name.serif.ko", "serif");
  1092. pref("font.name.sans-serif.ko", "sans-serif");
  1093. pref("font.name.monospace.ko", "monospace");
  1094.  
  1095. // th
  1096.  
  1097. pref("font.name.serif.tr", "Times");
  1098. pref("font.name.sans-serif.tr", "Helvetica");
  1099. pref("font.name.monospace.tr", "Courier");
  1100.  
  1101. pref("font.name.serif.x-baltic", "serif");
  1102. pref("font.name.sans-serif.x-baltic", "sans-serif");
  1103. pref("font.name.monospace.x-baltic", "monospace");
  1104.  
  1105. pref("font.name.serif.x-central-euro", "Times");
  1106. pref("font.name.sans-serif.x-central-euro", "Helvetica");
  1107. pref("font.name.monospace.x-central-euro", "Courier");
  1108.  
  1109. pref("font.name.serif.x-cyrillic", "serif");
  1110. pref("font.name.sans-serif.x-cyrillic", "sans-serif");
  1111. pref("font.name.monospace.x-cyrillic", "monospace");
  1112.  
  1113. pref("font.name.serif.x-unicode", "Times");
  1114. pref("font.name.sans-serif.x-unicode", "Helvetica");
  1115. pref("font.name.monospace.x-unicode", "Courier");
  1116.  
  1117. pref("font.name.serif.x-user-def", "Times");
  1118. pref("font.name.sans-serif.x-user-def", "Helvetica");
  1119. pref("font.name.monospace.x-user-def", "Courier");
  1120.  
  1121. pref("font.name.serif.x-western", "Times");
  1122. pref("font.name.sans-serif.x-western", "Helvetica");
  1123. pref("font.name.monospace.x-western", "Courier");
  1124.  
  1125. pref("font.name.serif.zh-CN", "serif");
  1126. pref("font.name.sans-serif.zh-CN", "sans-serif");
  1127. pref("font.name.monospace.zh-CN", "monospace");
  1128.  
  1129. // ming_uni.ttf (HKSCS-2001) 
  1130. // http://www.info.gov.hk/digital21/eng/hkscs/download/uime.exe
  1131. pref("font.name.serif.zh-HK", "serif");
  1132. pref("font.name.sans-serif.zh-HK", "sans-serif");
  1133. pref("font.name.monospace.zh-HK", "monospace");
  1134.  
  1135. // zh-TW
  1136. //@line 2036 "/build/buildd/firefox-2.0.0.3+1/modules/libpref/src/init/all.js"
  1137.  
  1138. pref("font.default.ar", "sans-serif");
  1139. pref("font.size.variable.ar", 16);
  1140. pref("font.size.fixed.ar", 12);
  1141.  
  1142. pref("font.default.el", "sans-serif");
  1143. pref("font.size.variable.el", 16);
  1144. pref("font.size.fixed.el", 12);
  1145.  
  1146. pref("font.default.he", "sans-serif");
  1147. pref("font.size.variable.he", 16);
  1148. pref("font.size.fixed.he", 12);
  1149.  
  1150. pref("font.default.ja", "sans-serif");
  1151. pref("font.size.variable.ja", 16);
  1152. pref("font.size.fixed.ja", 16);
  1153.  
  1154. pref("font.default.ko", "sans-serif");
  1155. pref("font.size.variable.ko", 16);
  1156. pref("font.size.fixed.ko", 16);
  1157.  
  1158. pref("font.default.th", "sans-serif");
  1159. pref("font.size.variable.th", 16);
  1160. pref("font.size.fixed.th", 12);
  1161.  
  1162. pref("font.default.tr", "sans-serif");
  1163. pref("font.size.variable.tr", 16);
  1164. pref("font.size.fixed.tr", 12);
  1165.  
  1166. pref("font.default.x-baltic", "serif");
  1167. pref("font.size.variable.x-baltic", 16);
  1168. pref("font.size.fixed.x-baltic", 12);
  1169.  
  1170. pref("font.default.x-central-euro", "serif");
  1171. pref("font.size.variable.x-central-euro", 16);
  1172. pref("font.size.fixed.x-central-euro", 12);
  1173.  
  1174. pref("font.default.x-cyrillic", "serif");
  1175. pref("font.size.variable.x-cyrillic", 16);
  1176. pref("font.size.fixed.x-cyrillic", 12);
  1177.  
  1178. pref("font.default.x-unicode", "serif");
  1179. pref("font.size.variable.x-unicode", 16);
  1180. pref("font.size.fixed.x-unicode", 12);
  1181.  
  1182. pref("font.default.x-western", "serif");
  1183. pref("font.size.variable.x-western", 16);
  1184. pref("font.size.fixed.x-western", 12);
  1185.  
  1186. pref("font.default.zh-CN", "sans-serif");
  1187. pref("font.size.variable.zh-CN", 16);
  1188. pref("font.size.fixed.zh-CN", 16);
  1189.  
  1190. pref("font.default.zh-TW", "sans-serif");
  1191. pref("font.size.variable.zh-TW", 16);
  1192. pref("font.size.fixed.zh-TW", 16);
  1193.  
  1194. pref("font.default.zh-HK", "sans-serif");
  1195. pref("font.size.variable.zh-HK", 16);
  1196. pref("font.size.fixed.zh-HK", 16);
  1197.  
  1198. // below a certian pixel size outline scaled fonts produce poor results
  1199. pref("font.scale.outline.min",      6);
  1200.  
  1201. // TrueType
  1202. pref("font.FreeType2.enable", false);
  1203. pref("font.freetype2.shared-library", "libfreetype.so.6");
  1204. // if libfreetype was built without hinting compiled in
  1205. // it is best to leave hinting off
  1206. pref("font.FreeType2.autohinted", false);
  1207. pref("font.FreeType2.unhinted", true);
  1208. // below a certian pixel size anti-aliased fonts produce poor results
  1209. pref("font.antialias.min",        10);
  1210. pref("font.embedded_bitmaps.max", 1000000);
  1211. pref("font.scale.tt_bitmap.dark_text.min", 64);
  1212. pref("font.scale.tt_bitmap.dark_text.gain", "0.8");
  1213. // sample prefs for TrueType font dirs
  1214. //pref("font.directory.truetype.1", "/u/sam/tt_font1");
  1215. //pref("font.directory.truetype.2", "/u/sam/tt_font2");
  1216. //pref("font.directory.truetype.3", "/u/sam/tt_font3");
  1217. pref("font.FreeType2.printing", true);
  1218.  
  1219. // below a certian pixel size anti-aliased bitmat scaled fonts 
  1220. // produce poor results
  1221. pref("font.scale.aa_bitmap.enable", true);
  1222. pref("font.scale.aa_bitmap.always", false);
  1223. pref("font.scale.aa_bitmap.min", 6);
  1224. pref("font.scale.aa_bitmap.undersize", 80);
  1225. pref("font.scale.aa_bitmap.oversize", 120);
  1226. pref("font.scale.aa_bitmap.dark_text.min", 64);
  1227. pref("font.scale.aa_bitmap.dark_text.gain", "0.5");
  1228. pref("font.scale.aa_bitmap.light_text.min", 64);
  1229. pref("font.scale.aa_bitmap.light_text.gain", "1.3");
  1230.  
  1231. pref("font.scale.bitmap.min",       12);
  1232. pref("font.scale.bitmap.undersize", 80);
  1233. pref("font.scale.bitmap.oversize",  120);
  1234.  
  1235. pref("font.scale.outline.min.ja",      10);
  1236. pref("font.scale.aa_bitmap.min.ja",    12);
  1237. pref("font.scale.aa_bitmap.always.ja", false);
  1238. pref("font.scale.bitmap.min.ja",       16);
  1239. pref("font.scale.bitmap.undersize.ja", 80);
  1240. pref("font.scale.bitmap.oversize.ja",  120);
  1241.  
  1242. pref("font.scale.outline.min.ko",      10);
  1243. pref("font.scale.aa_bitmap.min.ko",    12);
  1244. pref("font.scale.aa_bitmap.always.ko", false);
  1245. pref("font.scale.bitmap.min.ko",       16);
  1246. pref("font.scale.bitmap.undersize.ko", 80);
  1247. pref("font.scale.bitmap.oversize.ko",  120);
  1248.  
  1249. pref("font.scale.outline.min.zh-CN",      10);
  1250. pref("font.scale.aa_bitmap.min.zh-CN",    12);
  1251. pref("font.scale.aa_bitmap.always.zh-CN", false);
  1252. pref("font.scale.bitmap.min.zh-CN",       16);
  1253. pref("font.scale.bitmap.undersize.zh-CN", 80);
  1254. pref("font.scale.bitmap.oversize.zh-CN",  120);
  1255.  
  1256. pref("font.scale.outline.min.zh-TW",      10);
  1257. pref("font.scale.aa_bitmap.min.zh-TW",    12);
  1258. pref("font.scale.aa_bitmap.always.zh-TW", false);
  1259. pref("font.scale.bitmap.min.zh-TW",       16);
  1260. pref("font.scale.bitmap.undersize.zh-TW", 80);
  1261. pref("font.scale.bitmap.oversize.zh-TW",  120);
  1262.  
  1263. pref("font.scale.outline.min.zh-HK",      10);
  1264. pref("font.scale.aa_bitmap.min.zh-HK",    12);
  1265. pref("font.scale.aa_bitmap.always.zh-HK", false);
  1266. pref("font.scale.bitmap.min.zh-HK",       16);
  1267. pref("font.scale.bitmap.undersize.zh-HK", 80);
  1268. pref("font.scale.bitmap.oversize.zh-HK",  120);
  1269.  
  1270. // minimum font sizes
  1271.  
  1272. pref("font.min-size.variable.ja", 10);
  1273. pref("font.min-size.fixed.ja", 10);
  1274.  
  1275. pref("font.min-size.variable.ko", 10);
  1276. pref("font.min-size.fixed.ko", 10);
  1277.  
  1278. pref("font.min-size.variable.zh-CN", 10);
  1279. pref("font.min-size.fixed.zh-CN", 10);
  1280.  
  1281. pref("font.min-size.variable.zh-TW", 10);
  1282. pref("font.min-size.fixed.zh-TW", 10);
  1283.  
  1284. pref("font.min-size.variable.zh-HK", 10);
  1285. pref("font.min-size.fixed.zh-HK", 10);
  1286.  
  1287. // X11 specific
  1288. /* X11 font accept/reject patterns:
  1289.  * Patterns have to match against strings like this:
  1290.  * (boolean values can only be "true" or "false")
  1291.  * "fname=.*;scalable=.*;outline_scaled=.*;xdisplay=.*;xdpy=%d;ydpy=%d;xdevice=.*"
  1292.  * - fname     = X11 font name (string)
  1293.  * - scalable  = is font scalable ? (boolean)
  1294.  * - outline_scaled = is font an outline scaled font ? (boolean)
  1295.  * - xdisplay  = X11 display name (like "host:0.0" (string)
  1296.  * - xdpy      = X DPI (X screen resolution) (integer)
  1297.  * - ydpy      = Y DPI (Y screen resolution) (integer)
  1298.  * - xdevice   = "display" or "printer" (Xprint)
  1299.  * Patterns use  the regular expressions described in the EXTENDED REGULAR
  1300.  * EXPRESSIONS section of the regex(5) manual page.
  1301.  * Note that prefs strings can always be concatenated via the '+'-operator,
  1302.  * e.g. pref("font.x11.acceptfontpattern", "pattern1|" + 
  1303.  *                                         "pattern2|" +
  1304.  *                                         "pattern3");
  1305.  */
  1306. /* reject font if accept pattern does not match it... */
  1307. //pref("font.x11.acceptfontpattern", ".*");
  1308. /* reject font if reject pattern matches it... */
  1309. //pref("font.x11.rejectfontpattern", 
  1310. //     "fname=-urw.*;scalable=false;outline_scaled=false;xdisplay=.*;xdpy=.*;ydpy=.*;xdevice=.*");
  1311.  
  1312. /* reject font if accept pattern does not match it... */
  1313. pref("print.xprint.font.acceptfontpattern", ".*");
  1314. /* reject font if reject pattern matches it...
  1315.  * Current bans:
  1316.  * - bug 148470 ("Ban "-dt-*" (bitmap!!) fonts from Xprint")
  1317.  *   pattern="fname=-dt-.*;scalable=.*;outline_scaled=false;xdisplay=.*;xdpy=.*;ydpy=.*;xdevice=.*"
  1318.  */
  1319. pref("print.xprint.font.rejectfontpattern", 
  1320.      "fname=-dt-.*;scalable=.*;outline_scaled=false;xdisplay=.*;xdpy=.*;ydpy=.*;xdevice=.*");
  1321.  
  1322. /* Xprint print module prefs */
  1323. pref("print.xprint.font.force_outline_scaled_fonts", true);
  1324.  
  1325. /* PostScript print module prefs */
  1326. // pref("print.postscript.enabled",      true);
  1327. pref("print.postscript.paper_size",    "letter");
  1328. pref("print.postscript.orientation",   "portrait");
  1329. pref("print.postscript.print_command", "lpr ${MOZ_PRINTER_NAME:+-P\"$MOZ_PRINTER_NAME\"}");
  1330.  
  1331. /* PostScript print module font config
  1332.  * this list is used by the postscript font
  1333.  * to enumerate the list of langGroups
  1334.  * there should be a call to get the
  1335.  * langGroups; see bug 75054
  1336.  */
  1337. pref("print.postscript.nativefont.ar",             "");
  1338. pref("print.postscript.nativefont.el",             "");
  1339. pref("print.postscript.nativefont.he",             "");
  1340. pref("print.postscript.nativefont.ja",             "");
  1341. pref("print.postscript.nativefont.ko",             "");
  1342. pref("print.postscript.nativefont.th",             "");
  1343. pref("print.postscript.nativefont.tr",             "");
  1344. pref("print.postscript.nativefont.x-baltic",       "");
  1345. pref("print.postscript.nativefont.x-central-euro", "");
  1346. pref("print.postscript.nativefont.x-cyrillic",     "");
  1347. pref("print.postscript.nativefont.x-unicode",      "");
  1348. pref("print.postscript.nativefont.x-user-def",     "");
  1349. pref("print.postscript.nativefont.x-western",      "");
  1350. pref("print.postscript.nativefont.zh-CN",          "");
  1351. pref("print.postscript.nativefont.zh-TW",          "");
  1352. pref("print.postscript.nativefont.zh-HK",          "");
  1353.  
  1354. //@line 2256 "/build/buildd/firefox-2.0.0.3+1/modules/libpref/src/init/all.js"
  1355.  
  1356. //@line 2324 "/build/buildd/firefox-2.0.0.3+1/modules/libpref/src/init/all.js"
  1357.  
  1358. //@line 2350 "/build/buildd/firefox-2.0.0.3+1/modules/libpref/src/init/all.js"
  1359.  
  1360. //@line 2370 "/build/buildd/firefox-2.0.0.3+1/modules/libpref/src/init/all.js"
  1361.  
  1362.