IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 17701 for trunk/ippTools


Ignore:
Timestamp:
May 14, 2008, 7:34:52 PM (18 years ago)
Author:
bills
Message:

don't try and delete row before it's inserted. It doesn't work

Location:
trunk/ippTools/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/src/pzgetimfiles.c

    r17700 r17701  
    143143        }
    144144
     145#ifdef notdef
    145146        // remove the pzDownloadExp entry for this exp (fileset)
    146147        {
     
    171172            }
    172173        }
    173 
     174#endif // notdef
    174175        // point of no return
    175176        if (!psDBCommit(config->dbh)) {
  • trunk/ippTools/src/regtoolConfig.c

    r17611 r17701  
    116116    // -processedimfile
    117117    psMetadata *processedimfileArgs = psMetadataAlloc();
    118    ADD_OPT(Str,  processedimfileArgs, "-exp_id",    "search by exposure ID",                   NULL);
     118   ADD_OPT(Str,  processedimfileArgs, "-exp_id",    "search by exposure ID",                 NULL);
     119   ADD_OPT(Str,  processedimfileArgs, "-exp_name",  "search by exposure name",               NULL);
    119120   ADD_OPT(Str,  processedimfileArgs, "-class_id",  "search by class ID",                    NULL);
    120121   ADD_OPT(U64,  processedimfileArgs, "-limit",     "limit result set to N items",           0);
    121122   ADD_OPT(Bool, processedimfileArgs, "-faulted",   "only return imfiles with a fault status set", false);
    122    ADD_OPT(Bool, processedimfileArgs, "-simple",    "use the simple output format",                   false);
     123   ADD_OPT(Bool, processedimfileArgs, "-simple",    "use the simple output format",          false);
    123124
    124125    // -revertprocessedimfile
     
    308309
    309310    addWhereStr(exp_id);
     311    addWhereStr(exp_name);
    310312    // convert '-inst' to 'camera'
    311313    {
Note: See TracChangeset for help on using the changeset viewer.