зеркало из https://github.com/mozilla/pjs.git
add very minimal UI, mostly for testing. not part of default build. bug 185689 r=ben,jag
This commit is contained in:
Родитель
f2be9cb6e7
Коммит
2a4341cb7e
|
@ -0,0 +1,44 @@
|
|||
# ***** 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 mozilla.org code.
|
||||
#
|
||||
# The Initial Developer of the Original Code is
|
||||
# Netscape Communications Corporation.
|
||||
# Portions created by the Initial Developer are Copyright (C) 2002
|
||||
# the Initial Developer. All Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
#
|
||||
# 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 *****
|
||||
|
||||
DEPTH = ../../..
|
||||
topsrcdir = @top_srcdir@
|
||||
srcdir = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
|
@ -0,0 +1,27 @@
|
|||
<?xml version="1.0"?>
|
||||
<RDF:RDF xmlns:RDF="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:chrome="http://www.mozilla.org/rdf/chrome#">
|
||||
|
||||
<!-- list all the packages being supplied by this jar -->
|
||||
<RDF:Seq about="urn:mozilla:package:root">
|
||||
<RDF:li resource="urn:mozilla:package:tridentprofile"/>
|
||||
</RDF:Seq>
|
||||
|
||||
<!-- package information -->
|
||||
<RDF:Description about="urn:mozilla:package:tridentprofile"
|
||||
chrome:displayName="Profile Migrator"
|
||||
chrome:author="mozilla.org"
|
||||
chrome:name="profile"
|
||||
chrome:localeVersion="1.3b">
|
||||
</RDF:Description>
|
||||
|
||||
<!-- overlay information -->
|
||||
<RDF:Seq about="urn:mozilla:overlays">
|
||||
<RDF:li resource="chrome://navigator/content/navigatorOverlay.xul"/>
|
||||
</RDF:Seq>
|
||||
|
||||
<RDF:Seq about="chrome://navigator/content/navigatorOverlay.xul">
|
||||
<RDF:li>chrome://tridentprofile/content/tridentNavigatorOverlay.xul</RDF:li>
|
||||
</RDF:Seq>
|
||||
|
||||
</RDF:RDF>
|
|
@ -0,0 +1,77 @@
|
|||
<?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 mozilla.org code.
|
||||
-
|
||||
- The Initial Developer of the Original Code is
|
||||
- Netscape Communications Corporation.
|
||||
- Portions created by the Initial Developer are Copyright (C) 2003
|
||||
- the Initial Developer. All Rights Reserved.
|
||||
-
|
||||
- Contributor(s):
|
||||
-
|
||||
- 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 LGPL or the GPL. 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 SYSTEM "chrome://tridentprofile/locale/tridentNavigatorOverlay.dtd">
|
||||
|
||||
<overlay id="tridentNavigatorOverlay"
|
||||
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
||||
|
||||
<script type="application/x-javascript">
|
||||
<![CDATA[
|
||||
function MigrateIEProfile() {
|
||||
// pose a warning confirmation
|
||||
const CI = Components.interfaces;
|
||||
const CC = Components.classes;
|
||||
const PS = CC["@mozilla.org/embedcomp/prompt-service;1"]
|
||||
.getService(CI.nsIPromptService);
|
||||
var bundle = document.getElementById("bundle_tridentProfile");
|
||||
var title = bundle.getString("trident.migrationTitle");
|
||||
var message = bundle.getString("trident.warningMessage");
|
||||
|
||||
if (PS.confirm(window, title, message)) {
|
||||
|
||||
// perform migration
|
||||
const TPM = CC["@mozilla.org/TridentProfileMigrator;1"]
|
||||
.getService(CI.nsITridentProfileMigrator);
|
||||
TPM.migrateTridentProfile(TPM.PREFERENCES | TPM.COOKIES);
|
||||
}
|
||||
}
|
||||
]]>
|
||||
</script>
|
||||
|
||||
<stringbundleset id="stringbundleset">
|
||||
<stringbundle id="bundle_tridentProfile"
|
||||
src="chrome://tridentprofile/locale/tridentProfile.properties"/>
|
||||
</stringbundleset>
|
||||
<menupopup id="menu_FilePopup">
|
||||
<menuitem id="menu_MigrateIEProfile" label="&tridentMenuMigrate.label;"
|
||||
insertbefore="saveMenuBlockEnd"
|
||||
oncommand="MigrateIEProfile()"/>
|
||||
</menupopup>
|
||||
|
||||
</overlay>
|
|
@ -0,0 +1,8 @@
|
|||
comm.jar:
|
||||
content/tridentprofile/contents.rdf (content/contents.rdf)
|
||||
content/tridentprofile/tridentNavigatorOverlay.xul (content/tridentNavigatorOverlay.xul)
|
||||
|
||||
en-US.jar:
|
||||
locale/en-US/tridentprofile/contents.rdf (locale/en-US/contents.rdf)
|
||||
locale/en-US/tridentprofile/tridentNavigatorOverlay.dtd (locale/en-US/tridentNavigatorOverlay.dtd)
|
||||
locale/en-US/tridentprofile/tridentProfile.properties (locale/en-US/tridentProfile.properties)
|
|
@ -0,0 +1,23 @@
|
|||
<?xml version="1.0"?>
|
||||
<RDF:RDF xmlns:RDF="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:chrome="http://www.mozilla.org/rdf/chrome#">
|
||||
|
||||
<!-- list all the locales being supplied by this package -->
|
||||
<RDF:Seq about="urn:mozilla:locale:root">
|
||||
<RDF:li resource="urn:mozilla:locale:en-US"/>
|
||||
</RDF:Seq>
|
||||
|
||||
<!-- locale information -->
|
||||
<RDF:Description about="urn:mozilla:locale:en-US">
|
||||
<chrome:packages>
|
||||
<RDF:Seq about="urn:mozilla:locale:en-US:packages">
|
||||
<RDF:li resource="urn:mozilla:locale:en-US:tridentprofile"/>
|
||||
</RDF:Seq>
|
||||
</chrome:packages>
|
||||
</RDF:Description>
|
||||
|
||||
<!-- Version Information. State that we work only with major version of this
|
||||
package. -->
|
||||
<RDF:Description about="urn:mozilla:locale:en-US:tridentprofile"
|
||||
chrome:localeVersion="1.3b"/>
|
||||
</RDF:RDF>
|
|
@ -0,0 +1,4 @@
|
|||
<!-- LOCALIZATION NOTE: file menu overlay from trident profile migration
|
||||
extension -->
|
||||
|
||||
<!ENTITY tridentMenuMigrate.label "Migrate IE Profile">
|
|
@ -0,0 +1,2 @@
|
|||
trident.migrationTitle=IE Profile Migration
|
||||
trident.warningMessage=Import Internet Explorer internet preferences and cookies?
|
Загрузка…
Ссылка в новой задаче