IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 28969


Ignore:
Timestamp:
Aug 19, 2010, 3:35:45 PM (16 years ago)
Author:
Serge CHASTEL
Message:

Addition to czartool_labels + links to new failed pages

Location:
trunk/ippMonitor
Files:
9 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippMonitor/Makefile.in

    r28724 r28969  
    103103$(DESTWWW)/chipProcessedImfile.php \
    104104$(DESTWWW)/chipProcessedImfile_failure.php \
     105$(DESTWWW)/failedChipProcessedImfile.php \
    105106$(DESTWWW)/camSummary.php \
    106107$(DESTWWW)/camStageExp.php \
     
    109110$(DESTWWW)/camProcessedExp_Images.php \
    110111$(DESTWWW)/camProcessedExp_failure.php \
     112$(DESTWWW)/failedCamProcessedExp.php \
    111113$(DESTWWW)/camIQstats.php \
    112114$(DESTWWW)/camProcessedImfile.php \
     
    118120$(DESTWWW)/fakeProcessedImfile.php \
    119121$(DESTWWW)/fakeProcessedImfile_failure.php \
     122$(DESTWWW)/failedFakeProcessedImfile.php \
    120123$(DESTWWW)/pzPendingExp.php \
    121124$(DESTWWW)/pzPendingImfile.php \
     
    142145$(DESTWWW)/warpProcessedSkyfiles.php \
    143146$(DESTWWW)/warpFailedSkyfiles.php \
     147$(DESTWWW)/failedWarpSkyfiles.php \
    144148$(DESTWWW)/diffSummary.php \
    145149$(DESTWWW)/diffSummary_Images.php \
     
    148152$(DESTWWW)/diffProcessedSkyfile.php \
    149153$(DESTWWW)/diffProcessedSkyfile_Images.php \
    150 $(DESTWWW)/diffFailedSkyfile.php \
     154$(DESTWWW)/failedDiffSkyfile.php \
    151155$(DESTWWW)/stackRun.php \
    152156$(DESTWWW)/stackSummary.php \
     
    156160$(DESTWWW)/stackProcessedSkyfile_Images.php \
    157161$(DESTWWW)/stackFailedSkyfile.php \
     162$(DESTWWW)/failedStackSkyfile.php \
    158163$(DESTWWW)/staticskyRun.php \
    159164$(DESTWWW)/staticskySummary.php \
     
    168173$(DESTWWW)/magicProcessedMasks_Images.php \
    169174$(DESTWWW)/magicFailedTrees.php \
     175$(DESTWWW)/failedMagicTrees.php \
    170176$(DESTWWW)/magicFailedNodes.php \
     177$(DESTWWW)/failedMagicNodes.php \
    171178$(DESTWWW)/magicFailedMasks.php \
     179$(DESTWWW)/failedMagicMasks.php \
    172180$(DESTWWW)/distSummary.php \
    173181$(DESTWWW)/distTarget.php \
  • trunk/ippMonitor/raw/czartool_labels.php

    r28964 r28969  
    1010//$db = dbconnect($ID['proj']);
    1111$czardb = dbconnect("czardb"); // HACK to connect to czarDb
     12$lastUpdateTime = getLastUpdateTime($czardb);
     13
    1214$gpc1db = dbconnect($ID['proj']);
    1315
     
    2224else {$myMenu = "ipp.imfiles.dat";}
    2325
    24 menu($myMenu, 'Czartool', 'ipp.css', $ID['link'], $ID['proj']);
     26menu($myMenu, 'Czartool on '.$lastUpdateTime, 'ipp.css', $ID['link'], $ID['proj']);
    2527
    2628$pass = $ID['pass'];
     
    3436$selectedRevertMode = $_GET[revertmode];
    3537
    36 if ($selectedLabel == "") $selectedLabel = "all_stdscience_labels";
    37 if ($selectedStage == "") $selectedStage = "all_stages";
     38if ($selectedLabel == "") { $selectedLabel = "all_stdscience_labels"; }
     39if ($selectedStage == "") { $selectedStage = "all_stages"; }
     40
     41echo 'Some documentation can be found <a href="http://svn.pan-starrs.ifa.hawaii.edu/trac/ipp/wiki/Processing">here</a><br>';
    3842
    3943// deal with reverts: turn on or off if requested and pass current revert state for this stage onto labels table later
     
    8387echo "<input type=\"hidden\" name=\"menu\" value=\"$menu\">\n";
    8488echo "</form>\n";
    85 $lastUpdateTime = getLastUpdateTime($czardb);
    8689echo "<p  align=\"center\"> Current status of IPP (any faults are shown in parentheses). NOTE: This data is good as of: $lastUpdateTime </p>";
    8790
     
    291294        $anyFaults = false;
    292295
    293         $link = "chipProcessedImfile_failure.php?pass=" . $pass . "&proj=" . $proj . "&chipRun.label=" . $thisLabel . "&chipRun.state=new";
     296        $link = "failedChipProcessedImfile.php?pass=" . $pass . "&proj=" . $proj . "&chipRun.label=" . $thisLabel . "&chipRun.state=new";
    294297        getStateAndFaults($db, $thisLabel, $selectedState, "chip", $str, $anyFaults);
    295298        write_table_cell($class, '%s', $anyFaults ? $link : "", $str);
    296299
    297         $link = "camProcessedExp_failure.php?pass=" . $pass . "&proj=" . $proj . "&camRun.label=" . $thisLabel . "&camRun.state=new";
     300        $link = "failedCamProcessedExp.php?pass=" . $pass . "&proj=" . $proj . "&camRun.label=" . $thisLabel . "&camRun.state=new";
    298301        getStateAndFaults($db, $thisLabel, $selectedState, "cam", $str, $anyFaults);
    299302        write_table_cell($class, '%s',  $anyFaults ? $link : "", $str);
    300303
    301         $link = $defaultlink;
     304        $link =  "failedFakeProcessedImfile.php?pass=" . $pass . "&proj=" . $proj . "&fakeRun.label=" . $thisLabel . "&fakeRun.state=new";
    302305        getStateAndFaults($db, $thisLabel, $selectedState, "fake", $str, $anyFaults);
    303306        write_table_cell($class, '%s',  $anyFaults ? $link : "", $str);
    304307
    305         $link = "warpFailedSkyfiles.php?pass=" . $pass . "&proj=" . $proj . "&warpRun.label=" . $thisLabel . "&warpRun.state=new";
     308        $link = "failedWarpSkyfiles.php?pass=" . $pass . "&proj=" . $proj . "&warpRun.label=" . $thisLabel . "&warpRun.state=new";
    306309        getStateAndFaults($db, $thisLabel, $selectedState, "warp", $str, $anyFaults);
    307310        write_table_cell($class, '%s',  $anyFaults ? $link : "",  $str);
    308311
    309         $link = "stackFailedSkyfile.php?pass=" . $pass . "&proj=" . $proj . "&stackRun.label=" . $thisLabel . "&stackRun.state=new";
     312        $link = "failedStackSkyfile.php?pass=" . $pass . "&proj=" . $proj . "&stackRun.label=" . $thisLabel . "&stackRun.state=new";
    310313        getStateAndFaults($db, $thisLabel, $selectedState, "stack", $str, $anyFaults);
    311314        write_table_cell($class, '%s',  $anyFaults ? $link : "", $str);
    312315
    313         $link = "diffFailedSkyfile.php?pass=" . $pass . "&proj=" . $proj . "&diffRun.label=" . $thisLabel . "&diffRun.state=new";
     316        $link = "failedDiffSkyfile.php?pass=" . $pass . "&proj=" . $proj . "&diffRun.label=" . $thisLabel . "&diffRun.state=new";
    314317        getStateAndFaults($db, $thisLabel, $selectedState, "diff", $str, $anyFaults);
    315318        write_table_cell($class, '%s',  $anyFaults ? $link : "",  $str);
  • trunk/ippMonitor/raw/ipp.imfiles.dat

    r28608 r28969  
    2525
    2626menutop   | menutop      | plain   | &nbsp;                       |
     27menutop   | menutop      | link    | New failed chip              | failedChipProcessedImfile.php
     28menutop   | menutop      | link    | New failed cam               | failedCamProcessedExp.php
     29menutop   | menutop      | link    | New failed fake              | failedFakeProcessedImfile.php
     30menutop   | menutop      | link    | New failed warp              | failedWarpSkyfiles.php
     31menutop   | menutop      | link    | New failed stack             | failedStackSkyfile.php
     32menutop   | menutop      | link    | New failed diff              | failedDiffSkyfile.php
     33menutop   | menutop      | link    | New failed magic tree        | failedMagicTrees.php
     34menutop   | menutop      | link    | New failed magic node        | failedMagicNodes.php
     35menutop   | menutop      | link    | New failed magic mask        | failedMagicMasks.php
     36
     37menutop   | menutop      | plain   | &nbsp;                       |
    2738menulink  | menuselect   | link    | Tables columns               | columns_in_db.php
    2839menulink  | menuselect   | link    | Clean /tmp directory         | cleanTmpDirectory.php
  • trunk/ippMonitor/scripts/generate

    r28654 r28969  
    648648    foreach $word (@words) {
    649649        $fword = &parse_fieldname ($word);
    650         # print "field: $word -> $fword\n";
     650#        print "field: $word -> $fword\n";
    651651        push @outwords, $fword;
    652652        if ($word =~ m|^\$|) {
     
    660660    $opf{$name} = $outline;
    661661
    662     # print "ops: $name : $ops{$name}\n";
    663     # print "opf: $name : $opf{$name}\n";
     662#    print "ops: $name : $ops{$name}\n";
     663#    print "opf: $name : $opf{$name}\n";
    664664
    665665    return 1;
Note: See TracChangeset for help on using the changeset viewer.