home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 July & August / PCWorld_2003-07-08_cd.bin / Komunik / firebird / MozillaFirebird-0.6-win32.exe / MozillaFirebird / defaults / pref / all.js next >
Text File  |  2003-05-14  |  29KB  |  641 lines

  1. /* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2. /* ***** BEGIN LICENSE BLOCK *****
  3.  * Version: NPL 1.1/GPL 2.0/LGPL 2.1
  4.  *
  5.  * The contents of this file are subject to the Netscape Public License
  6.  * Version 1.1 (the "License"); you may not use this file except in
  7.  * compliance with the License. You may obtain a copy of the License at
  8.  * http://www.mozilla.org/NPL/
  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.  *
  24.  * Alternatively, the contents of this file may be used under the terms of
  25.  * either the GNU General Public License Version 2 or later (the "GPL"), or 
  26.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  27.  * in which case the provisions of the GPL or the LGPL are applicable instead
  28.  * of those above. If you wish to allow use of your version of this file only
  29.  * under the terms of either the GPL or the LGPL, and not to allow others to
  30.  * use your version of this file under the terms of the NPL, indicate your
  31.  * decision by deleting the provisions above and replace them with the notice
  32.  * and other provisions required by the GPL or the LGPL. If you do not delete
  33.  * the provisions above, a recipient may use your version of this file under
  34.  * the terms of any one of the NPL, the GPL or the LGPL.
  35.  *
  36.  * ***** END LICENSE BLOCK ***** */
  37.  
  38. // SYNTAX HINTS:  dashes are delimiters.  Use underscores instead.
  39. //  The first character after a period must be alphabetic.
  40.  
  41. pref("startup.homepage_override_url","chrome://navigator-region/locale/region.properties");
  42. pref("browser.chromeURL","chrome://browser/content/");
  43.  
  44. pref("keyword.enabled", true);
  45. pref("keyword.URL", "http://www.google.com/search?btnI=I%27m+Feeling+Lucky&q=");
  46.  
  47. pref("general.useragent.locale", "chrome://navigator/locale/navigator.properties");
  48. pref("general.useragent.contentlocale", "chrome://navigator-region/locale/region.properties");
  49. pref("general.useragent.misc", "rv:1.4b");
  50. pref("general.useragent.vendor", "Mozilla Firebird");
  51. pref("general.useragent.vendorSub", "0.6");
  52.  
  53. pref("general.smoothScroll", true);
  54.  
  55. pref("backups.number_of_prefs_copies", 1);
  56.  
  57. // 0 = blank, 1 = home (browser.startup.homepage), 2 = last
  58. // XXXBlake Remove this stupid pref
  59. pref("browser.startup.page",                1);
  60. pref("browser.startup.homepage",              "chrome://navigator-region/locale/region.properties");
  61. // "browser.startup.homepage_override" was for 4.x
  62. pref("browser.startup.homepage_override.1", true);
  63.  
  64. pref("browser.cache.enable",                true); // see also network.http.use-cache
  65. pref("browser.cache.disk.enable",           true);
  66. pref("browser.cache.disk.capacity",         50000);
  67. pref("browser.cache.memory.enable",         true);
  68. //pref("browser.cache.memory.capacity",     -1);
  69. // -1 = determine dynamically, 0 = none, n = memory capacity in kilobytes
  70. pref("browser.cache.check_doc_frequency",   3);
  71. // 0 = once-per-session, 1 = each-time, 2 = never, 3 = when-appropriate/automatically
  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.display.enable_marquee",      true);
  85. pref("browser.anchor_color",                "#0000EE");
  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", true);
  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.urlbar.matchOnlyTyped", false);
  98.  
  99. pref("browser.chrome.site_icons", true);
  100. pref("browser.chrome.favicons", true);
  101.  
  102. pref("browser.chrome.toolbar_tips",         true);
  103.  
  104. pref("browser.turbo.enabled", false);
  105.  
  106. pref("browser.formfill.enable", true);
  107.  
  108. pref("browser.helperApps.alwaysAsk.force",  false);
  109. pref("browser.helperApps.neverAsk.saveToDisk", "");
  110. pref("browser.helperApps.neverAsk.openFile", "");
  111.  
  112. pref("accessibility.browsewithcaret", false);
  113. pref("accessibility.warn_on_browsewithcaret", true);
  114. pref("accessibility.usetexttospeech", "");
  115. pref("accessibility.usebrailledisplay", "");
  116. pref("accessibility.accesskeycausesactivation", true);
  117. pref("accessibility.typeaheadfind", true);
  118. pref("accessibility.typeaheadfind.autostart", true);
  119. pref("accessibility.typeaheadfind.linksonly", true);
  120. pref("accessibility.typeaheadfind.startlinksonly", false);
  121. pref("accessibility.typeaheadfind.timeout", 4000);
  122. pref("accessibility.typeaheadfind.enabletimeout", true);
  123. pref("accessibility.typeaheadfind.soundURL", "default");
  124. pref("accessibility.typeaheadfind.enablesound", true);
  125.  
  126. pref("browser.download.progressDnldDialog.keepAlive", true); // keep the dnload progress dialog up after dnload is complete
  127. pref("browser.download.progressDnldDialog.enable_launch_reveal_buttons", true);
  128. pref("browser.download.useProgressDialogs", true);
  129. pref("browser.download.openSidebar", false);
  130. pref("browser.download.useDownloadDir", false);
  131.  
  132. // various default search settings
  133. pref("browser.search.defaulturl", "chrome://browser-region/locale/region.properties");
  134. // basic search popup constraint: minimum sherlock plugin version displayed
  135. // (note: must be a string representation of a float or it'll default to 0.0)
  136. pref("browser.search.basic.min_ver", "0.0");
  137.  
  138. pref("browser.history.last_page_visited", "");
  139. pref("browser.history_expire_days", 9);
  140. pref("browser.history.grouping", "day");
  141. pref("browser.sessionhistory.max_entries", 50);
  142.  
  143. // loading and rendering of framesets and iframes
  144. pref("browser.frames.enabled", true);
  145.  
  146. // form submission
  147. pref("browser.forms.submit.backwards_compatible", true);
  148.  
  149. // Tab browser preferences.
  150. pref("browser.tabs.autoHide", true);
  151. pref("browser.tabs.forceHide", false);
  152. pref("browser.tabs.loadInBackground", true);
  153. pref("browser.tabs.loadFolderAndReplace", true);
  154. pref("browser.tabs.opentabfor.middleclick", true);
  155. pref("browser.tabs.opentabfor.urlbar", true);
  156.  
  157. // view source
  158. pref("view_source.syntax_highlight", true);
  159. pref("view_source.wrap_long_lines", false);
  160.  
  161. // gfx widgets
  162. pref("nglayout.widget.mode", 2);
  163. pref("nglayout.initialpaint.delay", 250);
  164.  
  165. // dispatch left clicks only to content in browser (still allows clicks to chrome/xul)
  166. pref("nglayout.events.dispatchLeftClickOnly", true);
  167.  
  168. // whether or not to use xbl form controls
  169. pref("nglayout.debug.enable_xbl_forms", false);
  170.  
  171. // size of scrollbar snapping region
  172. pref("slider.snapMultiplier", 6);
  173.  
  174. // option to choose plug-in finder
  175. pref("application.use_ns_plugin_finder", false);
  176.  
  177. // Smart Browsing prefs
  178. pref("browser.related.enabled", true);
  179. pref("browser.related.autoload", 1);  // 0 = Always, 1 = After first use, 2 = Never
  180. pref("browser.related.provider", "http://www-rl.netscape.com/wtgn?");
  181. pref("browser.related.disabledForDomains", "");
  182. pref("browser.goBrowsing.enabled", true);
  183.  
  184. // URI fixup prefs
  185. pref("browser.fixup.alternate.enabled", true);
  186. pref("browser.fixup.alternate.prefix", "www.");
  187. pref("browser.fixup.alternate.suffix", ".com");
  188.  
  189. // Default bookmark sorting
  190. pref("browser.bookmarks.sort.direction", "descending");
  191. pref("browser.bookmarks.sort.resource", "rdf:http://home.netscape.com/NC-rdf#Name");
  192.  
  193. //Internet Search
  194. pref("browser.search.defaultenginename", "chrome://browser-region/locale/region.properties");
  195.  
  196. // Print header customization
  197. // Use the following codes:
  198. // &T - Title
  199. // &U - Document URL
  200. // &D - Date/Time
  201. // &P - Page Number
  202. // &PT - Page Number "of" Page total
  203. // Set each header to a string containing zero or one of these codes
  204. // and the code will be replaced in that string by the corresponding data
  205. pref("print.print_headerleft", "&T");
  206. pref("print.print_headercenter", "");
  207. pref("print.print_headerright", "&U");
  208. pref("print.print_footerleft", "&PT");
  209. pref("print.print_footercenter", "");
  210. pref("print.print_footerright", "&D");
  211. pref("print.show_print_progress", true);
  212.  
  213. // When this is set to false it means each window has its PrintSettings
  214. // and a change in one browser window does not effect the others
  215. pref("print.use_global_printsettings", true);
  216.  
  217. // This indicates whether it should use the native dialog or the XP Dialog50
  218. pref("print.use_native_print_dialog", false);
  219.  
  220. // Save the Printings after each print job
  221. pref("print.save_print_settings", true);
  222.  
  223. pref("print.whileInPrintPreview", true);
  224.  
  225. // Cache old Presentation when going into Print Preview
  226. pref("print.always_cache_old_pres", false);
  227.  
  228. // Enables you to specify the gap from the edge of the paper to the margin
  229. // this is used by both Printing and Print Preview
  230. pref("print.print_edge_top", 0); // 1/100 of an inch
  231. pref("print.print_edge_left", 0); // 1/100 of an inch
  232. pref("print.print_edge_right", 0); // 1/100 of an inch
  233. pref("print.print_edge_bottom", 0); // 1/100 of an inch
  234.  
  235. // Default Capability Preferences: Security-Critical! 
  236. // Editing these may create a security risk - be sure you know what you're doing
  237. //pref("capability.policy.default.barprop.visible.set", "UniversalBrowserWrite");
  238.  
  239. pref("capability.policy.default_policynames", "mailnews");
  240. pref("capability.policy.policynames", "");
  241.  
  242. pref("capability.policy.default.DOMException.code", "allAccess");
  243. pref("capability.policy.default.DOMException.message", "allAccess");
  244. pref("capability.policy.default.DOMException.name", "allAccess");
  245. pref("capability.policy.default.DOMException.result", "allAccess");
  246. pref("capability.policy.default.DOMException.toString", "allAccess");
  247.  
  248. pref("capability.policy.default.History.back", "allAccess");
  249. pref("capability.policy.default.History.current", "UniversalBrowserRead");
  250. pref("capability.policy.default.History.forward", "allAccess");
  251. pref("capability.policy.default.History.go", "allAccess");
  252. pref("capability.policy.default.History.item", "UniversalBrowserRead");
  253. pref("capability.policy.default.History.next", "UniversalBrowserRead");
  254. pref("capability.policy.default.History.previous", "UniversalBrowserRead");
  255. pref("capability.policy.default.History.toString", "UniversalBrowserRead");
  256.  
  257. pref("capability.policy.default.HTMLDocument.close", "allAccess");
  258. pref("capability.policy.default.HTMLDocument.open", "allAccess");
  259.  
  260. pref("capability.policy.default.Location.hash.set", "allAccess");
  261. pref("capability.policy.default.Location.href.set", "allAccess");
  262. pref("capability.policy.default.Location.reload", "allAccess");
  263. pref("capability.policy.default.Location.replace", "allAccess");
  264.  
  265. pref("capability.policy.default.Navigator.preference", "allAccess");
  266. pref("capability.policy.default.Navigator.preferenceinternal.get", "UniversalPreferencesRead");
  267. pref("capability.policy.default.Navigator.preferenceinternal.set", "UniversalPreferencesWrite");
  268.  
  269. pref("capability.policy.default.Window.blur", "allAccess");
  270. pref("capability.policy.default.Window.close", "allAccess");
  271. pref("capability.policy.default.Window.closed", "allAccess");
  272. pref("capability.policy.default.Window.Components", "allAccess");
  273. pref("capability.policy.default.Window.document", "allAccess");
  274. pref("capability.policy.default.Window.focus", "allAccess");
  275. pref("capability.policy.default.Window.frames", "allAccess");
  276. pref("capability.policy.default.Window.history", "allAccess");
  277. pref("capability.policy.default.Window.length", "allAccess");
  278. pref("capability.policy.default.Window.location", "allAccess");
  279. pref("capability.policy.default.Window.opener", "allAccess");
  280. pref("capability.policy.default.Window.parent", "allAccess");
  281. pref("capability.policy.default.Window.self", "allAccess");
  282. pref("capability.policy.default.Window.top", "allAccess");
  283. pref("capability.policy.default.Window.window", "allAccess");
  284.  
  285. // Scripts & Windows prefs
  286. pref("browser.block.target_new_window",     false);
  287. pref("dom.disable_cookie_get",              false);
  288. pref("dom.disable_cookie_set",              false);
  289. pref("dom.disable_image_src_set",           false);
  290. pref("dom.disable_open_during_load",        true);
  291. pref("dom.disable_window_flip",             false);
  292. pref("dom.disable_window_move_resize",      false);
  293. pref("dom.disable_window_status_change",    false);
  294.  
  295. pref("dom.disable_window_open_feature.titlebar",    false);
  296. pref("dom.disable_window_open_feature.close",       false);
  297. pref("dom.disable_window_open_feature.toolbar",     false);
  298. pref("dom.disable_window_open_feature.location",    false);
  299. pref("dom.disable_window_open_feature.directories", false);
  300. pref("dom.disable_window_open_feature.personalbar", false);
  301. pref("dom.disable_window_open_feature.menubar",     false);
  302. pref("dom.disable_window_open_feature.scrollbars",  false);
  303. pref("dom.disable_window_open_feature.resizable",   false);
  304. pref("dom.disable_window_open_feature.minimizable", false);
  305. pref("dom.disable_window_open_feature.status",      false);
  306.  
  307. pref("dom.allow_scripts_to_close_windows",          false);
  308.  
  309. pref("javascript.enabled",                  true);
  310. pref("javascript.options.strict",           false);
  311. pref("javascript.options.showInConsole",    false);
  312.  
  313. // popups.policy 1=allow,2=reject
  314. pref("privacy.popups.policy",               1);
  315. pref("privacy.popups.usecustom",            true);
  316. pref("privacy.popups.firstTime",            true);
  317.  
  318. // advanced prefs
  319. pref("advanced.always_load_images",         true);
  320. pref("security.enable_java",                true);
  321. pref("advanced.mailftp",                    false);
  322. pref("image.animation_mode",                "normal");
  323.  
  324. // If there is ever a security firedrill that requires
  325. // us to block certian ports global, this is the pref 
  326. // to use.  Is is a comma delimited list of port numbers
  327. // for example:
  328. //   pref("network.security.ports.banned", "1,2,3,4,5");
  329. // prevents necko connecting to ports 1-5 unless the protocol
  330. // overrides.
  331.  
  332. pref("network.hosts.smtp_server",           "mail");
  333. pref("network.hosts.pop_server",            "mail");
  334. pref("network.protocols.useSystemDefaults",   false); // set to true if user links should use system default handlers
  335.  
  336. // <http>
  337. pref("network.http.version", "1.1");      // default
  338. // pref("network.http.version", "1.0");   // uncomment this out in case of problems
  339. // pref("network.http.version", "0.9");   // it'll work too if you're crazy
  340. // keep-alive option is effectively obsolete. Nevertheless it'll work with
  341. // some older 1.0 servers:
  342.  
  343. pref("network.http.proxy.version", "1.1");    // default
  344. // pref("network.http.proxy.version", "1.0"); // uncomment this out in case of problems
  345.                                               // (required if using junkbuster proxy)
  346.  
  347. // enable caching of http documents
  348. pref("network.http.use-cache", true);
  349.  
  350. // this preference can be set to override the socket type used for normal
  351. // HTTP traffic.  an empty value indicates the normal TCP/IP socket type.
  352. pref("network.http.default-socket-type", "");
  353.  
  354. pref("network.http.keep-alive", true); // set it to false in case of problems
  355. pref("network.http.proxy.keep-alive", true);
  356. pref("network.http.keep-alive.timeout", 300);
  357.  
  358. // limit the absolute number of http connections.
  359. pref("network.http.max-connections", 24);
  360.  
  361. // limit the absolute number of http connections that can be established per
  362. // host.  if a http proxy server is enabled, then the "server" is the proxy
  363. // server.  Otherwise, "server" is the http origin server.
  364. pref("network.http.max-connections-per-server", 8);
  365.  
  366. // if network.http.keep-alive is true, and if NOT connecting via a proxy, then
  367. // a new connection will only be attempted if the number of active persistent
  368. // connections to the server is less then max-persistent-connections-per-server.
  369. pref("network.http.max-persistent-connections-per-server", 2);
  370.  
  371. // if network.http.keep-alive is true, and if connecting via a proxy, then a
  372. // new connection will only be attempted if the number of active persistent
  373. // connections to the proxy is less then max-persistent-connections-per-proxy.
  374. pref("network.http.max-persistent-connections-per-proxy", 4);
  375.  
  376. // amount of time (in seconds) to suspend pending requests, before spawning a
  377. // new connection, once the limit on the number of persistent connections per
  378. // host has been reached.  however, a new connection will not be created if
  379. // max-connections or max-connections-per-server has also been reached.
  380. pref("network.http.request.max-start-delay", 10);
  381.  
  382. // http specific network timeouts (XXX currently unused)
  383. pref("network.http.connect.timeout",  30);    // in seconds
  384. pref("network.http.request.timeout", 120);    // in seconds
  385.  
  386. // Headers
  387. pref("network.http.accept.default", "text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,video/x-mng,image/png,image/jpeg,image/gif;q=0.2,*/*;q=0.1");
  388. pref("network.http.sendRefererHeader",      2); // 0=don't send any, 1=send only on clicks, 2=send on image requests as well
  389.  
  390. // Maximum number of consecutive redirects before aborting.
  391. pref("network.http.redirection-limit", 20);
  392.  
  393. // Enable http compression: comment this out in case of problems with 1.1
  394. pref("network.http.accept-encoding" ,"gzip,deflate,compress;q=0.9");
  395.  
  396. pref("network.http.pipelining"      , false);
  397. pref("network.http.proxy.pipelining", false);
  398.  
  399. // Always pipeling the very first request:  this will only work when you are
  400. // absolutely sure the the site or proxy you are browsing to/through support
  401. // pipelining; the default behavior will be that the browser will first make
  402. // a normal, non-pipelined request, then  examine  and remember the responce
  403. // and only the subsequent requests to that site will be pipeline
  404. pref("network.http.pipelining.firstrequest", false);
  405.  
  406. // Max number of requests in the pipeline
  407. pref("network.http.pipelining.maxrequests" , 4);
  408.  
  409. pref("network.http.proxy.ssl.connect",true);
  410. // </http>
  411.  
  412. // This preference controls whether or not URLs with UTF-8 characters are
  413. // escaped.  Set this preference to TRUE for strict RFC2396 conformance.
  414. pref("network.standard-url.escape-utf8", true);
  415.  
  416. // Idle timeout for ftp control connections - 5 minute default
  417. pref("network.ftp.idleConnectionTimeout", 300);
  418.  
  419. // directory listing format - constants are defined in nsIDirectoryListing.idl
  420. // Do not set this to 0...
  421. pref("network.dir.format", 2);
  422.  
  423. // enables the prefetch service (i.e., prefetching of <link rel="next"> URLs).
  424. pref("network.prefetch-next", true);
  425.  
  426. // sspitzer:  change this back to "news" when we get to beta.
  427. // for now, set this to news.mozilla.org because you can only
  428. // post to the server specified by this pref.
  429. pref("network.hosts.nntp_server",           "news.mozilla.org");
  430.  
  431. // 0-Accept, 1-dontAcceptForeign, 2-dontUse
  432. user_pref("network.image.imageBehavior",    0);
  433.  
  434. pref("network.image.warnAboutImages",       false);
  435. pref("network.proxy.autoconfig_url",        "");
  436. pref("network.proxy.type",                  0);
  437. pref("network.proxy.ftp",                   "");
  438. pref("network.proxy.ftp_port",              0);
  439. pref("network.proxy.gopher",                "");
  440. pref("network.proxy.gopher_port",           0);
  441. pref("network.proxy.news",                  "");
  442. pref("network.proxy.news_port",             0);
  443. pref("network.proxy.http",                  "");
  444. pref("network.proxy.http_port",             0);
  445. pref("network.proxy.wais",                  "");
  446. pref("network.proxy.wais_port",             0);
  447. pref("network.proxy.ssl",                   "");
  448. pref("network.proxy.ssl_port",              0);
  449. pref("network.proxy.socks",                 "");
  450. pref("network.proxy.socks_port",            0);
  451. pref("network.proxy.socks_version",         5);
  452. pref("network.proxy.no_proxies_on",         "localhost, 127.0.0.1");
  453. pref("network.online",                      true); //online/offline
  454. pref("network.cookie.enable",               true);
  455. pref("network.cookie.warnAboutCookies",     false);
  456. pref("network.cookie.enableForCurrentSessionOnly", false);
  457. pref("network.cookie.enableForOriginatingWebsiteOnly", false);
  458. pref("network.cookie.lifetime.days",        90);
  459.  
  460. // The following default value is for p3p medium mode.
  461. // See extensions/cookie/resources/content/p3p.xul for the definitions of low/medium/hi
  462. pref("network.cookie.p3p",                  "ffffaaaa");
  463. pref("network.cookie.p3plevel",             1); // 0=low, 1=medium, 2=high, 3=custom
  464.  
  465. pref("network.enablePad",                   false); // Allow client to do proxy autodiscovery
  466. pref("network.enableIDN",                   false); // Turn on/off IDN (Internationalized Domain Name) resolution
  467. pref("converter.html2txt.structs",          true); // Output structured phrases (strong, em, code, sub, sup, b, i, u)
  468. pref("converter.html2txt.header_strategy",  1); // 0 = no indention; 1 = indention, increased with header level; 2 = numbering and slight indention
  469. pref("imageblocker.enabled",                true);
  470. pref("intl.accept_languages",               "chrome://navigator/locale/navigator.properties");
  471. pref("intl.accept_charsets",                "iso-8859-1,*,utf-8");
  472. pref("intl.collationOption",                "chrome://navigator-platform/locale/navigator.properties");
  473. pref("intl.menuitems.alwaysappendacceskeys","chrome://navigator/locale/navigator.properties");
  474. pref("intl.charsetmenu.browser.static",     "chrome://navigator/locale/navigator.properties");
  475. pref("intl.charsetmenu.browser.more1",      "chrome://navigator/locale/navigator.properties");
  476. pref("intl.charsetmenu.browser.more2",      "chrome://navigator/locale/navigator.properties");
  477. pref("intl.charsetmenu.browser.more3",      "chrome://navigator/locale/navigator.properties");
  478. pref("intl.charsetmenu.browser.more4",      "chrome://navigator/locale/navigator.properties");
  479. pref("intl.charsetmenu.browser.more5",      "chrome://navigator/locale/navigator.properties");
  480. pref("intl.charsetmenu.browser.cache.size", 5);
  481. pref("intl.charset.detector",               "chrome://navigator/locale/navigator.properties");
  482. pref("intl.charset.default",                "chrome://navigator-platform/locale/navigator.properties");
  483. pref("intl.content.langcode",               "chrome://communicator-region/locale/region.properties");
  484. pref("intl.locale.matchOS",                 false);
  485. // fallback charset list for Unicode conversion (converting from Unicode)
  486. // currently used for mail send only to handle symbol characters (e.g Euro, trademark, smartquotes)
  487. // for ISO-8859-1
  488. pref("intl.fallbackCharsetList.ISO-8859-1", "windows-1252");
  489. pref("font.language.group",                 "chrome://navigator/locale/navigator.properties");
  490.  
  491. // -- folders (Mac: these are binary aliases.)
  492. pref("security.directory",              "");
  493.  
  494. pref("signed.applets.codebase_principal_support", false);
  495. pref("security.checkloaduri", true);
  496. pref("security.xpconnect.plugin.unrestricted", true);
  497.  
  498. // Modifier key prefs: default to Windows settings,
  499. // menu access key = alt, accelerator key = control.
  500. // Use 17 for Ctrl, 18 for Alt, 224 for Meta, 0 for none. Mac settings in macprefs.js
  501. pref("ui.key.accelKey", 17);
  502. pref("ui.key.generalAccessKey", 18);
  503. pref("ui.key.menuAccessKey", 18);
  504. pref("ui.key.menuAccessKeyFocuses", false);
  505.  
  506. // Middle-mouse handling
  507. pref("middlemouse.paste", false);
  508. pref("middlemouse.contentLoadURL", false);
  509. pref("middlemouse.scrollbarPosition", false);
  510.  
  511. // Clipboard behavior
  512. pref("clipboard.autocopy", false);
  513.  
  514. // 0=lines, 1=pages, 2=history , 3=text size
  515. pref("mousewheel.withnokey.action",0);
  516. pref("mousewheel.withnokey.numlines",1);    
  517. pref("mousewheel.withnokey.sysnumlines",true);
  518. pref("mousewheel.withcontrolkey.action",3);
  519. pref("mousewheel.withcontrolkey.numlines",1);
  520. pref("mousewheel.withcontrolkey.sysnumlines",true);
  521. pref("mousewheel.withshiftkey.action",0);
  522. pref("mousewheel.withshiftkey.numlines",1);
  523. pref("mousewheel.withshiftkey.sysnumlines",false);
  524. pref("mousewheel.withaltkey.action",2);
  525. pref("mousewheel.withaltkey.numlines",1);
  526. pref("mousewheel.withaltkey.sysnumlines",false);
  527.  
  528. pref("profile.confirm_automigration",true);
  529.  
  530. // the amount of time (in seconds) that must elapse
  531. // before we think your mozilla profile is defunct
  532. // and you'd benefit from re-migrating from 4.x
  533. // see bug #137886 for more details
  534. //
  535. // if -1, we never think your profile is defunct
  536. // and users will never see the remigrate UI.
  537. pref("profile.seconds_until_defunct", -1);
  538.  
  539. // Customizable toolbar stuff
  540. pref("custtoolbar.personal_toolbar_folder", "");
  541.  
  542. pref("prefs.converted-to-utf8",false);
  543. // --------------------------------------------------
  544. // IBMBIDI 
  545. // --------------------------------------------------
  546. //
  547. // ------------------
  548. //  Text Direction
  549. // ------------------
  550. // 1 = directionLTRBidi *
  551. // 2 = directionRTLBidi
  552. pref("bidi.direction", 1);
  553. // ------------------
  554. //  Text Type
  555. // ------------------
  556. // 1 = charsettexttypeBidi *
  557. // 2 = logicaltexttypeBidi
  558. // 3 = visualtexttypeBidi
  559. pref("bidi.texttype", 1);
  560. // ------------------
  561. //  Controls Text Mode
  562. // ------------------
  563. // 1 = logicalcontrolstextmodeBidiCmd
  564. // 2 = visualcontrolstextmodeBidi <-- NO LONGER SUPPORTED
  565. // 3 = containercontrolstextmodeBidi *
  566. pref("bidi.controlstextmode", 1);
  567. // ------------------
  568. //  Clipboard Text Mode
  569. // ------------------
  570. //  1 = logicalclipboardtextmodeBidi
  571. // 2 = visiualclipboardtextmodeBidi
  572. // 3 = sourceclipboardtextmodeBidi *
  573. pref("bidi.clipboardtextmode", 3);
  574. // ------------------
  575. //  Numeral Style
  576. // ------------------
  577. // 0 = nominalnumeralBidi *
  578. // 1 = regularcontextnumeralBidi
  579. // 2 = hindicontextnumeralBidi
  580. // 3 = arabicnumeralBidi
  581. // 4 = hindinumeralBidi
  582. pref("bidi.numeral", 0);
  583. // ------------------
  584. //  Support Mode
  585. // ------------------
  586. // 1 = mozillaBidisupport *
  587. // 2 = OsBidisupport
  588. // 3 = disableBidisupport
  589. pref("bidi.support", 1);
  590. // ------------------
  591. //  Charset Mode
  592. // ------------------
  593. // 1 = doccharactersetBidi *
  594. // 2 = defaultcharactersetBidi
  595. pref("bidi.characterset", 1);
  596.  
  597. pref("browser.throbber.url","chrome://navigator-region/locale/region.properties");
  598.  
  599. // used for double-click word selection behavior. Win will override.
  600. pref("layout.word_select.eat_space_to_next_word", false);
  601. pref("layout.word_select.stop_at_punctuation", true);
  602.  
  603. // pref to force frames to be resizable
  604. pref("layout.frames.force_resizability", false);
  605.  
  606. // pref to permit users to make verified SOAP calls by default
  607. pref("capability.policy.default.SOAPCall.invokeVerifySourceHeader", "allAccess");
  608.  
  609. // pref to control the alert notification 
  610. pref("alerts.slideIncrement", 1);
  611. pref("alerts.slideIncrementTime", 10);
  612. pref("alerts.totalOpenTime", 4000);
  613. pref("alerts.height", 50);
  614.  
  615. // update notifications prefs
  616. pref("update_notifications.enabled", true);
  617. pref("update_notifications.provider.0.frequency", 7); // number of days
  618. pref("update_notifications.provider.0.datasource", "chrome://communicator-region/locale/region.properties");
  619.  
  620. // if true, allow plug-ins to override internal imglib decoder mime types in full-page mode
  621. pref("plugin.override_internal_types", false);
  622. pref("plugin.expose_full_path", false); // if true navigator.plugins reveals full path
  623.  
  624. // Help Windows NT, 2000, and XP dialup a RAS connection
  625. // when a network address is unreachable.
  626. pref("network.autodial-helper.enabled", true);
  627.  
  628. // Pref to control whether we set ddeexec subkeys for the http
  629. // Internet shortcut protocol if we are handling it.  These
  630. // subkeys will be set only while we are running (to avoid the
  631. // problem of Windows showing an alert when it tries to use DDE
  632. // and we're not already running).
  633. pref("advanced.system.supportDDEExec", true);
  634. pref("browser.xul.error_pages.enabled", false);
  635.  
  636. pref("signon.rememberSignons",              true);
  637. pref("signon.expireMasterPassword",         false);
  638.  
  639. pref("network.protocol-handler.external.mailto", true); // for mail
  640. pref("network.protocol-handler.external.news" , true); // for news 
  641.