home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2001 May
/
Chip_2001-05_cd2.bin
/
ChipCD
/
browsery
/
netscape601_eng
/
nsrpreg.xpi
/
install.js
next >
Wrap
Text File
|
2001-02-02
|
3KB
|
110 lines
// this function verifies disk space in kilobytes
function verifyDiskSpace(dirPath, spaceRequired)
{
var spaceAvailable;
// Get the available disk space on the given path
spaceAvailable = fileGetDiskSpaceAvailable(dirPath);
// Convert the available disk space into kilobytes
spaceAvailable = parseInt(spaceAvailable / 1024);
// do the verification
if(spaceAvailable < spaceRequired)
{
logComment("Insufficient disk space: " + dirPath);
logComment(" required : " + spaceRequired + " K");
logComment(" available: " + spaceAvailable + " K");
return(false);
}
return(true);
}
function updateWinReg4Ren8dot3()
{
var fProgram = getFolder("Program");
var fTemp = getFolder("Temporary");
//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 subkey; // the name of the subkey you are poking around in
var valname; // the name of the value you want to look at
var value; // the data in the value you want to look at.
var winreg = getWinRegistry() ;
if(winreg != null)
{
// Here, we get the current version.
winreg.setRootKey(winreg.HKEY_CURRENT_USER) ; // CURRENT_USER
subkey = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\RunOnce" ;
winreg.createKey(subkey,"");
valname = "ren8dot3";
value = fProgram + "ren8dot3.exe " + fTemp + "ren8dot3.ini";
err = winreg.setValueString(subkey, valname, value);
}
}
function prepareRen8dot3(listLongFilePaths)
{
var fTemp = getFolder("Temporary");
var fProgram = getFolder("Program");
var fRen8dot3Ini = getWinProfile(fTemp, "ren8dot3.ini");
var bIniCreated = false;
var fLongFilePath;
var sShortFilePath;
if(fRen8dot3Ini != null)
{
for(i = 0; i < listLongFilePaths.length; i++)
{
fLongFilePath = getFolder(fProgram, listLongFilePaths[i]);
sShortFilePath = File.windowsGetShortName(fLongFilePath);
if(sShortFilePath)
{
fRen8dot3Ini.writeString("rename", sShortFilePath, fLongFilePath);
bIniCreated = true;
}
}
if(bIniCreated)
updateWinReg4Ren8dot3() ;
}
return(0);
}
// main
var err;
// The purpose of this script is to simply register RealPlayer8's version
// into the Netscape registry.
// The reason for creating a folder and then removing it is so as to
// fool xpinstall that it needs to register the path listed in
// initInstall().
// If there was nothing to do, performInstall() would not register
// the path in initInstall().
err = initInstall("RealPlayer 8", "/RealNetworks/RealPlayer", "6.0.9.380");
logComment("initInstall() returned: " + err);
fJreRegTemp = getFolder("Temporary", "nsrp");
logComment("fJreRegTemp: " + fJreRegTemp);
err = File.dirCreate(fJreRegTemp);
logComment("dirCreate() returned: " + err);
err = File.dirRemove(fJreRegTemp);
logComment("dirRemove() returned: " + err);
if(!err)
{
err = performInstall();
logComment("performInstall() returned: " + err);
}
// end main