IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 37130


Ignore:
Timestamp:
Jul 28, 2014, 6:34:22 AM (12 years ago)
Author:
bills
Message:

add arguments to disttool -updaterun -dist_id_min and -dist_id_max to aid in
managing label tweaking

Location:
trunk/ippTools/src
Files:
2 edited

Legend:

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

    r36555 r37130  
    605605    PXOPT_COPY_TIME(config->args, where, "-time_stamp_begin", "distRun.time_stamp", ">=");
    606606    PXOPT_COPY_TIME(config->args, where, "-time_stamp_end", "distRun.time_stamp", "<=");
     607    PXOPT_COPY_S64(config->args, where, "-dist_id_min", "dist_id", ">=");
     608    PXOPT_COPY_S64(config->args, where, "-dist_id_max", "dist_id", "<=");
    607609
    608610    PXOPT_LOOKUP_BOOL(clean, config->args, "-clean", false);
  • trunk/ippTools/src/disttoolConfig.c

    r36248 r37130  
    8585    psMetadataAddTime(updaterunArgs, PS_LIST_TAIL, "-time_stamp_begin", 0, "limit updates by time_stamp (>=)", NULL);
    8686    psMetadataAddTime(updaterunArgs, PS_LIST_TAIL, "-time_stamp_end", 0, "limit updates by time_stamp (<=)", NULL);
     87    psMetadataAddS64(updaterunArgs, PS_LIST_TAIL, "-dist_id_min",  0, "limit updates by dist_id (>=)", 0);
     88    psMetadataAddS64(updaterunArgs, PS_LIST_TAIL, "-dist_id_max",  0, "limit updates by dist_id (<=)", 0);
    8789    psMetadataAddBool(updaterunArgs, PS_LIST_TAIL,"-clean",     0, "limit updates to clean distRuns", false);
    8890    psMetadataAddBool(updaterunArgs, PS_LIST_TAIL,"-full",      0, "limit updates to not clean distRuns", false);
Note: See TracChangeset for help on using the changeset viewer.