fixing bug 190151 smoketest blocker - Fails to enter secure site. r=sgehani,a=myk

This commit is contained in:
ssu%netscape.com 2003-01-22 23:32:18 +00:00
Родитель fe1b894080
Коммит e33f97220c
4 изменённых файлов: 14 добавлений и 5 удалений

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

@ -217,8 +217,12 @@ components\wallet.xpt
; Optional - only if you need HTTPS support
components\pipboot.dll
components\pipboot.xpt
components\pippki.dll
components\pippki.xpt
components\pipnss.dll
components\pipnss.xpt
chrome\pipnss.jar
chrome\pippki.jar
nss3.dll
smime3.dll
softokn3.dll

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

@ -215,8 +215,12 @@ components\wallet.xpt
; Optional - only if you need HTTPS support
components\pipboot.dll
components\pipboot.xpt
components\pippki.dll
components\pippki.xpt
components\pipnss.dll
components\pipnss.xpt
chrome\pipnss.jar
chrome\pippki.jar
nss3.dll
smime3.dll
softokn3.dll

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

@ -310,11 +310,6 @@ bin\components\venkman-service.js
bin\chrome\venkman.jar
bin\chrome\icons\default\venkman-window.ico
bin\components\pippki.dll
bin\components\pippki.xpt
bin\chrome\pipnss.jar
bin\chrome\pippki.jar
[inspector]
bin\components\inspector.dll
bin\components\inspector.xpt

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

@ -148,6 +148,12 @@ if(verifyDiskSpace(fProgram, srDest))
// // we don't want to fail on errors for the above
// resetError();
// We need to register the psm chrome files
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);
}