home *** CD-ROM | disk | FTP | other *** search
/ Adelphia Powerlink / adelphia-powerlink.iso / install / inc / tgctlsi.js < prev   
Encoding:
Text File  |  2003-09-11  |  3.6 KB  |  120 lines

  1. //**********************************************************************************
  2. //**
  3. //**  File Name: tgctlsi.js
  4. //**
  5. //**  Summary: SupportSoft SmartIssue JavaScript File
  6. //**
  7. //**  Description: This file contains global functions and structures used by
  8. //**               serveral pages to help create and manipulate SmartIssues.
  9. //**
  10. //**  Copyright SupportSoft Inc. 2003, All rights reserved.
  11. //**
  12. //**********************************************************************************
  13.  
  14. // SmartIssue object
  15. document.write('<object classid="CLSID:01111e00-3e00-11d2-8470-0060089874ed" height="0" width="0" id="si"></object>');
  16.  
  17. //**********************************************************************************
  18. // Functions
  19. //**********************************************************************************
  20.  
  21. //*******************************
  22. // Name:         ssCreateIssue
  23. // Purpose:      Create a SmartIssue using the local global server
  24. // Parameter:    String -- Description of SmartIssue
  25. //*******************************
  26. function ssCreateIssue(strProblem)
  27. {
  28.   try
  29.   {
  30.     si.SetCurrentServer(ssGetServerPath());
  31.     var issueID = si.NewIssue('Install Qualifier');
  32.     si.SetCurrentIssue(issueID);
  33.   } catch(e) {
  34.     alert(e.description)
  35.   }
  36. }
  37.  
  38. //*******************************
  39. // Name:         ssGetIssueID
  40. // Purpose:      Retrieve the ID of the current SmartIssue on the local global server
  41. // Return:       GUID
  42. //*******************************
  43. function ssGetIssueID()
  44. {
  45.   var issueID = '';
  46.   try
  47.   {
  48.     si.SetCurrentServer(ssGetServerPath());
  49.     issueID = si.GetCurrentIssue();
  50.   } catch(e) {
  51.     issueID = '';
  52.     alert(e.description)
  53.   }
  54.   return issueID;
  55. }
  56.  
  57. //*******************************
  58. // Name:         ssGetUsername
  59. // Purpose:      Return the username value from the SmartIssue. Used after user enters username and password
  60. // Return:       String
  61. //*******************************
  62. function ssGetUsername()
  63. {
  64.   document.si.SetCurrentServer(ssGetServerPath());
  65.   var issueID = document.si.GetCurrentIssue();
  66.   var issueFn = document.si.GetIssueFile(issueID);
  67.   document.si.StartXMLIO(issueFn);
  68.   var username = document.si.GetXMLValue("SDC_SAInfo","SDC_SAInfo", "username");
  69.   document.si.EndXMLIO();
  70.   return username;
  71. }
  72.  
  73. //*******************************
  74. // Name:         ssGetPassword
  75. // Purpose:      Return the username value from the SmartIssue. Used after user enters username and password
  76. // Return:       String
  77. //*******************************
  78. function ssGetPassword()
  79. {
  80.   document.si.SetCurrentServer(ssGetServerPath());
  81.   var issueID = document.si.GetCurrentIssue();
  82.   var issueFn = document.si.GetIssueFile(issueID);
  83.   document.si.StartXMLIO(issueFn);
  84.   var password = document.si.GetXMLValue("SDC_SAInfo","SDC_SAInfo", "password");
  85.   document.si.EndXMLIO();
  86.   return password;
  87. }
  88.  
  89. function ssUpdateSI(step,page)
  90. {
  91.   document.si.EnableErrorExceptions(false);
  92.   document.si.SetCurrentServer(ssGetServerPath());
  93.   var errCode = 0, stat = false;
  94.  
  95.   var issueId = document.si.GetCurrentIssue();
  96.   var issueFile = document.si.GetIssueFile(issueId);
  97.  
  98.   // Update the SmartIssue with new key/values
  99.   document.si.StartXMLIO(issueFile);
  100.   
  101.   switch(ssGetCurrentPage())
  102.   {
  103.     case "modemtype.htm":
  104.       document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "AdapterType", ssGetReg("ModemType"), "");
  105.     break;
  106.  
  107.     case "adapters.htm":
  108.       step = ssGetNameIndex('adapters.htm?adapter=0');
  109.     break;
  110.  
  111.     case "qual.htm":
  112.       step = ssGetNameIndex('qual.htm?adapter=0');
  113.     break;
  114.   }
  115.  
  116.   document.si.EndXMLIO();
  117.  
  118. }
  119.  
  120.