Lines Matching refs:outfile
219 my($self, $module, $mod2path, $outdir, $outfile) = @_;
229 $outfile ||= do {
240 ref($page), " render ($depth) $module => $outfile");
242 $self->muse($self->{"__batch_conv_page_count"} + 1, "/$total: $module => $outfile")
246 $page->batch_mode_page_object_init($self, $module, $infile, $outfile, $depth)
249 $self->batch_mode_page_object_init($page, $module, $infile, $outfile, $depth)
257 if( $retval = $page->parse_from_file($infile, $outfile) ) {
259 $self->note_for_contents_file( \@namelets, $infile, $outfile );
261 $self->muse("Odd, parse_from_file(\"$infile\", \"$outfile\") returned false.");
264 $page->batch_mode_page_object_kill($self, $module, $infile, $outfile, $depth)
267 $self->batch_mode_page_object_kill($page, $module, $infile, $outfile, $depth)
271 $outfile, -s $outfile, $infile, -s $infile
284 my($self, $namelets, $infile, $outfile) = @_;
286 # I think the infile and outfile parts are never used. -- SMB
292 [ join("::", @$namelets), $infile, $outfile, $namelets ]
304 my $outfile = $self->_contents_filespec($outdir) || return;
312 my $Contents = eval { $self->_wopen($outfile) };
314 $self->muse( "Writing contents file $outfile" );
316 warn "Couldn't write-open contents file $outfile: $!\nAbort writing to $outfile at all";
320 $self->_write_contents_start( $Contents, $outfile, );
321 $self->_write_contents_middle( $Contents, $outfile, $toplevel, $toplevel_form_freq );
322 $self->_write_contents_end( $Contents, $outfile, );
323 return $outfile;
329 my($self, $Contents, $outfile) = @_;
345 warn "Couldn't print to $outfile: $!\nAbort writing to $outfile at all";
355 my($self, $Contents, $outfile, $toplevel2submodules, $toplevel_form_freq) = @_;
380 my($self, $Contents, $outfile) = @_;
385 warn "Couldn't write to $outfile: $!";
387 close($Contents) or warn "Couldn't close $outfile: $!";
430 my $outfile = $self->contents_file;
431 return unless $outfile;
432 return $self->filespecsys->catfile( $outdir, $outfile );
458 my($page, $module, $infile, $outfile, $depth) = @_;
468 $self->add_header_backlink($page, $module, $infile, $outfile, $depth);
469 $self->add_footer_backlink($page, $module, $infile, $outfile, $depth);
480 my($page, $module, $infile, $outfile, $depth) = @_;
496 my($page, $module, $infile, $outfile, $depth) = @_;
605 my $outfile;
607 $outfile = $self->filespecsys->catfile( $outdir, "$1" );
615 #$self->muse( "Writing autogenerated CSS file $outfile" );
616 my $Cssout = $self->_wopen($outfile);
618 or warn "Couldn't print to $outfile: $!\nAbort writing to $outfile at all";
620 DEBUG > 5 and print STDERR "Wrote $outfile\n";
720 for (my ($outfile, $variation) = each %{{
727 "/* This file is autogenerated. Do not edit. $outfile */\n",
732 my $name = $outfile;
734 $self->add_css( "_$outfile.css", 0, $name, 0, 0, \$this_css);
766 my $outfile;
769 $outfile = $self->filespecsys->catfile( $outdir, "$1" );
776 #$self->muse( "Writing JavaScript file $outfile" );
777 my $Jsout = $self->_wopen($outfile);
780 or warn "Couldn't print to $outfile: $!\nAbort writing to $outfile at all";
782 DEBUG > 5 and print STDERR "Wrote $outfile\n";
1310 $page->batch_mode_page_object_init($self, $module, $infile, $outfile, $depth)
1312 $batchconv->batch_mode_page_object_init($page, $module, $infile, $outfile, $depth)