120 lines
3.9 KiB
JavaScript
120 lines
3.9 KiB
JavaScript
/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
* implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code is mozilla.org code.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
* Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*/
|
|
<!-- to hide script contents from old browsers
|
|
|
|
// the file that includes this must also include settings.js!
|
|
|
|
function refreshIASList()
|
|
{
|
|
parent.iasglobals.debug("ias.js: refreshing list");
|
|
formName = "IASCONFIGSELECT";
|
|
fillSelectListWithConfigFiles(formName, "iasSiteList", ".IAS", true);
|
|
}
|
|
|
|
function setIASList(inFileName)
|
|
{
|
|
formName = "IASCONFIGSELECT";
|
|
setSelectList(formName, "iasSiteList", inFileName);
|
|
|
|
}
|
|
|
|
|
|
//this is the onLoad event handler
|
|
function loadData()
|
|
{
|
|
if (parent.iasglobals && parent.iasglobals.getText)
|
|
{
|
|
refreshIASList();
|
|
|
|
var openerConfigName = parent.iasglobals.GetNameValuePair("ACCTSET.INI", "New Acct Mode", "RegServer");
|
|
if ((openerConfigName != null) && (openerConfigName != ""))
|
|
{
|
|
setIASList(openerConfigName);
|
|
parent.iasglobals.readFileData(openerConfigName);
|
|
}
|
|
}
|
|
else
|
|
setTimeout("loadData()",500);
|
|
|
|
}
|
|
|
|
function saveData()
|
|
{
|
|
//do nothing
|
|
}
|
|
|
|
function setSelectList(formName, selectListName, inValue)
|
|
{
|
|
if (inValue != null)
|
|
{
|
|
for (var i = (document[formName][selectListName].length - 1); i >= 0 ; i--)
|
|
{
|
|
if(inValue.toString() == (document[formName][selectListName].options[i].value.toString()))
|
|
{
|
|
//parent.iasglobals.debug("Found select list Match (" + i + ")(" + inValue + ")");
|
|
document[formName][selectListName].options[i].selected = true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
function fillSelectListWithConfigFiles(formName, selectListName, fileSuffix, offerNew)
|
|
{
|
|
var curConfigName = "";
|
|
var curConfigDescription = "";
|
|
|
|
//blank out old list
|
|
for (var i = (document[formName][selectListName].length -1); i >= 0 ; i--)
|
|
{
|
|
document[formName][selectListName].options[i] = null;
|
|
}
|
|
|
|
//make a blank so the user can choose nothing
|
|
document[formName][selectListName].options[0] = new Option("< None Selected >","",false, false);
|
|
|
|
//Only offer a new if we said so
|
|
if (offerNew == true)
|
|
document[formName][selectListName].options[1] = new Option("< New Configuration >","_new_",false, false);
|
|
|
|
// Get a list of the files in the Config folder
|
|
fileList = parent.iasglobals.getFileListFromConfigFolder(fileSuffix);
|
|
|
|
//parent.iasglobals.debug( "filelist: " + fileList);
|
|
|
|
if (fileList != null) {
|
|
for (var i=0; i<fileList.length; i++) {
|
|
curConfigName = parent.iasglobals.GetNameValuePair(fileList[i], "Dial-In Configuration", "SiteName");
|
|
curConfigDescription = parent.iasglobals.GetNameValuePair(fileList[i], "Dial-In Configuration", "Description");
|
|
|
|
if ((curConfigName != null) && (curConfigName != ""))
|
|
document[formName][selectListName].options[document[formName][selectListName].length] = new Option(curConfigName + " (" + fileList[i] + ")",fileList[i], false, false);
|
|
else if ((curConfigDescription != null) && (curConfigDescription != ""))
|
|
document[formName][selectListName].options[document[formName][selectListName].length] = new Option(curConfigDescription + " (" + fileList[i] + ")",fileList[i], false, false);
|
|
else
|
|
document[formName][selectListName].options[document[formName][selectListName].length] = new Option(fileList[i],fileList[i], false, false);
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
// end hiding contents from old browsers -->
|