Subversion Repositories DevTools

Rev

Rev 7288 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7288 Rev 7292
Line 444... Line 444...
444
      isValid = false;
444
      isValid = false;
445
      break;
445
      break;
446
   }
446
   }
447
 
447
 
448
   if (isValid) {
448
   if (isValid) {
449
    MM_showProgressBar();
449
    showGlobalProgress();
450
   }
450
   }
451
   else
451
   else
452
   {
452
   {
453
      // failed - exit function, returning false for the form.
453
      // failed - exit function, returning false for the form.
454
      document.MM_returnValue = false;
454
      document.MM_returnValue = false;
455
      MM_hideProgressBar();
455
      hideGlobalProgress();
456
      vixAlert ("Complete all selections");
456
      vixAlert ("Complete all selections");
457
      return false;
457
      return false;
458
   }
458
   }
459
   return true;
459
   return true;
460
}
460
}
Line 483... Line 483...
483
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0">
483
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0">
484
<!--#include file="_jquery_includes.asp"-->
484
<!--#include file="_jquery_includes.asp"-->
485
<!-- HEADER -->
485
<!-- HEADER -->
486
<!--#include file="_header.asp"-->
486
<!--#include file="_header.asp"-->
487
<!-- BODY ---->
487
<!-- BODY ---->
488
<div id='divProgressBar' class='vixSpinner' style='visibility:hidden;top:unset;background-position-y: unset;'></div>
-
 
489
<table width="100%" height="80%" border="0" cellpadding="0" cellspacing="0">
488
<table width="100%" height="80%" border="0" cellpadding="0" cellspacing="0">
490
    <% 'Use the parPkg_list in two different ways. When adding dependencies, the list contains pv_id's.
489
    <% 'Use the parPkg_list in two different ways. When adding dependencies, the list contains pv_id's.
491
     'When adding packages it contains pkg_id's. Different functions deal with each situation.
490
     'When adding packages it contains pkg_id's. Different functions deal with each situation.
492
    If ( (parAdd_type <> Cstr(enum_ADD_DEPENDENCIES)) AND (parAdd_type <> Cstr(enum_ADD_RUNTIME_DEPENDENCIES)) ) Then
491
    If ( (parAdd_type <> Cstr(enum_ADD_DEPENDENCIES)) AND (parAdd_type <> Cstr(enum_ADD_RUNTIME_DEPENDENCIES)) ) Then
493
     Call Generate_Package_List( parPkg_list, HTML_pkg_list, parRtag_id, parAdd_type )
492
     Call Generate_Package_List( parPkg_list, HTML_pkg_list, parRtag_id, parAdd_type )