doc/t2h.init
5231d627
 # no horiz rules between sections
5f268ca5
 $end_section = \&FFmpeg_end_section;
 sub FFmpeg_end_section($$)
5231d627
 {
 }
 
84fb63ed
 $EXTRA_HEAD =
58b68d6b
 '<link rel="icon" href="favicon.png" type="image/png" />
 ';
84fb63ed
 
52dc18d4
 $CSS_LINES = $ENV{"FFMPEG_CSS"} || <<EOT;
042c2a1a
 <link rel="stylesheet" type="text/css" href="default.css" />
c1f5da69
 EOT
d8a09169
 
52dc18d4
 my $TEMPLATE_HEADER = $ENV{"FFMPEG_HEADER"} || <<EOT;
d19d01bf
 <link rel="icon" href="favicon.png" type="image/png" />
 </head>
 <body>
e64a7f2c
 <div id="container">
df08fd5e
 <div id="body">
d19d01bf
 EOT
84fb63ed
 
 $PRE_BODY_CLOSE = '</div></div>';
 
 $SMALL_RULE = '';
 $BODYTEXT = '';
 
5f268ca5
 $print_page_foot = \&FFmpeg_print_page_foot;
 sub FFmpeg_print_page_foot($$)
5231d627
 {
     my $fh = shift;
27a310e3
     my $program_string = defined &T2H_DEFAULT_program_string ?
         T2H_DEFAULT_program_string() : program_string();
d19d01bf
     print $fh '<footer class="footer pagination-right">' . "\n";
     print $fh '<span class="label label-info">' . $program_string;
df08fd5e
     print $fh "</span></footer></div></div></body>\n";
84fb63ed
 }
 
c59b80c8
 $float = \&FFmpeg_float;
c1f5da69
 
c59b80c8
 sub FFmpeg_float($$$$)
c1f5da69
 {
     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/)
     {
d19d01bf
         $class = "alert alert-info";
c1f5da69
     }
     elsif ($caption =~ /IMPORTANT/)
     {
d19d01bf
         $class = "alert alert-warning";
c1f5da69
     }
 
     return '<div class="float ' . $class . '">' . "$label\n" . $text . '</div>';
 }
 
5f268ca5
 $print_page_head = \&FFmpeg_print_page_head;
 sub FFmpeg_print_page_head($$)
84fb63ed
 {
     my $fh = shift;
fe1057e0
     my $longtitle = "$Texi2HTML::THISDOC{'fulltitle_no_texi'}";
84fb63ed
     $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;
5f268ca5
     $longtitle = "FFmpeg documentation : " . $longtitle;
84fb63ed
 
     print $fh <<EOT;
d19d01bf
 <!DOCTYPE html>
84fb63ed
 <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="Generator" content="$Texi2HTML::THISDOC{program}">
 $encoding
 $CSS_LINES
d19d01bf
 $TEMPLATE_HEADER
84fb63ed
 EOT
5231d627
 }
 
21fb7ff3
 # declare encoding in header
 $IN_ENCODING = $ENCODING = "utf-8";
 
5231d627
 # 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;