2000-07-31 14:53:45 -03:00
|
|
|
# LaTeX2HTML support base for use with Python documentation.
|
1998-05-11 15:23:35 -03:00
|
|
|
|
|
|
|
package main;
|
|
|
|
|
2000-07-31 14:53:45 -03:00
|
|
|
use L2hos;
|
|
|
|
|
1998-10-20 15:14:20 -03:00
|
|
|
$HTML_VERSION = 4.0;
|
|
|
|
|
1998-08-11 00:14:50 -03:00
|
|
|
$MAX_LINK_DEPTH = 2;
|
1998-04-23 17:06:24 -03:00
|
|
|
$ADDRESS = '';
|
1998-03-06 17:18:55 -04:00
|
|
|
|
1998-05-19 16:38:49 -03:00
|
|
|
$NO_FOOTNODE = 1;
|
1998-03-06 17:18:55 -04:00
|
|
|
$NUMBERED_FOOTNOTES = 1;
|
|
|
|
|
|
|
|
# Python documentation uses section numbers to support references to match
|
|
|
|
# in the printed and online versions.
|
|
|
|
#
|
|
|
|
$SHOW_SECTION_NUMBERS = 1;
|
|
|
|
|
2002-10-01 12:20:20 -03:00
|
|
|
$ICONSERVER = '.';
|
2000-08-31 04:19:07 -03:00
|
|
|
$IMAGE_TYPE = 'gif';
|
1998-03-06 17:18:55 -04:00
|
|
|
|
1998-08-11 00:14:50 -03:00
|
|
|
# Control where the navigation bars should show up:
|
|
|
|
$TOP_NAVIGATION = 1;
|
|
|
|
$BOTTOM_NAVIGATION = 1;
|
|
|
|
$AUTO_NAVIGATION = 0;
|
|
|
|
|
2000-09-16 17:40:44 -03:00
|
|
|
$BODYTEXT = '';
|
2003-09-04 19:16:45 -03:00
|
|
|
$CHILDLINE = "\n<p><br /></p><hr class='online-navigation' />\n";
|
1998-03-06 17:18:55 -04:00
|
|
|
$VERBOSITY = 0;
|
|
|
|
|
1998-08-07 17:51:58 -03:00
|
|
|
# default # of columns for the indexes
|
1998-08-07 16:52:37 -03:00
|
|
|
$INDEX_COLUMNS = 2;
|
1999-03-02 12:00:37 -04:00
|
|
|
$MODULE_INDEX_COLUMNS = 4;
|
1998-08-07 16:52:37 -03:00
|
|
|
|
2001-10-22 13:57:49 -03:00
|
|
|
$HAVE_MODULE_INDEX = 0;
|
|
|
|
$HAVE_GENERAL_INDEX = 0;
|
|
|
|
$HAVE_TABLE_OF_CONTENTS = 0;
|
|
|
|
|
2002-04-05 13:34:50 -04:00
|
|
|
$AESOP_META_TYPE = 'information';
|
|
|
|
|
1998-03-11 08:08:21 -04:00
|
|
|
|
1998-03-10 19:02:57 -04:00
|
|
|
# A little painful, but lets us clean up the top level directory a little,
|
2000-07-31 14:53:45 -03:00
|
|
|
# and not be tied to the current directory (as far as I can tell). Testing
|
|
|
|
# an existing definition of $mydir is needed since it cannot be computed when
|
|
|
|
# run under mkhowto with recent versions of LaTeX2HTML, since this file is
|
|
|
|
# not read directly by LaTeX2HTML any more. mkhowto is required to prepend
|
|
|
|
# the required definition at the top of the actual input file.
|
1998-03-10 19:02:57 -04:00
|
|
|
#
|
2000-07-31 14:53:45 -03:00
|
|
|
if (!defined $mydir) {
|
|
|
|
use Cwd;
|
|
|
|
use File::Basename;
|
|
|
|
($myname, $mydir, $myext) = fileparse(__FILE__, '\..*');
|
2003-09-04 19:21:17 -03:00
|
|
|
chop $mydir; # remove trailing '/'
|
2000-07-31 14:53:45 -03:00
|
|
|
$mydir = getcwd() . "$dd$mydir"
|
|
|
|
unless $mydir =~ s|^/|/|;
|
|
|
|
}
|
1998-03-10 19:02:57 -04:00
|
|
|
$LATEX2HTMLSTYLES = "$mydir$envkey$LATEX2HTMLSTYLES";
|
1998-07-24 19:17:34 -03:00
|
|
|
push (@INC, $mydir);
|
1998-03-06 17:18:55 -04:00
|
|
|
|
1998-03-27 01:19:43 -04:00
|
|
|
($myrootname, $myrootdir, $myext) = fileparse($mydir, '\..*');
|
|
|
|
chop $myrootdir;
|
|
|
|
|
1998-03-06 17:18:55 -04:00
|
|
|
|
1998-05-15 14:14:17 -03:00
|
|
|
# Hackish way to get the appropriate paper-*/ directory into $TEXINPUTS;
|
|
|
|
# pass in the paper size (a4 or letter) as the environment variable PAPER
|
|
|
|
# to add the right directory. If not given, the current directory is
|
|
|
|
# added instead for use with HOWTO processing.
|
|
|
|
#
|
|
|
|
if (defined $ENV{'PAPER'}) {
|
|
|
|
$mytexinputs = "$myrootdir${dd}paper-$ENV{'PAPER'}$envkey";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$mytexinputs = getcwd() . $envkey;
|
|
|
|
}
|
|
|
|
$mytexinputs .= "$myrootdir${dd}texinputs";
|
|
|
|
|
|
|
|
|
1999-09-23 13:53:09 -03:00
|
|
|
# Change this variable to change the text added in "About this document...";
|
|
|
|
# this should be an absolute pathname to get it right.
|
|
|
|
#
|
|
|
|
$ABOUT_FILE = "$myrootdir${dd}html${dd}stdabout.dat";
|
|
|
|
|
|
|
|
|
2000-07-31 14:53:45 -03:00
|
|
|
sub custom_driver_hook {
|
1998-05-15 14:14:17 -03:00
|
|
|
#
|
|
|
|
# This adds the directory of the main input file to $TEXINPUTS; it
|
|
|
|
# seems to be sufficiently general that it should be fine for HOWTO
|
|
|
|
# processing.
|
|
|
|
#
|
2003-09-27 13:04:23 -03:00
|
|
|
# XXX This still isn't quite right; we should actually be inserting
|
|
|
|
# $mytexinputs just before any empty entry in TEXINPUTS is one
|
|
|
|
# exists instead of just concatenating the pieces like we do here.
|
|
|
|
#
|
2002-10-24 13:36:05 -03:00
|
|
|
my $file = $_[0];
|
2000-07-31 14:53:45 -03:00
|
|
|
my($jobname, $dir, $ext) = fileparse($file, '\..*');
|
|
|
|
$dir = L2hos->Make_directory_absolute($dir);
|
1998-05-15 14:14:17 -03:00
|
|
|
$dir =~ s/$dd$//;
|
|
|
|
$TEXINPUTS = "$dir$envkey$mytexinputs";
|
2003-09-27 13:04:23 -03:00
|
|
|
# Push everything into $TEXINPUTS since LaTeX2HTML doesn't pick
|
|
|
|
# this up on it's own; we clear $ENV{'TEXINPUTS'} so the value set
|
|
|
|
# for this by the main LaTeX2HTML script doesn't contain duplicate
|
|
|
|
# directories.
|
|
|
|
if ($ENV{'TEXINPUTS'}) {
|
|
|
|
$TEXINPUTS .= "$envkey$ENV{'TEXINPUTS'}";
|
|
|
|
$ENV{'TEXINPUTS'} = undef;
|
|
|
|
}
|
|
|
|
print "\nSetting \$TEXINPUTS to $TEXINPUTS\n";
|
1999-09-22 16:50:51 -03:00
|
|
|
}
|
|
|
|
|
1998-05-15 14:14:17 -03:00
|
|
|
|
2004-01-13 19:43:58 -04:00
|
|
|
# $CUSTOM_BUTTONS is only used for the module index link.
|
2000-07-31 14:53:45 -03:00
|
|
|
$CUSTOM_BUTTONS = '';
|
1998-08-13 19:03:46 -03:00
|
|
|
|
2003-05-02 17:18:01 -03:00
|
|
|
sub make_nav_sectref($$$) {
|
|
|
|
my($label, $linktype, $title) = @_;
|
1999-02-16 13:22:32 -04:00
|
|
|
if ($title) {
|
2000-09-19 12:36:19 -03:00
|
|
|
if ($title =~ /\<[aA] /) {
|
2003-05-02 17:18:01 -03:00
|
|
|
$title =~ s/\<[aA] /<a class="sectref" rel="$linktype" /;
|
2003-08-05 00:45:37 -03:00
|
|
|
$title =~ s/ HREF=/ href=/;
|
2000-09-19 12:36:19 -03:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
$title = "<span class=\"sectref\">$title</span>";
|
|
|
|
}
|
2003-05-02 17:18:01 -03:00
|
|
|
return "<b class=\"navlabel\">$label:</b>\n$title\n";
|
1999-02-16 13:22:32 -04:00
|
|
|
}
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2001-01-02 18:08:48 -04:00
|
|
|
@my_icon_tags = ();
|
|
|
|
$my_icon_tags{'next'} = 'Next Page';
|
|
|
|
$my_icon_tags{'next_page'} = 'Next Page';
|
|
|
|
$my_icon_tags{'previous'} = 'Previous Page';
|
|
|
|
$my_icon_tags{'previous_page'} = 'Previous Page';
|
|
|
|
$my_icon_tags{'up'} = 'Up One Level';
|
|
|
|
$my_icon_tags{'contents'} = 'Contents';
|
|
|
|
$my_icon_tags{'index'} = 'Index';
|
|
|
|
$my_icon_tags{'modules'} = 'Module Index';
|
|
|
|
|
2001-01-04 11:16:01 -04:00
|
|
|
@my_icon_names = ();
|
|
|
|
$my_icon_names{'previous_page'} = 'previous';
|
|
|
|
$my_icon_names{'next_page'} = 'next';
|
|
|
|
|
2002-05-23 14:59:16 -03:00
|
|
|
sub get_my_icon($) {
|
2002-10-24 13:36:05 -03:00
|
|
|
my $name = $_[0];
|
2001-01-02 18:08:48 -04:00
|
|
|
my $text = $my_icon_tags{$name};
|
2001-01-04 11:16:01 -04:00
|
|
|
if ($my_icon_names{$name}) {
|
|
|
|
$name = $my_icon_names{$name};
|
|
|
|
}
|
2001-01-02 18:08:48 -04:00
|
|
|
if ($text eq '') {
|
|
|
|
$name = 'blank';
|
|
|
|
}
|
2000-07-31 14:53:45 -03:00
|
|
|
my $iconserver = ($ICONSERVER eq '.') ? '' : "$ICONSERVER/";
|
2002-10-30 13:00:58 -04:00
|
|
|
return "<img src='$iconserver$name.$IMAGE_TYPE'\n border='0'"
|
2003-08-05 00:45:37 -03:00
|
|
|
. " height='32' alt='$text' width='32' />";
|
2000-07-31 14:53:45 -03:00
|
|
|
}
|
|
|
|
|
2003-05-02 23:07:22 -03:00
|
|
|
sub unlinkify($) {
|
|
|
|
my $text = "$_[0]";
|
|
|
|
$text =~ s|</[aA]>||;
|
|
|
|
$text =~ s|<a\s+[^>]*>||i;
|
|
|
|
return $text;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub use_icon($$$) {
|
|
|
|
my($rel,$str,$title) = @_;
|
2004-01-13 19:43:58 -04:00
|
|
|
if ($str) {
|
2003-05-02 23:07:22 -03:00
|
|
|
my $s = "$str";
|
|
|
|
if ($s =~ /\<tex2html_([a-z_]+)_visible_mark\>/) {
|
|
|
|
my $r = get_my_icon($1);
|
|
|
|
$s =~ s/\<tex2html_[a-z_]+_visible_mark\>/$r/;
|
|
|
|
}
|
2004-11-05 02:42:22 -04:00
|
|
|
$s =~ s/<[aA] /<a rel="$rel" title="$title"\n /;
|
2003-08-05 00:45:37 -03:00
|
|
|
$s =~ s/ HREF=/ href=/;
|
2003-05-02 23:07:22 -03:00
|
|
|
return $s;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return get_my_icon('blank');
|
2001-01-02 18:08:48 -04:00
|
|
|
}
|
2000-07-31 14:53:45 -03:00
|
|
|
}
|
|
|
|
|
2002-05-23 14:59:16 -03:00
|
|
|
sub make_nav_panel() {
|
1999-04-29 16:06:56 -03:00
|
|
|
my $s;
|
2003-05-02 23:07:22 -03:00
|
|
|
# new iconic rel iconic page title
|
2004-09-09 02:13:52 -03:00
|
|
|
my $next = use_icon('next', $NEXT, unlinkify($NEXT_TITLE));
|
|
|
|
my $up = use_icon('parent', $UP, unlinkify($UP_TITLE));
|
|
|
|
my $previous = use_icon('prev', $PREVIOUS, unlinkify($PREVIOUS_TITLE));
|
|
|
|
my $contents = use_icon('contents', $CONTENTS, 'Table of Contents');
|
|
|
|
my $index = use_icon('index', $INDEX, 'Index');
|
2000-07-31 14:53:45 -03:00
|
|
|
if (!$CUSTOM_BUTTONS) {
|
2003-05-02 23:07:22 -03:00
|
|
|
$CUSTOM_BUTTONS = get_my_icon('blank');
|
1999-09-22 16:50:51 -03:00
|
|
|
}
|
2000-07-31 14:53:45 -03:00
|
|
|
$s = ('<table align="center" width="100%" cellpadding="0" cellspacing="2">'
|
|
|
|
. "\n<tr>"
|
|
|
|
# left-hand side
|
2004-09-09 02:13:52 -03:00
|
|
|
. "\n<td class='online-navigation'>$previous</td>"
|
|
|
|
. "\n<td class='online-navigation'>$up</td>"
|
|
|
|
. "\n<td class='online-navigation'>$next</td>"
|
2000-07-31 14:53:45 -03:00
|
|
|
# title box
|
2000-08-31 04:19:07 -03:00
|
|
|
. "\n<td align=\"center\" width=\"100%\">$t_title</td>"
|
2000-07-31 14:53:45 -03:00
|
|
|
# right-hand side
|
2004-09-09 02:13:52 -03:00
|
|
|
. "\n<td class='online-navigation'>$contents</td>"
|
2003-09-04 19:16:45 -03:00
|
|
|
# module index
|
|
|
|
. "\n<td class='online-navigation'>$CUSTOM_BUTTONS</td>"
|
2004-09-09 02:13:52 -03:00
|
|
|
. "\n<td class='online-navigation'>$index</td>"
|
2000-07-31 14:53:45 -03:00
|
|
|
. "\n</tr></table>\n"
|
|
|
|
# textual navigation
|
2003-09-04 19:16:45 -03:00
|
|
|
. "<div class='online-navigation'>\n"
|
2003-05-02 17:18:01 -03:00
|
|
|
. make_nav_sectref("Previous", "prev", $PREVIOUS_TITLE)
|
|
|
|
. make_nav_sectref("Up", "parent", $UP_TITLE)
|
|
|
|
. make_nav_sectref("Next", "next", $NEXT_TITLE)
|
2003-09-04 19:16:45 -03:00
|
|
|
. "</div>\n"
|
2000-07-31 17:13:23 -03:00
|
|
|
);
|
2000-07-31 14:53:45 -03:00
|
|
|
# remove these; they are unnecessary and cause errors from validation
|
|
|
|
$s =~ s/ NAME="tex2html\d+"\n */ /g;
|
1999-04-29 16:06:56 -03:00
|
|
|
return $s;
|
1998-03-17 02:28:05 -04:00
|
|
|
}
|
1998-03-06 17:18:55 -04:00
|
|
|
|
2001-10-26 11:16:23 -03:00
|
|
|
sub add_child_links {
|
|
|
|
my $toc = add_real_child_links(@_);
|
|
|
|
$toc =~ s|\s*</[aA]>|</a>|g;
|
|
|
|
$toc =~ s/ NAME=\"tex2html\d+\"\s*href=/ href=/gi;
|
2003-08-05 00:45:37 -03:00
|
|
|
$toc =~ s|</UL>(\s*<BR( /)?>)?|</ul>|gi;
|
2003-09-04 19:16:45 -03:00
|
|
|
if ($toc =~ / NAME=["']CHILD_LINKS["']/) {
|
|
|
|
return "<div class='online-navigation'>\n$toc</div>\n";
|
|
|
|
}
|
2001-10-26 11:16:23 -03:00
|
|
|
return $toc;
|
|
|
|
}
|
|
|
|
|
2002-05-23 14:59:16 -03:00
|
|
|
sub get_version_text() {
|
2000-10-25 13:18:10 -03:00
|
|
|
if ($PACKAGE_VERSION ne '' && $t_date) {
|
|
|
|
return ("<span class=\"release-info\">"
|
2001-06-20 18:31:36 -03:00
|
|
|
. "Release $PACKAGE_VERSION$RELEASE_INFO,"
|
2000-10-25 13:18:10 -03:00
|
|
|
. " documentation updated on $t_date.</span>");
|
|
|
|
}
|
|
|
|
if ($PACKAGE_VERSION ne '') {
|
|
|
|
return ("<span class=\"release-info\">"
|
2001-06-20 18:31:36 -03:00
|
|
|
. "Release $PACKAGE_VERSION$RELEASE_INFO.</span>");
|
2000-10-25 13:18:10 -03:00
|
|
|
}
|
|
|
|
if ($t_date) {
|
|
|
|
return ("<span class=\"release-info\">Documentation released on "
|
|
|
|
. "$t_date.</span>");
|
|
|
|
}
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2000-07-31 14:53:45 -03:00
|
|
|
|
2002-05-23 14:59:16 -03:00
|
|
|
sub top_navigation_panel() {
|
2004-10-29 16:47:52 -03:00
|
|
|
return "\n<div id='top-navigation-panel' xml:id='top-navigation-panel'>\n"
|
2000-10-25 13:18:10 -03:00
|
|
|
. make_nav_panel()
|
2003-09-11 01:14:20 -03:00
|
|
|
. "<hr /></div>\n";
|
1998-03-06 17:18:55 -04:00
|
|
|
}
|
|
|
|
|
2002-05-23 14:59:16 -03:00
|
|
|
sub bot_navigation_panel() {
|
2003-09-04 19:16:45 -03:00
|
|
|
return "\n<div class='online-navigation'>\n"
|
2003-09-04 16:30:15 -03:00
|
|
|
. "<p></p><hr />\n"
|
2000-10-25 13:18:10 -03:00
|
|
|
. make_nav_panel()
|
2003-09-04 16:30:15 -03:00
|
|
|
. "</div>\n"
|
2003-08-05 00:45:37 -03:00
|
|
|
. "<hr />\n"
|
2000-10-25 13:18:10 -03:00
|
|
|
. get_version_text()
|
|
|
|
. "\n";
|
1998-04-16 23:14:12 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
sub add_link {
|
|
|
|
# Returns a pair (iconic link, textual link)
|
|
|
|
my($icon, $current_file, @link) = @_;
|
|
|
|
my($dummy, $file, $title) = split($delim,
|
2003-09-04 19:21:17 -03:00
|
|
|
$section_info{join(' ',@link)});
|
2001-01-02 18:08:48 -04:00
|
|
|
if ($icon =~ /\<tex2html_([_a-z]+)_visible_mark\>/) {
|
|
|
|
my $r = get_my_icon($1);
|
|
|
|
$icon =~ s/\<tex2html_[_a-z]+_visible_mark\>/$r/;
|
|
|
|
}
|
1998-04-16 23:14:12 -03:00
|
|
|
if ($title && ($file ne $current_file)) {
|
|
|
|
$title = purify($title);
|
2003-09-04 19:21:17 -03:00
|
|
|
$title = get_first_words($title, $WORDS_IN_NAVIGATION_PANEL_TITLES);
|
|
|
|
return (make_href($file, $icon), make_href($file, "$title"))
|
|
|
|
}
|
2001-01-02 18:08:48 -04:00
|
|
|
elsif ($icon eq get_my_icon('up') && $EXTERNAL_UP_LINK) {
|
2003-09-04 19:21:17 -03:00
|
|
|
return (make_href($EXTERNAL_UP_LINK, $icon),
|
|
|
|
make_href($EXTERNAL_UP_LINK, "$EXTERNAL_UP_TITLE"))
|
|
|
|
}
|
2001-01-02 18:08:48 -04:00
|
|
|
elsif ($icon eq get_my_icon('previous')
|
2003-09-04 19:21:17 -03:00
|
|
|
&& $EXTERNAL_PREV_LINK && $EXTERNAL_PREV_TITLE) {
|
|
|
|
return (make_href($EXTERNAL_PREV_LINK, $icon),
|
|
|
|
make_href($EXTERNAL_PREV_LINK, "$EXTERNAL_PREV_TITLE"))
|
|
|
|
}
|
2001-01-02 18:08:48 -04:00
|
|
|
elsif ($icon eq get_my_icon('next')
|
2003-09-04 19:21:17 -03:00
|
|
|
&& $EXTERNAL_DOWN_LINK && $EXTERNAL_DOWN_TITLE) {
|
|
|
|
return (make_href($EXTERNAL_DOWN_LINK, $icon),
|
|
|
|
make_href($EXTERNAL_DOWN_LINK, "$EXTERNAL_DOWN_TITLE"))
|
|
|
|
}
|
2000-07-31 14:53:45 -03:00
|
|
|
return (&inactive_img($icon), "");
|
1998-04-16 23:14:12 -03:00
|
|
|
}
|
|
|
|
|
2002-05-23 14:59:16 -03:00
|
|
|
sub add_special_link($$$) {
|
1998-04-16 23:14:12 -03:00
|
|
|
my($icon, $file, $current_file) = @_;
|
2001-01-02 18:08:48 -04:00
|
|
|
if ($icon =~ /\<tex2html_([_a-z]+)_visible_mark\>/) {
|
|
|
|
my $r = get_my_icon($1);
|
|
|
|
$icon =~ s/\<tex2html_[_a-z]+_visible_mark\>/$r/;
|
|
|
|
}
|
2000-07-31 14:53:45 -03:00
|
|
|
return (($file && ($file ne $current_file))
|
|
|
|
? make_href($file, $icon)
|
|
|
|
: undef)
|
1998-03-06 17:18:55 -04:00
|
|
|
}
|
|
|
|
|
2000-07-31 14:53:45 -03:00
|
|
|
# The img_tag() function seems only to be called with the parameter
|
|
|
|
# 'anchor_invisible_mark', which we want to turn into ''. Since
|
|
|
|
# replace_icon_marks() is the only interesting caller, and all it really
|
|
|
|
# does is call img_tag(), we can just define the hook alternative to be
|
|
|
|
# a no-op instead.
|
|
|
|
#
|
|
|
|
sub replace_icons_hook {}
|
1998-03-06 17:18:55 -04:00
|
|
|
|
1999-02-19 19:04:59 -04:00
|
|
|
sub do_cmd_arabic {
|
|
|
|
# get rid of that nasty <SPAN CLASS="arabic">...</SPAN>
|
2002-10-24 13:36:05 -03:00
|
|
|
my($ctr, $val, $id, $text) = &read_counter_value($_[0]);
|
2000-07-31 14:53:45 -03:00
|
|
|
return ($val ? farabic($val) : "0") . $text;
|
1999-02-19 19:04:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-05-23 14:59:16 -03:00
|
|
|
sub gen_index_id($$) {
|
1998-03-06 17:18:55 -04:00
|
|
|
# this is used to ensure common index key generation and a stable sort
|
2002-05-23 14:59:16 -03:00
|
|
|
my($str, $extra) = @_;
|
1998-04-16 23:14:12 -03:00
|
|
|
sprintf('%s###%s%010d', $str, $extra, ++$global{'max_id'});
|
1998-03-06 17:18:55 -04:00
|
|
|
}
|
|
|
|
|
2002-05-23 14:59:16 -03:00
|
|
|
sub insert_index($$$$$) {
|
|
|
|
my($mark, $datafile, $columns, $letters, $prefix) = @_;
|
1998-08-07 17:51:58 -03:00
|
|
|
my $prog = "$myrootdir/tools/buildindex.py";
|
|
|
|
my $index;
|
|
|
|
if ($letters) {
|
2003-09-04 19:21:17 -03:00
|
|
|
$index = `$prog --columns $columns --letters $datafile`;
|
1998-08-07 17:51:58 -03:00
|
|
|
}
|
|
|
|
else {
|
2003-09-04 19:21:17 -03:00
|
|
|
$index = `$prog --columns $columns $datafile`;
|
1998-08-07 17:51:58 -03:00
|
|
|
}
|
2000-09-12 17:13:04 -03:00
|
|
|
if (!s/$mark/$prefix$index/) {
|
|
|
|
print "\nCould not locate index mark: $mark";
|
|
|
|
}
|
1998-04-16 23:14:12 -03:00
|
|
|
}
|
|
|
|
|
2002-05-23 14:59:16 -03:00
|
|
|
sub add_idx() {
|
1999-01-19 12:30:10 -04:00
|
|
|
print "\nBuilding HTML for the index ...";
|
1998-03-27 01:19:43 -04:00
|
|
|
close(IDXFILE);
|
1999-03-02 12:00:37 -04:00
|
|
|
insert_index($idx_mark, 'index.dat', $INDEX_COLUMNS, 1, '');
|
1998-03-17 02:28:05 -04:00
|
|
|
}
|
1998-03-06 17:18:55 -04:00
|
|
|
|
|
|
|
|
|
|
|
$idx_module_mark = '<tex2html_idx_module_mark>';
|
|
|
|
$idx_module_title = 'Module Index';
|
|
|
|
|
2002-05-23 14:59:16 -03:00
|
|
|
sub add_module_idx() {
|
1999-01-19 12:30:10 -04:00
|
|
|
print "\nBuilding HTML for the module index ...";
|
1998-03-27 01:19:43 -04:00
|
|
|
my $key;
|
1999-03-02 12:00:37 -04:00
|
|
|
my $first = 1;
|
|
|
|
my $prevplat = '';
|
|
|
|
my $allthesame = 1;
|
|
|
|
my $prefix = '';
|
|
|
|
foreach $key (keys %Modules) {
|
2003-09-04 19:21:17 -03:00
|
|
|
$key =~ s/<tt>([a-zA-Z0-9._]*)<\/tt>/$1/;
|
|
|
|
my $plat = "$ModulePlatforms{$key}";
|
|
|
|
$plat = ''
|
|
|
|
if ($plat eq $IGNORE_PLATFORM_ANNOTATION);
|
|
|
|
if (!$first) {
|
|
|
|
$allthesame = 0
|
|
|
|
if ($prevplat ne $plat);
|
|
|
|
}
|
|
|
|
else { $first = 0; }
|
|
|
|
$prevplat = $plat;
|
1999-03-02 12:00:37 -04:00
|
|
|
}
|
1998-04-16 23:14:12 -03:00
|
|
|
open(MODIDXFILE, '>modindex.dat') || die "\n$!\n";
|
1998-03-27 01:19:43 -04:00
|
|
|
foreach $key (keys %Modules) {
|
2003-09-04 19:21:17 -03:00
|
|
|
# dump the line in the data file; just use a dummy seqno field
|
|
|
|
my $nkey = $1;
|
|
|
|
my $moditem = "$Modules{$key}";
|
|
|
|
my $plat = '';
|
|
|
|
$key =~ s/<tt>([a-zA-Z0-9._]*)<\/tt>/$1/;
|
|
|
|
if ($ModulePlatforms{$key} && !$allthesame) {
|
|
|
|
$plat = (" <em>(<span class=\"platform\">$ModulePlatforms{$key}"
|
|
|
|
. '</span>)</em>');
|
|
|
|
}
|
|
|
|
print MODIDXFILE $moditem . $IDXFILE_FIELD_SEP
|
2001-06-20 18:31:36 -03:00
|
|
|
. "<tt class=\"module\">$key</tt>$plat###\n";
|
1998-03-06 17:18:55 -04:00
|
|
|
}
|
1998-03-27 01:19:43 -04:00
|
|
|
close(MODIDXFILE);
|
2001-01-09 18:02:10 -04:00
|
|
|
|
|
|
|
if ($GLOBAL_MODULE_INDEX) {
|
|
|
|
$prefix = <<MODULE_INDEX_PREFIX;
|
|
|
|
|
|
|
|
<p> This index only lists modules documented in this manual.
|
|
|
|
The <em class="citetitle"><a href="$GLOBAL_MODULE_INDEX">Global Module
|
|
|
|
Index</a></em> lists all modules that are documented in this set
|
|
|
|
of manuals.</p>
|
|
|
|
MODULE_INDEX_PREFIX
|
|
|
|
}
|
1999-03-02 12:00:37 -04:00
|
|
|
if (!$allthesame) {
|
2003-09-04 19:21:17 -03:00
|
|
|
$prefix .= <<PLAT_DISCUSS;
|
1999-03-02 12:00:37 -04:00
|
|
|
|
|
|
|
<p> Some module names are followed by an annotation indicating what
|
|
|
|
platform they are available on.</p>
|
|
|
|
|
|
|
|
PLAT_DISCUSS
|
|
|
|
}
|
|
|
|
insert_index($idx_module_mark, 'modindex.dat', $MODULE_INDEX_COLUMNS, 0,
|
2003-09-04 19:21:17 -03:00
|
|
|
$prefix);
|
1998-03-06 17:18:55 -04:00
|
|
|
}
|
|
|
|
|
1998-03-27 01:19:43 -04:00
|
|
|
# replace both indexes as needed:
|
2000-07-31 14:53:45 -03:00
|
|
|
sub add_idx_hook {
|
1998-07-24 19:17:34 -03:00
|
|
|
add_idx() if (/$idx_mark/);
|
1999-03-02 12:00:37 -04:00
|
|
|
process_python_state();
|
2000-09-12 17:13:04 -03:00
|
|
|
if ($MODULE_INDEX_FILE) {
|
|
|
|
local ($_);
|
|
|
|
open(MYFILE, "<$MODULE_INDEX_FILE");
|
|
|
|
sysread(MYFILE, $_, 1024*1024);
|
|
|
|
close(MYFILE);
|
|
|
|
add_module_idx();
|
|
|
|
open(MYFILE,">$MODULE_INDEX_FILE");
|
|
|
|
print MYFILE $_;
|
|
|
|
close(MYFILE);
|
|
|
|
}
|
1998-03-27 01:19:43 -04:00
|
|
|
}
|
1998-03-06 17:18:55 -04:00
|
|
|
|
|
|
|
|
1999-09-22 16:50:51 -03:00
|
|
|
# In addition to the standard stuff, add label to allow named node files and
|
|
|
|
# support suppression of the page complete (for HTML Help use).
|
2003-06-27 15:26:01 -03:00
|
|
|
$MY_CONTENTS_PAGE = '';
|
1998-03-06 17:18:55 -04:00
|
|
|
sub do_cmd_tableofcontents {
|
|
|
|
local($_) = @_;
|
|
|
|
$TITLE = $toc_title;
|
|
|
|
$tocfile = $CURRENT_FILE;
|
2002-05-23 14:59:16 -03:00
|
|
|
my($closures, $reopens) = preserve_open_tags();
|
2003-09-04 19:21:17 -03:00
|
|
|
anchor_label('contents', $CURRENT_FILE, $_); # this is added
|
2003-06-27 15:26:01 -03:00
|
|
|
$MY_CONTENTS_PAGE = "$CURRENT_FILE";
|
2004-11-05 02:42:22 -04:00
|
|
|
join('', "\\tableofchildlinks[off]", $closures
|
2003-09-04 19:21:17 -03:00
|
|
|
, make_section_heading($toc_title, 'h2'), $toc_mark
|
|
|
|
, $reopens, $_);
|
1998-03-06 17:18:55 -04:00
|
|
|
}
|
|
|
|
# In addition to the standard stuff, add label to allow named node files.
|
|
|
|
sub do_cmd_listoffigures {
|
|
|
|
local($_) = @_;
|
|
|
|
$TITLE = $lof_title;
|
|
|
|
$loffile = $CURRENT_FILE;
|
2002-05-23 14:59:16 -03:00
|
|
|
my($closures, $reopens) = preserve_open_tags();
|
2003-09-04 19:21:17 -03:00
|
|
|
anchor_label('lof', $CURRENT_FILE, $_); # this is added
|
2003-08-05 00:45:37 -03:00
|
|
|
join('', "<br />\n", $closures
|
2003-09-04 19:21:17 -03:00
|
|
|
, make_section_heading($lof_title, 'h2'), $lof_mark
|
|
|
|
, $reopens, $_);
|
1998-03-06 17:18:55 -04:00
|
|
|
}
|
|
|
|
# In addition to the standard stuff, add label to allow named node files.
|
|
|
|
sub do_cmd_listoftables {
|
|
|
|
local($_) = @_;
|
|
|
|
$TITLE = $lot_title;
|
|
|
|
$lotfile = $CURRENT_FILE;
|
2002-05-23 14:59:16 -03:00
|
|
|
my($closures, $reopens) = preserve_open_tags();
|
2003-09-04 19:21:17 -03:00
|
|
|
anchor_label('lot', $CURRENT_FILE, $_); # this is added
|
2003-08-05 00:45:37 -03:00
|
|
|
join('', "<br />\n", $closures
|
2003-09-04 19:21:17 -03:00
|
|
|
, make_section_heading($lot_title, 'h2'), $lot_mark
|
|
|
|
, $reopens, $_);
|
1998-03-06 17:18:55 -04:00
|
|
|
}
|
|
|
|
# In addition to the standard stuff, add label to allow named node files.
|
|
|
|
sub do_cmd_textohtmlinfopage {
|
|
|
|
local($_) = @_;
|
2003-09-04 19:21:17 -03:00
|
|
|
if ($INFO) { #
|
|
|
|
anchor_label("about",$CURRENT_FILE,$_); # this is added
|
|
|
|
} #
|
|
|
|
my $the_version = ''; # and the rest is
|
|
|
|
if ($t_date) { # mostly ours
|
|
|
|
$the_version = ",\n$t_date";
|
|
|
|
if ($PACKAGE_VERSION) {
|
|
|
|
$the_version .= ", Release $PACKAGE_VERSION$RELEASE_INFO";
|
|
|
|
}
|
1998-11-30 15:25:47 -04:00
|
|
|
}
|
2001-08-10 17:12:09 -03:00
|
|
|
my $about;
|
|
|
|
open(ABOUT, "<$ABOUT_FILE") || die "\n$!\n";
|
|
|
|
sysread(ABOUT, $about, 1024*1024);
|
|
|
|
close(ABOUT);
|
1998-11-30 15:25:47 -04:00
|
|
|
$_ = (($INFO == 1)
|
1999-09-23 13:53:09 -03:00
|
|
|
? join('',
|
|
|
|
$close_all,
|
|
|
|
"<strong>$t_title</strong>$the_version\n",
|
2001-08-10 17:12:09 -03:00
|
|
|
$about,
|
1999-09-23 13:53:09 -03:00
|
|
|
$open_all, $_)
|
|
|
|
: join('', $close_all, $INFO,"\n", $open_all, $_));
|
1998-11-30 15:25:47 -04:00
|
|
|
$_;
|
1998-03-06 17:18:55 -04:00
|
|
|
}
|
|
|
|
|
2004-08-18 22:37:48 -03:00
|
|
|
$GENERAL_INDEX_FILE = '';
|
|
|
|
$MODULE_INDEX_FILE = '';
|
|
|
|
|
1998-03-06 17:18:55 -04:00
|
|
|
# $idx_mark will be replaced with the real index at the end
|
|
|
|
sub do_cmd_textohtmlindex {
|
|
|
|
local($_) = @_;
|
|
|
|
$TITLE = $idx_title;
|
|
|
|
$idxfile = $CURRENT_FILE;
|
2004-08-18 22:37:48 -03:00
|
|
|
$GENERAL_INDEX_FILE = "$CURRENT_FILE";
|
1998-03-27 01:19:43 -04:00
|
|
|
if (%index_labels) { make_index_labels(); }
|
|
|
|
if (($SHORT_INDEX) && (%index_segment)) { make_preindex(); }
|
1998-03-06 17:18:55 -04:00
|
|
|
else { $preindex = ''; }
|
1998-03-27 01:19:43 -04:00
|
|
|
my $heading = make_section_heading($idx_title, 'h2') . $idx_mark;
|
2002-05-23 14:59:16 -03:00
|
|
|
my($pre, $post) = minimize_open_tags($heading);
|
2003-09-04 19:21:17 -03:00
|
|
|
anchor_label('genindex',$CURRENT_FILE,$_); # this is added
|
2003-08-05 00:45:37 -03:00
|
|
|
return "<br />\n" . $pre . $_;
|
1998-03-06 17:18:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
# $idx_module_mark will be replaced with the real index at the end
|
|
|
|
sub do_cmd_textohtmlmoduleindex {
|
|
|
|
local($_) = @_;
|
|
|
|
$TITLE = $idx_module_title;
|
2000-09-12 17:13:04 -03:00
|
|
|
anchor_label('modindex', $CURRENT_FILE, $_);
|
|
|
|
$MODULE_INDEX_FILE = "$CURRENT_FILE";
|
2003-08-05 00:45:37 -03:00
|
|
|
$_ = ('<p></p>' . make_section_heading($idx_module_title, 'h2')
|
2000-09-12 17:13:04 -03:00
|
|
|
. $idx_module_mark . $_);
|
|
|
|
return $_;
|
1998-03-06 17:18:55 -04:00
|
|
|
}
|
|
|
|
|
2000-09-12 17:13:04 -03:00
|
|
|
# The bibliography and the index should be treated as separate
|
|
|
|
# sections in their own HTML files. The \bibliography{} command acts
|
|
|
|
# as a sectioning command that has the desired effect. But when the
|
|
|
|
# bibliography is constructed manually using the thebibliography
|
|
|
|
# environment, or when using the theindex environment it is not
|
|
|
|
# possible to use the normal sectioning mechanism. This subroutine
|
|
|
|
# inserts a \bibliography{} or a dummy \textohtmlindex command just
|
|
|
|
# before the appropriate environments to force sectioning.
|
1998-03-06 17:18:55 -04:00
|
|
|
|
2003-09-04 19:21:17 -03:00
|
|
|
# XXX This *assumes* that if there are two {theindex} environments,
|
|
|
|
# the first is the module index and the second is the standard
|
|
|
|
# index. This is sufficient for the current Python documentation,
|
|
|
|
# but that's about it.
|
1998-03-06 17:18:55 -04:00
|
|
|
|
|
|
|
sub add_bbl_and_idx_dummy_commands {
|
1998-04-02 18:30:57 -04:00
|
|
|
my $id = $global{'max_id'};
|
1998-03-06 17:18:55 -04:00
|
|
|
|
2001-10-22 13:57:49 -03:00
|
|
|
if (/[\\]tableofcontents/) {
|
|
|
|
$HAVE_TABLE_OF_CONTENTS = 1;
|
|
|
|
}
|
1998-03-06 17:18:55 -04:00
|
|
|
s/([\\]begin\s*$O\d+$C\s*thebibliography)/$bbl_cnt++; $1/eg;
|
1999-09-22 16:50:51 -03:00
|
|
|
s/([\\]begin\s*$O\d+$C\s*thebibliography)/$id++; "\\bibliography$O$id$C$O$id$C $1"/geo;
|
2000-07-31 14:53:45 -03:00
|
|
|
my(@parts) = split(/\\begin\s*$O\d+$C\s*theindex/);
|
|
|
|
if (scalar(@parts) == 3) {
|
|
|
|
# Be careful to re-write the string in place, since $_ is *not*
|
|
|
|
# returned explicity; *** nasty side-effect dependency! ***
|
2001-12-04 13:03:54 -04:00
|
|
|
print "\nadd_bbl_and_idx_dummy_commands ==> adding general index";
|
2000-07-31 14:53:45 -03:00
|
|
|
print "\nadd_bbl_and_idx_dummy_commands ==> adding module index";
|
|
|
|
my $rx = "([\\\\]begin\\s*$O\\d+$C\\s*theindex[\\s\\S]*)"
|
|
|
|
. "([\\\\]begin\\s*$O\\d+$C\\s*theindex)";
|
2002-10-24 13:36:05 -03:00
|
|
|
s/$rx/\\textohtmlmoduleindex $1 \\textohtmlindex $2/o;
|
2000-07-31 14:53:45 -03:00
|
|
|
# Add a button to the navigation areas:
|
2000-09-14 19:20:41 -03:00
|
|
|
$CUSTOM_BUTTONS .= ('<a href="modindex.html" title="Module Index">'
|
2001-01-02 18:08:48 -04:00
|
|
|
. get_my_icon('modules')
|
2000-09-14 19:20:41 -03:00
|
|
|
. '</a>');
|
2001-10-22 13:57:49 -03:00
|
|
|
$HAVE_MODULE_INDEX = 1;
|
|
|
|
$HAVE_GENERAL_INDEX = 1;
|
|
|
|
}
|
|
|
|
elsif (scalar(@parts) == 2) {
|
2001-12-04 13:03:54 -04:00
|
|
|
print "\nadd_bbl_and_idx_dummy_commands ==> adding general index";
|
|
|
|
my $rx = "([\\\\]begin\\s*$O\\d+$C\\s*theindex)";
|
2002-10-24 13:36:05 -03:00
|
|
|
s/$rx/\\textohtmlindex $1/o;
|
2001-10-22 13:57:49 -03:00
|
|
|
$HAVE_GENERAL_INDEX = 1;
|
1998-04-02 18:30:57 -04:00
|
|
|
}
|
2001-12-04 13:03:54 -04:00
|
|
|
elsif (scalar(@parts) == 1) {
|
|
|
|
print "\nadd_bbl_and_idx_dummy_commands ==> no index found";
|
2001-01-02 18:08:48 -04:00
|
|
|
$CUSTOM_BUTTONS .= get_my_icon('blank');
|
2000-07-31 14:53:45 -03:00
|
|
|
$global{'max_id'} = $id; # not sure why....
|
|
|
|
s/([\\]begin\s*$O\d+$C\s*theindex)/\\textohtmlindex $1/o;
|
2003-09-04 19:21:17 -03:00
|
|
|
s/[\\]printindex/\\textohtmlindex /o;
|
2001-12-04 13:03:54 -04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
die "\n\nBad number of index environments!\n\n";
|
|
|
|
}
|
1998-04-02 18:30:57 -04:00
|
|
|
#----------------------------------------------------------------------
|
1998-04-16 23:14:12 -03:00
|
|
|
lib_add_bbl_and_idx_dummy_commands()
|
1998-04-02 18:30:57 -04:00
|
|
|
if defined(&lib_add_bbl_and_idx_dummy_commands);
|
1998-03-06 17:18:55 -04:00
|
|
|
}
|
|
|
|
|
2000-09-12 17:13:04 -03:00
|
|
|
# The bibliographic references, the appendices, the lists of figures
|
|
|
|
# and tables etc. must appear in the contents table at the same level
|
|
|
|
# as the outermost sectioning command. This subroutine finds what is
|
|
|
|
# the outermost level and sets the above to the same level;
|
1998-03-06 17:18:55 -04:00
|
|
|
|
1998-03-17 02:28:05 -04:00
|
|
|
sub set_depth_levels {
|
|
|
|
# Sets $outermost_level
|
1998-04-02 18:30:57 -04:00
|
|
|
my $level;
|
1998-03-17 02:28:05 -04:00
|
|
|
#RRM: do not alter user-set value for $MAX_SPLIT_DEPTH
|
|
|
|
foreach $level ("part", "chapter", "section", "subsection",
|
2003-09-04 19:21:17 -03:00
|
|
|
"subsubsection", "paragraph") {
|
|
|
|
last if (($outermost_level) = /\\($level)$delimiter_rx/);
|
1998-03-17 02:28:05 -04:00
|
|
|
}
|
|
|
|
$level = ($outermost_level ? $section_commands{$outermost_level} :
|
2003-09-04 19:21:17 -03:00
|
|
|
do {$outermost_level = 'section'; 3;});
|
1998-03-17 02:28:05 -04:00
|
|
|
|
|
|
|
#RRM: but calculate value for $MAX_SPLIT_DEPTH when a $REL_DEPTH was given
|
2003-09-04 19:21:17 -03:00
|
|
|
if ($REL_DEPTH && $MAX_SPLIT_DEPTH) {
|
|
|
|
$MAX_SPLIT_DEPTH = $level + $MAX_SPLIT_DEPTH;
|
1998-03-17 02:28:05 -04:00
|
|
|
} elsif (!($MAX_SPLIT_DEPTH)) { $MAX_SPLIT_DEPTH = 1 };
|
|
|
|
|
1998-04-16 23:14:12 -03:00
|
|
|
%unnumbered_section_commands = ('tableofcontents' => $level,
|
2003-09-04 19:21:17 -03:00
|
|
|
'listoffigures' => $level,
|
|
|
|
'listoftables' => $level,
|
|
|
|
'bibliography' => $level,
|
|
|
|
'textohtmlindex' => $level,
|
|
|
|
'textohtmlmoduleindex' => $level);
|
1998-04-16 23:14:12 -03:00
|
|
|
$section_headings{'textohtmlmoduleindex'} = 'h1';
|
|
|
|
|
|
|
|
%section_commands = (%unnumbered_section_commands,
|
2003-09-04 19:21:17 -03:00
|
|
|
%section_commands);
|
1998-04-02 18:30:57 -04:00
|
|
|
|
|
|
|
make_sections_rx();
|
1998-03-17 02:28:05 -04:00
|
|
|
}
|
1998-03-06 17:18:55 -04:00
|
|
|
|
|
|
|
|
1998-04-11 23:16:34 -03:00
|
|
|
# This changes the markup used for {verbatim} environments, and is the
|
1999-02-09 14:45:50 -04:00
|
|
|
# best way I've found that ensures the <dl> goes on the outside of the
|
1998-04-11 23:16:34 -03:00
|
|
|
# <pre>...</pre>.
|
|
|
|
#
|
|
|
|
# Note that this *must* be done in the init file, not the python.perl
|
2000-09-12 17:13:04 -03:00
|
|
|
# style support file. The %declarations must be set before
|
|
|
|
# initialize() is called in the main LaTeX2HTML script (which happens
|
|
|
|
# before style files are loaded).
|
1998-04-11 23:16:34 -03:00
|
|
|
#
|
2002-04-15 15:41:31 -03:00
|
|
|
%declarations = ('preform' => '<div class="verbatim"><pre></pre></div>',
|
2003-09-04 19:21:17 -03:00
|
|
|
%declarations);
|
1998-04-11 23:16:34 -03:00
|
|
|
|
2000-04-03 01:51:13 -03:00
|
|
|
|
2004-11-10 03:48:17 -04:00
|
|
|
# This is a modified version of what's provided by LaTeX2HTML; see the
|
|
|
|
# comment on the middle stanza for an explanation of why we keep our
|
|
|
|
# own version.
|
|
|
|
#
|
|
|
|
# This routine must be called once on the text only,
|
|
|
|
# else it will "eat up" sensitive constructs.
|
|
|
|
sub text_cleanup {
|
|
|
|
# MRO: replaced $* with /m
|
|
|
|
s/(\s*\n){3,}/\n\n/gom; # Replace consecutive blank lines with one
|
|
|
|
s/<(\/?)P>\s*(\w)/<$1P>\n$2/gom; # clean up paragraph starts and ends
|
|
|
|
s/$O\d+$C//go; # Get rid of bracket id's
|
|
|
|
s/$OP\d+$CP//go; # Get rid of processed bracket id's
|
|
|
|
s/(<!)?--?(>)?/(length($1) || length($2)) ? "$1--$2" : "-"/ge;
|
|
|
|
# Spacing commands
|
|
|
|
s/\\( |$)/ /go;
|
|
|
|
#JKR: There should be no more comments in the source now.
|
|
|
|
#s/([^\\]?)%/$1/go; # Remove the comment character
|
|
|
|
# Cannot treat \, as a command because , is a delimiter ...
|
|
|
|
s/\\,/ /go;
|
|
|
|
# Replace tilde's with non-breaking spaces
|
|
|
|
s/ *~/ /g;
|
|
|
|
|
|
|
|
# This is why we have this copy of this routine; the following
|
|
|
|
# isn't so desirable as the author/maintainers of LaTeX2HTML seem
|
|
|
|
# to think. It's not commented out in the main script, so we have
|
|
|
|
# to override the whole thing. In particular, we don't want empty
|
|
|
|
# table cells to disappear.
|
|
|
|
|
|
|
|
### DANGEROUS ?? ###
|
|
|
|
# remove redundant (not <P></P>) empty tags, incl. with attributes
|
|
|
|
#s/\n?<([^PD >][^>]*)>\s*<\/\1>//g;
|
|
|
|
#s/\n?<([^PD >][^>]*)>\s*<\/\1>//g;
|
|
|
|
# remove redundant empty tags (not </P><P> or <TD> or <TH>)
|
|
|
|
#s/<\/(TT|[^PTH][A-Z]+)><\1>//g;
|
|
|
|
#s/<([^PD ]+)(\s[^>]*)?>\n*<\/\1>//g;
|
|
|
|
|
|
|
|
#JCL(jcl-hex)
|
|
|
|
# Replace ^^ special chars (according to p.47 of the TeX book)
|
|
|
|
# Useful when coming from the .aux file (german umlauts, etc.)
|
|
|
|
s/\^\^([^0-9a-f])/chr((64+ord($1))&127)/ge;
|
|
|
|
s/\^\^([0-9a-f][0-9a-f])/chr(hex($1))/ge;
|
|
|
|
}
|
|
|
|
|
2003-05-02 17:18:01 -03:00
|
|
|
# This is used to map the link rel attributes LaTeX2HTML uses to those
|
|
|
|
# currently recommended by the W3C.
|
|
|
|
sub custom_REL_hook {
|
|
|
|
my($rel,$junk) = @_;
|
|
|
|
return 'parent' if $rel eq 'up';
|
|
|
|
return 'prev' if $rel eq 'previous';
|
|
|
|
return $rel;
|
|
|
|
}
|
|
|
|
|
2000-09-12 17:13:04 -03:00
|
|
|
# This is added to get rid of the long comment that follows the
|
|
|
|
# doctype declaration; MSIE5 on NT4 SP4 barfs on it and drops the
|
|
|
|
# content of the page.
|
2001-10-22 13:57:49 -03:00
|
|
|
$MY_PARTIAL_HEADER = '';
|
2002-05-23 14:59:16 -03:00
|
|
|
sub make_head_and_body($$) {
|
2000-07-31 14:53:45 -03:00
|
|
|
my($title, $body) = @_;
|
2000-09-16 17:40:44 -03:00
|
|
|
$body = " $body" unless ($body eq '');
|
2000-07-31 14:53:45 -03:00
|
|
|
my $DTDcomment = '';
|
|
|
|
my($version, $isolanguage) = ($HTML_VERSION, 'EN');
|
|
|
|
my %isolanguages = ( 'english', 'EN' , 'USenglish', 'EN.US'
|
|
|
|
, 'original', 'EN' , 'german' , 'DE'
|
|
|
|
, 'austrian', 'DE.AT', 'french' , 'FR'
|
|
|
|
, 'spanish', 'ES');
|
2000-04-03 01:51:13 -03:00
|
|
|
$isolanguage = $isolanguages{$default_language};
|
|
|
|
$isolanguage = 'EN' unless $isolanguage;
|
|
|
|
$title = &purify($title,1);
|
|
|
|
eval("\$title = ". $default_title ) unless ($title);
|
|
|
|
|
2003-08-05 00:45:37 -03:00
|
|
|
# allow user-modification of the <title> tag; thanks Dan Young
|
2000-04-03 01:51:13 -03:00
|
|
|
if (defined &custom_TITLE_hook) {
|
2003-09-04 19:21:17 -03:00
|
|
|
$title = &custom_TITLE_hook($title, $toc_sec_title);
|
2000-04-03 01:51:13 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($DOCTYPE =~ /\/\/[\w\.]+\s*$/) { # language spec included
|
2003-09-04 19:21:17 -03:00
|
|
|
$DTDcomment = "<!DOCTYPE html PUBLIC \"$DOCTYPE\">\n";
|
2000-04-03 01:51:13 -03:00
|
|
|
} else {
|
2003-09-04 19:21:17 -03:00
|
|
|
$DTDcomment = "<!DOCTYPE html PUBLIC \"$DOCTYPE//"
|
|
|
|
. ($ISO_LANGUAGE ? $ISO_LANGUAGE : $isolanguage) . "\">\n";
|
2000-04-03 01:51:13 -03:00
|
|
|
}
|
2001-10-22 13:57:49 -03:00
|
|
|
if ($MY_PARTIAL_HEADER eq '') {
|
2004-11-05 01:06:08 -04:00
|
|
|
my $favicon = '';
|
|
|
|
if ($FAVORITES_ICON) {
|
|
|
|
my($myname, $mydir, $myext) = fileparse($FAVORITES_ICON, '\..*');
|
|
|
|
my $favtype = '';
|
|
|
|
if ($myext eq '.gif' || $myext eq '.png') {
|
|
|
|
$myext =~ s/^[.]//;
|
|
|
|
$favtype = " type=\"image/$myext\"";
|
|
|
|
}
|
|
|
|
$favicon = (
|
|
|
|
"\n<link rel=\"SHORTCUT ICON\" href=\"$FAVORITES_ICON\""
|
|
|
|
. "$favtype />");
|
|
|
|
}
|
2001-10-22 13:57:49 -03:00
|
|
|
$STYLESHEET = $FILE.".css" unless $STYLESHEET;
|
|
|
|
$MY_PARTIAL_HEADER = join('',
|
2002-10-30 13:00:58 -04:00
|
|
|
($DOCTYPE ? $DTDcomment : ''),
|
2003-05-02 15:21:22 -03:00
|
|
|
"<html>\n<head>",
|
2003-08-05 00:45:37 -03:00
|
|
|
($BASE ? "\n<base href=\"$BASE\" />" : ''),
|
|
|
|
"\n<link rel=\"STYLESHEET\" href=\"$STYLESHEET\" type='text/css'",
|
|
|
|
" />",
|
2004-11-05 01:06:08 -04:00
|
|
|
$favicon,
|
2002-10-30 17:51:18 -04:00
|
|
|
($EXTERNAL_UP_LINK
|
2003-05-02 15:21:22 -03:00
|
|
|
? ("\n<link rel='start' href='" . $EXTERNAL_UP_LINK
|
|
|
|
. ($EXTERNAL_UP_TITLE ?
|
2003-08-05 00:45:37 -03:00
|
|
|
"' title='$EXTERNAL_UP_TITLE' />" : "' />"))
|
2002-10-30 17:51:18 -04:00
|
|
|
: ''),
|
2003-05-02 15:21:22 -03:00
|
|
|
"\n<link rel=\"first\" href=\"$FILE.html\"",
|
2002-10-30 17:51:18 -04:00
|
|
|
($t_title ? " title='$t_title'" : ''),
|
2003-08-05 00:45:37 -03:00
|
|
|
' />',
|
2001-10-22 13:57:49 -03:00
|
|
|
($HAVE_TABLE_OF_CONTENTS
|
2003-06-27 15:26:01 -03:00
|
|
|
? ("\n<link rel='contents' href='$MY_CONTENTS_PAGE'"
|
2003-08-05 00:45:37 -03:00
|
|
|
. ' title="Contents" />')
|
2001-10-22 13:57:49 -03:00
|
|
|
: ''),
|
|
|
|
($HAVE_GENERAL_INDEX
|
2004-08-18 22:37:48 -03:00
|
|
|
? ("\n<link rel='index' href='$GENERAL_INDEX_FILE'"
|
|
|
|
. " title='Index' />")
|
2001-10-22 13:57:49 -03:00
|
|
|
: ''),
|
|
|
|
# disable for now -- Mozilla doesn't do well with multiple indexes
|
|
|
|
# ($HAVE_MODULE_INDEX
|
2004-08-18 22:37:48 -03:00
|
|
|
# ? ("<link rel="index" href='$MODULE_INDEX_FILE'"
|
|
|
|
# . " title='Module Index' />\n")
|
2001-10-22 13:57:49 -03:00
|
|
|
# : ''),
|
2002-10-30 17:51:18 -04:00
|
|
|
($INFO
|
|
|
|
# XXX We can do this with the Python tools since the About...
|
|
|
|
# page always gets copied to about.html, even when we use the
|
|
|
|
# generated node###.html page names. Won't work with the
|
|
|
|
# rest of the Python doc tools.
|
2003-05-02 15:21:22 -03:00
|
|
|
? ("\n<link rel='last' href='about.html'"
|
2003-08-05 00:45:37 -03:00
|
|
|
. " title='About this document...' />"
|
2003-05-02 15:21:22 -03:00
|
|
|
. "\n<link rel='help' href='about.html'"
|
2003-08-05 00:45:37 -03:00
|
|
|
. " title='About this document...' />")
|
2002-10-30 17:51:18 -04:00
|
|
|
: ''),
|
2002-10-30 13:00:58 -04:00
|
|
|
$more_links_mark,
|
2002-10-30 15:55:23 -04:00
|
|
|
"\n",
|
2002-10-30 13:00:58 -04:00
|
|
|
($CHARSET && $HTML_VERSION ge "2.1"
|
|
|
|
? ('<meta http-equiv="Content-Type" content="text/html; '
|
2003-08-05 00:45:37 -03:00
|
|
|
. "charset=$CHARSET\" />\n")
|
2002-10-30 13:00:58 -04:00
|
|
|
: ''),
|
|
|
|
($AESOP_META_TYPE
|
2003-08-05 00:45:37 -03:00
|
|
|
? "<meta name='aesop' content='$AESOP_META_TYPE' />\n" : ''));
|
2001-10-22 13:57:49 -03:00
|
|
|
}
|
2002-10-30 15:55:23 -04:00
|
|
|
if (!$charset && $CHARSET) {
|
|
|
|
$charset = $CHARSET;
|
|
|
|
$charset =~ s/_/\-/go;
|
|
|
|
}
|
2002-10-30 13:00:58 -04:00
|
|
|
join('',
|
|
|
|
$MY_PARTIAL_HEADER,
|
|
|
|
"<title>", $title, "</title>\n</head>\n<body$body>");
|
2000-04-03 01:51:13 -03:00
|
|
|
}
|
|
|
|
|
2003-08-05 00:45:37 -03:00
|
|
|
sub replace_morelinks {
|
|
|
|
$more_links =~ s/ REL=/ rel=/g;
|
|
|
|
$more_links =~ s/ HREF=/ href=/g;
|
2004-11-05 02:42:22 -04:00
|
|
|
$more_links =~ s/<LINK /<link /g;
|
|
|
|
$more_links =~ s/">/" \/>/g;
|
2003-08-05 00:45:37 -03:00
|
|
|
$_ =~ s/$more_links_mark/$more_links/e;
|
|
|
|
}
|
|
|
|
|
2003-09-04 19:21:17 -03:00
|
|
|
1; # This must be the last line
|