diff options
Diffstat (limited to 'doc/t2h.init')
-rw-r--r-- | doc/t2h.init | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/t2h.init b/doc/t2h.init index d91d7b6bff..db5536bd88 100644 --- a/doc/t2h.init +++ b/doc/t2h.init @@ -1,6 +1,6 @@ # no horiz rules between sections -$end_section = \&Libav_end_section; -sub Libav_end_section($$) +$end_section = \&FFmpeg_end_section; +sub FFmpeg_end_section($$) { } @@ -67,11 +67,11 @@ h3 { </style> EOT -my $LIBAV_NAVBAR = $ENV{"LIBAV_NAVBAR"} || ''; +my $FFMPEG_NAVBAR = $ENV{"FFMPEG_NAVBAR"} || ''; $AFTER_BODY_OPEN = '<div id="container">' . -"\n$LIBAV_NAVBAR\n" . +"\n$FFMPEG_NAVBAR\n" . '<div id="body">'; $PRE_BODY_CLOSE = '</div></div>'; @@ -79,8 +79,8 @@ $PRE_BODY_CLOSE = '</div></div>'; $SMALL_RULE = ''; $BODYTEXT = ''; -$print_page_foot = \&Libav_print_page_foot; -sub Libav_print_page_foot($$) +$print_page_foot = \&FFmpeg_print_page_foot; +sub FFmpeg_print_page_foot($$) { my $fh = shift; print $fh '<div id="footer">' . "\n"; @@ -88,9 +88,9 @@ sub Libav_print_page_foot($$) print $fh "</div>\n"; } -$float = \&Libav_float; +$float = \&FFmpeg_float; -sub Libav_float($$$$) +sub FFmpeg_float($$$$) { my $text = shift; my $float = shift; @@ -117,8 +117,8 @@ sub Libav_float($$$$) return '<div class="float ' . $class . '">' . "$label\n" . $text . '</div>'; } -$print_page_head = \&Libav_print_page_head; -sub Libav_print_page_head($$) +$print_page_head = \&FFmpeg_print_page_head; +sub FFmpeg_print_page_head($$) { my $fh = shift; my $longtitle = "$Texi2HTML::THISDOC{'title_no_texi'}"; @@ -131,7 +131,7 @@ sub Libav_print_page_head($$) my $encoding = ''; $encoding = "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=$ENCODING\">" if (defined($ENCODING) and ($ENCODING ne '')); $longtitle =~ s/Documentation.*//g; - $longtitle = "Libav documentation : " . $longtitle; + $longtitle = "FFmpeg documentation : " . $longtitle; print $fh <<EOT; $DOCTYPE |