home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / share / firefox / defaults / pref / firefox.js < prev    next >
Encoding:
Text File  |  2006-08-18  |  22.2 KB  |  468 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.  *
  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 MPL, 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 MPL, the GPL or the LGPL.
  35.  *
  36.  * ***** END LICENSE BLOCK ***** */
  37.  
  38. // XXX Toolkit-specific preferences should be moved into toolkit.js
  39.  
  40. //@line 41 "/build/buildd/firefox-1.99+2.0b1+dfsg/browser/app/profile/firefox.js"
  41.  
  42. //@line 44 "/build/buildd/firefox-1.99+2.0b1+dfsg/browser/app/profile/firefox.js"
  43.  
  44. //@line 50 "/build/buildd/firefox-1.99+2.0b1+dfsg/browser/app/profile/firefox.js"
  45.  
  46. pref("startup.homepage_override_url","chrome://browser-region/locale/region.properties");
  47. pref("startup.homepage_override.mstone","ignore");
  48. pref("general.startup.browser", true);
  49.  
  50. pref("browser.chromeURL","chrome://browser/content/");
  51. pref("browser.hiddenWindowChromeURL", "chrome://browser/content/hiddenWindow.xul");
  52. pref("xpinstall.dialog.confirm", "chrome://mozapps/content/xpinstall/xpinstallConfirm.xul");
  53. pref("xpinstall.dialog.progress.skin", "chrome://mozapps/content/extensions/extensions.xul");
  54. pref("xpinstall.dialog.progress.chrome", "chrome://mozapps/content/extensions/extensions.xul");
  55. pref("xpinstall.dialog.progress.type.skin", "Extension:Manager");
  56. pref("xpinstall.dialog.progress.type.chrome", "Extension:Manager");
  57.  
  58. // Developers can set this to |true| if they are constantly changing files in their 
  59. // extensions directory so that the extension system does not constantly think that
  60. // their extensions are being updated and thus reregistered every time the app is
  61. // started.
  62. pref("extensions.ignoreMTimeChanges", false);
  63. // Enables some extra Extension System Logging (can reduce performance)
  64. pref("extensions.logging.enabled", false);
  65. // Hides the install button in the add-ons mgr
  66. pref("extensions.hideInstallButton", true);
  67.  
  68. // Blocklist preferences
  69. pref("extensions.blocklist.enabled", true);
  70. pref("extensions.blocklist.interval", 86400);
  71. pref("extensions.blocklist.url", "https://addons.mozilla.org/blocklist/1/%APP_ID%/%APP_VERSION%/");
  72. pref("extensions.blocklist.detailsURL", "http://www.mozilla.com/blocklist/");
  73.  
  74. // App-specific update preferences
  75.  
  76. // Whether or not app updates are enabled
  77. pref("app.update.enabled", false);
  78.  
  79. // This preference turns on app.update.mode and allows automatic download and
  80. // install to take place. We use a separate boolean toggle for this to make
  81. // the UI easier to construct.
  82. pref("app.update.auto", false);
  83.  
  84. // Defines how the Application Update Service notifies the user about updates:
  85. //
  86. // AUM Set to:        Minor Releases:     Major Releases:
  87. // 0                  download no prompt  download no prompt
  88. // 1                  download no prompt  download no prompt if no incompatibilities
  89. // 2                  download no prompt  prompt
  90. //
  91. // See chart in nsUpdateService.js.in for more details
  92. //
  93. pref("app.update.mode", 1);
  94.  
  95. // If set to true, the Update Service will present no UI for any event.
  96. pref("app.update.silent", false);
  97.  
  98. // Update service URL:
  99. pref("app.update.url", "https://aus2.mozilla.org/update/2/%PRODUCT%/%VERSION%/%BUILD_ID%/%BUILD_TARGET%/%LOCALE%/%CHANNEL%/%OS_VERSION%/update.xml");
  100. // URL user can browse to manually if for some reason all update installation
  101. // attempts fail.  TODO: Change this URL
  102. pref("app.update.url.manual", "http://www.mozilla.org/products/firefox/");
  103. // A default value for the "More information about this update" link
  104. // supplied in the "An update is available" page of the update wizard. 
  105. pref("app.update.url.details", "chrome://browser-region/locale/region.properties");
  106.  
  107. // User-settable override to app.update.url for testing purposes.
  108. //pref("app.update.url.override", "");
  109.  
  110. // Interval: Time between checks for a new version (in seconds)
  111. //           default=1 day
  112. pref("app.update.interval", 86400);
  113. // Interval: Time before prompting the user to download a new version that 
  114. //           is available (in seconds) default=1 day
  115. pref("app.update.nagTimer.download", 86400);
  116. // Interval: Time before prompting the user to restart to install the latest
  117. //           download (in seconds) default=30 minutes
  118. pref("app.update.nagTimer.restart", 1800);
  119. // Interval: When all registered timers should be checked (in milliseconds)
  120. //           default=5 seconds
  121. pref("app.update.timer", 600000);
  122.  
  123. // Whether or not we show a dialog box informing the user that the update was
  124. // successfully applied. This is off in Firefox by default since we show a 
  125. // upgrade start page instead! Other apps may wish to show this UI, and supply
  126. // a whatsNewURL field in their brand.properties that contains a link to a page
  127. // which tells users what's new in this new update.
  128. pref("app.update.showInstalledUI", false);
  129.  
  130. // 0 = suppress prompting for incompatibilities if there are updates available
  131. //     to newer versions of installed addons that resolve them.
  132. // 1 = suppress prompting for incompatibilities only if there are VersionInfo
  133. //     updates available to installed addons that resolve them, not newer
  134. //     versions.
  135. pref("app.update.incompatible.mode", 0);
  136.  
  137. // Symmetric (can be overridden by individual extensions) update preferences.
  138. // e.g.
  139. //  extensions.{GUID}.update.enabled
  140. //  extensions.{GUID}.update.url
  141. //  extensions.{GUID}.update.interval
  142. //  .. etc ..
  143. //
  144. pref("extensions.update.enabled", true);
  145. pref("extensions.update.url", "chrome://mozapps/locale/extensions/extensions.properties");
  146. pref("extensions.update.interval", 86400);  // Check for updates to Extensions and 
  147.                                             // Themes every day
  148. // Non-symmetric (not shared by extensions) extension-specific [update] preferences
  149. pref("extensions.getMoreExtensionsURL", "chrome://mozapps/locale/extensions/extensions.properties");
  150. pref("extensions.getMoreThemesURL", "chrome://mozapps/locale/extensions/extensions.properties");
  151. pref("extensions.dss.enabled", false);          // Dynamic Skin Switching                                               
  152. pref("extensions.dss.switchPending", false);    // Non-dynamic switch pending after next
  153.                                                 // restart.
  154.  
  155. pref("xpinstall.whitelist.add", "update.mozilla.org");
  156. pref("xpinstall.whitelist.add.103", "addons.mozilla.org");
  157.  
  158. pref("keyword.enabled", true);
  159. pref("keyword.URL", "http://www.google.com/search?btnI=I%27m+Feeling+Lucky&ie=UTF-8&oe=UTF-8&q=");
  160.  
  161. pref("general.skins.selectedSkin", "classic/1.0");
  162. pref("general.useragent.extra.firefox", "BonEcho/2.0b1");
  163.  
  164. pref("general.smoothScroll", false);
  165. //@line 171 "/build/buildd/firefox-1.99+2.0b1+dfsg/browser/app/profile/firefox.js"
  166. pref("general.autoScroll", false);
  167. //@line 175 "/build/buildd/firefox-1.99+2.0b1+dfsg/browser/app/profile/firefox.js"
  168.  
  169. // Whether or not the application should check at startup each time if it 
  170. // is the default browser.
  171. pref("browser.shell.checkDefaultBrowser", false);
  172.  
  173. // 0 = blank, 1 = home (browser.startup.homepage), 2 = last
  174. // XXXBlake Remove this stupid pref
  175. pref("browser.startup.page",                1);
  176. pref("browser.startup.homepage",              "chrome://browser-region/locale/region.properties");
  177. pref("browser.startup.homepage_override.mstone","ignore");
  178.  
  179. pref("browser.cache.disk.capacity",         50000);
  180. pref("browser.enable_automatic_image_resizing", true);
  181. pref("browser.urlbar.autoFill", false);
  182. pref("browser.urlbar.matchOnlyTyped", false);
  183. pref("browser.chrome.site_icons", true);
  184. pref("browser.chrome.favicons", true);
  185. pref("browser.formfill.enable", true);
  186.  
  187. pref("browser.download.useDownloadDir", true);
  188. pref("browser.download.folderList", 0);
  189. //@line 199 "/build/buildd/firefox-1.99+2.0b1+dfsg/browser/app/profile/firefox.js"
  190. pref("browser.download.manager.showAlertOnComplete", false);
  191. //@line 201 "/build/buildd/firefox-1.99+2.0b1+dfsg/browser/app/profile/firefox.js"
  192. pref("browser.download.manager.showAlertInterval", 2000);
  193. pref("browser.download.manager.retention", 2);
  194. pref("browser.download.manager.showWhenStarting", true);
  195. pref("browser.download.manager.useWindow", true);
  196. pref("browser.download.manager.closeWhenDone", false);
  197. pref("browser.download.manager.openDelay", 0);
  198. pref("browser.download.manager.focusWhenStarting", false);
  199. pref("browser.download.manager.flashCount", 2);
  200.  
  201. // pointer to the default engine name
  202. pref("browser.search.defaultenginename",      "chrome://browser-region/locale/region.properties");
  203.  
  204. // disable logging for the search service by default
  205. pref("browser.search.log", false);
  206.  
  207. // Ordering of Search Engines in the Engine list. 
  208. pref("browser.search.order.1",                "chrome://browser-region/locale/region.properties");
  209. pref("browser.search.order.2",                "chrome://browser-region/locale/region.properties");
  210.  
  211. pref("browser.search.param.Google.1.default", "chrome://branding/content/searchconfig.properties");
  212. pref("browser.search.param.Google.1.custom",  "chrome://branding/content/searchconfig.properties");
  213. pref("browser.search.order.Yahoo.1",          "chrome://branding/content/searchconfig.properties");
  214. pref("browser.search.order.Yahoo.2",          "chrome://branding/content/searchconfig.properties");
  215. pref("browser.search.order.Yahoo",            "chrome://branding/content/searchconfig.properties");
  216.  
  217. // search bar results always open in a new tab
  218. pref("browser.search.openintab", false);
  219.  
  220. // send ping to the server to update
  221. pref("browser.search.update", true);
  222.  
  223. pref("browser.history.grouping", "day");
  224. pref("browser.sessionhistory.max_entries", 50);
  225.  
  226. // handle external links
  227. // 0=default window, 1=current window/tab, 2=new window, 3=new tab in most recent window
  228. pref("browser.link.open_external", 3);
  229.  
  230. // handle links targeting new windows
  231. pref("browser.link.open_newwindow", 2);
  232.  
  233. // 0: no restrictions - divert everything
  234. // 1: don't divert window.open at all
  235. // 2: don't divert window.open with features
  236. pref("browser.link.open_newwindow.restriction", 2);
  237.  
  238. // Tab browser preferences.
  239. pref("browser.tabs.loadInBackground", true);
  240. pref("browser.tabs.loadFolderAndReplace", true);
  241. pref("browser.tabs.opentabfor.middleclick", true);
  242. pref("browser.tabs.loadDivertedInBackground", false);
  243. pref("browser.tabs.loadBookmarksInBackground", false);
  244. pref("browser.tabs.tabMinWidth", 60);
  245. pref("browser.tabs.tabClipWidth", 140);
  246. pref("browser.tabs.disableBackgroundClose", false);
  247.  
  248. // When tabs opened by links in other tabs via a combination of
  249. // browser.link.open_newwindow being set to 3 and target="_blank" etc are
  250. // closed:
  251. // true   return to the tab that opened this tab (its owner)
  252. // false  return to the adjacent tab (old default)
  253. pref("browser.tabs.selectOwnerOnClose", true);
  254.  
  255.  
  256. // Default bookmark sorting
  257. pref("browser.bookmarks.sort.direction", "descending");
  258. pref("browser.bookmarks.sort.resource", "rdf:http://home.netscape.com/NC-rdf#Name");
  259.  
  260. // Scripts & Windows prefs
  261. pref("dom.disable_open_during_load",              true);
  262. pref("javascript.options.showInConsole",          false);
  263. // Make the status bar reliably present and unaffected by pages
  264. pref("dom.disable_window_open_feature.status",    true);
  265. // This is the pref to control the location bar, change this to true to 
  266. // force this instead of or in addition to the status bar - this makes 
  267. // the origin of popup windows more obvious to avoid spoofing but we 
  268. // cannot do it by default because it affects UE for web applications.
  269. pref("dom.disable_window_open_feature.location",  false);
  270. pref("dom.disable_window_status_change",          true);
  271. // allow JS to move and resize existing windows
  272. pref("dom.disable_window_move_resize",            false);
  273. // prevent JS from monkeying with window focus, etc
  274. pref("dom.disable_window_flip",                   true);
  275.  
  276. // popups.policy 1=allow,2=reject
  277. pref("privacy.popups.policy",               1);
  278. pref("privacy.popups.usecustom",            true);
  279. pref("privacy.popups.firstTime",            true);
  280. pref("privacy.popups.showBrowserMessage",   true);
  281.  
  282. pref("privacy.item.history",    true);
  283. pref("privacy.item.formdata",   true);
  284. pref("privacy.item.passwords",  false);
  285. pref("privacy.item.downloads",  true);
  286. pref("privacy.item.cookies",    false);
  287. pref("privacy.item.cache",      true);
  288. pref("privacy.item.siteprefs",  false);
  289. pref("privacy.item.sessions",   true);
  290.  
  291. pref("privacy.sanitize.sanitizeOnShutdown", false);
  292. pref("privacy.sanitize.promptOnSanitize", true);
  293.  
  294. pref("network.proxy.share_proxy_settings",  false); // use the same proxy settings for all protocols
  295.  
  296. pref("network.cookie.cookieBehavior",       0); // cookies enabled
  297. pref("network.cookie.enableForCurrentSessionOnly", false);
  298.  
  299. // l12n and i18n
  300. pref("intl.accept_languages", "chrome://global/locale/intl.properties");
  301. // collationOption is only set on linux for japanese. see bug 18338 and 62015
  302. // we need to check if this pref is still useful.
  303. pref("intl.collationOption",  "chrome://global-platform/locale/intl.properties");
  304. pref("intl.charsetmenu.browser.static", "chrome://global/locale/intl.properties");
  305. pref("intl.charsetmenu.browser.more1",  "chrome://global/locale/intl.properties");
  306. pref("intl.charsetmenu.browser.more2",  "chrome://global/locale/intl.properties");
  307. pref("intl.charsetmenu.browser.more3",  "chrome://global/locale/intl.properties");
  308. pref("intl.charsetmenu.browser.more4",  "chrome://global/locale/intl.properties");
  309. pref("intl.charsetmenu.browser.more5",  "chrome://global/locale/intl.properties");
  310. pref("intl.charsetmenu.browser.unicode",  "chrome://global/locale/intl.properties");
  311. pref("intl.charset.detector", "chrome://global/locale/intl.properties");
  312. pref("intl.charset.default",  "chrome://global-platform/locale/intl.properties");
  313. pref("font.language.group", "chrome://global/locale/intl.properties");
  314. pref("intl.menuitems.alwaysappendaccesskeys","chrome://global/locale/intl.properties");
  315. pref("intl.menuitems.insertseparatorbeforeaccesskeys","chrome://global/locale/intl.properties");
  316.  
  317. // Use LANG environment variable to choose locale
  318. pref("intl.locale.matchOS", true);
  319.  
  320. // 0=lines, 1=pages, 2=history , 3=text size
  321. //@line 344 "/build/buildd/firefox-1.99+2.0b1+dfsg/browser/app/profile/firefox.js"
  322. pref("mousewheel.withshiftkey.action",2);
  323. pref("mousewheel.withshiftkey.sysnumlines",false);
  324. pref("mousewheel.withshiftkey.numlines",1);
  325. pref("mousewheel.withaltkey.action",0);
  326. pref("mousewheel.withaltkey.sysnumlines",false);
  327. pref("mousewheel.withaltkey.numlines",1);
  328. pref("mousewheel.withmetakey.action",0);
  329. pref("mousewheel.withmetakey.sysnumlines",true);
  330. pref("mousewheel.withmetakey.numlines",1);
  331. //@line 354 "/build/buildd/firefox-1.99+2.0b1+dfsg/browser/app/profile/firefox.js"
  332. pref("mousewheel.withcontrolkey.action",3);
  333. pref("mousewheel.withcontrolkey.sysnumlines",false);
  334. pref("mousewheel.withcontrolkey.numlines",1);
  335.  
  336. pref("middlemouse.contentLoadURL", false); // setting to false disables pasting urls on to the page
  337.  
  338. pref("profile.allow_automigration", false);   // setting to false bypasses automigration in the profile code
  339.  
  340. // Customizable toolbar stuff
  341. pref("custtoolbar.personal_toolbar_folder", "");
  342.  
  343. // pref to control the alert notification 
  344. pref("alerts.slideIncrement", 1);
  345. pref("alerts.slideIncrementTime", 10);
  346. pref("alerts.totalOpenTime", 4000);
  347. pref("alerts.height", 50);
  348.  
  349. pref("browser.xul.error_pages.enabled", true);
  350.  
  351. pref("signon.rememberSignons",              true);
  352. pref("signon.expireMasterPassword",         false);
  353. pref("signon.SignonFileName", "signons.txt");
  354.  
  355. // We want to make sure mail URLs are handled externally...
  356. pref("network.protocol-handler.external.mailto", true); // for mail
  357. pref("network.protocol-handler.external.news", true);   // for news
  358. pref("network.protocol-handler.external.snews", true);  // for secure news
  359. pref("network.protocol-handler.external.nntp", true);   // also news
  360. // ...without warning dialogs
  361. pref("network.protocol-handler.warn-external.mailto", false);
  362. pref("network.protocol-handler.warn-external.news", false);
  363. pref("network.protocol-handler.warn-external.snews", false);
  364. pref("network.protocol-handler.warn-external.nntp", false);
  365.  
  366. // By default, all protocol handlers are exposed.  This means that
  367. // the browser will respond to openURL commands for all URL types.
  368. // It will also try to open link clicks inside the browser before
  369. // failing over to the system handlers.
  370. pref("network.protocol-handler.expose-all", true);
  371. pref("network.protocol-handler.expose.mailto", false);
  372. pref("network.protocol-handler.expose.news", false);
  373. pref("network.protocol-handler.expose.snews", false);
  374. pref("network.protocol-handler.expose.nntp", false);
  375.  
  376. // Default security warning dialogs to show once.
  377. pref("security.warn_entering_secure.show_once", true);
  378. pref("security.warn_entering_weak.show_once", true);
  379. pref("security.warn_leaving_secure.show_once", true);
  380. pref("security.warn_viewing_mixed.show_once", true);
  381. pref("security.warn_submit_insecure.show_once", true);
  382.  
  383. // enable negotiate extension
  384. pref("network.negotiate-auth.trusted-uris", "https://");
  385.  
  386.  
  387. //@line 410 "/build/buildd/firefox-1.99+2.0b1+dfsg/browser/app/profile/firefox.js"
  388. pref("browser.urlbar.clickSelectsAll", false);
  389. //@line 414 "/build/buildd/firefox-1.99+2.0b1+dfsg/browser/app/profile/firefox.js"
  390.  
  391. pref("accessibility.typeaheadfind", false);
  392. pref("accessibility.typeaheadfind.timeout", 5000);
  393. pref("accessibility.typeaheadfind.linksonly", false);
  394. pref("accessibility.typeaheadfind.flashBar", 1);
  395.  
  396. // Disable the default plugin for firefox
  397. pref("plugin.default_plugin_disabled", true);
  398.  
  399. // plugin finder service url
  400. pref("pfs.datasource.url", "https://pfs.mozilla.org/plugins/PluginFinderService.php?mimetype=%PLUGIN_MIMETYPE%&appID=%APP_ID%&appVersion=%APP_VERSION%&clientOS=%CLIENT_OS%&chromeLocale=%CHROME_LOCALE%");
  401.  
  402. //@line 429 "/build/buildd/firefox-1.99+2.0b1+dfsg/browser/app/profile/firefox.js"
  403. pref("browser.preferences.instantApply", true);
  404. //@line 434 "/build/buildd/firefox-1.99+2.0b1+dfsg/browser/app/profile/firefox.js"
  405. pref("browser.preferences.animateFadeIn", false);
  406. //@line 436 "/build/buildd/firefox-1.99+2.0b1+dfsg/browser/app/profile/firefox.js"
  407.  
  408. pref("browser.download.show_plugins_in_list", true);
  409. pref("browser.download.hide_plugins_without_extensions", true);
  410.  
  411. // Setting this pref to |true| forces BiDi UI menu items and keyboard shortcuts
  412. // to be exposed. 
  413. pref("bidi.browser.ui", true);
  414.  
  415. // Backspace and Shift+Backspace behavior
  416. // 0 goes Back/Forward
  417. // 1 act like PgUp/PgDown
  418. // 2 and other values, nothing
  419. //@line 449 "/build/buildd/firefox-1.99+2.0b1+dfsg/browser/app/profile/firefox.js"
  420. pref("browser.backspace_action", 1);
  421. //@line 453 "/build/buildd/firefox-1.99+2.0b1+dfsg/browser/app/profile/firefox.js"
  422.  
  423. // this will automatically enable inline spellchecking (if it is available) for
  424. // multi-line text entry controls <textarea>s in HTML
  425. // 0 = spellcheck nothing, 1 = check multi-line controls, 2 = check multi/single line controls
  426. pref("layout.spellcheckDefault", 1);
  427.  
  428. pref("view_source.editor.path", "");
  429. pref("view_source.editor.external", false);
  430.  
  431. //@line 463 "/build/buildd/firefox-1.99+2.0b1+dfsg/browser/app/profile/firefox.js"
  432. // XXXben This is just here for demo purposes until web registration works!
  433. // XXXben Needs Localization!
  434. pref("browser.contentHandlers.types.0.title", "Bloglines");
  435. pref("browser.contentHandlers.types.0.uri", "http://www.bloglines.com/login?r=/sub/%s");
  436. pref("browser.contentHandlers.types.0.type", "application/vnd.mozilla.maybe.feed");
  437. pref("browser.contentHandlers.types.1.title", "iGoogle/Google Reader");
  438. pref("browser.contentHandlers.types.1.uri", "http://fusion.google.com/add?feedurl=%s");
  439. pref("browser.contentHandlers.types.1.type", "application/vnd.mozilla.maybe.feed");
  440. pref("browser.contentHandlers.types.2.title", "My Yahoo");
  441. pref("browser.contentHandlers.types.2.uri", "http://add.my.yahoo.com/rss?url=%s");
  442. pref("browser.contentHandlers.types.2.type", "application/vnd.mozilla.maybe.feed");
  443. //@line 475 "/build/buildd/firefox-1.99+2.0b1+dfsg/browser/app/profile/firefox.js"
  444.  
  445. //@line 477 "/build/buildd/firefox-1.99+2.0b1+dfsg/browser/app/profile/firefox.js"
  446. // Safe browsing does nothing unless both these prefs are set.
  447. pref("browser.safebrowsing.enabled", true);
  448. pref("browser.safebrowsing.remoteLookups", false);
  449.  
  450. // Non-enhanced mode (local url lists) URL list to check for updates
  451. pref("browser.safebrowsing.provider.0.updateURL", "http://sb.google.com/safebrowsing/update?");
  452.  
  453. pref("browser.safebrowsing.dataProvider", 0);
  454.  
  455. // Does the provider name need to be localizable?
  456. pref("browser.safebrowsing.provider.0.name", "Google");
  457. pref("browser.safebrowsing.provider.0.lookupURL", "http://sb.google.com/safebrowsing/lookup?");
  458. pref("browser.safebrowsing.provider.0.keyURL", "https://www.google.com/safebrowsing/getkey?");
  459. pref("browser.safebrowsing.provider.0.reportURL", "http://sb.google.com/safebrowsing/report?");
  460.  
  461. // HTML report pages
  462. pref("browser.safebrowsing.provider.0.reportGenericURL", "http://www.mozilla.org/projects/bonecho/anti-phishing/report_general/?");
  463. pref("browser.safebrowsing.provider.0.reportErrorURL", "http://www.mozilla.org/projects/bonecho/anti-phishing/report_error/?");
  464. pref("browser.safebrowsing.provider.0.reportPhishURL", "http://www.mozilla.org/projects/bonecho/anti-phishing/report_phish/?");
  465. //@line 497 "/build/buildd/firefox-1.99+2.0b1+dfsg/browser/app/profile/firefox.js"
  466.  
  467. pref("mozilla.widget.raise-on-setfocus", false);
  468.