t2h.init 2.98 KB
Newer Older
1
# no horiz rules between sections
2 3
$end_section = \&FFmpeg_end_section;
sub FFmpeg_end_section($$)
4 5 6
{
}

7
$EXTRA_HEAD =
8 9
'<link rel="icon" href="favicon.png" type="image/png" />
';
10

11
$CSS_LINES = $ENV{"FFMPEG_CSS"} || <<EOT;
12
<link rel="stylesheet" type="text/css" href="default.css" />
13
EOT
14

15
my $TEMPLATE_HEADER = $ENV{"FFMPEG_HEADER"} || <<EOT;
16 17 18
<link rel="icon" href="favicon.png" type="image/png" />
</head>
<body>
19
<div id="container">
20
EOT
21 22 23 24 25 26

$PRE_BODY_CLOSE = '</div></div>';

$SMALL_RULE = '';
$BODYTEXT = '';

27 28
$print_page_foot = \&FFmpeg_print_page_foot;
sub FFmpeg_print_page_foot($$)
29 30
{
    my $fh = shift;
31 32
    my $program_string = defined &T2H_DEFAULT_program_string ?
        T2H_DEFAULT_program_string() : program_string();
33 34 35
    print $fh '<footer class="footer pagination-right">' . "\n";
    print $fh '<span class="label label-info">' . $program_string;
    print $fh "</span></footer></div>\n";
36 37
}

38
$float = \&FFmpeg_float;
39

40
sub FFmpeg_float($$$$)
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
{
    my $text = shift;
    my $float = shift;
    my $caption = shift;
    my $shortcaption = shift;

    my $label = '';
    if (exists($float->{'id'}))
    {
        $label = &$anchor($float->{'id'});
    }
    my $class = '';
    my $subject = '';

    if ($caption =~ /NOTE/)
    {
57
        $class = "alert alert-info";
58 59 60
    }
    elsif ($caption =~ /IMPORTANT/)
    {
61
        $class = "alert alert-warning";
62 63 64 65 66
    }

    return '<div class="float ' . $class . '">' . "$label\n" . $text . '</div>';
}

67 68
$print_page_head = \&FFmpeg_print_page_head;
sub FFmpeg_print_page_head($$)
69 70 71 72 73 74 75 76 77 78 79 80
{
    my $fh = shift;
    my $longtitle = "$Texi2HTML::THISDOC{'title_no_texi'}";
    $longtitle .= ": $Texi2HTML::NO_TEXI{'This'}" if exists $Texi2HTML::NO_TEXI{'This'};
    my $description = $DOCUMENT_DESCRIPTION;
    $description = $longtitle if (!defined($description));
    $description = "<meta name=\"description\" content=\"$description\">" if
         ($description ne '');
    $description = $Texi2HTML::THISDOC{'documentdescription'} if (defined($Texi2HTML::THISDOC{'documentdescription'}));
    my $encoding = '';
    $encoding = "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=$ENCODING\">" if (defined($ENCODING) and ($ENCODING ne ''));
    $longtitle =~ s/Documentation.*//g;
81
    $longtitle = "FFmpeg documentation : " . $longtitle;
82 83

    print $fh <<EOT;
84
<!DOCTYPE html>
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
<html>
$Texi2HTML::THISDOC{'copying'}<!-- Created on $Texi2HTML::THISDOC{today} by $Texi2HTML::THISDOC{program} -->
<!--
$Texi2HTML::THISDOC{program_authors}
-->
<head>
<title>$longtitle</title>

$description
<meta name="keywords" content="$longtitle">
<meta name="resource-type" content="document">
<meta name="distribution" content="global">
<meta name="Generator" content="$Texi2HTML::THISDOC{program}">
$encoding
$CSS_LINES
100
$TEMPLATE_HEADER
101
EOT
102 103
}

104 105 106
# declare encoding in header
$IN_ENCODING = $ENCODING = "utf-8";

107 108 109 110 111 112 113 114 115 116
# no navigation elements
$SECTION_NAVIGATION = 0;
# the same for texi2html 5.0
$HEADERS = 0;

# TOC and Chapter headings link
$TOC_LINKS = 1;

# print the TOC where @contents is used
$INLINE_CONTENTS = 1;