Subversion Repositories DevTools

Rev

Rev 7288 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7288 Rev 7292
Line 397... Line 397...
397
 
397
 
398
    var url = "_json_checkPackage.asp?"
398
    var url = "_json_checkPackage.asp?"
399
            + "pkg_id=" + NNpkg_id
399
            + "pkg_id=" + NNpkg_id
400
            + "&ref=" + NN_pv_id
400
            + "&ref=" + NN_pv_id
401
            + "&Opr=getVerList";
401
            + "&Opr=getVerList";
402
    MM_showProgressBar();
402
    showGlobalProgress();
403
    xmlHttp.open("GET",url,true);  // `false` makes the request synchronous
403
    xmlHttp.open("GET",url,true);  // `false` makes the request synchronous
404
    xmlHttp.send(null);
404
    xmlHttp.send(null);
405
}
405
}
406
 
406
 
407
// Call back for getVersions
407
// Call back for getVersions
408
function getVersionsDone()
408
function getVersionsDone()
409
{
409
{
410
    //readyState of 4 or 'complete' represents that data has been returned
410
    //readyState of 4 or 'complete' represents that data has been returned
411
    if (xmlHttp.readyState == 4 || xmlHttp.readyState == 'complete'){
411
    if (xmlHttp.readyState == 4 || xmlHttp.readyState == 'complete'){
412
        MM_hideProgressBar();
412
        hideGlobalProgress();
413
 
413
 
414
        //Gather the results from the callback
414
        //Gather the results from the callback
415
        var str = xmlHttp.responseText;
415
        var str = xmlHttp.responseText;
416
//alert("JSON:" + str);
416
//alert("JSON:" + str);
417
        if ( !str ) {
417
        if ( !str ) {
Line 463... Line 463...
463
      <table width="650" border="0" cellspacing="0" cellpadding="0">
463
      <table width="650" border="0" cellspacing="0" cellpadding="0">
464
        <tr>
464
        <tr>
465
          <td>
465
          <td>
466
      <!-- Body -->
466
      <!-- Body -->
467
		<div style='position:relative'>
467
		<div style='position:relative'>
468
		<div id='divProgressBar' class='vixSpinner' style='visibility:hidden;'></div>
-
 
469
        <form name="editdep" method="post" action="_update_dependencies.asp" onSubmit="return ValidateForm();">
468
        <form name="editdep" method="post" action="_update_dependencies.asp" onSubmit="return ValidateForm();">
470
      <table width="100%" border="0" cellspacing="1" cellpadding="2"  class='rounded_box rounded_box_std' >
469
      <table width="100%" border="0" cellspacing="1" cellpadding="2"  class='rounded_box rounded_box_std' >
471
        <caption>EDIT dependencies</caption>
470
        <caption>EDIT dependencies</caption>
472
          <tr>
471
          <tr>
473
            <td colspan="2" width="1%" nowrap class="form_field"><%=pkgInfoHash.Item ("pkg_name")%>&nbsp;<%=pkgInfoHash.Item ("pkg_version")%></td>
472
            <td colspan="2" width="1%" nowrap class="form_field"><%=pkgInfoHash.Item ("pkg_name")%>&nbsp;<%=pkgInfoHash.Item ("pkg_version")%></td>