in build_docs.pl [87:146]
sub build_local {
#===================================
my $doc = $Opts->{doc};
my $index = file($doc)->absolute($Old_Pwd);
die "File <$doc> doesn't exist" unless -f $index;
say "Building HTML from $doc";
my $dir = dir( $Opts->{out} || 'html_docs' )->absolute($Old_Pwd);
my $raw_dir = $dir->subdir( 'raw' );
$Opts->{resource}
= [ map { dir($_)->absolute($Old_Pwd) } @{ $Opts->{resource} || [] } ];
_guess_opts( $index );
$Opts->{roots}{docs} = '/docs_build' unless $Opts->{roots}{docs};
my @alternatives;
if ( $Opts->{alternatives} ) {
for ( @{ $Opts->{alternatives} } ) {
my @parts = split /:/;
unless (scalar @parts == 3) {
die "alternatives must contain exactly two :s but was [$_]";
}
push @alternatives, {
source_lang => $parts[0],
alternative_lang => $parts[1],
dir => $parts[2],
};
}
}
# Get a head start on web resources if we're going to need them.
my $web_resources_pid = start_web_resources_watcher if $Opts->{open};
my $latest = !$Opts->{suppress_migration_warnings};
if ( $Opts->{single} ) {
build_single( $index, $raw_dir, $dir, %$Opts,
latest => $latest,
alternatives => \@alternatives,
relativize => 0,
);
}
else {
build_chunked( $index, $raw_dir, $dir, %$Opts,
latest => $latest,
alternatives => \@alternatives,
relativize => 0,
);
}
say "Done";
if ( $Opts->{open} ) {
my $preview_pid = start_preview( 'fs', $raw_dir, 'template.html', 0 );
serve_local_preview( $dir, 0, $web_resources_pid, $preview_pid );
}
}