Cleaning up the contents.rdf and fixing the js error
This commit is contained in:
srilatha%netscape.com 2001-09-18 22:26:16 +00:00
Родитель 1912ef3390
Коммит 2fe1a00bab
3 изменённых файлов: 18 добавлений и 20 удалений

Просмотреть файл

@ -33,8 +33,6 @@
<RDF:li resource="chrome://messenger/content/addressbook/abSelectAddressesDialog.xul"/> <RDF:li resource="chrome://messenger/content/addressbook/abSelectAddressesDialog.xul"/>
<RDF:li resource="chrome://editor/content/editor.xul"/> <RDF:li resource="chrome://editor/content/editor.xul"/>
<RDF:li resource="chrome://messenger/content/pref-mailnews.xul"/> <RDF:li resource="chrome://messenger/content/pref-mailnews.xul"/>
<RDF:li resource="chrome://messenger/content/messenger.xul"/>
<RDF:li resource="chrome://messenger/content/mail3PaneWindowVertLayout.xul"/>
</RDF:Seq> </RDF:Seq>
@ -112,14 +110,4 @@
<RDF:li>chrome://messenger/content/pref-mailnewsOverlay.xul</RDF:li> <RDF:li>chrome://messenger/content/pref-mailnewsOverlay.xul</RDF:li>
</RDF:Seq> </RDF:Seq>
<!-- mail Integration dialog -->
<RDF:Seq about="chrome://messenger/content/messenger.xul">
<RDF:li>chrome://messenger/content/mailIntegrationOverlay.xul</RDF:li>
</RDF:Seq>
<!-- mail Integration dialog -->
<RDF:Seq about="chrome://messenger/content/mail3PaneWindowVertLayout.xul">
<RDF:li>chrome://messenger/content/mailIntegrationOverlay.xul</RDF:li>
</RDF:Seq>
</RDF:RDF> </RDF:RDF>

Просмотреть файл

@ -21,6 +21,8 @@
*/ */
parent.hPrefWindow.registerOKCallbackFunc( onOK ); parent.hPrefWindow.registerOKCallbackFunc( onOK );
function mailnewsOverlayInit() {
try { try {
var mapiRegistry = Components.classes[ "@mozilla.org/mapiregistry;1" ]. var mapiRegistry = Components.classes[ "@mozilla.org/mapiregistry;1" ].
getService( Components.interfaces.nsIMapiRegistry ); getService( Components.interfaces.nsIMapiRegistry );
@ -29,7 +31,6 @@ catch(ex){
mapiRegistry = null; mapiRegistry = null;
} }
function mailnewsOverlayInit() {
const prefbase = "system.windows.lock_ui."; const prefbase = "system.windows.lock_ui.";
var mailnewsEnableMapi = document.getElementById("mailnewsEnableMapi"); var mailnewsEnableMapi = document.getElementById("mailnewsEnableMapi");
if (mapiRegistry) { if (mapiRegistry) {
@ -61,6 +62,13 @@ function mailnewsOverlayInit() {
function onOK() function onOK()
{ {
try {
var mapiRegistry = Components.classes[ "@mozilla.org/mapiregistry;1" ].
getService( Components.interfaces.nsIMapiRegistry );
}
catch(ex){
mapiRegistry = null;
}
if (mapiRegistry) { if (mapiRegistry) {
if (document.getElementById("mailnewsEnableMapi").checked) if (document.getElementById("mailnewsEnableMapi").checked)
mapiRegistry.setDefaultMailClient(); mapiRegistry.setDefaultMailClient();

Просмотреть файл

@ -156,6 +156,8 @@ pref("font.size.fixed.zh-TW", 16);
pref("font.size.nav4rounding", false); pref("font.size.nav4rounding", false);
pref("system.windows.lock_ui.default_mail_client", false);
pref("netinst.profile.show_profile_wizard", true); pref("netinst.profile.show_profile_wizard", true);
//The following pref is internal to Communicator. Please //The following pref is internal to Communicator. Please