Oops. That was a mistake. Backing out last checkin

(Still not in the build yet.)
This commit is contained in:
curt%netscape.com 2002-08-24 00:48:52 +00:00
Родитель 6f39490c82
Коммит f4e43b7f45
2 изменённых файлов: 33 добавлений и 24 удалений

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

@ -7,7 +7,7 @@
; values.
Run Mode=Normal
Shared Install=FALSE
Shared Install=TRUE
Default AppID=$ProductName$User
Company Name=$CompanyName$
@ -20,7 +20,7 @@ User Agent=$UserAgent$
; WINDISK
; WINDIR
; WINSYSDIR
Path=[PROGRAMFILESDIR]\$CompanyName$\$ProductName$
Path=[PROGRAMFILESDIR]\$CompanyName$\$ProductName$\$XPInstallVersion$
; Sub Path, when set will indicate to Setup to create a subfolder from
; what is offered to the user to change. It will not be shown to the user
@ -167,14 +167,14 @@ Readme App=notepad.exe
; set (Setup Type0, Setup Type1, Setup Type2, Setup Type3).
[Setup Type0]
;*** LOCALIZE ME BABY ***
Description Short=&MFCEmbed
Description Short=&MRE
;*** LOCALIZE ME BABY ***
Description Long=Install MFCEmbed.
Description Long=Install the Mozilla Runtime Environment.
; List of components to install/enable for this Setup Type.
; All other components not listed here will be disabled if
; this Setup Type is selected.
C0=Component MFCEmbed
C0=Component MRE
C1=Component Uninstaller
[Dialog Select Components]
@ -182,7 +182,7 @@ Show Dialog=TRUE
;*** LOCALIZE ME BABY ***
Title=$ProductName$ Setup - Select Components
;*** LOCALIZE ME BABY ***
Message0=MFCEmbed is always installed. Select or clear the additional components you want to install.
Message0=MRE is always installed. Select or clear the additional components you want to install.
[Dialog Select Additional Components]
Show Dialog=FALSE
@ -201,11 +201,20 @@ Message1=These settings allow you to set default Internet preferences for browsi
; Only a maximum of 4 "Windows Integration-Item"s are allowded. Each Item
; shows up as a checkbox in the Windows Integration dialog.
;[Windows Integration-Item0]
;CheckBoxState=FALSE
;Description=Make Mozilla my default Internet browser
;Archive=
[Windows Integration-Item0]
CheckBoxState=FALSE
Description=Make Mozilla my default Internet browser
Archive=
[Windows Integration-Item1]
CheckBoxState=FALSE
Description=Make Mozilla Netcenter my home page
Archive=
[Windows Integration-Item2]
CheckBoxState=FALSE
Description=Use Mozilla Netcenter to search the Web
Archive=
;*** DO NOT LOCALIZE - END ***
[Dialog Program Folder]
@ -433,14 +442,14 @@ Close All Process Windows=TRUE
Attributes=SELECTED|INVISIBLE|FORCE_UPGRADE
Force Upgrade File0=[SETUP PATH]\xpcom.dll
[Component MFCEmbed]
Description Short=MFCEmbed
[Component MRE]
Description Short=Mozilla Runtime Environment
;*** LOCALIZE ME BABY ***
Description Long=MFCEmbed
Archive=mfcembed.xpi
$InstallSize$:mfcembed
Description Long=for use by MRE based applications
Archive=mre.xpi
$InstallSize$:mre
$InstallSizeSystem$
$InstallSizeArchive$:mfcembed.xpi
$InstallSizeArchive$:mre.xpi
Attributes=SELECTED
[Component Uninstaller]
@ -541,7 +550,7 @@ Destination=[SETUP PATH]\Uninstall
Root Key=HKEY_LOCAL_MACHINE
Key=Software\Microsoft\Windows\CurrentVersion\Uninstall\$ProductName$ ($UserAgentShort$)
Name=DisplayName
Name Value=MFCEmbed ($UserAgentShort$)
Name Value=Mozilla Runtime Environment ($UserAgentShort$)
Type=REG_SZ
Decrypt Key=FALSE
Decrypt Name=FALSE

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

@ -85,11 +85,11 @@ if($inRedirIniURL eq "")
}
$seiFileNameGeneric = "nsinstall.exe";
$seiFileNameSpecific = "mfcembed-win32-installer.exe";
$seiStubRootName = "mfcembed-win32-stub-installer";
$seiFileNameSpecific = "mre-win32-installer.exe";
$seiStubRootName = "mre-win32-stub-installer";
$seiFileNameSpecificStub = "$seiStubRootName.exe";
$seuFileNameSpecific = "MFCEmbedUninstall.exe";
$seuzFileNameSpecific = "mfcembeduninstall.zip";
$seuFileNameSpecific = "MREUninstall.exe";
$seuzFileNameSpecific = "mreuninstall.zip";
# set environment vars for use by other .pl scripts called from this script.
if($versionParts[2] eq "0")
@ -102,8 +102,8 @@ else
}
print "The display version is: $versionMain\n";
$ENV{WIZ_nameCompany} = "Mozilla";
$ENV{WIZ_nameProduct} = "MFCEmbed";
$ENV{WIZ_nameProductNoVersion} = "MFCEmbed";
$ENV{WIZ_nameProduct} = "MRE";
$ENV{WIZ_nameProductNoVersion} = "MRE";
$ENV{WIZ_fileMainExe} = "none.exe";
$ENV{WIZ_fileUninstall} = $seuFileNameSpecific;
$ENV{WIZ_fileUninstallZip} = $seuzFileNameSpecific;
@ -123,7 +123,7 @@ if(!(-d "$inStagePath"))
}
# List of components for to create xpi files from
@gComponentList = ("mfcembed");
@gComponentList = ("mre");
if(VerifyComponents()) # return value of 0 means no errors encountered
{