IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 26710


Ignore:
Timestamp:
Jan 28, 2010, 3:12:28 PM (16 years ago)
Author:
watersc1
Message:

Added pantask_server mode book handling commands to nightly_stacks, and distribution fault checks to the wiki table generator.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTasks/nightly_stacks.pro

    r26624 r26710  
    1818    ns.stacks.off
    1919end
    20 
    21 
    2220
    2321macro ns.initday.on
     
    109107
    110108book init nsData
    111 
    112 #
    113 # Start a new date to work on
     109#
     110# Macros to control the book.
    114111#
    115112macro ns.add.date
     
    118115end
    119116
     117macro ns.show.dates
     118    book npages nsData -var Npages
     119    for i 0 $Npages
     120       book getpage nsData $i -var date
     121       book getword nsData $date nsState -var state
     122       echo $date $state
     123    end
     124end
     125
     126macro ns.del.date
     127    book delpage nsData $1
     128end
     129
     130macro ns.set.date
     131    book setword nsData $1 nsState $2
     132end
     133
     134
     135
     136#
     137# Start a new date to work on
     138#
    120139task              ns.initday.load
    121140  host            local
  • trunk/tools/wiki_nightly_stacks_table.pl

    r26672 r26710  
    314314
    315315foreach $d (sort (keys %diststacks)) {
     316    unless (exists($fault_diststacks{$d})) {
     317        next;
     318    }
    316319    print '||' . $d ;
    317320    foreach $t (@targets) {
Note: See TracChangeset for help on using the changeset viewer.