From 2b634ab70764cfa9becb07588ed526fc11b5d25b Mon Sep 17 00:00:00 2001 From: "ben%bengoodger.com" Date: Wed, 8 Oct 2003 08:20:11 +0000 Subject: [PATCH] Firebird Installer Component XPI Install Scripts, default installer wizard ini files, and installer configuration script. --- browser/installer/windows/abe.jst | 0 browser/installer/windows/adt.jst | 41 + browser/installer/windows/browser.jst | 544 ++++++++ browser/installer/windows/chatzilla.jst | 28 + browser/installer/windows/config.it | 1201 +++++++++++++++++ browser/installer/windows/deflenus.jst | 42 + browser/installer/windows/editor.jst | 18 + .../windows/firebird-win32-stub-installer.jst | 49 + browser/installer/windows/inspector.jst | 25 + browser/installer/windows/install.it | 129 ++ browser/installer/windows/installer.cfg | 10 + browser/installer/windows/langende.jst | 47 + browser/installer/windows/langenus.jst | 91 ++ browser/installer/windows/mail.jst | 474 +++++++ browser/installer/windows/packages-static | 257 ++++ browser/installer/windows/psm.jst | 51 + browser/installer/windows/redirect.it | 4 + browser/installer/windows/regus.jst | 93 ++ browser/installer/windows/spellcheck.jst | 25 + browser/installer/windows/talkback.jst | 9 + browser/installer/windows/uninstall.it | 166 +++ browser/installer/windows/venkman.jst | 22 + browser/installer/windows/xpcom.jst | 111 ++ 23 files changed, 3437 insertions(+) create mode 100644 browser/installer/windows/abe.jst create mode 100644 browser/installer/windows/adt.jst create mode 100644 browser/installer/windows/browser.jst create mode 100644 browser/installer/windows/chatzilla.jst create mode 100644 browser/installer/windows/config.it create mode 100644 browser/installer/windows/deflenus.jst create mode 100644 browser/installer/windows/editor.jst create mode 100644 browser/installer/windows/firebird-win32-stub-installer.jst create mode 100644 browser/installer/windows/inspector.jst create mode 100644 browser/installer/windows/install.it create mode 100644 browser/installer/windows/installer.cfg create mode 100644 browser/installer/windows/langende.jst create mode 100644 browser/installer/windows/langenus.jst create mode 100644 browser/installer/windows/mail.jst create mode 100644 browser/installer/windows/packages-static create mode 100644 browser/installer/windows/psm.jst create mode 100644 browser/installer/windows/redirect.it create mode 100644 browser/installer/windows/regus.jst create mode 100644 browser/installer/windows/spellcheck.jst create mode 100644 browser/installer/windows/talkback.jst create mode 100644 browser/installer/windows/uninstall.it create mode 100644 browser/installer/windows/venkman.jst create mode 100644 browser/installer/windows/xpcom.jst diff --git a/browser/installer/windows/abe.jst b/browser/installer/windows/abe.jst new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/browser/installer/windows/adt.jst b/browser/installer/windows/adt.jst new file mode 100644 index 000000000000..68a24cea326f --- /dev/null +++ b/browser/installer/windows/adt.jst @@ -0,0 +1,41 @@ +var err = initInstall("Developer Tools", "Developer Tools", "$Version$"); +logComment("initInstall: " + err); + +// JavaScript Debugger +addFile("Venkman Service", + "bin/components/venkman-service.js", + getFolder("Components"), + ""); + +addFile("Venkman Chrome", + "bin/chrome/venkman.jar", // jar source folder + getFolder("Chrome"), // target folder + ""); // target subdir + +registerChrome(PACKAGE | DELAYED_CHROME, getFolder("Chrome","venkman.jar"), "content/venkman/"); +registerChrome(SKIN | DELAYED_CHROME, getFolder("Chrome","venkman.jar"), "skin/modern/venkman/"); +registerChrome(LOCALE | DELAYED_CHROME, getFolder("Chrome","venkman.jar"), "locale/en-US/venkman/"); + +// DOM Inspector +var fProgram = getFolder("Program"); +logComment("fProgram: " + fProgram); + +err = addDirectory("", "$Version$", "bin", fProgram, "", true); +logComment("addDirectory: " + err); + +addFile("Inspector Command Line Handler", + "bin/components/inspector-cmdline.js", + getFolder("Components"), + ""); + +var jarFolder = getFolder("Chrome", "inspector.jar"); +registerChrome(PACKAGE | DELAYED_CHROME, jarFolder, "content/inspector/"); +registerChrome(SKIN | DELAYED_CHROME, jarFolder, "skin/modern/inspector/"); +registerChrome(SKIN | DELAYED_CHROME, jarFolder, "skin/classic/inspector/"); +registerChrome(LOCALE | DELAYED_CHROME, jarFolder, "locale/en-US/inspector/"); + +err = getLastError(); +if (err==SUCCESS) + performInstall(); +else + cancelInstall(err); diff --git a/browser/installer/windows/browser.jst b/browser/installer/windows/browser.jst new file mode 100644 index 000000000000..df67454c7f66 --- /dev/null +++ b/browser/installer/windows/browser.jst @@ -0,0 +1,544 @@ +function registerProgramFolderKey(winreg, fFolderPath) +{ + var subkey; + var err; + + /* set the Program Folder Path in the Mozilla key in the Windows Registry */ + winreg.createKey("SOFTWARE\\$CompanyName$",""); + + subkey = "SOFTWARE\\$CompanyName$\\$ProductName$"; + winreg.createKey(subkey,""); + err = winreg.setValueString(subkey, "CurrentVersion", "$UserAgent$"); + + subkey = "SOFTWARE\\$CompanyName$\\$ProductName$\\$UserAgent$"; + winreg.createKey(subkey,""); + + subkey = "SOFTWARE\\$CompanyName$\\$ProductName$\\$UserAgent$\\Main"; + winreg.createKey(subkey,""); + err = winreg.setValueString(subkey, "Program Folder Path", fFolderPath); +} + +function createShortcuts() +{ + var subkey; + var valname; + var szStartMenuPrograms; + var szStartMenu; + var szFolderDesktop; + var szFolderQuickLaunch; + var szFolderSendTo; + var szFolderAppData; + var szStartupFolder; + var winreg; + var fWindows; + var fTemp; + var fProgram; + var fDefShortcuts; + var fileExe; + var fileReadme; + var fileLicense; + var scExeDesc; + var scReadmeDesc; + var scLicenseDesc; + var scProfileDesc; + var scProfileDescParam; + var scFolderName; + var fFolderDesktop; + var fFolderPath; + var fFolderPathStr; + var fFolderQuickLaunch; + var is_winnt; + var szCurrentVersion; + var folderQuickLaunchExists; + + winreg = getWinRegistry(); + fWindows = getFolder("Windows"); + fProgram = getFolder("Program"); + fDefShortcuts = getFolder("Program","defaults/shortcuts"); + fTemp = fProgram + "$MainExeFile$"; + fileExe = getFolder("file:///", fTemp); + fileReadme = getFolder("file:///", fProgram + "readme.txt"); + fileLicense = getFolder("file:///", fProgram + "license.txt"); + scExeDesc = "$ProductName$"; + scReadmeDesc = "Readme"; + scLicenseDesc = "License"; + scProfileDesc = "Profile Manager"; + scProfileDescParam = "-ProfileManager"; + scFolderName = "$ProductName$"; + if(winreg != null) + { + /* determine if the script is running under NT or not */ + winreg.setRootKey(winreg.HKEY_LOCAL_MACHINE); + subkey = "SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion"; + szCurrentVersion = winreg.getValueString(subkey, "CurrentVersion"); + logComment("szCurrentVersion: " + szCurrentVersion); + if((szCurrentVersion == "") || (szCurrentVersion == null)) + { + is_winnt = false; + } + else + { + is_winnt = true; + } + + logComment("is_winnt value: " + is_winnt); + if(!is_winnt || restrictedAccess) + { + winreg.setRootKey(winreg.HKEY_CURRENT_USER); + subkey = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders"; + szStartMenuPrograms = winreg.getValueString(subkey, "Programs"); + szStartMenu = winreg.getValueString(subkey, "Start Menu"); + szFolderDesktop = winreg.getValueString(subkey, "Desktop"); + szStartupFolder = winreg.getValueString(subkey, "Startup"); + } + else + { + winreg.setRootKey(winreg.HKEY_LOCAL_MACHINE); + subkey = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders"; + szStartMenuPrograms = winreg.getValueString(subkey, "Common Programs"); + szStartMenu = winreg.getValueString(subkey, "Common Start Menu"); + szFolderDesktop = winreg.getValueString(subkey, "Common Desktop"); + szStartupFolder = winreg.getValueString(subkey, "Common Startup"); + } + + winreg.setRootKey(winreg.HKEY_CURRENT_USER); + subkey = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders"; + szFolderSendTo = winreg.getValueString(subkey, "SendTo"); + + subkey = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders"; + szFolderAppData = winreg.getValueString(subkey, "AppData"); + + // locate the Quick Launch folder + szFolderQuickLaunch = szFolderAppData + "\\Microsoft\\Internet Explorer\\Quick Launch"; + fFolderQuickLaunch = getFolder("file:///", szFolderQuickLaunch); + folderQuickLaunchExists = File.isDirectory(fFolderQuickLaunch); + if(!folderQuickLaunchExists) + { + subkey = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\GrpConv\\MapGroups"; + szFolderQuickLaunch = winreg.getValueString(subkey, "Quick Launch"); + folderQuickLaunchExists = File.isDirectory(fFolderPath); + if(folderQuickLaunchExists) + fFolderQuickLaunch = getFolder("file:///", szFolderQuickLaunch); + } + logComment("folderQuickLaunchExists: " + folderQuickLaunchExists); + + subkey = "SOFTWARE\\$CompanyName$\\$ProductName$\\$UserAgent$\\Main"; + fFolderPathStr = winreg.getValueString(subkey, "Program Folder Path"); + if((fFolderPathStr == "") || (fFolderPathStr == null)) + { + fTemp = szStartMenuPrograms + "\\" + scFolderName; + fFolderPath = getFolder("file:///", fTemp); + } + else + { + /* convert the path string to a path folder object */ + fFolderPath = getFolder("file:///", fFolderPathStr); + } + /* convert the path string to a path folder object */ + fFolderDesktop = getFolder("file:///", szFolderDesktop); + + logComment("Folder StartMenuPrograms: " + szStartMenuPrograms); + logComment("Folder StartMenu : " + szStartMenu); + logComment("Folder FolderDesktop : " + szFolderDesktop); + logComment("Folder FolderSendTo : " + szFolderSendTo); + logComment("Folder FolderQuickLaunch: " + szFolderQuickLaunch); + logComment("fileExe : " + fileExe); + logComment("fFolderPath : " + fFolderPath); + logComment("scExeDesc : " + scExeDesc); + logComment("fProgram : " + fProgram); + + /* explicitly create the fFolderPath even though the windowsShortcut function creates the folder. + * This is so that the folder creation gets logged for uninstall to remove it. */ + if(!File.exists(fFolderPath)) + File.dirCreate(fFolderPath); + if(!File.exists(fDefShortcuts)) + File.dirCreate(fDefShortcuts); + + /* create the shortcuts */ + File.windowsShortcut(fileExe, fFolderDesktop, scExeDesc, fProgram, "", fileExe, 0); + File.windowsShortcut(fileExe, fFolderPath, scExeDesc, fProgram, "", fileExe, 0); + File.windowsShortcut(fileExe, fDefShortcuts, scExeDesc, fProgram, "", fileExe, 0); + File.windowsShortcut(fileExe, fFolderPath, scProfileDesc, fProgram, scProfileDescParam, fileExe, 0); + File.windowsShortcut(fileReadme, fFolderPath, scReadmeDesc, fProgram, "", fileReadme, 0); + File.windowsShortcut(fileLicense, fFolderPath, scLicenseDesc, fProgram, "", fileLicense, 0); + + // create shortcut in the Quick Launch folder + if(folderQuickLaunchExists) + File.windowsShortcut(fileExe, fFolderQuickLaunch, scExeDesc, fProgram, "", fileExe, 0); + + if(!restrictedAccess) + { + winreg.setRootKey(winreg.HKEY_LOCAL_MACHINE); + registerProgramFolderKey(winreg, fFolderPath); + } + + winreg.setRootKey(winreg.HKEY_CURRENT_USER); + registerProgramFolderKey(winreg, fFolderPath); + + /* remove turbo mode shortcut */ + + fFolderPath = getFolder("file:///", szStartupFolder); + + /* remove shortcut from the startup folder */ + + basename = "$MainExeFile$" + fTemp = fFolderPath + basename + ".lnk"; + fFolderPath = getFolder("file:///", fTemp); + if (File.exists(fFolderPath)) + { + logComment("Removing Quick Launch shortcut from Windows startup folder\n"); + fileDelete(fFolderPath); + } + + subkey = "SOFTWARE\\$CompanyName$\\$ProductName$\\$UserAgent$\\Setup"; + regvalue = winreg.getValueString(subkey, "browserargs"); + + /* log this so if the user turns on turbo mode in the browser the uninstaller will undo it */ + + logComment( "store registry value string: HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Run [Mozilla Quick Launch]"); + if (regvalue && regvalue != undefined && regvalue.length != 0) + { + var value = new String(regvalue); + var index = value.indexOf("turbo"); + if (index != -1) + { + var index2 = value.indexOf("=", index); + if (index2 != -1) + { + turboarg = value.slice(index2 + 1, index2 + 2); + winreg.setRootKey(winreg.HKEY_CURRENT_USER); + subkey = "Software\\Microsoft\\Windows\\CurrentVersion\\Run"; + valname = "Mozilla Quick Launch"; + if ( turboarg == "Y" || turboarg == "y") + { + fTemp = fileExe; + fileExe = getFolder("file:///", fTemp); + newKey = '"' + fileExe + '"' + ' -turbo'; + winreg.createKey(subkey,""); + winreg.setValueString(subkey, valname, newKey); + } + else + { + winreg.deleteValue(subkey, valname); + } + } + } + } + } + else + { + logComment("winreg is null"); + } +} +function IsWinnt() +{ + /* Determines if the script is running under NT or not. + * + */ + var winreg = getWinRegistry(); + var subkey; + var szCurrentVersion; + + winreg.setRootKey(winreg.HKEY_LOCAL_MACHINE); + subkey = "SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion"; + szCurrentVersion = winreg.getValueString(subkey, "CurrentVersion"); + logComment("szCurrentVersion: " + szCurrentVersion); + if((szCurrentVersion == "") || (szCurrentVersion == null)) + { + return false; + } + else + { + return true; + } +} + +function registerMainKeys(winreg) +{ + var subkey; //the name of the subkey you are poking around in + var data; + var err; + + winreg.createKey("SOFTWARE\\$CompanyName$",""); + + subkey = "SOFTWARE\\$CompanyName$\\$ProductName$"; + winreg.createKey(subkey,""); + err = winreg.setValueString(subkey, "CurrentVersion", "$UserAgent$"); + + subkey = "SOFTWARE\\$CompanyName$\\$ProductName$\\$UserAgent$"; + winreg.createKey(subkey,""); + + subkey = "SOFTWARE\\$CompanyName$\\$ProductName$\\$UserAgent$\\Main"; + winreg.createKey(subkey,""); + + err = winreg.setValueString(subkey, "Install Directory", fProgram); + + // The following keys are required to be created to supply information + // about the location of the Gecko Embedded Client to 3rd party apps. + // "SOFTWARE\\Mozilla" must not be localized! + subkey = "SOFTWARE\\Mozilla\\$ProductName$ $UserAgentShort$"; + winreg.createKey(subkey,""); + err = winreg.setValueString(subkey, "GeckoVer", "1.0.1"); + + subkey = "SOFTWARE\\Mozilla\\$ProductName$ $UserAgentShort$\\Extensions"; + winreg.createKey(subkey,""); + err = winreg.setValueString(subkey, "Components", fProgram + "Components"); + err = winreg.setValueString(subkey, "Plugins", fProgram + "Plugins"); + + subkey = "SOFTWARE\\Mozilla\\$ProductName$ $UserAgentShort$\\bin"; + winreg.createKey(subkey,""); + err = winreg.setValueString(subkey, "PathToExe", fProgram + "$MainExeFile$"); + + subkey = "SOFTWARE\\$CompanyName$\\$ProductName$\\$UserAgent$\\Main"; + err = winreg.setValueString(subkey, "PathToExe", fProgram + "$MainExeFile$"); + + // Register as a windows XP internet browser + if( IsWinnt() ) + { + subkey = "Software\\Clients\\StartMenuInternet\\$MainExeFile$"; + winreg.setRootKey(winreg.HKEY_LOCAL_MACHINE); + + winreg.createKey(subkey, ""); + winreg.createKey(subkey + "\\DefaultIcon", ""); + winreg.createKey(subkey + "\\shell", ""); + winreg.createKey(subkey + "\\shell\\open", ""); + winreg.createKey(subkey + "\\shell\\open\\command", ""); + winreg.createKey(subkey + "\\InstallInfo", ""); + winreg.setValueString(subkey, "", "$ProductNameInternal$"); + + // path does not need to be quoted per MS doc + data = fProgram + "$MainExeFile$,0"; + winreg.setValueString(subkey + "\\DefaultIcon", "", data); + + data = "\"" + fProgram + "$MainExeFile$\""; + winreg.setValueString(subkey + "\\shell\\open\\command", "", data); + + data = "\"" + fProgram + "uninstall\\$UninstallFile$\" /ua \"$UserAgent$\" /hs browser"; + winreg.setValueString(subkey + "\\InstallInfo", "HideIconsCommand", data); + + winreg.setValueNumber(subkey + "\\InstallInfo", "IconsVisible", 1); + + data = "\"" + fProgram + "$MainExeFile$\" -silent -nosplash -setDefaultBrowser "; + winreg.setValueString(subkey + "\\InstallInfo", "ReinstallCommand", data); + + data = "\"" + fProgram + "uninstall\\$UninstallFile$\" /ua \"$UserAgent$\" /ss browser"; + winreg.setValueString(subkey + "\\InstallInfo", "ShowIconsCommand", data); + } +} + +function updateWinReg() +{ + //Notes: + // can't use a double backslash before subkey - Windows already puts it in. + // subkeys have to exist before values can be put in. + var winreg = getWinRegistry(); + var subkey; //the name of the subkey you are poking around in + var err; + var ikwDefined; + + if(winreg != null) + { + /* This will check to see if the user has restricted access or not. + * It checks to see if HKEY_LOCALMACHINE\SOFTWARE is writable. If + * it is, then access is not restricted. This is only used to + * determine which Desktop, Programs, and Start Menu folders + * are to used: common or per user + */ + restrictedAccess = false; + ikwDefined = typeof(winreg.isKeyWritable); + logComment("winreg.isKeyWritable(): " + ikwDefined); + if(ikwDefined == "function") + { + winreg.setRootKey(winreg.HKEY_LOCAL_MACHINE); + if(!winreg.isKeyWritable("SOFTWARE")) + restrictedAccess = true; + } + + logComment("restrictedAccess value: " + restrictedAccess); + if(!restrictedAccess) + { + winreg.setRootKey(winreg.HKEY_LOCAL_MACHINE); + registerMainKeys(winreg); + + // set the App Paths key here + subkey = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\$MainExeFile$"; + winreg.createKey(subkey,""); + err = winreg.setValueString(subkey, "", fProgram + "$MainExeFile$"); + err = winreg.setValueString(subkey, "Path", fProgram); + } + + winreg.setRootKey(winreg.HKEY_CURRENT_USER); + registerMainKeys(winreg); + } +} + +function upgradeCleanup() +{ + // Obsolete files from Netscape 6.0 and Netscape 6.01 that + // need to be cleaned up. + + // For now, since we're new, we have no such files. +} + +// main +var srDest; +var err; +var err2; +var fProgram; +var fWindowsSystem; +var fileComponentRegStr; +var fileComponentReg; +var restrictedAccess; +var fileToRegister; +var args; +var gGreLocal = false; + +args = new String(Install.arguments); +logComment("args: " + args); + +// If -gGreLocal is passed in, then we need to *not* cleanup GRE files if they +// exist in the browser dir. +// The default is to delete any GRE files because we default GRE will be global. +if(args == "-greLocal") + gGreLocal = true; + +srDest = $SpaceRequired$:bin; +err = initInstall("$ProductName$", "Browser", "$Version$"); +logComment("initInstall: " + err); + +fProgram = getFolder("Program"); +fWindowsSystem = getFolder("Win System"); +logComment("fProgram: " + fProgram); + +if(verifyDiskSpace(fProgram, srDest)) +{ + setPackageFolder(fProgram); + + upgradeCleanup(); + err = addDirectory("", + "$Version$", + "bin", // dir name in jar to extract + fProgram, // Where to put this file (Returned from GetFolder) + "", // subdir name to create relative to fProgram + true); // Force Flag + logComment("addDirectory() of Program returned: " + err); + + // check return value + if( err == SUCCESS ) + { + fileToRegister = getFolder(fProgram, "AccessibleMarshal.dll"); + err2 = File.windowsRegisterServer(fileToRegister); + logComment("windowsRegisterServer() returned: " + err2); + updateWinReg(); // Finish registering above marshalling dll's + + createShortcuts(); + + // we don't want to fail on errors for the above two + resetError(); + + // register chrome + registerChrome(CONTENT | DELAYED_CHROME, getFolder("Chrome", "browser.jar"), "content/browser/"); + registerChrome(SKIN | DELAYED_CHROME, getFolder("Chrome", "classic.jar"), "skin/classic/browser/"); + + registerChrome(CONTENT | DELAYED_CHROME, getFolder("Chrome", "toolkit.jar"), "content/passwordmgr/"); + registerChrome(CONTENT | DELAYED_CHROME, getFolder("Chrome", "toolkit.jar"), "content/mozapps/"); + registerChrome(SKIN | DELAYED_CHROME, getFolder("Chrome", "classic.jar"), "skin/classic/mozapps/"); + + registerChrome(CONTENT | DELAYED_CHROME, getFolder("Chrome","comm.jar"),"content/autoconfig/"); + registerChrome(CONTENT | DELAYED_CHROME, getFolder("Chrome","comm.jar"),"content/necko/"); + registerChrome(CONTENT | DELAYED_CHROME, getFolder("Chrome","comm.jar"),"content/cookie/"); + registerChrome(CONTENT | DELAYED_CHROME, getFolder("Chrome","comm.jar"),"content/wallet/"); + registerChrome(CONTENT | DELAYED_CHROME, getFolder("Chrome","comm.jar"),"content/xbl-marquee/"); + + registerChrome(CONTENT | DELAYED_CHROME, getFolder("Chrome","toolkit.jar"),"content/global/"); + registerChrome(CONTENT | DELAYED_CHROME, getFolder("Chrome","toolkit.jar"),"content/global-region/"); + registerChrome(CONTENT | DELAYED_CHROME, getFolder("Chrome","toolkit.jar"),"content/global-platform/"); + registerChrome(SKIN | DELAYED_CHROME, getFolder("Chrome","classic.jar"),"skin/classic/global/"); + + // XXXben Stuff that will become obsolete + registerChrome(CONTENT | DELAYED_CHROME, getFolder("Chrome","comm.jar"),"content/navigator/"); + registerChrome(CONTENT | DELAYED_CHROME, getFolder("Chrome","comm.jar"),"content/navigator-region/"); + registerChrome(CONTENT | DELAYED_CHROME, getFolder("Chrome","comm.jar"),"content/navigator-platform/"); + registerChrome(SKIN | DELAYED_CHROME, getFolder("Chrome","classic.jar"),"skin/classic/navigator/"); + + registerChrome(CONTENT | DELAYED_CHROME, getFolder("Chrome","comm.jar"),"content/communicator/"); + registerChrome(CONTENT | DELAYED_CHROME, getFolder("Chrome","comm.jar"),"content/communicator-region/"); + registerChrome(CONTENT | DELAYED_CHROME, getFolder("Chrome","comm.jar"),"content/communicator-platform/"); + registerChrome(SKIN | DELAYED_CHROME, getFolder("Chrome","classic.jar"),"skin/classic/communicator/"); + + + // We need to register the psm chrome files. + // We're checking to see if they exist first in case + // they were not built and packaged up. + var pki = getFolder("Chrome", "pippki.jar"); + if(File.exists(pki)) + registerChrome(CONTENT | DELAYED_CHROME, pki, "content/pippki/"); + + var nss = getFolder("Chrome", "pipnss.jar"); + if(File.exists(nss)) + registerChrome(CONTENT | DELAYED_CHROME, nss, "content/pipnss/"); + + /* Log files that are created after the installer is done, so they can be uninstalled */ + logComment("Installing: " + fProgram + ".autoreg"); + logComment("Installing: " + fProgram + "Xpcs Registry.dat"); + logComment("Installing: " + fProgram + "xpcom.log"); + logComment("Create Folder: " + fProgram + "components"); + logComment("Installing: " + fProgram + "components\\xpti.dat"); + logComment("Installing: " + fProgram + "components\\xptitemp.dat"); + logComment("Installing: " + fProgram + "components\\compreg.dat"); + logComment("Create Folder: " + fProgram + "components\\Netscape"); + logComment("Create Folder: " + fProgram + "components\\Netscape\\MozillaTrunk"); + logComment("Installing: " + fProgram + "components\\Netscape\\MozillaTrunk\\manifest.ini"); + logComment("Installing: " + fProgram + "components\\Netscape\\MozillaTrunk\\permdata.box"); + logComment("Installing: " + fProgram + "components\\Netscape\\MozillaTrunk\\Talkback.ini"); + logComment("Create Folder: " + fProgram + "chrome"); + logComment("Installing: " + fProgram + "chrome\\installed-chrome.txt"); + logComment("Installing: " + fProgram + "chrome\\chrome.rdf"); + logComment("Create Folder: " + fProgram + "chrome\\overlayinfo"); + logComment("Create Folder: " + fProgram + "chrome\\overlayinfo\\cookie"); + logComment("Create Folder: " + fProgram + "chrome\\overlayinfo\\cookie\\content"); + logComment("Installing: " + fProgram + "chrome\\overlayinfo\\cookie\\content\\overlays.rdf"); + logComment("Create Folder: " + fProgram + "chrome\\overlayinfo\\inspector"); + logComment("Create Folder: " + fProgram + "chrome\\overlayinfo\\inspector\\content"); + logComment("Installing: " + fProgram + "chrome\\overlayinfo\\inspector\\content\\overlays.rdf"); + logComment("Create Folder: " + fProgram + "chrome\\overlayinfo\\communicator"); + logComment("Create Folder: " + fProgram + "chrome\\overlayinfo\\communicator\\content"); + logComment("Installing: " + fProgram + "chrome\\overlayinfo\\communicator\\content\\overlays.rdf"); + logComment("Create Folder: " + fProgram + "chrome\\overlayinfo\\editor"); + logComment("Create Folder: " + fProgram + "chrome\\overlayinfo\\editor\\content"); + logComment("Installing: " + fProgram + "chrome\\overlayinfo\\editor\\content\\overlays.rdf"); + logComment("Create Folder: " + fProgram + "chrome\\overlayinfo\\messenger"); + logComment("Create Folder: " + fProgram + "chrome\\overlayinfo\\messenger\\content"); + logComment("Installing: " + fProgram + "chrome\\overlayinfo\\messenger\\content\\overlays.rdf"); + logComment("Create Folder: " + fProgram + "chrome\\overlayinfo\\navigator"); + logComment("Create Folder: " + fProgram + "chrome\\overlayinfo\\navigator\\content"); + logComment("Installing: " + fProgram + "chrome\\overlayinfo\\navigator\\content\\overlays.rdf"); + logComment("Create Folder: " + fProgram + "chrome\\overlayinfo\\navigator\\skin"); + logComment("Installing: " + fProgram + "chrome\\overlayinfo\\navigator\\skin\\stylesheets.rdf"); + + err = getLastError(); + if (err == SUCCESS) + { + err = performInstall(); + logComment("performInstall() returned: " + err); + if (! ('buildID' in Install)) + { + logComment("Running Pre-Mozilla 0.9.1"); + initInstall("Post-install Cleanup Utility", "Browser/xpicleanup", "$Version$"); + cleanupUtility = getFolder(fProgram, "xpicleanup.exe"); + err = File.execute(cleanupUtility); + logComment("execute() returned: " + err); + err = performInstall(); + } + } + else + cancelInstall(err); + } + else + cancelInstall(err); +} +else + cancelInstall(INSUFFICIENT_DISK_SPACE); + + +// end main diff --git a/browser/installer/windows/chatzilla.jst b/browser/installer/windows/chatzilla.jst new file mode 100644 index 000000000000..3252498a3ee9 --- /dev/null +++ b/browser/installer/windows/chatzilla.jst @@ -0,0 +1,28 @@ +var err = initInstall("Chatzilla v0.5", "Chatzilla", "$Version$"); +logComment("initInstall: " + err); + +addFile("Chatzilla service", + "bin/components/chatzilla-service.js", + getFolder("Components"), + ""); + +addFile("Chatzilla Chrome", + "bin/chrome/chatzilla.jar", // jar source folder + getFolder("Chrome"), // target folder + ""); // target subdir + +addDirectory("Chatzilla Icons", + "bin/chrome/icons", // jar source folder + getFolder("Chrome", "icons"), // target folder + ""); // target subdir + +registerChrome(PACKAGE | DELAYED_CHROME, getFolder("Chrome","chatzilla.jar"), "content/chatzilla/"); +registerChrome(SKIN | DELAYED_CHROME, getFolder("Chrome","chatzilla.jar"), "skin/modern/chatzilla/"); +registerChrome(LOCALE | DELAYED_CHROME, getFolder("Chrome","chatzilla.jar"), "locale/en-US/chatzilla/"); + +err = getLastError(); +if (err==SUCCESS) + performInstall(); +else + cancelInstall(err); + diff --git a/browser/installer/windows/config.it b/browser/installer/windows/config.it new file mode 100644 index 000000000000..5c10cc815e5d --- /dev/null +++ b/browser/installer/windows/config.it @@ -0,0 +1,1201 @@ +[General] +; Run Mode values: +; Normal - Shows all dialogs. Requires user input. +; Auto - Shows some dialogs, but none requiring user input. It will +; automatically install the product using default values. +; Silent - Show no dialogs at all. It will install product using default +; values. +Run Mode=Normal + +Company Name=$CompanyName$ +Product Name=$ProductName$ +Product NameInternal=$ProductName$ +User Agent=$UserAgent$ + +; Destination Path values: +; PROGRAMFILESDIR +; WINDISK +; WINDIR +; WINSYSDIR +Path=[PROGRAMFILESDIR]\$ProductName$ + +; 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 +; but simply created: +; +; ie: shown to user : [Path] +; actually created: [Path]\[Sub Path] +; (where [Path] is the Path= key above) +Sub Path= + +; Controls the Browse button that allows the user to +; change the destination path of the product. +; Default value is FALSE; +Lock Path=FALSE + +Program Name=$MainExeFile$ + +; Program Folder Path values: +; COMMON_STARTUP +; COMMON_PROGRAMS +; COMMON_STARTMENU +; COMMON_DESKTOP +; +; PERSONAL_STARTUP +; PERSONAL_PROGRAMS +; PERSONAL_STARTMENU +; PERSONAL_DESKTOP +; +; PERSONAL_APPDATA +; PERSONAL_CACHE +; PERSONAL_COOKIES +; PERSONAL_FAVORITES +; PERSONAL_FONTS +; PERSONAL_HISTORY +; PERSONAL_NETHOOD +; PERSONAL_PERSONAL +; PERSONAL_PRINTHOOD (supported only under Windows NT) +; PERSONAL_RECENT +; PERSONAL_SENDTO +; PERSONAL_TEMPLATES +; +; PROGRAMS (Default value is the same as COMMON_PROGRAMS, but if the user +; has restricted access to the system, then it's the same as +; PERSONAL_PROGRAMS) +; +; PROGRAMFILESDIR +; COMMONFILESDIR +; MEDIAPATH +; CONFIGPATH (supported only under Windows95 and Windows98) +; DEVICEPATH +Program Folder Name=$ProductName$ +Program Folder Path=[PROGRAMS] + +Uninstall Filename=$UninstallFile$ + +; This key is used as a fail over key. This url will be used when the +; url in the Site Selector fails. +url=$ArchiveUrl$ + +; Default Setup Type values: +; Setup Type 0 - first radio button (default) +; Setup Type 1 - second radio button +; Setup Type 2 - third radio button +; Setup Type 3 - fourth radio button (usually the Custom option) +Default Setup Type=Setup Type 1 + +; Forces the icons on the system to be refreshed. +; Default value is FALSE. +; Possible values: +; FALSE +; TRUE +Refresh Icons=FALSE + +; Setting to control whether or not GRE should be installed to app's dir +; to be used as a private/local GRE. +; +; Possible values (default is 'Shared'): +; Local +; Shared +; +; If this key is set to 'Local', make +; sure to provide a GRE Private Key= below! +GRE Type=Shared +GRE ID=$GreUniqueID$ + +; Private key that overrides the default shared key +; (HKEY_LOCAL_MACHINE\Software\mozilla.org\GRE) set by GRE's installer. +; This key will be created under HKEY_LOCAL_MACHINE and should be +; declared in the following format: +; +; Software\[company name]\[product name] +; (ie: Software\mozilla.org\GRE_1.4a_0000000000_PRIVATE) +; +; If it is not in the above format, the GRE installer/uninstaller can +; fail to work properly. +; The value to Prodduct Name Internal= (at the beginning of this +; config.ini file) will be appended as follows: +; +; Software\mozilla.org\GRE_1.4a_0000000000_PRIVATE_[Product Name Internal] +GRE Private Key=Software\mozilla.org\GRE_$GreUniqueID$_PRIVATE_$ProductNameInternal$ + +; Controls the display of the banner image in the download and install progress dialogs. +; Default value is TRUE. +Show Banner Image=TRUE + +; Controls the check to see if user is installing on top of a previous +; installation of the product. If so, then prompt the user that cleanup +; of destination folder is highly recommended, or instability of product +; can occurr. +[Cleanup On Upgrade] +Cleanup=TRUE +ObjectToIgnore0=plugins +ObjectToIgnore1=uninstall +ObjectToIgnore2=install_status.log + +; List of files/dirs that is used to determine if a directory is a profile +; or not. This is so the directory is not deleted as part of the Cleanup +; On Upgrade. +; All of the object files must be found in order for a dir to be assumed +; to be a Profile dir. +[Profile Dir Object List] +Object0=chrome +Object1=bookmarks.html +Object2=localstore.rdf + +; This section contains info on how to send error information in case of +; either a download or xpinstall error. +; By default, this feature is enabled, unless disabled. +[Message Stream] +; Values: +; Enabled +; Disabled +; default is Enabled. +Status=Disabled + +; URL to cgi script to send error information to. The information will +; be appended to the url in the form of parameters to the cgi script. +url=http://orb.mcom.com/install/error.cgi + +; Indicates whether to show a confirmation dialog or not. If this +; dialog is not shown, the error information will be *automatically* +; sent without any indication to the user unless the Status= is set +; to Disabled. +; +; Default value is TRUE if nothing is set. +Show Confirmation=TRUE +Confirmation Message=There was an error encountered during installation of $ProductName$. The following information will be sent back to us to help us improve the product: %s + + + +; HKey: valid decryptable setup key is [Product CurrentVersion] or [Product PreviousVersion] +; Decrypt HKey: there are times when '[' and ']' are valid part of windows registry key names. +; Contains Filename: tells setup that the path contains filename needed to be removed before +; using it as a path. +; Verify Existence: FILE or PATH +; +[Locate Previous Product Path0] +HRoot=HKEY_LOCAL_MACHINE +HKey=[Product CurrentVersion]\Main +Name=Install Directory +Decrypt HKey=TRUE +Contains Filename=FALSE +Verify Existence= + +[Dialog Welcome] +Show Dialog=TRUE +;*** LOCALIZE ME BABY *** +Title=$ProductName$ Setup - Welcome +;*** LOCALIZE ME BABY *** +Message0=Welcome to %s Setup. You are about to install %s 0.8. +;*** LOCALIZE ME BABY *** +Message1=It is strongly recommended that you exit all Windows programs before running this Setup program. +;*** LOCALIZE ME BABY *** +Message2=Click Cancel to quit Setup and then close any programs you have running. Click Next to continue the Setup program. + +[Dialog License] +Show Dialog=TRUE +;*** LOCALIZE ME BABY *** +Title=$ProductName$ Setup - Software License Agreement +License File=license.txt +;*** LOCALIZE ME BABY *** +Message0=Please read the following license agreement. Use the scroll bar to view the rest of this agreement. +;*** LOCALIZE ME BABY *** +Message1=Click Accept if you accept the terms of the preceeding license agreement. If Decline is clicked, setup will quit. + +[Dialog Setup Type] +Show Dialog=TRUE +;*** LOCALIZE ME BABY *** +Title=$ProductName$ Setup - Setup Type +;*** LOCALIZE ME BABY *** +Message0=Click the type of setup you prefer, then click Next. +Readme Filename=readme.txt +Readme App=notepad.exe + +; at least one Setup Type needs to be set, and up to 4 can be +; set (Setup Type0, Setup Type1, Setup Type2, Setup Type3). +[Setup Type0] +;*** LOCALIZE ME BABY *** +Description Short=&Standard +;*** LOCALIZE ME BABY *** +Description Long=Browser will be installed with the most common options. + +; 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 XPCOM +C1=Component Browser +C2=Component Uninstaller +C3=Component US English Profile Defaults +C4=Component En US lang pack +C5=Component US region pack +; Make sure Component QFA is LAST so 3rd party developers who might not want +; this component can easily remove it. +; C6=Component QFA + +[Setup Type1] +;*** LOCALIZE ME BABY *** +Description Short=&Custom +;*** LOCALIZE ME BABY *** +Description Long=You may choose individual options to be installed. Recommended for experienced users. + +; 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 XPCOM +C1=Component Browser +C2=Component ABE +C3=Component ADT +C4=Component Uninstaller +C5=Component US English Profile Defaults +C6=Component En US lang pack +C7=Component US region pack +; Make sure Component QFA is LAST so 3rd party developers who might not want +; this component can easily remove it. +; C8=Component QFA + +[Dialog Select Components] +Show Dialog=TRUE +;*** LOCALIZE ME BABY *** +Title=$ProductName$ Setup - Select Components +;*** LOCALIZE ME BABY *** +Message0=The browser is always installed. Select or clear the additional components you want to install. + +[Dialog Select Additional Components] +Show Dialog=FALSE +;*** LOCALIZE ME BABY *** +Title=$ProductName$ Setup - Select Additional Components +;*** LOCALIZE ME BABY *** +Message0=Select or clear the additional components you want to install. + +;*** DO NOT LOCALIZE - BEGIN *** +; do not localize this part because it is not currently being used +[Dialog Windows Integration] +Show Dialog=FALSE +Title=$ProductName$ Setup - Windows Integration +Message0=Check the options you would like Setup to perform. +Message1=These settings allow you to set default Internet preferences for browsing and searching. They affect browsers installed on your machine, including Mozilla, Netscape and Microsoft Internet Explorer. + +; 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-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] +Show Dialog=TRUE +;*** LOCALIZE ME BABY *** +Title=$ProductName$ Setup - Select Program Folder +;*** LOCALIZE ME BABY *** +Message0=Setup will add program icons to the Program Folder listed below. You may type a new folder name, or select one from the Existing Folders list. Click Next to continue. + +[Dialog Additional Options] +Show Dialog=TRUE +;*** LOCALIZE ME BABY *** +Title=$ProductName$ Setup - Additional Options +;*** LOCALIZE ME BABY *** +Message1=Select the following option if you wish to save downloaded Setup files on your own computer. This allows you to re-run Setup without downloading the files again. The Setup files will be saved to the path below. +Save Installer= +; The following settings control whether the Recapture Homepage checkbox is displayed. +; For this option to work the file nsResetPref.js must be installed into the +; components directory +Message0=The following checkbox gives users the option of reverting to +the default home page +Show Homepage Option=FALSE +Recapture Homepage=FALSE + +[Dialog Advanced Settings] +Show Dialog=TRUE +;*** LOCALIZE ME BABY *** +Title=$ProductName$ Setup - Advanced Settings +;*** LOCALIZE ME BABY *** +Message0=If your Internet connection requires a proxy server, enter your server name and port information. If your Internet connection doesn't require a proxy server, leave the fields blank. +Proxy Server= +Proxy Port= +Proxy User= +Proxy Password= +; Use Protocol accepts only two options: +; FTP +; HTTP +; Default is FTP if key is not set. +Use Protocol=HTTP +; Use Protocol Settings key shows or hides the +; Use FTP/Use HTTP radio buttons in the Download Dialog. +; Default value is ENABLED unless DISABLED is specified. +Use Protocol Settings=ENABLED +; Controls the radio buttons visibility +; Default value is TRUE +Show Protocols=TRUE + +[Dialog Quick Launch] +Show Dialog=TRUE +;*** LOCALIZE ME BABY *** +Title=$ProductName$ Setup - Quick Launch +;*** LOCALIZE ME BABY *** +Message0=Quick Launch starts Mozilla faster by keeping portions of the program in computer memory. +;*** LOCALIZE ME BABY *** +Message1=You can access Quick Launch through the icon on the Windows taskbar tray. +;*** LOCALIZE ME BABY *** +Message2=Check the box below to activate Quick Launch when you restart your computer. +; Turbo Mode (Quick Launch) values: TRUE, FALSE +; Defaults to FALSE if not set +Turbo Mode=FALSE +; Turbo Mode Settings value: TRUE, FALSE +; Defaults to FALSE if not set. +; This will hide the turbo mode checkbox in the Start Install dialog +; and ignore the Turbo Mode= key, thus disabling it. +Turbo Mode Enabled=TRUE + +[Dialog Start Install] +Show Dialog=TRUE +;*** LOCALIZE ME BABY *** +Title=$ProductName$ Setup - Start Install +;*** LOCALIZE ME BABY *** +Message Install=Setup has enough information to start copying the program files. If you want to review or change settings, click Back. If you are satisfied with the current settings, click Install to begin copying files. +;*** LOCALIZE ME BABY *** +Message Download=Setup has enough information to start downloading and copying the program files. If you want to review or change settings, click Back. If you are satisfied with the current settings, make sure you are currently connected to the internet and click Install to begin downloading files. + +[Dialog Download] +Show Dialog=TRUE +;*** LOCALIZE ME BABY *** +Title=$ProductName$ Setup - Download +;*** LOCALIZE ME BABY *** +Message Download0=Setup is downloading the required files now. This may take some time depending on your network connection speed. +;*** LOCALIZE ME BABY *** +Message Retry0=Some files have failed the CRC check and are being downloaded again. Only those files that have failed will be downloaded. + +[Dialog Reboot] +; Show Dialog values are: +; TRUE - Always show +; FALSE - Don't show unless at least one component has its reboot show value set +; to TRUE. This will not show even if some files were in use and a reboot +; is necessary. +; AUTO - Don't show unless a component has its reboot show value set to +; TRUE or there was at least one file in use and a reboot is +; is required for the file to be replaced correctly. +Show Dialog=AUTO + +[Check Instance0] +Class Name=MozillaMessageWindow +Window Name= +Process Name=$MainExeFile$ +Pretty Name=$ProductNameInternal$ +;*** LOCALIZE ME BABY *** +Message=Download of $ProductName$ was successful. $ProductNameInternal$ must be closed to proceed with installation. Click OK to exit $ProductNameInternal$ automatically and to begin installation. +;*** LOCALIZE ME BABY *** +Message Full Installer=$ProductNameInternal$ must be closed to proceed with installation. Click OK to exit $ProductNameInternal$ automatically and to begin installation. +;*** LOCALIZE ME BABY *** +Message wait=Shutting down $ProductNameInternal$. Please wait... + +; This key indicates whether or not to close all the windows associated with +; the process id of this app instance window found. +Close All Process Windows=TRUE + +; These keys are not normally necessary for checking instances. They are +; set here because Mozilla requires a way to shut down it's turbo mode. +Extra Cmd0 Reg Key Root=HKEY_LOCAL_MACHINE +Extra Cmd0 Reg Key=Software\Microsoft\Windows\CurrentVersion\App Paths\$MainExeFile$ +Extra Cmd0 Reg Name= +Extra Cmd0 Parameter=-kill + +[Check Instance1] +Class Name=Netscape6MessageWindow +Window Name= +Process Name=Netscp.exe +Pretty Name=Netscape +;*** LOCALIZE ME BABY *** +Message=Download of $ProductName$ was successful. However, Netscape must be closed to proceed with this installation. Click OK to exit Netscape automatically and to begin installation. +;*** LOCALIZE ME BABY *** +Message Full Installer=Netscape must be closed to proceed with this installation. Click OK to exit Netscape automatically and to begin installation. +;*** LOCALIZE ME BABY *** +Message wait=Shutting down Netscape. Please wait... + +; This key indicates whether or not to close all the windows associated with +; the process id of this app instance window found. +Close All Process Windows=TRUE + +; These keys are not normally necessary for checking instances. They are +; set here because Netscape 6 requires a way to shut down it's turbo mode. +; This will stop at the first one that succeeds (key and file found). +Extra Cmd0 Reg Key Root=HKEY_LOCAL_MACHINE +Extra Cmd0 Reg Key=Software\Microsoft\Windows\CurrentVersion\App Paths\Netscp6.exe +Extra Cmd0 Reg Name= +Extra Cmd0 Parameter=-kill + +Extra Cmd1 Reg Key Root=HKEY_LOCAL_MACHINE +Extra Cmd1 Reg Key=Software\Microsoft\Windows\CurrentVersion\App Paths\Netscp.exe +Extra Cmd1 Reg Name= +Extra Cmd1 Parameter=-kill + + +;DependeeX=Component A means +; - if Component A gets checked this component gets checked +; - if Component A gets unchecked this component gets unchecked +; - if this component is visible it can still be checked/unchecked +; independantly after Component A has changed its state. I.e +; this components checkbox will not be disabled or hidden. +;Dependee0= +; +;DependencyX= is not supported at this time. +;Dependency0= +; +; Attributes can be the following values: +; +; The following Attributes can be overridden: +; ------------------------------------------ +; +; SELECTED - Component is selected to be installed by default. +; +; UNSELECTED - Component is to be displayed unselected in the Options +; dialog. If the component is listed in the non-custom +; Setup Type section, it will be assumed to be selected +; by default. +; +; ADDITIONAL - Component is to be shown in the Additional Options +; dialog (2nd Options dialog) instead of the 1st Options +; dialog. +; +; NOTADDITIONAL - Component will be shown (if visible) in the 1st +; 1st Options dialog rather than the Additional Options +; dialog (default). +; +; VISIBLE - Component is shown in one of the two Options dialogs +; (default). +; +; INVISIBLE - Component is not shown in either of the two Options dialogs. +; +; ENABLED - Component is to be shown as enabled (not greyed out) in +; either of the two Options dialogs. +; (default). +; +; DISABLED - Component is to be shown as disabled (greyed out) in +; either of two Options dialog. +; +; +; The following attributes cannot be overridden: +; --------------------------------------------- +; +; LAUNCHAPP - Component is downloaded and simply run (like a .exe file) +; after all the components have been downloaded and +; xpinstall'ed. +; +; DOWNLOAD_ONLY - Component is to be only downloaded to the ns_temp folder, +; then deleted as Setup is quitting. +; +; FORCE_UPGRADE - Force Upgrade checks for a particular file or directory +; provided in the Force Upgrade FileX= key(s). If any of +; the listed file or directory exists, then this component +; will have its SELECTED and DISABLED Attributes set +; automatically. Force Upgrade will override the following: +; +; Random Install Percentage= setting +; UNSELECTED Attribute setting +; Dependency settings +; Dependee settings +; Setup Type settings - meaning that even if this +; component is not listed in the +; selected Setup Type, it will be +; affected. +; +; IGNORE_DOWNLOAD_ERROR - If the component needs to be downloaded from a +; server, setting this attribute will indicate that +; any download error encountered will be ignored +; and treated as if there were no error. +; If the component does not need to be downloaded, +; then this attribute has no effect. +; +; IGNORE_XPINSTALL_ERROR - If the component is a .xpi file, then any error +; resulting from the installation of the .xpi file +; will be ignored. If the .xpi file is not to be +; installed, then this attribute is ignored. +; +; SUPERSEDE - Component is to be shown as disabled and unselected +; if a file exists. +; Use SupersedeType=File Exists to specify the type of comparison +; Use SupersedeFileX=File Name to specify the file +; Use SupersedeMinVersionX=a.b.c.d (optional) to specify the +; minimum version of the file. If the version of the existing file +; is greater than or equal to the SupersedeMinVersion the component +; will be superseded. +; + +;We're not installing Component XPCOM because we're using it +;for it's xpinstall engine from the TEMP dir. The files that +;this component has are already in Component GRE. +[Component XPCOM] +Description Short=Cross Platform COM +;*** LOCALIZE ME BABY *** +Description Long=Cross Platform COM +Archive=xpcom.xpi +$InstallSize$:xpcom +$InstallSizeSystem$ +$InstallSizeArchive$:xpcom.xpi +Attributes=SELECTED|INVISIBLE + +[Component Browser] +Description Short=$ProductName$ Browser +;*** LOCALIZE ME BABY *** +Description Long=The $ProductName$ Browser +Archive=browser.xpi +$InstallSize$:browser +$InstallSizeSystem$ +$InstallSizeArchive$:browser.xpi +Attributes=SELECTED|INVISIBLE|FORCE_UPGRADE +Force Upgrade File0=[SETUP PATH]\$MainExeFile$ + +[Component ABE] +Description Short=Additional Browsing Enhancements +;*** LOCALIZE ME BABY *** +Description Long=Additional tools including mouse-gesture navigation, a site navigation bar and other enhanced functionality. +Archive=abe.xpi +$InstallSize$:abe +$InstallSizeArchive$:abe.xpi +Attributes=SELECTED + +[Component ADT] +Description Short=Developer Tools +;*** LOCALIZE ME BABY *** +Description Long=Tools for web developers including an error console, the Document Inspector and a JavaScript Debugger. +Archive=adt.xpi +$InstallSize$:adt +$InstallSizeArchive$:adt.xpi +Attributes=FORCE_UPGRADE +Force Upgrade File0=[SETUP PATH]\chrome\venkman.jar +Force Upgrade File1=[SETUP PATH]\chrome\inspector.jar + +[Component Uninstaller] +Description Short=$CompanyName$ Uninstaller +;*** LOCALIZE ME BABY *** +Description Long=Uninstaller for $ProductName$ +Archive=$UninstallFileZip$ +$InstallSize$:$UninstallFileZip$ +$InstallSizeSystem$ +$InstallSizeArchive$:$UninstallFileZip$ +Attributes=SELECTED|INVISIBLE|DOWNLOAD_ONLY + +;Since the uninstaller program is going to be installed into the Windows folder, +;Setup.exe needs to know to calculate the disk space required for the Windows folder. +;This section overrides the default user-chosen path for the Uninstaller only. +[Component Uninstaller-Destination Path0] +Path=[WINDIR] + +[Component US English Profile Defaults] +Description Short=US English Defaults +;*** LOCALIZE ME BABY *** +Description Long=US English Default Profile Data +Archive=deflenus.xpi +$InstallSize$:deflenus +$InstallSizeSystem$ +$InstallSizeArchive$:deflenus.xpi +Attributes=SELECTED|INVISIBLE|FORCE_UPGRADE +Force Upgrade File0=[SETUP PATH]\defaults\profile\bookmarks.html + +[Component En US lang pack] +;*** LOCALIZE ME BABY *** +Description Short=English (US) Language Pack +;*** LOCALIZE ME BABY *** +Description Long=English (US) Language Pack +Archive=langenus.xpi +$InstallSize$:langenus +$InstallSizeSystem$ +$InstallSizeArchive$:langenus.xpi +Attributes=SELECTED|INVISIBLE|FORCE_UPGRADE +Force Upgrade File0=[SETUP PATH]\chrome\en-US.jar + +[Component US region pack] +;*** LOCALIZE ME BABY *** +Description Short=US Region Pack +;*** LOCALIZE ME BABY *** +Description Long=Regional content for US users +Archive=regus.xpi +$InstallSize$:regus +$InstallSizeSystem$ +$InstallSizeArchive$:regus.xpi +Attributes=SELECTED|INVISIBLE|FORCE_UPGRADE +Force Upgrade File0=[SETUP PATH]\chrome\US.jar + +[Component QFA] +Description Short=Quality Feedback Agent +;*** LOCALIZE ME BABY *** +Description Long=for reporting $ProductName$ crash information +Archive=talkback.xpi +Install Size=870 +Install Size System=1 +Install Size Archive=248 +Attributes=SELECTED|FORCE_UPGRADE +Force Upgrade File0=[SETUP PATH]\components\fullsoft.dll + +; This is to randomly set the default checkbox for this component. +; This particular value will set the checkbox checked [number]% of the time. +; This logic is done only during the initialization of setup, not in any +; particular dialog. +Random Install Percentage=100 + +[Core] +Source=[XPI PATH]\xpcom.xpi +Destination=[WIZTEMP]\xpcom.ns +$InstallSize$:xpcom +Cleanup=TRUE +;*** LOCALIZE ME BABY *** +Message=Preparing Install, please wait... +; Status= values: Disabled, Enabled +; If nothing is set, default value is Enabled. If set to Disabled, +; it will then use GRE as the xpinstall engine, in which case, there +; should be a GRE component in this installer package! +Status=Enabled + +[Redirect] +Status=Disabled +; This is used in conjunction with the Site Selector info to build a +; url to where to download the needed redirect.ini file from. +; If there's more than one server path, they will be used as fail +; over paths. +; +; The Server Path= keys need to be named in the following convention: +; +; Server Path0= +; Server Path1= +; Server Path2= +; +; and so on... +Server Path=redirect.ini +;*** LOCALIZE ME BABY *** +Description=Redirect File +Message= + + +; The Timing key needs to be one of the following values: +; pre download - process before any files have been downloaded. +; post download - process after all files have been downloaded. +; pre xpcom - process before the xpcom file has been uncompressed. +; post xpcom - process after the xpcom file has been uncompressed. +; pre smartupdate - process before the smartupdate engine has been launched. +; post smartupdate - process after the smartupdate engine has been launched. +; pre launchapp - process before the launching of executables. +; post launchapp - process after the launching of executables. +; pre archive - process before the launching of each individual archive file. +; post archive - process after the launching of each individual archive file. +; depend reboot - process depending on if a reboot is necessary or not. +; if reboot is necessary, installer can set it up so +; the app runs once upon windows reboot. + +;Uncompress FileX sections +[Uncompress File0] +Timing=post smartupdate +Source=[XPI PATH]\$UninstallFileZip$ +Destination=[WINDIR] +;*** LOCALIZE ME BABY *** +Message=Installing the uninstaller, please wait... +Only If Exists=FALSE + + +;Copy FileX sections +;Copy the uninstaller to the [Setup Path]\uninstall folder. +;This copy is to be used when the user installed on a system with +;restricted access. +[Copy File0] +Timing=post smartupdate +Source=[WINDIR]\$UninstallFile$ +Destination=[SETUP PATH]\uninstall +Fail If Exists=FALSE +Do Not Uninstall=FALSE + +[Copy File1] +Timing=post smartupdate +Source=[XPI PATH]\$UninstallFile$ +Destination=[WINDIR] +Fail If Exists=FALSE +Do Not Uninstall=TRUE + +; nss3.dll, softokn3.dll, ssl3.dll, and smime3.dll all need to be copied from +; the GRE dir to the destination app folder (see bug 202326) +[Copy File2] +Timing=post smartupdate +Source=[$GRE_INSTALL_DIR]\nss3.dll +Destination=[SETUP PATH] +Fail If Exists=FALSE +Do Not Uninstall=FALSE + +[Copy File3] +Timing=post smartupdate +Source=[$GRE_INSTALL_DIR]\softokn3.dll +Destination=[SETUP PATH] +Fail If Exists=FALSE +Do Not Uninstall=FALSE + +[Copy File4] +Timing=post smartupdate +Source=[$GRE_INSTALL_DIR]\softokn3.chk +Destination=[SETUP PATH] +Fail If Exists=FALSE +Do Not Uninstall=FALSE + +[Copy File5] +Timing=post smartupdate +Source=[$GRE_INSTALL_DIR]\ssl3.dll +Destination=[SETUP PATH] +Fail If Exists=FALSE +Do Not Uninstall=FALSE + +[Copy File6] +Timing=post smartupdate +Source=[$GRE_INSTALL_DIR]\smime3.dll +Destination=[SETUP PATH] +Fail If Exists=FALSE +Do Not Uninstall=FALSE + +[Path Lookup $GRE_INSTALL_DIR] +Path Reg Key Root=HKEY_LOCAL_MACHINE +Path Reg Key=Software\mozilla.org\GRE\$GreUniqueID$\Main +Path Reg Name=Install Directory +Strip Filename=FALSE + + +;Copy File SequentialX sections +[Copy File Sequential0] +Timing=post launchapp +Filename=install_wizard.log +Source=[SETUP PATH] +Destination=[SETUP PATH]\uninstall + + +;Create DirectoryX sections +[Create Directory0] +Timing=post download +Destination=[SETUP PATH]\plugins + + +;Delete FileX sections +[Delete File0] +Timing=post download +Destination=[COMMON_PROGRAMS]\Mozilla Seamonkey\Mozilla AppRunner.lnk + +[Delete File1] +Timing=post launchapp +Destination=[SETUP PATH]\install_wizard.log + + +;Remove DirectoryX sections +;[Remove Directory0] +;Timing=post launchapp +;Destination=[TEMP]\xtratest +;Remove subdirs=TRUE + + +;RunAppX sections +[RunApp0] +Timing=depend reboot +Wait=FALSE +Target=[SETUP PATH]\$MainExeFile$ +Parameters=-installer +WorkingDir=[SETUP PATH] +; Additional Options dialog. +Condition=not RecaptureHPChecked + +[RunApp1] +Timing=depend reboot +Wait=FALSE +Target=[SETUP PATH]\$MainExeFile$ +Parameters=-installer -resetPref browser.startup.homepage +WorkingDir=[SETUP PATH] +; Additional Options dialog. +Condition=RecaptureHPChecked + +[Windows Registry0] +Root Key=HKEY_LOCAL_MACHINE +;*** LOCALIZE ME BABY *** +Key=Software\$CompanyName$ +Name= +Name Value= +Type=REG_SZ +Decrypt Key=FALSE +Decrypt Name=FALSE +Decrypt Name Value=TRUE +Overwrite Key=TRUE +Overwrite Name=TRUE +Timing=pre smartupdate + +[Windows Registry1] +Root Key=HKEY_LOCAL_MACHINE +;*** LOCALIZE ME BABY *** +Key=Software\$CompanyName$\$ProductName$ +Name= +Name Value= +Type=REG_SZ +Decrypt Key=FALSE +Decrypt Name=FALSE +Decrypt Name Value=TRUE +Overwrite Key=TRUE +Overwrite Name=TRUE +Timing=pre smartupdate + +[Windows Registry2] +Root Key=HKEY_LOCAL_MACHINE +;*** LOCALIZE ME BABY *** +Key=Software\$CompanyName$\$ProductName$\$UserAgent$ +Name= +Name Value= +Type=REG_SZ +Decrypt Key=FALSE +Decrypt Name=FALSE +Decrypt Name Value=TRUE +Overwrite Key=TRUE +Overwrite Name=TRUE +Timing=pre smartupdate + +[Windows Registry3] +Root Key=HKEY_LOCAL_MACHINE +;*** LOCALIZE ME BABY *** +Key=Software\$CompanyName$\$ProductName$\$UserAgent$\Main +Name=Program Folder Path +Name Value=[Default Folder] +Type=REG_SZ +Decrypt Key=FALSE +Decrypt Name=FALSE +Decrypt Name Value=TRUE +Overwrite Key=TRUE +Overwrite Name=TRUE +Timing=pre smartupdate + +[Windows Registry4] +Root Key=HKEY_LOCAL_MACHINE +;*** LOCALIZE ME BABY *** +Key=Software\$CompanyName$\$ProductName$\$UserAgent$\Uninstall +Name=Description +Name Value=$ProductName$ ($UserAgentShort$) +Type=REG_SZ +Decrypt Key=FALSE +Decrypt Name=FALSE +Decrypt Name Value=FALSE +Overwrite Key=TRUE +Overwrite Name=TRUE +Timing=pre smartupdate + +[Windows Registry5] +Root Key=HKEY_LOCAL_MACHINE +;*** LOCALIZE ME BABY *** +Key=Software\$CompanyName$\$ProductName$\$UserAgent$\Uninstall +Name=Uninstall Log Folder +Name Value=[SETUP PATH]\uninstall +Type=REG_SZ +Decrypt Key=FALSE +Decrypt Name=FALSE +Decrypt Name Value=TRUE +Overwrite Key=TRUE +Overwrite Name=TRUE +Timing=pre smartupdate + +[Windows Registry6] +Root Key=HKEY_CURRENT_USER +;*** LOCALIZE ME BABY *** +Key=Software\$CompanyName$ +Name= +Name Value= +Type=REG_SZ +Decrypt Key=FALSE +Decrypt Name=FALSE +Decrypt Name Value=TRUE +Overwrite Key=TRUE +Overwrite Name=TRUE +Timing=pre smartupdate + +[Windows Registry7] +Root Key=HKEY_CURRENT_USER +;*** LOCALIZE ME BABY *** +Key=Software\$CompanyName$\$ProductName$ +Name= +Name Value= +Type=REG_SZ +Decrypt Key=FALSE +Decrypt Name=FALSE +Decrypt Name Value=TRUE +Overwrite Key=TRUE +Overwrite Name=TRUE +Timing=pre smartupdate + +[Windows Registry8] +Root Key=HKEY_CURRENT_USER +;*** LOCALIZE ME BABY *** +Key=Software\$CompanyName$\$ProductName$\$UserAgent$ +Name= +Name Value= +Type=REG_SZ +Decrypt Key=FALSE +Decrypt Name=FALSE +Decrypt Name Value=TRUE +Overwrite Key=TRUE +Overwrite Name=TRUE +Timing=pre smartupdate + +[Windows Registry9] +Root Key=HKEY_CURRENT_USER +;*** LOCALIZE ME BABY *** +Key=Software\$CompanyName$\$ProductName$\$UserAgent$\Main +Name=Program Folder Path +Name Value=[Default Folder] +Type=REG_SZ +Decrypt Key=FALSE +Decrypt Name=FALSE +Decrypt Name Value=TRUE +Overwrite Key=TRUE +Overwrite Name=TRUE +Timing=pre smartupdate + +[Windows Registry10] +Root Key=HKEY_CURRENT_USER +;*** LOCALIZE ME BABY *** +Key=Software\$CompanyName$\$ProductName$\$UserAgent$\Uninstall +Name=Description +Name Value=$ProductName$ ($UserAgentShort$) +Type=REG_SZ +Decrypt Key=FALSE +Decrypt Name=FALSE +Decrypt Name Value=FALSE +Overwrite Key=TRUE +Overwrite Name=TRUE +Timing=pre smartupdate + +[Windows Registry11] +Root Key=HKEY_CURRENT_USER +;*** LOCALIZE ME BABY *** +Key=Software\$CompanyName$\$ProductName$\$UserAgent$\Uninstall +Name=Uninstall Log Folder +Name Value=[SETUP PATH]\uninstall +Type=REG_SZ +Decrypt Key=FALSE +Decrypt Name=FALSE +Decrypt Name Value=TRUE +Overwrite Key=TRUE +Overwrite Name=TRUE +Timing=pre smartupdate + +[Windows Registry12] +Root Key=HKEY_LOCAL_MACHINE +Key=Software\Microsoft\Windows\CurrentVersion\Uninstall\$ProductName$ ($UserAgentShort$) +Name=DisplayName +Name Value=$ProductName$ ($UserAgentShort$) +Type=REG_SZ +Decrypt Key=FALSE +Decrypt Name=FALSE +Decrypt Name Value=FALSE +Overwrite Key=TRUE +Overwrite Name=TRUE +Timing=post smartupdate + +[Windows Registry13] +Root Key=HKEY_LOCAL_MACHINE +Key=Software\Microsoft\Windows\CurrentVersion\Uninstall\$ProductName$ ($UserAgentShort$) +Name=UninstallString +;*** LOCALIZE ME BABY *** +Name Value=[WINDIR]\$UninstallFile$ /ua "$UserAgent$" +Type=REG_SZ +Decrypt Key=FALSE +Decrypt Name=FALSE +Decrypt Name Value=TRUE +Overwrite Key=TRUE +Overwrite Name=TRUE +Timing=post smartupdate + +; The following keys are to help JRE's installer locate where mozilla gets +; installed to. It has not been updated to look for the new keys. +[Windows Registry14] +Root Key=HKEY_LOCAL_MACHINE +Key=Software\Mozilla +Name= +Name Value= +Type=REG_SZ +Decrypt Key=FALSE +Decrypt Name=FALSE +Decrypt Name Value=TRUE +Overwrite Key=TRUE +Overwrite Name=TRUE +Timing=pre smartupdate + +[Cleanup Previous Product RegKeys] +Reg Key Root0=HKEY_LOCAL_MACHINE +Product Name0=Mozilla +Product Reg Key0=Software\Mozilla.org\Mozilla +Current Version0=$UserAgent$ + +Reg Key Root1=HKEY_CURRENT_USER +Product Name1=Mozilla +Product Reg Key1=Software\Mozilla.org\Mozilla +Current Version1=$UserAgent$ + + + +; Values for Show Folder: +; HIDE Hides the window and activates another window. +; MAXIMIZE Maximizes the specified window. +; MINIMIZE Minimizes the specified window and activates the next +; top-level window in the z-order. +; RESTORE Activates and displays the window. If the window is +; minimized or maximized, Windows restores it to its +; original size and position. An application should specify +; this flag when restoring a minimized window. +; SHOW Activates the window and displays it in its current size +; and position. +; SHOWMAXIMIZED Activates the window and displays it as a maximized +; window. +; SHOWMINIMIZED Activates the window and displays it as a minimized +; window. +; SHOWMINNOACTIVE Displays the window as a minimized window. The active +; window remains active. +; SHOWNA Displays the window in its current state. The active +; window remains active. +; SHOWNOACTIVATE Displays a window in its most recent size and position. +; The active window remains active. +; SHOWNORMAL Activates and displays a window. If the window is +; minimized or maximized, Windows restores it to its +; original size and position. An application should specify +; this flag when displaying the window for the first time. +[Program Folder0] +Timing=post smartupdate +Show Folder=HIDE +Program Folder=[Default Folder] + +[Program Folder0-Shortcut0] +File=[SETUP PATH]\uninstall\$UninstallFile$ +Arguments=/ua "$UserAgent$" +Working Dir=[SETUP PATH] +Description=Uninstall $ProductName$ +Icon Path=[SETUP PATH]\uninstall\$UninstallFile$ +Icon Id=0 + +; Default value: +; IGNORE +; +; Possible values: +; ONLY_RESTRICTED - create shortcut only if user access is restricted +; ONLY_NONRESTRICTED - create shortcut only if user access is not restricted +Restricted Access=ONLY_RESTRICTED + +;[Program Folder0-Shortcut1] +;File=[SETUP PATH]\$MainExeFile$ +;Arguments=-ProfileManager +;Working Dir=[SETUP PATH] +;Description=Profile Manager +;Icon Path=[SETUP PATH]\$MainExeFile$ +;Icon Id=0 + +;[Program Folder0-Shortcut2] +;File=[SETUP PATH]\bin\Net2fone.exe +;Arguments= +;Working Dir=[SETUP PATH] +;Description=Net2Fone +;Icon Path=[SETUP PATH]\bin\Net2fone.exe +;Icon Id=0 + +;[Program Folder1] +;Timing=post download +;Show Folder=SHOW +;Program Folder=[Default Folder]\lala land + +;[Program Folder1-Shortcut0] +;File=c:\bin\getver.exe +;Arguments= +;Working Dir=[TEMP] +;Description=Getver Test +;Icon Path=[WINDISK]\4nt\4nt.exe +;Icon Id=0 + +;[Program Folder1-Shortcut1] +;File=c:\perl\bin\perl.exe +;Arguments= +;Working Dir=[WINSYS] +;Description=Perl +;Icon Path=c:\perl\bin\perl.exe +;Icon Id=0 + +[Strings] +;*** LOCALIZE ME BABY *** +Message Unfinished Download Restart=A previous session of Setup did not finish downloading all the necessary files. Would you like to use the files previously downloaded, to avoid downloading them again? +;*** LOCALIZE ME BABY *** +Message Unfinished Install Xpi Restart=A previous session of Setup did not finish with installation of all the necessary files. Would you like to use the files previously downloaded, to avoid downloading them again? +;*** LOCALIZE ME BABY *** +Error Corrupted Archives Detected=Setup has detected that the following archives within this Setup are corrupted:%sYou will need to obtain another copy of the $ProductName$ Setup in order for installation to proceed. +;*** LOCALIZE ME BABY *** +Error Corrupted Archives Detected AUTO mode=Setup has detected that at least one archive within this Setup is corrupt. You will need to obtain another copy of the $ProductName$ Setup in order for installation to proceed. +;*** LOCALIZE ME BABY *** +Error Too Many CRC Failures=Too many download failures. Setup will cancel. Any files already downloaded will not be deleted. The next time Setup is run, these files will be taken into account during the download. +;*** LOCALIZE ME BABY *** +Error Too Many Network Errors=Too many network errors trying to download %s. Setup will now Pause. Please click Resume to retry downloading the files. +;*** LOCALIZE ME BABY *** +Message Verifying Archives=Verifying integrity of archives, please wait... +;*** LOCALIZE ME BABY *** +Error Undefined=Error undefined +;*** LOCALIZE ME BABY *** +Error Out Of Memory=Out of memory! +;*** LOCALIZE ME BABY *** +Status Download=%s at %.2f KB/sec (%u KB of %u KB downloaded) +;*** LOCALIZE ME BABY *** +Status Retry=%s at %.2f KB/sec (%u KB of %u KB downloaded) +;*** LOCALIZE ME BABY *** +Status File Info=%s +;*** LOCALIZE ME BABY *** +Status Percentage Completed=%d%% +;*** LOCALIZE ME BABY *** +Dialog Download Title Minimized=%d%% completed +;*** LOCALIZE ME BABY *** +STR Force Upgrade Required=(Required) +;*** LOCALIZE ME BABY *** +Message Cancel Setup AUTO mode=Canceling Setup, please wait... +;*** LOCALIZE ME BABY *** +Error File Uncompress=Error uncompressing file %s: %d +;*** LOCALIZE ME BABY *** +UsageMsg Usage=Usage: %s [options]\n [options] can be any of the following combination:\n -h: This help.\n -a [path]: Alternate archive search path.\n -app [app id]: ID of application which is launching the installer (shared installs)\n -app_path [app]: Points to (full path) representative file of application (Shared installs)\n * -dd [path]: Suggested install destination directory. (Shared installs)\n * -greLocal: Forces GRE to be installed into the application dir.\n * -greShared: Forces GRE to be installed into a global, shared dir (normally)\n c:\program files\common files\mozilla.org\GRE\n -reg_path [path]: Where to make entries in the Windows registry. (Shared installs)\n -f: Force install of GRE installer (Shared installs), though it'll work\n for non GRE installers too.\n -greForce: Force 'Component GRE' to be downloaded, run, and installed. This\n bypasses GRE's logic of determining when to install by running its\n installer with a '-f' flag.\n -n [filename]: Setup's parent process filename.\n * -ma: Run setup in Auto mode.\n * -ms: Run setup in Silent mode.\n -ira: Ignore the [RunAppX] sections\n -ispf: Ignore the [Program FolderX] sections that show\n the Start Menu shortcut folder at the end of installation.\n * -showBanner: Show the banner image in the download and install progress dialogs\n * -hideBanner: Hide the banner image in the download and install progress dialogs\n * -cleanupOnUpgrade: Tells Setup to check to see if user is upgrading (installing on top\n of previous version of product). If user is upgrading:\n * NORMAL mode: prompt user on how to proceed\n * All other modes: assume user wants to cleanup.\n * -noCleanupOnUpgrade: Tells Setup to not check if user is upgrading (installing on top\n of previous version of product). This will disable the cleanup feature.\n\n * means it will override config.ini +;*** LOCALIZE ME BABY *** +IDC Use FTP=Use &FTP for downloading files +;*** LOCALIZE ME BABY *** +IDC Use HTTP=Use &HTTP for downloading files +;*** LOCALIZE ME BABY *** +IDC Save Installer Files=&Save installer files locally +;*** LOCALIZE ME BABY *** +IDC Recapture Homepage=&Make Netscape.com my home page +;*** LOCALIZE ME BABY *** +IDC Turbo Mode=&Use Quick Launch for faster startup times when possible +;*** LOCALIZE ME BABY *** +Message Download Paused=Setup has encountered a network problem and has paused the download. If you have just lost your network connection, please click Resume once your network has been reestablished. +;*** LOCALIZE ME BABY *** +Message NORMAL Restricted Access=Setup has detected that you do not have the appropriate Administrator privileges to this system. It is highly recommended that you do not continue with the installation of $ProductName$, or it may not function properly. Would you still like to continue? +;*** LOCALIZE ME BABY *** +Message AUTO Restricted Access=Setup has detected that you do not have the appropriate Administrator privileges to this system. Setup cannot continue with the installation of $ProductName$. +;*** LOCALIZE ME BABY *** +Message Cleanup On Upgrade=A previous $ProductNameInternal$ installation has been found in the chosen directory.\n\nUnrecognized 3rd party components will be removed from this directory to prevent version incompatibilities and will have to be re-installed. Your $ProductNameInternal$ profile information will not be affected. +;*** LOCALIZE ME BABY *** +Message Cleanup On Upgrade Windir=Setup has detected that the previous installation of $ProductNameInternal$ was installed to a folder within your Windows folder. Setup will not attempt to cleanup the previous installation of $ProductNameInternal$ due to the potential removal of critical system files. +;*** LOCALIZE ME BABY *** +Cleanup On Upgrade Path Box String=Path to be cleaned up: + + +[Site Selector] +; Dictates whether or not to show the pull down menu. +; Default value is SHOW. +; If Status= is set to HIDE, then Indentifier0 will be used +; and all other IdentifiersX will be ignored. +Status=HIDE + +Identifier0=Site0 +;*** LOCALIZE ME BABY *** +Description0=Default +;*** LOCALIZE ME BABY *** +Domain0=$ArchiveUrl$ + +Identifier1=Site1 +;*** LOCALIZE ME BABY *** +Description1=North America +;*** LOCALIZE ME BABY *** +Domain1=$ArchiveUrl$ + diff --git a/browser/installer/windows/deflenus.jst b/browser/installer/windows/deflenus.jst new file mode 100644 index 000000000000..f13fc7f97adf --- /dev/null +++ b/browser/installer/windows/deflenus.jst @@ -0,0 +1,42 @@ +// main +var srDest; +var err; +var fProgram; + +// ----LOCALIZATION NOTE: translate only these ------ +var prettyName = "US English profile default"; +var regName = "defaults/mozilla/en-US"; +// --- END CHANGABLE STUFF --- + +srDest = $SpaceRequired$:bin; +err = initInstall(prettyName, regName, "$Version$"); +logComment("initInstall: " + err); + +fProgram = getFolder("Program"); +logComment("fProgram: " + fProgram); + +if(verifyDiskSpace(fProgram, srDest)) +{ + setPackageFolder(fProgram); + + err = addDirectory("", + "$Version$", + "bin", // dir name in jar to extract + fProgram, // Where to put this file (Returned from GetFolder) + "", // subdir name to create relative to fProgram + true); // Force Flag + logComment("addDirectory() returned: " + err); + + // check return value + if(err == SUCCESS) + { + err = performInstall(); + logComment("performInstall() returned: " + err); + } + else + cancelInstall(err); +} +else + cancelInstall(INSUFFICIENT_DISK_SPACE); + +// end main diff --git a/browser/installer/windows/editor.jst b/browser/installer/windows/editor.jst new file mode 100644 index 000000000000..cc7fb19b383b --- /dev/null +++ b/browser/installer/windows/editor.jst @@ -0,0 +1,18 @@ +var err = initInstall("Mozilla Editor", "Editor", "$Version$"); +logComment("initInstall: " + err); + +var communicatorFolder = getFolder("Communicator"); +logComment("communicatorFolder: " + communicatorFolder); + +err = addDirectory("Program", + "$Version$", + "bin", // fileName in jar, + communicatorFolder, // Where to put this file (Returned from getFolder) + "", // fileName in jar, + true); // Force Flag + +logComment("addDirectory() returned: " + err); + +err = performInstall(); +logComment("performInstall() returned: " + err); + diff --git a/browser/installer/windows/firebird-win32-stub-installer.jst b/browser/installer/windows/firebird-win32-stub-installer.jst new file mode 100644 index 000000000000..c459071b70ab --- /dev/null +++ b/browser/installer/windows/firebird-win32-stub-installer.jst @@ -0,0 +1,49 @@ +// main +var srDest; +var err; +var fDesktop; +var szFolderDesktop; + +srDest = $SpaceRequired$; +err = initInstall("Mozilla Installer", "/mozilla.org/Mozilla Installer", "$Version$"); +logComment("initInstall: " + err); + +// Find the current user's desktop +winreg = getWinRegistry(); +winreg.setRootKey(winreg.HKEY_CURRENT_USER); +subkey = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders"; +valname = "Desktop"; +szFolderDesktop = winreg.getValueString(subkey, valname); + +fDesktop = getFolder("file:///", szFolderDesktop); +logComment("Desktop location: " + fDesktop); + +if(verifyDiskSpace(fDesktop, srDest)) +{ + setPackageFolder(fDesktop); + + err = addFile("", + "", + "mozilla-win32-stub-installer.exe", // dir name in jar to extract + fDesktop, // Where to put this file (Returned from getFolder) + ""); // subdir name to create relative to fProgram + + logComment("addFile() returned: " + err); + + err = execute("mozilla-win32-stub-installer.exe", "", false); + logComment("execute() returned: " + err); + + // check return value + if(err==SUCCESS) + { + err = performInstall(); + logComment("performInstall() returned: " + err); + } + else + cancelInstall(err); +} +else + cancelInstall(INSUFFICIENT_DISK_SPACE); + +// end main + diff --git a/browser/installer/windows/inspector.jst b/browser/installer/windows/inspector.jst new file mode 100644 index 000000000000..605cd8956dbe --- /dev/null +++ b/browser/installer/windows/inspector.jst @@ -0,0 +1,25 @@ +var err = initInstall("DOM Inspector", "Inspector", "$Version$"); +logComment("initInstall: " + err); + +var fProgram = getFolder("Program"); +logComment("fProgram: " + fProgram); + +err = addDirectory("", "$Version$", "bin", fProgram, "", true); +logComment("addDirectory: " + err); + +addFile("Inspector Command Line Handler", + "bin/components/inspector-cmdline.js", + getFolder("Components"), + ""); + +var jarFolder = getFolder("Chrome", "inspector.jar"); +registerChrome(PACKAGE | DELAYED_CHROME, jarFolder, "content/inspector/"); +registerChrome(SKIN | DELAYED_CHROME, jarFolder, "skin/modern/inspector/"); +registerChrome(SKIN | DELAYED_CHROME, jarFolder, "skin/classic/inspector/"); +registerChrome(LOCALE | DELAYED_CHROME, jarFolder, "locale/en-US/inspector/"); + +err = getLastError(); +if (err==SUCCESS) + performInstall(); +else + cancelInstall(err); diff --git a/browser/installer/windows/install.it b/browser/installer/windows/install.it new file mode 100644 index 000000000000..25dc31a7c7c4 --- /dev/null +++ b/browser/installer/windows/install.it @@ -0,0 +1,129 @@ +[General] +FONTNAME=MS Sans Serif +FONTSIZE=8 +CHARSET=0 +;Here is a partial list CHAR_SETS +; ANSI_CHARSET = 0 +; DEFAULT_CHARSET = 1 +; SYMBOL_CHARSET = 2 +; SHIFTJIS_CHARSET = 128 +; GB2312_CHARSET = 134 +; HANGEUL_CHARSET = 129 +; CHINESEBIG5_CHARSET = 136 +; OEM_CHARSET 255 + +OK_=&OK +OK=OK +CANCEL=Cancel +CANCEL_=&Cancel +NEXT_=&Next > +BACK_=< &Back +IGNORE_=&Ignore +PROXYSETTINGS=Proxy Settings: +PROXYSETTINGS_=&Proxy Settings +SERVER=Server: +PORT=Port: +USERID=User id: +PASSWORD=Password: +SELECTDIRECTORY=Select a directory +DIRECTORIES_=&Directories: +DRIVES_=Dri&ves: +STATUS=Remaining: +FILE=File: +URL=URL: +TO=To Path: +ACCEPT_=&Accept +DECLINE_=&Decline +PROGRAMFOLDER_=&Program Folder: +EXISTINGFOLDERS_=E&xisting Folders: +SETUPMESSAGE=Setup has finished copying files to your computer. Before you can use $ProductNameInternal$, you must restart Windows or your computer. Choose one of the following options and click OK to finish setup. +RESTART=Restart +YESRESTART=Yes, I want to restart my computer now. +NORESTART=No, I will restart my computer later. +ADDITIONALCOMPONENTS_=&Additional Components: +DESCRIPTION=Description +TOTALDOWNLOADSIZE=Total download size: +SPACEAVAILABLE=Space Available: +COMPONENTS_=C&omponents: +DESTINATIONDIRECTORY=Destination Directory +BROWSE_=B&rowse... +CURRENTSETTINGS=Current Settings: +INSTALL_=&Install +DELETE_=&Delete +CONTINUE_=&Continue +SKIP_=&Skip +README=Re&ad Me +PAUSE_=&Pause +RESUME_=&Resume +CHECKED=Checked +UNCHECKED=Unchecked + +EXTRACTING=Extracting... + + +[Messages] + +ERROR_DIALOG_CREATE=Could not create %s dialog. +ERROR_FAILED=%s failed. +ERROR_FILE_NOT_FOUND=File not found: %s +ERROR_GET_SYSTEM_DIRECTORY_FAILED=GetSystemDirectory() failed. +ERROR_GET_WINDOWS_DIRECTORY_FAILED =GetWindowsDirectory() failed. +DLGQUITTITLE=Exit Setup +DLGQUITMSG=Setup is not complete. If you quit the Setup program now, the program will not be installed. You may run the Setup program at a later time to complete the installation. Are you sure you want to cancel Setup? +DLG_REBOOT_TITLE=Restarting Windows +ERROR_GETPROCADDRESS=GetProcAddress() of %s failed. +ERROR_WRITEPRIVATEPROFILESTRING=WritePrivateProfileString() failed for file %s +MSG_RETRIEVE_CONFIGINI=Please wait while Setup is attempting to retrieve Config.ini, required by Setup, from the Web... +ERROR_CREATE_TEMP_DIR=Setup was unable to create the TEMP directory: %s +DLGBROWSETITLE=Select a directory +ERROR_DETERMINING_DISK_SPACE=Could not determine available disk space for: %s +DLG_DISK_SPACE_CHECK_TITLE=Disk space check +DLG_DISK_SPACE_CHECK_CRUTIAL_MSG=Setup has detected insufficient disk space to continue with installation on %s for the path: %sRequired: %sAvailable: %sClick Retry if more disk space has been made available, or click Cancel to cancel Setup. +DLG_DISK_SPACE_CHECK_MSG=Setup has detected insufficient disk space to continue with installation process on %s for the path: %sRequired: %sAvailable: %sClick OK to go back and choose a different destination path. +ERROR_CREATE_DIRECTORY=Could not create folder: %sMake sure you have access to create the folder. +ERROR_MESSAGE_TITLE=$ProductNameInternal$ Setup Error +STR_FILE_NUMBER=File count: +STR_FILENAME=Filename: +MSG_SMARTUPDATE_START=Preparing Install, please wait... +MSG_CONFIGURING=Configuring %s, please wait... +ERROR_XPI_INSTALL=Error occurred during installation +ERROR_SETUP_REQUIREMENT=Windows95 or greater Operating System is required! Exiting setup... +DLG_EXTRACTING_TITLE=$ProductName$ Setup - Install Progress +STR_PROCESSINGFILE=Preparing file: %s +STR_INSTALLING=Currently installing %s +STR_COPYINGFILE=Copying file: %s +MB_WARNING_STR=Warning +MB_MESSAGE_STR=Message +MB_ATTENTION_STR=Attention +MSG_CREATE_DIRECTORY=The following directory does not exist:%sWould you like to create it? +STR_CREATE_DIRECTORY=Create Directory? +ERROR_PROGRAM_FOLDER_NAME=Invalid Program folder name entered. +CB_DEFAULT=Default +ERROR_DESTINATION_PATH=Invalid path entered. +STR_SETUP_TYPE=Setup Type: +STR_SELECTED_COMPONENTS=Selected Components: +STR_DESTINATION_DIRECTORY=Destination Directory: +STR_PROGRAM_FOLDER=Program Folder: +STR_DELETING_DESTINATION_DIR=Deleting destination directory to be able to upgrade, please wait... +STR_SETUP=Setup +STR_DOWNLOAD_SITE=Download Site: +STR_SAVE_INSTALLER_FILES=Save downloaded and Setup program files to: +MSG_INIT_SETUP=Initializing Setup, please wait... +STR_MESSAGEBOX_TITLE=%s Setup +ERROR_GETVERSION=GetVersionEx() failed! +DLG_USAGE_TITLE=Usage + +STATUS_EXTRACTING=Extracting %s +STATUS_LAUNCHING_SETUP=Launching Setup... +ERROR_FILE_WRITE=Unable to write file %s +TITLE=Installation +ERROR_OUT_OF_MEMORY=Out of memory! + +ERROR_DLL_LOAD=Could not load %s +ERROR_STRING_LOAD=Could not load string resource ID %d +ERROR_STRING_NULL=Null pointer encountered. +ERROR_GLOBALALLOC=Memory allocation error. +MSG_FORCE_QUIT_PROCESS=Setup has detected that %s (%s) is still running. Click OK to quit %s and proceed with installation. Alternatively, use the Windows Task Manager to quit %s, and then click OK to continue with installation. +MSG_FORCE_QUIT_PROCESS_FAILED=Setup will now exit. Setup could not continue because %s (%s) is still running. Try manually quitting %s using Windows Task Manager, and then run Setup again. +ERROR_PATH_WITHIN_WINDIR=Setup has detected that you have selected a directory within the Windows directory and will not allow the installation to proceed. Please choose a different directory. + diff --git a/browser/installer/windows/installer.cfg b/browser/installer/windows/installer.cfg new file mode 100644 index 000000000000..4e47178ba057 --- /dev/null +++ b/browser/installer/windows/installer.cfg @@ -0,0 +1,10 @@ +VersionLanguage = en +NameCompany = mozilla.org +NameProduct = Mozilla Firebird +NameProductInternal = Mozilla Firebird +FileApplicationEXE = MozillaFirebird.exe +FileMainEXE = FirebirdSetup.exe +FileUninstall = UninstallFirebird.exe +FileUninstallZIP = UninstallFirebird.zip +FileInstallerNETRoot = FirebirdNetSetup +ComponentList = xpcom,browser,deflenus,langenus,regus,abe,adt diff --git a/browser/installer/windows/langende.jst b/browser/installer/windows/langende.jst new file mode 100644 index 000000000000..58c0a769a5d7 --- /dev/null +++ b/browser/installer/windows/langende.jst @@ -0,0 +1,47 @@ +// main +var srDest; +var err; +var fProgram; + +// ----LOCALIZATION NOTE: translate only these ------ +var prettyName = "English-German Language Pack"; +var regName = "locales/mozilla/en-DE"; +var chromeName = "en-DE.jar"; +// --- END CHANGABLE STUFF --- + +srDest = $SpaceRequired$:bin; +err = initInstall(prettyName, regName, "$Version$"); +logComment("initInstall: " + err); + +fProgram = getFolder("Program"); +logComment("fProgram: " + fProgram); + +if(verifyDiskSpace(fProgram, srDest)) +{ + setPackageFolder(fProgram); + + err = addDirectory("", + "$Version$", + "bin", // dir name in jar to extract + fProgram, // Where to put this file (Returned from GetFolder) + "", // subdir name to create relative to fProgram + true); // Force Flag + logComment("addDirectory() returned: " + err); + + // register chrome + var cf = getFolder("Chrome"); + registerChrome(LOCALE | DELAYED_CHROME, getFolder(cf, chromeName)); + + // check return value + if(err == SUCCESS) + { + err = performInstall(); + logComment("performInstall() returned: " + err); + } + else + cancelInstall(err); +} +else + cancelInstall(INSUFFICIENT_DISK_SPACE); + +// end main diff --git a/browser/installer/windows/langenus.jst b/browser/installer/windows/langenus.jst new file mode 100644 index 000000000000..18e40cd1a723 --- /dev/null +++ b/browser/installer/windows/langenus.jst @@ -0,0 +1,91 @@ +// main +var srDest; +var err; +var fProgram; +var platformNode; + +platformNode = getPlatform(); +logComment("initInstall: platformNode=" + platformNode); +// end +// end - OS type detection + +// ----LOCALIZATION NOTE: translate only these ------ +var prettyName = "English (US) Language Pack"; +var langcode = "en"; +var chromeNode = langcode + "-US"; +// --- END CHANGABLE STUFF --- +var regName = "locales/mozilla/" + chromeNode; +var chromeName = chromeNode + ".jar"; +var platformName = langcode + "-" + platformNode + ".jar"; +var localeName = "locale/" + chromeNode + "/"; + +srDest = $SpaceRequired$:bin; +err = initInstall(prettyName, regName, "$Version$"); +logComment("initInstall: " + err); + +fProgram = getFolder("Program"); +logComment("fProgram: " + fProgram); + +if(verifyDiskSpace(fProgram, srDest)) +{ + var chromeType = LOCALE; + err = addDirectory("", + "bin", // dir name in jar to extract + fProgram, // Where to put this file (Returned from GetFolder) + ""); // Force Flag + logComment("addDirectory() returned: " + err); + + if (err != SUCCESS) + { + logComment("addDirectory() to " + fProgram + "failed!"); + // couldn't install globally, try installing to the profile + resetError(); + chromeType |= PROFILE_CHROME; + fProgram = getFolder("Profile"); + logComment("try installing to the user profile:" + fProgram); + err = addDirectory("","bin",fProgram,""); + } + + setPackageFolder(fProgram); + + // check return value + if (err == SUCCESS) + { + // register chrome + var cf = getFolder(fProgram, "chrome/"+chromeName); + var pf = getFolder(fProgram, "chrome/"+platformName); + + registerChrome(chromeType, cf, localeName + "global/"); + registerChrome(chromeType, pf, localeName + "global-platform/"); + + registerChrome(chromeType, cf, localeName + "browser/"); + registerChrome(chromeType, cf, localeName + "browser-region/"); + registerChrome(chromeType, cf, localeName + "passwordmgr/"); + registerChrome(chromeType, cf, localeName + "mozapps/"); + + registerChrome(chromeType, cf, localeName + "necko/"); + registerChrome(chromeType, cf, localeName + "autoconfig/"); + registerChrome(chromeType, cf, localeName + "cookie/"); + registerChrome(chromeType, cf, localeName + "wallet/"); + registerChrome(chromeType, cf, localeName + "pippki/"); + registerChrome(chromeType, cf, localeName + "pipnss/"); + + // XXXben Soon to be obsolete. + registerChrome(chromeType, cf, localeName + "communicator/"); + registerChrome(chromeType, pf, localeName + "communicator-platform/"); + registerChrome(chromeType, cf, localeName + "navigator/"); + registerChrome(chromeType, pf, localeName + "navigator-platform/"); + + err = performInstall(); + logComment("performInstall() returned: " + err); + } + else + { + cancelInstall(err); + logComment("cancelInstall due to error: " + err); + } +} +else + cancelInstall(INSUFFICIENT_DISK_SPACE); + +// end main diff --git a/browser/installer/windows/mail.jst b/browser/installer/windows/mail.jst new file mode 100644 index 000000000000..b1c15868a659 --- /dev/null +++ b/browser/installer/windows/mail.jst @@ -0,0 +1,474 @@ +function IsWinnt() +{ + /* Determines if the script is running under NT or not. + * + */ + var winreg = getWinRegistry(); + var subkey; + var szCurrentVersion; + + winreg.setRootKey(winreg.HKEY_LOCAL_MACHINE); + subkey = "SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion"; + szCurrentVersion = winreg.getValueString(subkey, "CurrentVersion"); + logComment("szCurrentVersion: " + szCurrentVersion); + if((szCurrentVersion == "") || (szCurrentVersion == null)) + { + return false; + } + else + { + return true; + } +} + +function registerProgramFolderKey(winreg, fFolderPath) +{ + var subkey; + var err; + + /* set the Program Folder Path in the Mozilla key in the Windows Registry */ + winreg.createKey("SOFTWARE\\$CompanyName$", ""); + + subkey = "SOFTWARE\\$CompanyName$\\$ProductName$"; + winreg.createKey(subkey,""); + err = winreg.setValueString(subkey, "CurrentVersion", "$UserAgent$"); + + subkey = "SOFTWARE\\$CompanyName$\\$ProductName$\\$UserAgent$"; + winreg.createKey(subkey,""); + + subkey = "SOFTWARE\\$CompanyName$\\$ProductName$\\$UserAgent$\\Main"; + winreg.createKey(subkey,""); + err = winreg.setValueString(subkey, "Program Folder Path", fFolderPath); +} + +function createShortcuts() +{ + var subkey; + var szStartMenuPrograms; + var szStartMenu; + var szFolderDesktop; + var szFolderQuickLaunch; + var szFolderSendTo; + var szFolderAppData; + var winreg; + var fWindows; + var fTemp; + var fProgram; + var fileExe; + var scExeDesc; + var scProfileDesc; + var scProfileDescParam; + var scFolderName; + var fFolderDesktop; + var fFolderPath; + var fFolderPathStr; + var fFolderQuickLaunch; + var is_winnt; + var szCurrentVersion; + var restrictedAccess; + var ikwDefined; + var folderQuickLaunchExists; + var filePalmSyncInstallExe; + var scDescPalmSyncInstall; + var scDescPalmSyncUninstall; + var folderPalmSyncName; + + winreg = getWinRegistry(); + fWindows = getFolder("Windows"); + fProgram = getFolder("Program"); + fileExe = getFolder("Program", "$MainExeFile$"); + filePalmSyncInstallExe = getFolder("Program", "PalmSyncInstall.exe"); + scDescPalmSyncInstall = "Address Book Palm Sync Install"; + scDescPalmSyncUninstall = "Address Book Palm Sync Uninstall"; + filePalmSyncReadme = getFolder("Program", "palm.html"); + scDescPalmSyncReadme = "Palm Sync User Guide"; + fileMailIcon = getFolder("Chrome", "icons/default/messengerWindow.ico"); + scExeDesc = "Mail"; + scParam = "-mail"; + scFolderName = "$ProductName$"; + folderPalmSyncName = "Palm Tools"; + if(winreg != null) + { + /* This will check to see if the user has restricted access or not. + * It checks to see if HKEY_LOCALMACHINE\SOFTWARE is writable. If + * it is, then access is not restricted. This is only used to + * determine which Desktop, Programs, and Start Menu folders + * are to used: common or per user + */ + restrictedAccess = false; + ikwDefined = typeof(winreg.isKeyWritable); + logComment("winreg.isKeyWritable(): " + ikwDefined); + if(ikwDefined == "function") + { + winreg.setRootKey(winreg.HKEY_LOCAL_MACHINE); + if(!winreg.isKeyWritable("SOFTWARE")) + restrictedAccess = true; + } + + /* determine if the script is running under NT or not */ + winreg.setRootKey(winreg.HKEY_LOCAL_MACHINE); + subkey = "SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion"; + szCurrentVersion = winreg.getValueString(subkey, "CurrentVersion"); + logComment("szCurrentVersion: " + szCurrentVersion); + if((szCurrentVersion == "") || (szCurrentVersion == null)) + { + is_winnt = false; + } + else + { + is_winnt = true; + } + + logComment("is_winnt value: " + is_winnt); + logComment("restrictedAccess value: " + restrictedAccess); + if(!is_winnt || restrictedAccess) + { + winreg.setRootKey(winreg.HKEY_CURRENT_USER); + subkey = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders"; + szStartMenuPrograms = winreg.getValueString(subkey, "Programs"); + szStartMenu = winreg.getValueString(subkey, "Start Menu"); + szFolderDesktop = winreg.getValueString(subkey, "Desktop"); + } + else + { + winreg.setRootKey(winreg.HKEY_LOCAL_MACHINE); + subkey = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders"; + szStartMenuPrograms = winreg.getValueString(subkey, "Common Programs"); + szStartMenu = winreg.getValueString(subkey, "Common Start Menu"); + szFolderDesktop = winreg.getValueString(subkey, "Common Desktop"); + } + + winreg.setRootKey(winreg.HKEY_CURRENT_USER); + subkey = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders"; + szFolderSendTo = winreg.getValueString(subkey, "SendTo"); + + subkey = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders"; + szFolderAppData = winreg.getValueString(subkey, "AppData"); + + // locate the Quick Launch folder + szFolderQuickLaunch = szFolderAppData + "\\Microsoft\\Internet Explorer\\Quick Launch"; + fFolderQuickLaunch = getFolder("file:///", szFolderQuickLaunch); + folderQuickLaunchExists = File.isDirectory(fFolderQuickLaunch); + if(!folderQuickLaunchExists) + { + subkey = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\GrpConv\\MapGroups"; + szFolderQuickLaunch = winreg.getValueString(subkey, "Quick Launch"); + folderQuickLaunchExists = File.isDirectory(fFolderPath); + if(folderQuickLaunchExists) + fFolderQuickLaunch = getFolder("file:///", szFolderQuickLaunch); + } + logComment("folderQuickLaunchExists: " + folderQuickLaunchExists); + + subkey = "SOFTWARE\\$CompanyName$\\$ProductName$\\$UserAgent$\\Main"; + fFolderPathStr = winreg.getValueString(subkey, "Program Folder Path"); + if((fFolderPathStr == "") || (fFolderPathStr == null)) + { + fTemp = szStartMenuPrograms + "\\" + scFolderName; + fFolderPath = getFolder("file:///", fTemp); + } + else + { + /* convert the path string to a path folder object */ + fFolderPath = getFolder("file:///", fFolderPathStr); + } + /* convert the path string to a path folder object */ + fFolderDesktop = getFolder("file:///", szFolderDesktop); + + logComment("Folder StartMenuPrograms: " + szStartMenuPrograms); + logComment("Folder StartMenu : " + szStartMenu); + logComment("Folder FolderDesktop : " + szFolderDesktop); + logComment("Folder FolderSendTo : " + szFolderSendTo); + logComment("Folder FolderQuickLaunch: " + szFolderQuickLaunch); + logComment("fileExe : " + fileExe); + logComment("fFolderPath : " + fFolderPath); + logComment("scExeDesc : " + scExeDesc); + logComment("fProgram : " + fProgram); + + /* explicitly create the fFolderPath even though the windowsShortcut function creates the folder. + * This is so that the folder creation gets logged for uninstall to remove it. */ + if(!File.exists(fFolderPath)) + File.dirCreate(fFolderPath); + + /* create the shortcuts */ + File.windowsShortcut(fileExe, fFolderPath, scExeDesc, fProgram, scParam, fileMailIcon, 0); + + // only create these two shortcuts if the files exist + if(File.exists(filePalmSyncInstallExe)) + { + /* build the path to the sub folder to Palm Sync files */ + var fStartMenuPalmSync = getFolder("file:///", fFolderPath + "/" + folderPalmSyncName); + if(!File.exists(fStartMenuPalmSync)) + File.dirCreate(fStartMenuPalmSync); + + /* clean up the shortcuts in the old place */ + deleteThisFile("file:///", fFolderPath + "/" + scDescPalmSyncInstall); + deleteThisFile("file:///", fFolderPath + "/" + scDescPalmSyncUninstall); + + /* create the shortcuts in the new sub folder */ + File.windowsShortcut(filePalmSyncInstallExe, fStartMenuPalmSync, scDescPalmSyncInstall, fProgram, "", filePalmSyncInstallExe, 0); + File.windowsShortcut(filePalmSyncInstallExe, fStartMenuPalmSync, scDescPalmSyncUninstall, fProgram, "/u", filePalmSyncInstallExe, 1); + + // only create the palm sync readme shortcut if the file exist + if(File.exists(filePalmSyncReadme)) + { + /* create the shortcuts in the new sub folder */ + File.windowsShortcut(filePalmSyncReadme, fStartMenuPalmSync, scDescPalmSyncReadme, fProgram, "", filePalmSyncReadme, 0); + } + } + + // + // Disabled for now because mail does not have a different shortcut icon from Mozilla + // + //// create shortcut in the Quick Launch folder + //if(folderQuickLaunchExists) + // File.windowsShortcut(fileExe, fFolderQuickLaunch, scExeDesc, fProgram, "", fileExe, 0); + + if(!restrictedAccess) + { + winreg.setRootKey(winreg.HKEY_LOCAL_MACHINE); + registerProgramFolderKey(winreg, fFolderPath); + } + + winreg.setRootKey(winreg.HKEY_CURRENT_USER); + registerProgramFolderKey(winreg, fFolderPath); + + // Register as a windows XP mail application + if( IsWinnt() ) + { + subkey = "Software\\Clients\\Mail\\$ProductNameInternal$"; + winreg.setRootKey(winreg.HKEY_LOCAL_MACHINE); + + winreg.createKey(subkey,""); + winreg.createKey(subkey + "\\DefaultIcon", ""); + winreg.createKey(subkey + "\\shell", ""); + winreg.createKey(subkey + "\\shell\\open", ""); + winreg.createKey(subkey + "\\shell\\open\\command", ""); + winreg.createKey(subkey + "\\InstallInfo",""); + + winreg.setValueString(subkey, "", "$ProductName$ Mail"); + + // path does not need to be quoted per MS doc + data = fProgram + "chrome\\icons\\default\\messengerWindow.ico,0"; + winreg.setValueString(subkey + "\\DefaultIcon", "", data); + + data = "\"" + fProgram + "$MainExeFile$\" -mail"; + winreg.setValueString(subkey + "\\shell\\open\\command", "", data); + + data = "\"" + fProgram + "uninstall\\$UninstallFile$\" /ua \"$UserAgent$\" /hs mail"; + winreg.setValueString(subkey + "\\InstallInfo", "HideIconsCommand", data); + + // set this value to 0 because we're not creating the mail shortcuts yet. + winreg.setValueNumber(subkey + "\\InstallInfo", "IconsVisible", 0); + + data = "\"" + fProgram + "$MainExeFile$\" -silent -nosplash -setDefaultMail"; + winreg.setValueString(subkey + "\\InstallInfo", "ReinstallCommand", data); + + data = "\"" + fProgram + "uninstall\\$UninstallFile$\" /ua \"$UserAgent$\" /ss mail"; + winreg.setValueString(subkey + "\\InstallInfo", "ShowIconsCommand", data); + } + } + else + { + logComment("winreg is null"); + } +} + +function updateMapi() +{ + var winreg; + var szValue; + var szMapiBackupDll; + var szDefaultMailClient; + var programMozMapi32File; + var mainExePath; + var sfpProgramMozMapi32File; + var sfpMainExePath; + var winsysMapi32File; + var mapiProxyFile; + var subkey; + var mailDefaultDescription = "$ProductName$ Mail"; + + winreg = getWinRegistry(); + if(winreg != null) + { + mainExePath = getFolder("Program", "$MainExeFile$"); + programMozMapi32File = getFolder("Program", "mozMapi32.dll"); + winsysMapi32File = getFolder("Win System", "Mapi32.dll"); + winreg.setRootKey(winreg.HKEY_LOCAL_MACHINE); + + // If Mapi_backup_dll *and* the default var of + // HKEY_LOCAL_MACHINE\Software\Clients\Mail is set, then install + // mozMapi32.dll to the windows system dir as Mapi32.dll. + szMapiBackupDll = winreg.getValueString("SOFTWARE\\Mozilla\\Desktop", "Mapi_backup_dll"); + szDefaultMailClient = winreg.getValueString("SOFTWARE\\Clients\\Mail", ""); + logComment("szMapiBackupDll: " + szMapiBackupDll); + logComment("szDefaultMailClient: " + szDefaultMailClient); + if((szMapiBackupDll != null) && (szMapiBackupDll != "") && + (szDefaultMailClient != null) && (szDefaultMailClient == "$ProductName$")) + { + // We do not want to log this file to be uninstalled because the + // uninstaller already has a special way to deal with restoring the + // appropriate previous Mapi32.dll. + addFile("", + "$Version$", + "bin/mozMapi32.dll", // file name in jar to extract + getFolder("Win System"), // Where to put this file (Returned from getFolder) + "Mapi32.dll", // new name when installed + DO_NOT_UNINSTALL); + } + + sfpProgramMozMapi32File = File.windowsGetShortName(programMozMapi32File); + sfpMainExePath = File.windowsGetShortName(mainExePath); + + subkey = "SOFTWARE\\Clients\\Mail\\$ProductName$"; + winreg.createKey(subkey, ""); + winreg.setValueString(subkey, "", mailDefaultDescription); + winreg.setValueString(subkey, "DLLPath", sfpProgramMozMapi32File); + + winreg.createKey(subkey + "\\DefaultIcon", ""); + winreg.setValueString(subkey + "\\DefaultIcon", "", sfpMainExePath + ",0"); + + winreg.createKey(subkey + "\\protocols", ""); + winreg.createKey(subkey + "\\protocols\\mailto", ""); + winreg.setValueString(subkey + "\\protocols\\mailto", "", "URL:MailTo Protocol"); + + winreg.createKey(subkey + "\\protocols\\mailto\\shell", ""); + winreg.createKey(subkey + "\\protocols\\mailto\\shell\\open", ""); + winreg.createKey(subkey + "\\protocols\\mailto\\shell\\open\\command", ""); + winreg.setValueString(subkey + "\\protocols\\mailto\\shell\\open\\command", "", sfpMainExePath + " \"%1\""); + + winreg.createKey(subkey + "\\shell", ""); + winreg.createKey(subkey + "\\shell\\open", ""); + winreg.createKey(subkey + "\\shell\\open\\command", ""); + winreg.setValueString(subkey + "\\shell\\open\\command", "", sfpMainExePath + " -mail"); + + // Register MapiProxy.dll + mapiProxyFile = getFolder("Program", "MapiProxy.dll"); + err = File.windowsRegisterServer(mapiProxyFile); + logComment("File.windowsRegisterServer(" + mapiProxyFile + ") returned: " + err); + } +} + +function upgradeCleanup() +{ + // Obsolete files from Netscape 6.0 and Netscape 6.01 that + // need to be cleaned up. + deleteThisFile("Program", "msgMapi.dll"); + deleteThisFile("Components", "signed.dll"); + deleteThisFile("Components", "smimestb.dll"); + deleteThisFile("Components", "nsMapiRegistry.dll"); + deleteThisFile("Components", "absyncsv.dll"); +} + +function updateWinIni() +{ + var fWinIni = getWinProfile(getFolder("Windows"), "win.ini"); + if(fWinIni != null) + { + fWinIni.writeString("Mail", "MAPI", "1"); + fWinIni.writeString("Mail", "MAPIX", "1"); + } +} + +// main +var srDest; +var err; +var fProgram; + +srDest = $SpaceRequired$:bin; +err = initInstall("Mozilla Mail", "Mail", "$Version$"); +logComment("initInstall: " + err); + +fProgram = getFolder("Program"); +logComment("fProgram: " + fProgram); + +if(verifyDiskSpace(fProgram, srDest)) +{ + setPackageFolder(fProgram); + + upgradeCleanup(); + err = addDirectory("", + "$Version$", + "bin", // dir name in jar to extract + fProgram, // Where to put this file (Returned from GetFolder) + "", // subdir name to create relative to fProgram + true); // Force Flag + logComment("addDirectory() returned: " + err); + + // check return value + if( err == SUCCESS ) + { + createShortcuts(); + updateWinIni(); + updateMapi(); + + // we don't want to fail on errors for the above + resetError(); + + // register chrome + registerChrome(CONTENT | DELAYED_CHROME, + getFolder("Chrome","messenger.jar"), + "content/messenger/"); + registerChrome(CONTENT | DELAYED_CHROME, + getFolder("Chrome","messenger.jar"), + "content/messenger-region/"); + registerChrome(CONTENT | DELAYED_CHROME, + getFolder("Chrome","messenger.jar"), + "content/messenger-smime/"); + registerChrome(CONTENT | DELAYED_CHROME, + getFolder("Chrome","messenger.jar"), + "content/messenger-mdn/"); + registerChrome(CONTENT | DELAYED_CHROME, + getFolder("Chrome","messenger.jar"), + "content/messenger-views/"); + registerChrome(CONTENT | DELAYED_CHROME, + getFolder("Chrome","messenger.jar"), + "content/messenger-mapi/"); + + // log comments for uninstalling the registry keys created by mail for setting + // itself up in WinXP's Start menu + logComment("Create Registry Key: HKEY_LOCAL_MACHINE\\Software\\Clients\\Mail\\$ProductName$ []"); + logComment("Store Registry Value: HKEY_LOCAL_MACHINE\\Software\\Clients\\Mail\\$ProductName$ []"); + logComment("Store Registry Value: HKEY_LOCAL_MACHINE\\Software\\Clients\\Mail\\$ProductName$ [DLLPath]"); + logComment("Create Registry Key: HKEY_LOCAL_MACHINE\\Software\\Clients\\Mail\\$ProductName$\\DefaultIcon []"); + logComment("Store Registry Value: HKEY_LOCAL_MACHINE\\Software\\Clients\\Mail\\$ProductName$\\DefaultIcon []"); + logComment("Create Registry Key: HKEY_LOCAL_MACHINE\\Software\\Clients\\Mail\\$ProductName$\\protocols []"); + logComment("Create Registry Key: HKEY_LOCAL_MACHINE\\Software\\Clients\\Mail\\$ProductName$\\protocols\\mailto []"); + logComment("Store Registry Value: HKEY_LOCAL_MACHINE\\Software\\Clients\\Mail\\$ProductName$\\protocols\\mailto []"); + logComment("Create Registry Key: HKEY_LOCAL_MACHINE\\Software\\Clients\\Mail\\$ProductName$\\protocols\\mailto\\shell []"); + logComment("Create Registry Key: HKEY_LOCAL_MACHINE\\Software\\Clients\\Mail\\$ProductName$\\protocols\\mailto\\shell\\open []"); + logComment("Create Registry Key: HKEY_LOCAL_MACHINE\\Software\\Clients\\Mail\\$ProductName$\\protocols\\mailto\\shell\\open\\command []"); + logComment("Store Registry Value: HKEY_LOCAL_MACHINE\\Software\\Clients\\Mail\\$ProductName$\\protocols\\mailto\\shell\\open\\command []"); + logComment("Create Registry Key: HKEY_LOCAL_MACHINE\\Software\\Clients\\Mail\\$ProductName$\\shell []"); + logComment("Create Registry Key: HKEY_LOCAL_MACHINE\\Software\\Clients\\Mail\\$ProductName$\\shell\\open []"); + logComment("Create Registry Key: HKEY_LOCAL_MACHINE\\Software\\Clients\\Mail\\$ProductName$\\shell\\open\\command []"); + logComment("Store Registry Value: HKEY_LOCAL_MACHINE\\Software\\Clients\\Mail\\$ProductName$\\shell\\open\\command []"); + + // check return value + err = getLastError(); + if(err == SUCCESS) + { + err = performInstall(); + logComment("performInstall() returned: " + err); + + // Commenting this out for now until bug 182423 is fixed. This will at least prevent + // people who have not run PalmSyncInstall.exe to run into bug 182423. However, + // if they run the PalmSync uninstall by hand via the Start menu, then they will + // still run into the bug. + //if(err == SUCCESS) + //{ + // // Log the uninstall command to run PalmSyncInstall.exe to uninstall itself. + // // This needs to be logged after all the files have been installed. + // logComment("Uninstall Command: \"" + fProgram + "PalmSyncInstall.exe\" /us"); + //} + } + else + cancelInstall(err); + } + else + cancelInstall(err); +} +else + cancelInstall(INSUFFICIENT_DISK_SPACE); + +// end main diff --git a/browser/installer/windows/packages-static b/browser/installer/windows/packages-static new file mode 100644 index 000000000000..a627bbb2796e --- /dev/null +++ b/browser/installer/windows/packages-static @@ -0,0 +1,257 @@ +; Package file for Win32 static Firebird build. +; +; File format: +; +; [] designates a toplevel component. Example: [xpcom] +; - in front of a file specifies it to be removed from the destination +; * wildcard support to recursively copy the entire directory +; ; file comment +; + +bin/.autoreg + +[langenus] +; en-US +bin\chrome\en-US.jar +bin\chrome\en-win.jar + +[regus] +; US +; If you add a new directory you must explicitly call addDirectory in regus.jst +bin\chrome\US.jar +bin\defaults\profile\US\* +bin\searchplugins\* + +[deflenus] +; Default files for US +bin\defaults\profile\bookmarks.html +bin\defaults\profile\localstore.rdf +bin\defaults\profile\search.rdf +bin\defaults\profile\mimeTypes.rdf + +[xpcom] +bin\js3250.dll +bin\plc4.dll +bin\plds4.dll +bin\xpcom.dll +bin\xpistub.dll +bin\nsreg.dll +bin\nspr4.dll +bin\components\xpinstal.dll +bin\components\jar50.dll +bin\components\ucharuti.dll +bin\xpcom_compat.dll +bin\components\xpcom_compat_c.dll + +[browser] +; [Base Browser Files] +bin\MozillaFirebird.exe +bin\plugins\npnul32.dll +bin\res\cmessage.txt +bin\xpicleanup.exe + +; [Components] +bin\components\accessibility.xpt +bin\components\accessibility-msaa.xpt +bin\components\AcctIdl.xpt +bin\components\appshell.xpt +bin\components\autocomplete.xpt +bin\components\bookmarks.xpt +bin\components\crypto.dll +bin\components\directory.xpt +bin\components\downloadmanager.xpt +bin\components\commandhandler.xpt +bin\components\history.xpt +bin\components\winhooks.xpt +bin\components\related.xpt +bin\components\search.xpt +bin\components\timebomb.xpt +bin\components\urlbarhistory.xpt +bin\components\urlwidgt.xpt +bin\components\universalchardet.dll +bin\components\caps.xpt +bin\components\chrome.xpt +bin\components\cookie.xpt +bin\components\docshell_base.xpt +bin\components\jsd3250.dll +bin\components\jsdservice.xpt +bin\components\dom.xpt +bin\components\dom_base.xpt +bin\components\dom_core.xpt +bin\components\dom_css.xpt +bin\components\dom_events.xpt +bin\components\dom_html.xpt +bin\components\dom_range.xpt +bin\components\dom_stylesheets.xpt +bin\components\dom_traversal.xpt +bin\components\dom_views.xpt +bin\components\dom_xbl.xpt +bin\components\dom_xpath.xpt +bin\components\dom_xul.xpt +bin\components\editor.xpt +bin\components\find.xpt +bin\components\gfx.xpt +bin\components\gfx2.xpt +bin\components\content_base.xpt +bin\components\content_html.xpt +bin\components\content_htmldoc.xpt +bin\components\content_xmldoc.xpt +bin\components\content_xslt.xpt +bin\components\xuldoc.xpt +bin\components\xultmpl.xpt +bin\components\imglib2.xpt +bin\components\imgicon.xpt +bin\components\intl.xpt +bin\components\chardet.xpt +bin\components\jar.xpt +bin\components\jsconsole-clhandler.js +bin\components\jsurl.xpt +bin\components\layout_base.xpt +bin\components\layout_xul.xpt +bin\components\layout_xul_tree.xpt +bin\components\locale.xpt +bin\components\mozbrwsr.xpt +bin\components\mozcomps.xpt +bin\components\mozfind.xpt +bin\components\mozucth.xpt +bin\components\mozxfer.xpt +bin\components\necko.xpt +bin\components\mimetype.xpt +bin\components\necko_cache.xpt +bin\components\necko_strconv.xpt +bin\components\necko_about.xpt +bin\components\necko_data.xpt +bin\components\necko_dns.xpt +bin\components\necko_ftp.xpt +bin\components\necko_http.xpt +bin\components\necko_jar.xpt +bin\components\necko_res.xpt +bin\components\nsSidebar.js +bin\components\oji.xpt +bin\components\pref.xpt +bin\components\prefmigr.xpt +bin\components\profile.xpt +bin\components\proxyObject.xpt +bin\components\rdf.xpt +bin\components\shistory.xpt +bin\components\sidebar.xpt +bin\components\signonviewer.xpt +bin\components\txtsvc.xpt +bin\components\txmgr.xpt +bin\components\uconv.xpt +bin\components\unicharutil.xpt +bin\components\uriloader.xpt +bin\components\exthandler.xpt +bin\components\util.xpt +bin\components\wallet.xpt +bin\components\walleteditor.xpt +bin\components\walletpreview.xpt +bin\components\webBrowser_core.xpt +bin\components\webbrowserpersist.xpt +bin\components\embed_base.xpt +bin\components\webshell_idls.xpt +bin\components\widget.xpt +bin\components\windowwatcher.xpt +bin\components\xpcom_base.xpt +bin\components\xpcom_components.xpt +bin\components\xpcom_ds.xpt +bin\components\xpcom_eventloop_windows.xpt +bin\components\xpcom_eventloop_xp.xpt +bin\components\xpcom_io.xpt +bin\components\xpcom_nativeapp.xpt +bin\components\xpcom_thread.xpt +bin\components\xpcom_xpti.xpt +bin\components\xpcom_obsolete.xpt +bin\components\xpconnect.xpt +bin\components\xpinstall.xpt +bin\components\autoconfig.xpt +bin\components\xml-rpc.xpt +bin\components\nsDictionary.js +bin\components\nsProxyAutoConfig.js +bin\components\nsXmlRpcClient.js +bin\components\xmlextras.xpt +bin\components\nsHelperAppDlg.js +bin\components\helperAppDlg.xpt +bin\components\nsKillAll.js +bin\components\nsProgressDialog.js +bin\components\progressDlg.xpt +bin\components\nsDownloadProgressListener.js +bin\components\typeaheadfind.xpt +bin\components\nsCloseAllWindows.js +; webservices +bin\components\websrvcs.dll +bin\components\websrvcs.xpt + +; [Browser Chrome Files] +bin\chrome\browser.jar +bin\chrome\classic.jar +bin\chrome\comm.jar +bin\chrome\toolkit.jar + +; [Default Preferences] +; All the pref files must be part of base to prevent migration bugs +bin\defaults\pref\all.js +bin\defaults\pref\security-prefs.js +bin\defaults\pref\winpref.js +bin\defaults\pref\xpinstall.js +bin\defaults\autoconfig\platform.js +bin\defaults\autoconfig\prefcalls.js + +; [Layout Engine Resources] +; Style Sheets, Graphics and other Resources used by the layout engine. +bin\res\ua.css +bin\res\html.css +bin\res\quirk.css +bin\res\forms.css +bin\res\platform-forms.css +bin\res\EditorOverride.css +bin\res\viewsource.css +bin\res\mathml.css +bin\res\arrow.gif +bin\res\loading-image.gif +bin\res\broken-image.gif +bin\res\fonts\* +bin\res\dtd\* +bin\res\wincharset.properties +bin\res\charsetalias.properties +bin\res\charsetData.properties +bin\res\langGroups.properties +bin\res\language.properties +bin\res\entityTables\* +bin\res\builtin\htmlBindings.xml +bin\res\builtin\platformHTMLBindings.xml + +; [Personal Security Manager] +; +bin\nssckbi.dll +bin\components\pipboot.dll +bin\components\pipboot.xpt +bin\components\pipnss.dll +bin\components\pipnss.xpt +bin\components\pippki.dll +bin\components\pippki.xpt +bin\nss3.dll +bin\smime3.dll +bin\softokn3.chk +bin\softokn3.dll +bin\ssl3.dll +bin\chrome\pipnss.jar +bin\chrome\pippki.jar + +; [Additional Developer Tools] +[adt] +; [Document Inspector] +bin\components\inspector-cmdline.js +bin\components\inspector.dll +bin\components\inspector.xpt +bin\chrome\inspector.jar +bin\defaults\pref\inspector.js +bin\res\inspector\viewer-registry.rdf +bin\res\inspector\search-registry.rdf +; [Venkman JavaScript Debugger] +bin\components\venkman-service.js +bin\chrome\venkman.jar + +; [Additional Browsing Enhancements] +[abe] + diff --git a/browser/installer/windows/psm.jst b/browser/installer/windows/psm.jst new file mode 100644 index 000000000000..f69a871d6113 --- /dev/null +++ b/browser/installer/windows/psm.jst @@ -0,0 +1,51 @@ +function upgradeCleanup() +{ + // Obsolete files from Netscape 6.0 and Netscape 6.01 that + // need to be cleaned up. + deleteThisFile("Program", "psm.exe"); + deleteThisFile("Components", "psmglue.dll"); +} + +// main +var srDest; +var err; +var fProgram; + +srDest = $SpaceRequired$:bin; +err = initInstall("Personal Security Manager", "Personal Security Manager", "$Version$"); +logComment("initInstall: " + err); + +fProgram = getFolder("Program"); +logComment("fProgram: " + fProgram); + +if(verifyDiskSpace(fProgram, srDest)) +{ + setPackageFolder(fProgram); + + upgradeCleanup(); + err = addDirectory("", + "$Version$", + "bin", // dir name in jar to extract + fProgram, // Where to put this file (Returned from GetFolder) + "", // subdir name to create relative to fProgram + true); // Force Flag + logComment("addDirectory() returned: " + err); + + // check return value + if(err == SUCCESS) + { + + var pki = getFolder("Chrome", "pippki.jar"); + var nss = getFolder("Chrome", "pipnss.jar"); + registerChrome(CONTENT | DELAYED_CHROME, pki, "content/pippki/"); + registerChrome(CONTENT | DELAYED_CHROME, nss, "content/pipnss/"); + err = performInstall(); + logComment("performInstall() returned: " + err); + } + else + cancelInstall(err); +} +else + cancelInstall(INSUFFICIENT_DISK_SPACE); + +// end main diff --git a/browser/installer/windows/redirect.it b/browser/installer/windows/redirect.it new file mode 100644 index 000000000000..2688387c2634 --- /dev/null +++ b/browser/installer/windows/redirect.it @@ -0,0 +1,4 @@ +[Site Selector] +Site0=$ArchiveUrl$ +Site1=$ArchiveUrl$ + diff --git a/browser/installer/windows/regus.jst b/browser/installer/windows/regus.jst new file mode 100644 index 000000000000..33c55d8af20c --- /dev/null +++ b/browser/installer/windows/regus.jst @@ -0,0 +1,93 @@ +// main +var srDest; +var err; +var fProgram; +var searchPlugins = "searchplugins"; +var platformNode = getPlatform(); + +// ----LOCALIZATION NOTE: translate only these ------ +var prettyName = "US Region Pack"; +var chromeNode = "US"; +// --- END CHANGABLE STUFF --- + +var regName = "locales/mozilla/" + chromeNode; +var chromeName = chromeNode + ".jar"; +var localeName = "locale/" + chromeNode + "/"; + +srDest = $SpaceRequired$:bin; +err = initInstall(prettyName, regName, "$Version$"); +logComment("initInstall: " + err); + +if (platformNode == 'mac') +{ + searchPlugins = "Search Plugins"; +} + +fProgram = getFolder("Program"); +logComment("fProgram: " + fProgram); + +if(verifyDiskSpace(fProgram, srDest)) +{ + var chromeType = LOCALE; + var fTarget; + + setPackageFolder(fProgram); + + fTarget = getFolder("Chrome"); + err = addDirectory("", + "bin/chrome", // dir name in jar to extract + fTarget, // Where to put this file (Returned from GetFolder) + ""); // subdir name to create relative to fProgram + logComment("addDirectory() returned: " + err); + if (err == SUCCESS) + { + fTarget = getFolder("Program", "defaults"); + logComment("fTarget: " + fTarget); + err = addDirectory("", + "bin/defaults", // dir name in jar to extract + fTarget, // Where to put this file (Returned from GetFolder) + ""); // subdir name to create relative to fProgram + logComment("addDirectory() returned: " + err); + if (err == SUCCESS) + { + fTarget = getFolder("Program", searchPlugins); + logComment("fTarget: " + fTarget); + err = addDirectory("", + "bin/searchplugins", // dir name in jar to extract + fTarget, // Where to put this file (Returned from GetFolder) + ""); // subdir name to create relative to fProgram + logComment("addDirectory() returned: " + err); + } + } + if (err != SUCCESS) + { + logComment("addDirectory() to " + fProgram + "failed!"); + // couldn't install globally, try installing to the profile + resetError(); + chromeType |= PROFILE_CHROME; + fProgram = getFolder("Profile"); + logComment("try installing to the profile: " + fProgram); + err = addDirectory("","bin/chrome",fProgram,"chrome"); + } + + if (err == SUCCESS) + { + // register chrome + var cf = getFolder(fProgram, "chrome/"+ chromeName); + registerChrome(chromeType, cf, localeName + "global-region/"); + registerChrome(chromeType, cf, localeName + "communicator-region/"); + registerChrome(chromeType, cf, localeName + "navigator-region/"); + + err = performInstall(); + logComment("performInstall() returned: " + err); + } + else + { + cancelInstall(err); + logComment("cancelInstall due to error: " + err); + } +} +else + cancelInstall(INSUFFICIENT_DISK_SPACE); + +// end main diff --git a/browser/installer/windows/spellcheck.jst b/browser/installer/windows/spellcheck.jst new file mode 100644 index 000000000000..223b5aaa97be --- /dev/null +++ b/browser/installer/windows/spellcheck.jst @@ -0,0 +1,25 @@ +var srDest = $SpaceRequired$; + +var err = initInstall("Mozilla Myspell Spellchecker", "Spellchecker", "$Version$"); +logComment("initInstall: " + err); + +fProgram = getFolder("Program"); +logComment("fProgram: " + fProgram) + +if (verifyDiskSpace(fProgram, srDest)) +{ + setPackageFolder(fProgram); + + addDirectory("Spellchecker", + "$Version$", + "bin", + fProgram, + ""); + + if (err==SUCCESS) + performInstall(); + else + cancelInstall(err); +} +else + cancelInstall(INSUFFICIENT_DISK_SPACE); diff --git a/browser/installer/windows/talkback.jst b/browser/installer/windows/talkback.jst new file mode 100644 index 000000000000..847083adfa11 --- /dev/null +++ b/browser/installer/windows/talkback.jst @@ -0,0 +1,9 @@ +// main + +var err; + +err = initInstall("Quality Feedback Agent", "Quality Feedback Agent", "6.5.0.2001012623"); +logComment("Talkback place holder .xpi for the real thing."); +cancelInstall(err); + +// end main diff --git a/browser/installer/windows/uninstall.it b/browser/installer/windows/uninstall.it new file mode 100644 index 000000000000..a1535ea89d51 --- /dev/null +++ b/browser/installer/windows/uninstall.it @@ -0,0 +1,166 @@ +[General] +; Run Mode values: +; Normal - Shows all dialogs. Requires user input. +; Auto - Shows some dialogs, but none requiring user input. It will +; automatically uninstall the product using default values. +; Silent - Show no dialogs at all. It will uninstall product using default +; values. +Run Mode=Normal + +Company Name=$CompanyName$ +Product Name=$ProductName$ + +; Valid Path values: +; PROGRAMFILESDIR +; WINDISK +; WINDIR +; WINSYSDIR +; COMMON_STARTUP +; COMMON_PROGRAMS +; COMMON_STARTMENU +; COMMON_DESKTOP +; +; PERSONAL_STARTUP +; PERSONAL_PROGRAMS +; PERSONAL_STARTMENU +; PERSONAL_DESKTOP +; +; PERSONAL_APPDATA +; PERSONAL_CACHE +; PERSONAL_COOKIES +; PERSONAL_FAVORITES +; PERSONAL_FONTS +; PERSONAL_HISTORY +; PERSONAL_NETHOOD +; PERSONAL_PERSONAL +; PERSONAL_PRINTHOOD (supported only under Windows NT) +; PERSONAL_RECENT +; PERSONAL_SENDTO +; PERSONAL_TEMPLATES +; +; PROGRAMFILESDIR +; COMMONFILESDIR +; MEDIAPATH +; CONFIGPATH (supported only under Windows95 and Windows98) +; DEVICEPATH + +; This provides information on where in the Windows Registry to locate the Uninstall log files +; +Main Root Key=HKEY_LOCAL_MACHINE +Main Key=[Product WinRegKey] +Decrypt Main Key=TRUE + +Root Key=HKEY_LOCAL_MACHINE +Key=[Product CurrentVersion]\Uninstall +Decrypt Key=TRUE + +Uninstall Filename=$UninstallFile$ + +[Check Instance0] +Class Name=MozillaMessageWindow +Window Name= +Process Name=$MainExeFile$ +Pretty Name=$ProductNameInternal$ +;*** LOCALIZE ME BABY *** +Message=$ProductNameInternal$ is detected to be currently running. Please quit $ProductNameInternal$ before continuing. Click OK to exit $ProductNameInternal$ automatically and proceed with uninstallation. +;*** LOCALIZE ME BABY *** +Message wait=Shutting down $ProductNameInternal$. Please wait... + +; This key indicates whether or not to close all the windows associated with +; the process id of this app instance window found. +Close All Process Windows=TRUE + +; These keys are not normally necessary for checking instances. They are +; set here because Mozilla requires a way to shut down it's turbo mode. +Extra Cmd0 Reg Key Root=HKEY_LOCAL_MACHINE +Extra Cmd0 Reg Key=Software\Microsoft\Windows\CurrentVersion\App Paths\$MainExeFile$ +Extra Cmd0 Reg Name= +Extra Cmd0 Parameter=-kill + +[Check Instance1] +Class Name=Netscape6MessageWindow +Window Name= +Process Name=Netscp.exe +Pretty Name=Netscape +;*** LOCALIZE ME BABY *** +Message=Netscape is detected to be currently running. Please quit Netscape before continuing. Click OK to exit Netscape automatically and proceed with uninstallation. +;*** LOCALIZE ME BABY *** +Message wait=Shutting down Netscape. Please wait... + +; This key indicates whether or not to close all the windows associated with +; the process id of this app instance window found. +Close All Process Windows=TRUE + +; These keys are not normally necessary for checking instances. They are +; set here because Netscape 6 requires a way to shut down it's turbo mode. +; This will stop at the first one that succeeds (key and file found). +Extra Cmd0 Reg Key Root=HKEY_LOCAL_MACHINE +Extra Cmd0 Reg Key=Software\Microsoft\Windows\CurrentVersion\App Paths\Netscp6.exe +Extra Cmd0 Reg Name= +Extra Cmd0 Parameter=-kill + +Extra Cmd1 Reg Key Root=HKEY_LOCAL_MACHINE +Extra Cmd1 Reg Key=Software\Microsoft\Windows\CurrentVersion\App Paths\Netscp.exe +Extra Cmd1 Reg Name= +Extra Cmd1 Parameter=-kill + + +[Dialog Uninstall] +FONTNAME=MS Sans Serif +FONTSIZE=8 +CHARSET=0 +;Here is a partial list CHAR_SETS +; ANSI_CHARSET = 0 +; DEFAULT_CHARSET = 1 +; SYMBOL_CHARSET = 2 +; SHIFTJIS_CHARSET = 128 +; GB2312_CHARSET = 134 +; HANGEUL_CHARSET = 129 +; CHINESEBIG5_CHARSET = 136 +; OEM_CHARSET 255 +Show Dialog=TRUE +Title=$ProductName$ Uninstaller +Message0=Are you sure you want to completely remove %s and all of its components? + +Uninstall=&Uninstall +Cancel=&Cancel +Message1=Uninstall has detected that the following shared file is no longer used by any programs. If any programs still require the shared file and it is removed, those programs may no longer function. Are you sure you want to remove this shared file? +Message2=Leaving this file will not harm your system. If you are not sure, it is recommended that the shared file be not removed from the system. +FileName=File name: +No=&No +NoToAll=N&o to all +Yes=&Yes +YesToAll=Y&es to all + +; This section attempts to restore/undo the desktop integration performed by the browser/mail +[Restore Desktop Integration] +Enabled=TRUE + +; This section attempts to cleanup the UnreadMail registry keys set up by mail. +[Cleanup Mail Integration] +Enabled=TRUE + +[Messages] +ERROR_DLL_LOAD=Could not load %s +ERROR_STRING_LOAD=Could not load string resource ID %d +ERROR_STRING_NULL=Null pointer encountered. +ERROR_GLOBALALLOC=Memory allocation error. +ERROR_FAILED=%s failed. +ERROR_DIALOG_CREATE=Could not create %s dialog. +DLGQUITTITLE=Question +DLGQUITMSG=Are you sure you want to cancel? +ERROR_GET_SYSTEM_DIRECTORY_FAILED=GetSystemDirectory() failed. +ERROR_GET_WINDOWS_DIRECTORY_FAILED=GetWindowsDirectory() failed. +ERROR_CREATE_TEMP_DIR=Uninstall was not able to create the TEMP directory: %s +ERROR_SETUP_REQUIREMENT=Windows95 or greater Operating System is required! Exiting Uninstall... +MB_WARNING_STR=Warning +ERROR_UNINSTALL_LOG_FOLDER=Uninstall log folder not found:%s +MB_MESSAGE_STR=Message +DLG_REMOVE_FILE_TITLE=Remove File? +ERROR_GETVERSION=GetVersionEx() failed! +MB_ATTENTION_STR=Attention +MSG_FORCE_QUIT_PROCESS=Uninstall has detected that %s (%s) is still running. Click OK to quit %s and proceed with uninstallation. Alternatively, use the Windows Task Manager to quit %s, and then click OK to continue with uninstallation. +MSG_FORCE_QUIT_PROCESS_FAILED=Uninstall will now exit. Uninstall could not continue because %s (%s) is still running. Try manually quitting %s using Windows Task Manager, and then run Uninstall again. +MSG_DELETE_INSTALLATION_PATH=Not all files were uninstalled from the installation directory:\n\n %s\n\nDo you want to completely delete this directory? +MSG_INSTALLATION_PATH_WITHIN_WINDIR=Uninstall has detected that the installation path of $ProductNameInternal$ is installed to a folder within your Windows folder. Uninstall will not attempt to delete this installation due to the potential removal of critical system files. + diff --git a/browser/installer/windows/venkman.jst b/browser/installer/windows/venkman.jst new file mode 100644 index 000000000000..5c374bd3f435 --- /dev/null +++ b/browser/installer/windows/venkman.jst @@ -0,0 +1,22 @@ +var err = initInstall("JavaScript Debugger", "Venkman", "$Version$"); +logComment("initInstall: " + err); + +addFile("Venkman Service", + "bin/components/venkman-service.js", + getFolder("Components"), + ""); + +addFile("Venkman Chrome", + "bin/chrome/venkman.jar", // jar source folder + getFolder("Chrome"), // target folder + ""); // target subdir + +registerChrome(PACKAGE | DELAYED_CHROME, getFolder("Chrome","venkman.jar"), "content/venkman/"); +registerChrome(SKIN | DELAYED_CHROME, getFolder("Chrome","venkman.jar"), "skin/modern/venkman/"); +registerChrome(LOCALE | DELAYED_CHROME, getFolder("Chrome","venkman.jar"), "locale/en-US/venkman/"); + +err = getLastError(); +if (err==SUCCESS) + performInstall(); +else + cancelInstall(err); diff --git a/browser/installer/windows/xpcom.jst b/browser/installer/windows/xpcom.jst new file mode 100644 index 000000000000..10a6d815b608 --- /dev/null +++ b/browser/installer/windows/xpcom.jst @@ -0,0 +1,111 @@ +function upgradeCleanup() +{ + deleteThisFile("Program", "zlib.dll"); + deleteThisFile("Program", "component.reg"); + deleteThisFile("Components", "compreg.dat"); + deleteThisFile("Components", "xpti.dat"); + deleteThisFile("Components", "xptitemp.dat"); +} + +// main +var srDest; +var err; +var szUninstall; +var fProgram; +var fWindowsSystem; +var fileComponentReg; +var fileComponentRegStr; +var fileMsvcrt; +var fileMsvcirt; + +srDest = $SpaceRequired$:bin; +err = initInstall("Mozilla XPCOM", "XPCOM", "$Version$"); +logComment("initInstall: " + err); + +fProgram = getFolder("Program"); +fWindowsSystem = getFolder("Win System"); +logComment("fProgram: " + fProgram); + +// build the uninstall folder path +szUninstall = fProgram + "Uninstall"; + +// Log component.reg file so it can be deleted by the uninstaller. +// These two files are created after installation is done, thus +// are normally not logged for uninstall. +logComment("Installing: " + fProgram + "component.reg"); + +if(verifyDiskSpace(fProgram, srDest)) +{ + setPackageFolder(fProgram); + + upgradeCleanup(); + err = addDirectory("", + "$Version$", + "bin", // dir name in jar to extract + fProgram, // Where to put this file (Returned from GetFolder) + "", // subdir name to create relative to fProgram + true); // Force Flag + logComment("addDirectory() of Program returned: " + err); + + if( err == SUCCESS ) + { + // install msvcrt.dll *only* if it does not exist + // we don't care if addFile() fails (if the file does not exist in the archive) + // bacause it will still install + fileMsvcrt = getFolder(fWindowsSystem, "msvcrt.dll"); + rv = File.exists(fileMsvcrt); + logComment("fileExists() returned: " + rv); + if(rv == false) + { + logComment("File not found: " + fileMsvcrt); + addFile("/Microsoft/Shared/msvcrt.dll", + "$Version$", + "msvcrt.dll", // dir name in jar to extract + fWindowsSystem, // Where to put this file (Returned from getFolder) + "", // subdir name to create relative to fProgram + WIN_SHARED_FILE); + logComment("addFile() of msvcrt.dll returned: " + err); + } + else + { + logComment("File found: " + fileMsvcrt); + } + + // install msvcirt.dll *only* if it does not exist + // we don't care if addFile() fails (if the file does not exist in the archive) + // bacause it will still install + fileMsvcirt = getFolder(fWindowsSystem, "msvcirt.dll"); + rv = File.exists(fileMsvcirt); + logComment("fileExists() returned: " + rv); + if(rv == false) + { + logComment("File not found: " + fileMsvcirt); + addFile("/Microsoft/Shared/msvcirt.dll", + "$Version$", + "msvcirt.dll", // dir name in jar to extract + fWindowsSystem, // Where to put this file (Returned from getFolder) + "", // subdir name to create relative to fProgram + WIN_SHARED_FILE); + logComment("addFile() of msvcirt.dll returned: " + err); + } + else + { + logComment("File found: " + fileMsvcirt); + } + } + + // check return value + if( err == SUCCESS ) + { + err = performInstall(); + logComment("performInstall() returned: " + err); + } + else + cancelInstall(err); +} +else + cancelInstall(INSUFFICIENT_DISK_SPACE); + + +// end main +