2007-03-22 10:30:00 -07:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
|
|
|
|
# -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
|
|
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
#
|
|
|
|
# The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
# 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
# the License. You may obtain a copy of the License at
|
|
|
|
# http://www.mozilla.org/MPL/
|
|
|
|
#
|
|
|
|
# Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
# for the specific language governing rights and limitations under the
|
|
|
|
# License.
|
|
|
|
#
|
|
|
|
# The Original Code is the Firefox Preferences System.
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is
|
|
|
|
# Ben Goodger.
|
|
|
|
# Portions created by the Initial Developer are Copyright (C) 2005
|
|
|
|
# the Initial Developer. All Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
|
|
|
# Ben Goodger <ben@mozilla.org>
|
|
|
|
# Jeff Walden <jwalden+bmo@mit.edu>
|
|
|
|
#
|
|
|
|
# Alternatively, the contents of this file may be used under the terms of
|
|
|
|
# either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
# in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
# of those above. If you wish to allow use of your version of this file only
|
|
|
|
# under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
# use your version of this file under the terms of the MPL, indicate your
|
|
|
|
# decision by deleting the provisions above and replace them with the notice
|
|
|
|
# and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
# the provisions above, a recipient may use your version of this file under
|
|
|
|
# the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
#
|
|
|
|
# ***** END LICENSE BLOCK *****
|
|
|
|
|
|
|
|
<?xml-stylesheet href="chrome://global/skin/global.css"?>
|
|
|
|
<?xml-stylesheet href="chrome://mozapps/content/preferences/preferences.css"?>
|
|
|
|
<?xml-stylesheet href="chrome://browser/skin/preferences/preferences.css"?>
|
|
|
|
|
2007-09-05 21:55:45 -07:00
|
|
|
<!-- XXX This should be in applications.xul, but bug 393953 means putting it
|
|
|
|
- there causes the Applications pane not to work the first time you open
|
|
|
|
- the Preferences dialog in a browsing session, so we work around the problem
|
|
|
|
- by putting it here instead.
|
|
|
|
-->
|
|
|
|
<?xml-stylesheet href="chrome://browser/content/preferences/handlers.css"?>
|
2007-12-03 17:45:52 -08:00
|
|
|
<?xml-stylesheet href="chrome://browser/skin/preferences/applications.css"?>
|
2007-09-05 21:55:45 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
<!DOCTYPE prefwindow [
|
|
|
|
<!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd">
|
|
|
|
<!ENTITY % preferencesDTD SYSTEM "chrome://browser/locale/preferences/preferences.dtd">
|
|
|
|
%brandDTD;
|
|
|
|
%preferencesDTD;
|
|
|
|
]>
|
|
|
|
|
|
|
|
#ifdef XP_WIN
|
|
|
|
#define USE_WIN_TITLE_STYLE
|
|
|
|
#endif
|
|
|
|
#ifdef XP_OS2
|
|
|
|
#define USE_WIN_TITLE_STYLE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XP_MACOSX
|
|
|
|
<?xul-overlay href="chrome://browser/content/macBrowserOverlay.xul"?>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
<prefwindow type="prefwindow"
|
|
|
|
id="BrowserPreferences"
|
|
|
|
windowtype="Browser:Preferences"
|
2008-03-24 10:18:38 -07:00
|
|
|
ondialoghelp="openPrefsHelp()"
|
2007-03-22 10:30:00 -07:00
|
|
|
#ifdef USE_WIN_TITLE_STYLE
|
|
|
|
title="&prefWindow.titleWin;"
|
|
|
|
#else
|
|
|
|
#ifdef XP_UNIX
|
|
|
|
#ifndef XP_MACOSX
|
|
|
|
title="&prefWindow.titleGNOME;"
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
|
|
#ifdef USE_WIN_TITLE_STYLE
|
2009-03-19 20:16:25 -07:00
|
|
|
style="&prefWinMinSize.styleWin2;">
|
2007-03-22 10:30:00 -07:00
|
|
|
#else
|
|
|
|
#ifdef XP_MACOSX
|
2009-03-10 12:12:55 -07:00
|
|
|
style="&prefWinMinSize.styleMac;">
|
2007-03-22 10:30:00 -07:00
|
|
|
#else
|
2009-03-10 12:12:55 -07:00
|
|
|
style="&prefWinMinSize.styleGNOME;">
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
|
|
|
#endif
|
2007-09-17 11:58:05 -07:00
|
|
|
|
2008-03-24 10:18:38 -07:00
|
|
|
<script type="application/javascript" src="chrome://browser/content/utilityOverlay.js"/>
|
|
|
|
|
2007-09-17 11:58:05 -07:00
|
|
|
<stringbundle id="bundleBrand" src="chrome://branding/locale/brand.properties"/>
|
2007-03-22 10:30:00 -07:00
|
|
|
<stringbundle id="bundlePreferences"
|
|
|
|
src="chrome://browser/locale/preferences/preferences.properties"/>
|
|
|
|
|
2009-03-02 03:46:33 -08:00
|
|
|
<prefpane id="paneMain" label="&paneGeneral.title;"
|
2007-03-22 10:30:00 -07:00
|
|
|
src="chrome://browser/content/preferences/main.xul"/>
|
|
|
|
<prefpane id="paneTabs" label="&paneTabs.title;"
|
|
|
|
src="chrome://browser/content/preferences/tabs.xul"/>
|
|
|
|
<prefpane id="paneContent" label="&paneContent.title;"
|
|
|
|
src="chrome://browser/content/preferences/content.xul"/>
|
2007-09-05 21:55:45 -07:00
|
|
|
<prefpane id="paneApplications" label="&paneApplications.title;"
|
|
|
|
src="chrome://browser/content/preferences/applications.xul"/>
|
2007-03-22 10:30:00 -07:00
|
|
|
<prefpane id="panePrivacy" label="&panePrivacy.title;"
|
|
|
|
src="chrome://browser/content/preferences/privacy.xul"/>
|
|
|
|
<prefpane id="paneSecurity" label="&paneSecurity.title;"
|
|
|
|
src="chrome://browser/content/preferences/security.xul"/>
|
|
|
|
<prefpane id="paneAdvanced" label="&paneAdvanced.title;"
|
|
|
|
src="chrome://browser/content/preferences/advanced.xul"/>
|
2010-08-02 16:37:56 -07:00
|
|
|
#ifdef MOZ_SERVICES_SYNC
|
|
|
|
<prefpane id="paneSync" label="&paneSync.title;"
|
|
|
|
src="chrome://browser/content/preferences/sync.xul"/>
|
|
|
|
#endif
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#ifdef XP_MACOSX
|
|
|
|
#include ../../base/content/browserMountPoints.inc
|
|
|
|
#endif
|
|
|
|
|
|
|
|
</prefwindow>
|
|
|
|
|