Changeset 16384
- Timestamp:
- 2008-07-14T14:40:51+12:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
gsdl/trunk/perllib/plugins/PagedImagePlugin.pm
r16009 r16384 239 239 sub read_into_doc_obj { 240 240 my $self = shift (@_); 241 my ($pluginfo, $base_dir, $file, $ metadata, $processor, $maxdocs, $total_count, $gli) = @_;241 my ($pluginfo, $base_dir, $file, $block_hash, $metadata, $processor, $maxdocs, $total_count, $gli) = @_; 242 242 my $outhandle = $self->{'outhandle'}; 243 243 244 my ($filename_full_path, $filename_no_path) = $self->get_full_filenames($base_dir, $file);244 my ($filename_full_path, $filename_no_path) = &util::get_full_filenames($base_dir, $file); 245 245 246 246 print $outhandle "PagedImagePlugin processing \"$filename_full_path\"\n" … … 258 258 if ($xml_version) { 259 259 # careful checking needed here!! are we using local xml handlers or super ones 260 $self->ReadXMLFile::read($pluginfo, $base_dir, $file, $ metadata, $processor, $maxdocs, $total_count, $gli);260 $self->ReadXMLFile::read($pluginfo, $base_dir, $file, $block_hash, $metadata, $processor, $maxdocs, $total_count, $gli); 261 261 $doc_obj = $self->{'doc_obj'}; 262 262 } else { … … 365 365 my $result = 0; 366 366 if ($self->{'image_conversion_available'} == 1) { 367 # do we need to convert $filename_no_path to utf8? We are already reading in from a file, what encoding is it in??? 367 368 $result = $self->generate_images($filename_full_path, $filename_no_path, $doc_obj, $section); 368 369 }
Note:
See TracChangeset
for help on using the changeset viewer.