Changeset 36253
- Timestamp:
- Oct 28, 2013, 4:40:35 PM (13 years ago)
- Location:
- branches/eam_branches/ipp-20130904
- Files:
-
- 20 edited
- 1 copied
-
ippScripts/scripts/chip_imfile.pl (modified) (1 prop)
-
ippScripts/scripts/destreak_restore_camera.pl (modified) (1 prop)
-
ippScripts/scripts/dist_bundle.pl (modified) (1 diff)
-
ippScripts/scripts/ipp_apply_burntool_single.pl (modified) (1 prop)
-
ippScripts/scripts/lap_science.pl (modified) (1 prop)
-
ippScripts/scripts/magic_destreak.pl (modified) (1 prop)
-
ippScripts/scripts/publish_file.pl (modified) (1 prop)
-
ippScripts/scripts/rawcheck.pl (copied) (copied from trunk/ippScripts/scripts/rawcheck.pl )
-
ippScripts/scripts/warp_skycell.pl (modified) (1 prop)
-
ippTools/share (modified) (1 prop)
-
ippTools/share/camtool_find_pendingimfile.sql (modified) (1 prop)
-
ippTools/share/chiptool_setimfiletoupdate.sql (modified) (1 prop)
-
ippTools/share/disttool_definebyquery_chip.sql (modified) (1 diff)
-
ippTools/share/pxadmin_create_tables.sql (modified) (1 prop)
-
ippTools/share/warptool_towarped.sql (modified) (1 prop)
-
ippTools/src (modified) (1 prop)
-
ippTools/src/camtool.c (modified) (1 prop)
-
ippTools/src/camtoolConfig.c (modified) (1 prop)
-
ippTools/src/disttool.c (modified) (2 diffs)
-
ippTools/src/disttoolConfig.c (modified) (1 diff)
-
ippTools/src/magictool.c (modified) (1 prop)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20130904/ippScripts/scripts/chip_imfile.pl
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/eam_branches/ipp-20130904/ippScripts/scripts/destreak_restore_camera.pl
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/eam_branches/ipp-20130904/ippScripts/scripts/dist_bundle.pl
r36047 r36253 198 198 next if $file_rule =~ /LOG/; 199 199 next if $file_rule =~ /BIN/; 200 201 # chip stage cmf files are not regenerated after cleanup so don't complain if 202 # they are missing. They are of limited utility anyways. USE the smfs 203 next if ($stage eq 'chip' and $file_rule eq 'PSPHOT.OUTPUT'); 200 204 201 205 &my_die("failed to resolve $file_name", $component, $PS_EXIT_DATA_ERROR); -
branches/eam_branches/ipp-20130904/ippScripts/scripts/ipp_apply_burntool_single.pl
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/eam_branches/ipp-20130904/ippScripts/scripts/lap_science.pl
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/eam_branches/ipp-20130904/ippScripts/scripts/magic_destreak.pl
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/eam_branches/ipp-20130904/ippScripts/scripts/publish_file.pl
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/eam_branches/ipp-20130904/ippScripts/scripts/warp_skycell.pl
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/eam_branches/ipp-20130904/ippTools/share
- Property svn:mergeinfo changed
/trunk/ippTools/share merged: 36249
- Property svn:mergeinfo changed
-
branches/eam_branches/ipp-20130904/ippTools/share/camtool_find_pendingimfile.sql
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/eam_branches/ipp-20130904/ippTools/share/chiptool_setimfiletoupdate.sql
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/eam_branches/ipp-20130904/ippTools/share/disttool_definebyquery_chip.sql
r26519 r36253 20 20 WHERE distTarget.state = 'enabled' 21 21 AND rcInterest.state = 'enabled' 22 AND distRun.dist_id IS NULL -- no existing distRun23 22 AND ((chipRun.state = 'full') OR (distTarget.clean AND chipRun.state = 'cleaned')) -
branches/eam_branches/ipp-20130904/ippTools/share/pxadmin_create_tables.sql
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/eam_branches/ipp-20130904/ippTools/share/warptool_towarped.sql
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/eam_branches/ipp-20130904/ippTools/src
- Property svn:mergeinfo changed
/trunk/ippTools/src merged: 36248
- Property svn:mergeinfo changed
-
branches/eam_branches/ipp-20130904/ippTools/src/camtool.c
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/eam_branches/ipp-20130904/ippTools/src/camtoolConfig.c
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/eam_branches/ipp-20130904/ippTools/src/disttool.c
r35955 r36253 677 677 PXOPT_COPY_S64(config->args, where, "-stage_id", "stage_id", "=="); 678 678 PXOPT_COPY_STR(config->args, where, "-label", "label", "=="); 679 PXOPT_COPY_STR(config->args, where, "-data_group", "d ata_group", "==");679 PXOPT_COPY_STR(config->args, where, "-data_group", "distRun.data_group", "LIKE"); 680 680 681 681 // require data_group or dist_id to be supplied … … 759 759 760 760 query = "DELETE FROM distComponent where dist_id = %" PRId64; 761 char *query2 = "DELETE from rcDSFileset using distRun, rcDSFileset WHERE distRun.dist_id = rcDSFileset.dist_id AND rcDSFileset.state ='cleaned' AND dist_id = %" PRId64;761 char *query2 = "DELETE from rcDSFileset using distRun, rcDSFileset WHERE distRun.dist_id = rcDSFileset.dist_id AND rcDSFileset.state ='cleaned' AND rcDSFileset.dist_id = %" PRId64; 762 762 763 763 for (long i=0; i < psArrayLength(output); i++) { -
branches/eam_branches/ipp-20130904/ippTools/src/disttoolConfig.c
r35193 r36253 91 91 // -startover 92 92 psMetadata *startoverArgs = psMetadataAlloc(); 93 psMetadataAddStr(startoverArgs, PS_LIST_TAIL, "-data_group", 0, "define data_group ", NULL);93 psMetadataAddStr(startoverArgs, PS_LIST_TAIL, "-data_group", 0, "define data_group (LIKE comparison)", NULL); 94 94 psMetadataAddS64(startoverArgs, PS_LIST_TAIL, "-dist_id", 0, "search by dist_id", 0); 95 95 psMetadataAddStr(startoverArgs, PS_LIST_TAIL, "-stage", 0, "search by stage", NULL); -
branches/eam_branches/ipp-20130904/ippTools/src/magictool.c
- Property svn:mergeinfo changed (with no actual effect on merging)
Note:
See TracChangeset
for help on using the changeset viewer.
