home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 May / Chip_2001-05_cd2.bin / ChipCD / browsery / netscape601_eng / mail.xpi / install.js
Text File  |  2001-02-02  |  4KB  |  133 lines

  1. // this function verifies disk space in kilobytes
  2. function verifyDiskSpace(dirPath, spaceRequired)
  3. {
  4.   var spaceAvailable;
  5.  
  6.   // Get the available disk space on the given path
  7.   spaceAvailable = fileGetDiskSpaceAvailable(dirPath);
  8.  
  9.   // Convert the available disk space into kilobytes
  10.   spaceAvailable = parseInt(spaceAvailable / 1024);
  11.  
  12.   // do the verification
  13.   if(spaceAvailable < spaceRequired)
  14.   {
  15.     logComment("Insufficient disk space: " + dirPath);
  16.     logComment("  required : " + spaceRequired + " K");
  17.     logComment("  available: " + spaceAvailable + " K");
  18.     return(false);
  19.   }
  20.  
  21.   return(true);
  22. }
  23.  
  24. function updateWinReg4Ren8dot3() 
  25. {
  26.   var fProgram      = getFolder("Program");
  27.   var fTemp         = getFolder("Temporary");
  28.  
  29.   //Notes:
  30.   // can't use a double backslash before subkey - Windows already puts it in.            
  31.   // subkeys have to exist before values can be put in.
  32.   var subkey;  // the name of the subkey you are poking around in
  33.   var valname; // the name of the value you want to look at
  34.   var value;   // the data in the value you want to look at.
  35.   var winreg = getWinRegistry() ;
  36.  
  37.   if(winreg != null) 
  38.   {
  39.     // Here, we get the current version.
  40.     winreg.setRootKey(winreg.HKEY_CURRENT_USER) ;  // CURRENT_USER
  41.     subkey  = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\RunOnce" ;
  42.  
  43.     winreg.createKey(subkey,"");
  44.     valname = "ren8dot3";
  45.     value   = fProgram + "ren8dot3.exe " + fTemp + "ren8dot3.ini";
  46.     err     = winreg.setValueString(subkey, valname, value);
  47.   }
  48. }
  49.  
  50. function prepareRen8dot3(listLongFilePaths)
  51. {
  52.   var fTemp                 = getFolder("Temporary");
  53.   var fProgram              = getFolder("Program");
  54.   var fRen8dot3Ini          = getWinProfile(fTemp, "ren8dot3.ini");
  55.   var bIniCreated           = false;
  56.   var fLongFilePath;
  57.   var sShortFilePath;
  58.  
  59.   if(fRen8dot3Ini != null)
  60.   {
  61.     for(i = 0; i < listLongFilePaths.length; i++)
  62.     {
  63.       fLongFilePath   = getFolder(fProgram, listLongFilePaths[i]);
  64.       sShortFilePath  = File.windowsGetShortName(fLongFilePath);
  65.       if(sShortFilePath)
  66.       {
  67.         fRen8dot3Ini.writeString("rename", sShortFilePath, fLongFilePath);
  68.         bIniCreated = true;
  69.       }
  70.     }
  71.  
  72.     if(bIniCreated)
  73.       updateWinReg4Ren8dot3() ;
  74.   }
  75.  
  76.   return(0);
  77. }
  78.  
  79. // main
  80. var srDest;
  81. var err;
  82. var communicatorFolder;
  83.  
  84. // This list contains filenames that are long filenames ( > 8.3) critical during installation time.
  85. // Unfortunately, it is statically created.  If there are new files that are suspected to be
  86. // locked in memory during installation of this .xpi file, then they should be listed here.
  87. // The filenames should include paths relative to the Netscape 6 folder.
  88. // '/' must be used as path delimiters regardless of platform.
  89. var listLongFilePaths = ["components/nsAB4xUpgrader.dll",
  90.                          "chrome/messenger.jar"];
  91.  
  92. srDest = 2945;
  93. err    = initInstall("Netscape Mail", "Mail", "6.0.1.2001013114"); 
  94. logComment("initInstall: " + err);
  95.  
  96. communicatorFolder = getFolder("Program");
  97. logComment("communicatorFolder: " + communicatorFolder);
  98.  
  99. if(verifyDiskSpace(communicatorFolder, srDest))
  100. {
  101.   setPackageFolder(communicatorFolder);
  102.  
  103.   // Ren8dot3 process needs to be done before any files have been installed
  104.   // (this includes the temp files during the prepare phase)
  105.   prepareRen8dot3(listLongFilePaths);
  106.  
  107.   err = addDirectory("",
  108.                      "6.0.1.2001013114",
  109.                      "bin",              // dir name in jar to extract 
  110.                      communicatorFolder, // Where to put this file (Returned from getFolder) 
  111.                      "",                 // subdir name to create relative to communicatorFolder
  112.                      true );             // Force Flag 
  113.   logComment("addDirectory() returned: " + err);
  114.  
  115.   registerChrome(CONTENT | DELAYED_CHROME,
  116.                  getFolder("Chrome","messenger.jar"),
  117.                  "content/messenger/");
  118.  
  119.   // check return value
  120.   err = getLastError();
  121.   if(err == SUCCESS)
  122.   {
  123.     err = performInstall(); 
  124.     logComment("performInstall() returned: " + err);
  125.   }
  126.   else
  127.     cancelInstall(err);
  128. }
  129. else
  130.   cancelInstall(INSUFFICIENT_DISK_SPACE);
  131.  
  132. // end main
  133.