IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 33806 for trunk


Ignore:
Timestamp:
Apr 18, 2012, 3:50:57 PM (14 years ago)
Author:
rhenders
Message:

removed burntool and added statiscky

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippMonitor/raw/czartool_labels.php

    r33800 r33806  
    2828
    2929$stages=array(
    30         "burntool",
    3130        "chip",
    3231        "cam",
     
    3433        "warp",
    3534        "stack",
     35        "staticsky",
    3636        "diff",
    3737        "dist",
     
    439439        $anyFaults = false;
    440440
    441         $link = $defaultlink;
    442         getStateAndFaults($db, $thisLabel, $selectedState, "burntool", $str, $anyFaults);
    443         createFormattedTableCell($anyFaults, $link, $str, $anyFaults, 0);
    444 
    445441        $link = "failedChipProcessedImfile.php?pass=" . $pass . "&proj=" . $proj . "&chipRun.label=" . $thisLabel . "&chipRun.state=".$searchState;
    446442        getStateAndFaults($db, $thisLabel, $selectedState, "chip", $str, $anyFaults);
     
    463459        createFormattedTableCell($anyFaults, $link, $str, $anyFaults, 0);
    464460
     461        $link = $defaultlink;
     462        getStateAndFaults($db, $thisLabel, $selectedState, "staticsky", $str, $anyFaults);
     463        createFormattedTableCell($anyFaults, $link, $str, $anyFaults, 0);
     464
    465465        $link = "failedDiffSkyfile.php?pass=" . $pass . "&proj=" . $proj . "&diffRun.label=" . $thisLabel . "&diffRun.state=".$searchState;
    466466        getStateAndFaults($db, $thisLabel, $selectedState, "diff", $str, $anyFaults);
     
    482482    createFormattedTableCell(($selectedLabel != "all"), $link, "All labels", 0, null);
    483483
    484     createFormattedTableCell(0, null, "Reverting?", 0, "$columnHeaderColor");
    485 
    486484    foreach ($stages as &$stage) {
    487485
    488         if ($stage == "burntool") continue;
    489486        $reverting = getRevertStatus($db, $stage);
    490         #$link =
    491         #    "czartool_labels.php?pass=".$pass
    492         #    ."&proj=".$proj
    493         #    ."&mode=" .$selectedMode
    494         #    ."&label=".$selectedLabel
    495         #    ."&stage=".$selectedStage
    496         #    ."&plottype=".$plotType
    497         #    ."&revertstage=".$stage
    498         #    ."&revertmode=";
    499 #
    500         #if(!$reverting) {$label =  "Start";$link = $link . "on";}
    501         #if($reverting) {$label = "Stop";$link = $link . "off";}
    502         if(!$reverting) {$label =  "no";}
    503         if($reverting) {$label = "yes";}
     487        if(!$reverting) {$label =  "";}
     488        if($reverting) {$label = "reverting";}
    504489        unset($reverting);
    505         #createFormattedTableCell(1, $link, $label, 0, "$columnHeaderColor");
    506490        createFormattedTableCell(0, null, $label, 0, "$columnHeaderColor");
    507         #echo "<td><a href=\"$link\"><font color=\"blue\">$label</font></td>";
    508 
    509491    }
    510492
Note: See TracChangeset for help on using the changeset viewer.