IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 27, 2010, 4:08:17 PM (16 years ago)
Author:
watersc1
Message:

Merged changes from my branch to support STAGE in the query header, and updated the response script to use the new API. It is not at all efficient at finding the images, but it is satisfactory for now. I can refactro it a bit once the glue sticking it to the rest of the Pstamp server is fininshed.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/pstamp/test/detect_query_create

    r18738 r27788  
    1616     $output,                   # Name of output table
    1717     $query_id,
     18     $nostage,
    1819     );
    1920
     
    2223           'output|o=s'   => \$output,
    2324           'query_id|q=s'  => \$query_id,
     25           'nostage'      => \$nostage,
    2426) or pod2usage( 2 );
    2527
     
    6163        }
    6264];
     65unless(defined($nostage)) {
     66    push @{ $header },        { name =>  'STAGE',
     67                                writetype => TSTRING,
     68                                comment => 'processing stage to examine',
     69                                value => undef
     70    };
     71}
    6372
    6473# Specification of columns to write
Note: See TracChangeset for help on using the changeset viewer.