IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 14128


Ignore:
Timestamp:
Jul 10, 2007, 4:47:46 PM (19 years ago)
Author:
eugene
Message:

fixes for complete site.php support; updates to schema

Location:
trunk/ippMonitor
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippMonitor/def/detProcessedExp.d

    r14044 r14128  
    1111IMAGE JPEG2 $detProcessedExp.path_base PPIMAGE.JPEG2 $rawExp.camera NONE
    1212
    13 ARGS  ARG1 det_id=$detProcessedExp.det_id
    14 ARGS  ARG1 exp_id=$detProcessedExp.exp_id
     13ARGS  ARG1 detProcessedImfile.det_id=$detProcessedExp.det_id
     14ARGS  ARG1 detProcessedImfile.exp_id=$detProcessedExp.exp_id
    1515ARGS  ARG1 camera=$rawExp.camera
    1616ARGS  ARG1 basename=$detProcessedExp.path_base
  • trunk/ippMonitor/def/detProcessedImfile.d

    r14044 r14128  
    55
    66# the following WHERE clauses are added to all queries joined by AND
    7 WHERE detResidExp.exp_id = rawExp.exp_id
     7WHERE detProcessedImfile.exp_id = rawExp.exp_id
    88
    99#     field                             size   name      show   link to     extras
  • trunk/ippMonitor/raw/getimage.php

    r13281 r14128  
    22
    33$debug = 0;
     4include 'site.php';
     5
     6// these are defined by site.php
     7// global $PERLLIB;
     8// global $BINDIR;
     9// global $SITE;
    410
    511### these need to be set to the correct locations!!
    6 $PERLLIB = "/home/kiawe/eugene/psconfig/dev.linux/lib";
    7 $BINDIR = "/home/kiawe/eugene/psconfig/dev.linux/bin";
    8 $SITE = "/home/kiawe/eugene/.ipprc";
    912$MISSING = "missing.png";
    1013
  • trunk/ippMonitor/raw/ipp.php

    r13853 r14128  
    486486
    487487    // be careful of the definition of PATH in SITE: cannot contain HOME
    488     // echo "<br>ipp_filename.pl --site=$SITE --basename $basename --filerule $filerule --camera $camera --class_id $class_id<br>\n";
     488    echo "<br>ipp_filename.pl --site=$SITE --basename $basename --filerule $filerule --camera $camera --class_id $class_id<br>\n";
    489489    exec ("ipp_filename.pl --site=$SITE --basename $basename --filerule $filerule --camera $camera --class_id $class_id", $output, $status);
    490490
     
    502502    $filename = $output[0];
    503503    if ($status) {
    504       echo "log file not found<br>\n";
     504      echo "log file ($filerule, $basename) not found<br>\n";
    505505      return;
    506506    }
Note: See TracChangeset for help on using the changeset viewer.