- Timestamp:
- Mar 29, 2010, 3:55:49 PM (16 years ago)
- Location:
- branches/eam_branches/20100225
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
PS-IPP-PStamp/lib/PS/IPP/PStamp/RequestFile.pm (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/20100225
- Property svn:mergeinfo changed
-
branches/eam_branches/20100225/PS-IPP-PStamp/lib/PS/IPP/PStamp/RequestFile.pm
r26242 r27517 21 21 $PSTAMP_SELECT_IMAGE 22 22 $PSTAMP_SELECT_MASK 23 $PSTAMP_SELECT_VARIANCE 23 24 $PSTAMP_SELECT_WEIGHT 24 25 $PSTAMP_SELECT_CMF … … 26 27 $PSTAMP_SELECT_BACKMDL 27 28 $PSTAMP_SELECT_INVERSE 29 $PSTAMP_SELECT_UNCONV 28 30 $PSTAMP_WAIT_FOR_UPDATE 29 31 $PSTAMP_SUCCESS … … 50 52 our $PSTAMP_SELECT_IMAGE = 1; 51 53 our $PSTAMP_SELECT_MASK = 2; 54 our $PSTAMP_SELECT_VARIANCE = 4; 52 55 our $PSTAMP_SELECT_WEIGHT = 4; 53 56 our $PSTAMP_SELECT_CMF = 8; … … 55 58 our $PSTAMP_SELECT_BACKMDL = 32; 56 59 our $PSTAMP_SELECT_INVERSE = 1024; 60 our $PSTAMP_SELECT_UNCONV = 2048; 57 61 58 our $PSTAMP_WAIT_FOR_UPDATE = 2048;62 our $PSTAMP_WAIT_FOR_UPDATE = 32768; 59 63 60 64 # job and result codes … … 137 141 print STDERR @$stderr_buf; 138 142 } 139 my $table = $mdcParser->parse(join "", @$stdout_buf) or 140 die("Unable to parse metdata config doc"); 143 if (@$stdout_buf) { 144 my $table = $mdcParser->parse(join "", @$stdout_buf) or 145 die("Unable to parse metdata config doc"); 141 146 142 $rows = parse_md_list($table); 147 $rows = parse_md_list($table); 148 } else { 149 print STDERR "$request_file_name contains empty request table\n"; 150 } 143 151 } 144 152
Note:
See TracChangeset
for help on using the changeset viewer.
