Changeset 26597
- Timestamp:
- 2013-01-08T19:34:57+13:00 (10 years ago)
- Location:
- gs3-extensions/html-to-expeditee/trunk/src/perllib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
gs3-extensions/html-to-expeditee/trunk/src/perllib/ExpediteeFrameIO.pm
r26596 r26597 608 608 { 609 609 my $self = shift @_; 610 my ($last_frame_number ) = @_;610 my ($last_frame_number,$collect) = @_; 611 611 612 612 my $filename = &util::filename_cat($self->{'output_dir'},"frame.inf"); … … 618 618 619 619 #writes frameset name concatenated with last frame number in the set to the frame.inf file. 620 my $getFramesetName = $self->{'output_dir'}; 621 620 # my $getFramesetName = $self->{'output_dir'}; 621 622 #use collection name rather than the directory name where the frameset is stored, when saving the last frame name/number to the frame.inf file. 623 print FNOUT "$collect"."$last_frame_number"; 622 624 623 625 close(FNOUT); … … 626 628 else { 627 629 print STDERR "ExpediteeFrameIO::saveLastFrameNumber() Failed to open $filename for output\n"; 630 628 631 $status = 0; 629 632 } -
gs3-extensions/html-to-expeditee/trunk/src/perllib/cgiactions/HtmlToExpediteeAction.pm
r26596 r26597 100 100 101 101 # write out next free frame num 102 $expeditee_frame_io->saveLastFrameNumber($fn );102 $expeditee_frame_io->saveLastFrameNumber($fn,$collect); 103 103 104 104 $gsdl_cgi->generate_message("html-to-expeditee saved frame $fn");
Note:
See TracChangeset
for help on using the changeset viewer.