IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 29172


Ignore:
Timestamp:
Sep 17, 2010, 2:48:02 PM (16 years ago)
Author:
bills
Message:

in definebyquery allow selecting input and template based on individual comment strings. Add comments to output of -listrun. Leave old comment for now in case something depends on it.

Location:
trunk/ippTools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/share/difftool_listrun.sql

    r29135 r29172  
    2525    rawInput.exp_name AS exp_name_1,
    2626    rawInput.exp_id AS exp_id_1,
     27    rawInput.comment AS comment_1,
     28    rawInput.dateobs AS dateobs_1,
    2729    chipInput.chip_id AS chip_id_1,
    2830    camInput.cam_id AS cam_id_1,
     
    3234    rawTemplate.exp_name AS exp_name_2,
    3335    rawTemplate.exp_id AS exp_id_2,
     36    rawTemplate.comment AS comment_2,
     37    rawTemplate.dateobs AS dateobs_2,
    3438    chipTemplate.chip_id AS chip_id_2,
    3539    camTemplate.cam_id AS cam_id_2,
  • trunk/ippTools/src/difftool.c

    r29169 r29172  
    28672867
    28682868    psMetadata *where = psMetadataAlloc();
    2869     PXOPT_COPY_S64(config->args, where,  "-diff_id", "diffRun.diff_id", "==");
    2870     PXOPT_COPY_STR(config->args, where, "-tess_id", "diffRun.tess_id", "==");
    2871     PXOPT_COPY_S64(config->args, where,  "-magicked", "diffRun.magicked", "==");
    2872     pxAddLabelSearchArgs (config, where, "-label", "diffRun.label", "LIKE");
     2869    PXOPT_COPY_S64(config->args, where,  "-diff_id",    "diffRun.diff_id",  "==");
     2870    PXOPT_COPY_STR(config->args, where,  "-tess_id",    "diffRun.tess_id",  "==");
     2871    PXOPT_COPY_S64(config->args, where,  "-magicked",   "diffRun.magicked", "==");
     2872    PXOPT_COPY_STR(config->args, where,  "-state",      "diffRun.state",    "==");
     2873    pxAddLabelSearchArgs (config, where, "-label",      "diffRun.label", "LIKE");
    28732874    pxAddLabelSearchArgs (config, where, "-data_group", "diffRun.data_group", "LIKE");
    28742875    pxAddLabelSearchArgs (config, where, "-dist_group", "diffRun.dist_group", "LIKE");
  • trunk/ippTools/src/difftoolConfig.c

    r29169 r29172  
    185185    psMetadataAddStr(listrunArgs,  PS_LIST_TAIL, "-dist_group",  PS_META_DUPLICATE_OK, "search by diffRun dist_group (LIKE comparison)", NULL);
    186186    psMetadataAddS16(listrunArgs,  PS_LIST_TAIL, "-diff_mode", 0,        "search for diff_mode", 0);
     187    psMetadataAddStr(listrunArgs, PS_LIST_TAIL,  "-state",  0,           "search by state", NULL);
    187188    pxmagicAddArguments(listrunArgs);
    188189    pxspaceAddArguments(listrunArgs);
Note: See TracChangeset for help on using the changeset viewer.