2010-08-02 16:37:56 -07:00
|
|
|
|
<?xml version="1.0"?>
|
|
|
|
|
|
|
|
|
|
# ***** 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 Weave.
|
|
|
|
|
#
|
|
|
|
|
# The Initial Developer of the Original Code is the Mozilla Foundation.
|
|
|
|
|
# Portions created by the Initial Developer are Copyright (C) 2009
|
|
|
|
|
# the Initial Developer. All Rights Reserved.
|
|
|
|
|
#
|
|
|
|
|
# Contributor(s):
|
|
|
|
|
# Edward Lee <edilee@mozilla.com>
|
|
|
|
|
# Mike Connor <mconnor@mozilla.com>
|
|
|
|
|
# Paul O’Shannessy <paul@oshannessy.com>
|
2010-09-07 18:37:46 -07:00
|
|
|
|
# Philipp von Weitershausen <philipp@weitershausen.de>
|
2010-08-02 16:37:56 -07:00
|
|
|
|
#
|
|
|
|
|
# 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 *****
|
|
|
|
|
|
|
|
|
|
<!DOCTYPE overlay [
|
|
|
|
|
<!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd">
|
|
|
|
|
<!ENTITY % syncBrandDTD SYSTEM "chrome://browser/locale/syncBrand.dtd">
|
|
|
|
|
<!ENTITY % syncDTD SYSTEM "chrome://browser/locale/preferences/sync.dtd">
|
|
|
|
|
%brandDTD;
|
|
|
|
|
%syncBrandDTD;
|
|
|
|
|
%syncDTD;
|
|
|
|
|
]>
|
|
|
|
|
|
|
|
|
|
<overlay id="SyncPaneOverlay"
|
|
|
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
|
|
|
xmlns:html="http://www.w3.org/1999/xhtml">
|
|
|
|
|
|
|
|
|
|
<prefpane id="paneSync"
|
|
|
|
|
helpTopic="prefs-weave"
|
|
|
|
|
onpaneload="gSyncPane.init()">
|
|
|
|
|
|
|
|
|
|
<preferences>
|
|
|
|
|
<preference id="engine.bookmarks" name="services.sync.engine.bookmarks" type="bool"/>
|
|
|
|
|
<preference id="engine.history" name="services.sync.engine.history" type="bool"/>
|
|
|
|
|
<preference id="engine.tabs" name="services.sync.engine.tabs" type="bool"/>
|
|
|
|
|
<preference id="engine.prefs" name="services.sync.engine.prefs" type="bool"/>
|
|
|
|
|
<preference id="engine.passwords" name="services.sync.engine.passwords" type="bool"/>
|
|
|
|
|
</preferences>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script type="application/javascript"
|
|
|
|
|
src="chrome://browser/content/preferences/sync.js"/>
|
|
|
|
|
<script type="application/javascript"
|
|
|
|
|
src="chrome://browser/content/syncUtils.js"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<deck id="weavePrefsDeck">
|
|
|
|
|
<vbox id="noAccount" align="center">
|
|
|
|
|
<spacer flex="1"/>
|
|
|
|
|
<button id="setupButton"
|
|
|
|
|
label="&setupButton.label;"
|
|
|
|
|
accesskey="&setupButton.accesskey;"
|
|
|
|
|
oncommand="gSyncPane.openSetup();"/>
|
|
|
|
|
<separator/>
|
|
|
|
|
<description id="syncDesc" flex="1">
|
|
|
|
|
&weaveDesc.label;
|
|
|
|
|
</description>
|
|
|
|
|
<spacer flex="3"/>
|
|
|
|
|
</vbox>
|
|
|
|
|
<vbox id="hasAccount">
|
|
|
|
|
<groupbox>
|
|
|
|
|
<caption label="&accountGroupboxCaption.label;"/>
|
|
|
|
|
<grid>
|
|
|
|
|
<rows>
|
|
|
|
|
<row align="center">
|
2010-09-15 06:55:04 -07:00
|
|
|
|
<label value="¤tAccount.label;" control="currentAccount"/>
|
|
|
|
|
<textbox id="currentAccount" readonly="true">
|
2010-08-02 16:37:56 -07:00
|
|
|
|
<image/>
|
|
|
|
|
</textbox>
|
|
|
|
|
<hbox align="center">
|
|
|
|
|
<button id="connectButton" oncommand="gSyncPane.handleConnectCommand()"/>
|
|
|
|
|
<image id="connectThrobber"
|
|
|
|
|
hidden="true"/>
|
|
|
|
|
</hbox>
|
|
|
|
|
</row>
|
|
|
|
|
<row id="loginFeedbackRow" hidden="true">
|
|
|
|
|
<spacer/>
|
|
|
|
|
<label id="loginError" value=""/>
|
|
|
|
|
<hbox>
|
|
|
|
|
<label class="text-link"
|
|
|
|
|
onclick="gSyncPane.updatePass(); return false;"
|
|
|
|
|
value="&updatePass.label;"/>
|
|
|
|
|
<label class="text-link"
|
|
|
|
|
onclick="gSyncPane.resetPass(); return false;"
|
|
|
|
|
value="&resetPass.label;"/>
|
|
|
|
|
</hbox>
|
|
|
|
|
</row>
|
|
|
|
|
<!-- XXXzpao We should make this behave like the "details" view in CRH.
|
|
|
|
|
do in followup (bug 583441) -->
|
|
|
|
|
<row id="manageAccountControls" hidden="true">
|
|
|
|
|
<spacer/>
|
|
|
|
|
<vbox class="indent">
|
2010-09-15 06:55:04 -07:00
|
|
|
|
<label class="text-link"
|
|
|
|
|
onclick="gSyncPane.openQuotaDialog(); return false;"
|
|
|
|
|
value="&viewQuota.label;"/>
|
2010-08-02 16:37:56 -07:00
|
|
|
|
<label class="text-link"
|
|
|
|
|
onclick="gSyncUtils.changePassword(); return false;"
|
|
|
|
|
value="&changePassword.label;"/>
|
|
|
|
|
<label class="text-link"
|
|
|
|
|
onclick="gSyncUtils.resetPassphrase(); return false;"
|
2010-09-07 18:37:46 -07:00
|
|
|
|
value="&mySyncKey.label;"/>
|
2010-08-02 16:37:56 -07:00
|
|
|
|
<label class="text-link"
|
|
|
|
|
onclick="gSyncPane.resetSync(); return false;"
|
|
|
|
|
value="&resetSync.label;"/>
|
|
|
|
|
<label class="text-link"
|
|
|
|
|
onclick="gSyncPane.startOver(true); return false;"
|
2010-09-15 06:55:04 -07:00
|
|
|
|
value="&stopUsingAccount.label;"/>
|
2010-08-02 16:37:56 -07:00
|
|
|
|
</vbox>
|
|
|
|
|
<spacer/>
|
|
|
|
|
</row>
|
|
|
|
|
<row>
|
|
|
|
|
<spacer/>
|
|
|
|
|
<button id="manageAccountExpander"
|
|
|
|
|
class="expander-down"
|
|
|
|
|
label="&manageAccount.label;"
|
|
|
|
|
accesskey="&manageAccount.accesskey;"
|
|
|
|
|
align="left"
|
|
|
|
|
oncommand="gSyncPane.handleExpanderClick()"/>
|
|
|
|
|
<spacer/>
|
|
|
|
|
</row>
|
|
|
|
|
</rows>
|
|
|
|
|
</grid>
|
2010-12-09 18:28:41 -08:00
|
|
|
|
<!-- TODO l10n -->
|
|
|
|
|
<label class="text-link"
|
|
|
|
|
onclick="gSyncPane.openAddDevice(); return false;"
|
|
|
|
|
value="Add a Device"/>
|
2010-08-02 16:37:56 -07:00
|
|
|
|
</groupbox>
|
|
|
|
|
<groupbox>
|
|
|
|
|
<caption label="&syncPrefsCaption.label;"/>
|
|
|
|
|
<grid>
|
2010-09-07 18:37:46 -07:00
|
|
|
|
<columns>
|
|
|
|
|
<column/>
|
|
|
|
|
<column flex="1"/>
|
|
|
|
|
</columns>
|
2010-08-02 16:37:56 -07:00
|
|
|
|
<rows>
|
|
|
|
|
<row align="center">
|
|
|
|
|
<label value="&syncComputerName.label;"
|
|
|
|
|
accesskey="&syncComputerName.accesskey;"
|
|
|
|
|
control="syncComputerName"/>
|
|
|
|
|
<textbox id="syncComputerName"
|
|
|
|
|
onchange="gSyncUtils.changeName(this)"/>
|
|
|
|
|
</row>
|
2010-09-07 18:37:46 -07:00
|
|
|
|
<row>
|
|
|
|
|
<label value="&syncMy.label;" />
|
|
|
|
|
<vbox>
|
|
|
|
|
<checkbox label="&engine.bookmarks.label;"
|
|
|
|
|
accesskey="&engine.bookmarks.accesskey;"
|
|
|
|
|
preference="engine.bookmarks"/>
|
|
|
|
|
<checkbox label="&engine.passwords.label;"
|
|
|
|
|
accesskey="&engine.passwords.accesskey;"
|
|
|
|
|
preference="engine.passwords"/>
|
|
|
|
|
<checkbox label="&engine.prefs.label;"
|
|
|
|
|
accesskey="&engine.prefs.accesskey;"
|
|
|
|
|
preference="engine.prefs"/>
|
|
|
|
|
<checkbox label="&engine.history.label;"
|
|
|
|
|
accesskey="&engine.history.accesskey;"
|
|
|
|
|
preference="engine.history"/>
|
|
|
|
|
<checkbox label="&engine.tabs.label;"
|
|
|
|
|
accesskey="&engine.tabs.accesskey;"
|
|
|
|
|
preference="engine.tabs"/>
|
|
|
|
|
</vbox>
|
|
|
|
|
</row>
|
2010-08-02 16:37:56 -07:00
|
|
|
|
</rows>
|
|
|
|
|
</grid>
|
|
|
|
|
<separator/>
|
|
|
|
|
</groupbox>
|
|
|
|
|
<hbox id="tosPP" pack="center">
|
|
|
|
|
<label class="text-link"
|
|
|
|
|
onclick="event.stopPropagation();gSyncUtils.openToS();"
|
|
|
|
|
value="&prefs.tosLink.label;"/>
|
|
|
|
|
<label class="text-link"
|
2010-09-15 06:55:05 -07:00
|
|
|
|
onclick="event.stopPropagation();gSyncUtils.openPrivacyPolicy();"
|
2010-08-02 16:37:56 -07:00
|
|
|
|
value="&prefs.ppLink.label;"/>
|
|
|
|
|
</hbox>
|
|
|
|
|
</vbox>
|
|
|
|
|
</deck>
|
|
|
|
|
</prefpane>
|
|
|
|
|
</overlay>
|