[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
texinfo/tp/Texinfo/Convert HTML.pm
From: |
Patrice Dumas |
Subject: |
texinfo/tp/Texinfo/Convert HTML.pm |
Date: |
Sun, 01 May 2011 19:40:21 +0000 |
CVSROOT: /sources/texinfo
Module name: texinfo
Changes by: Patrice Dumas <pertusus> 11/05/01 19:40:21
Modified files:
tp/Texinfo/Convert: HTML.pm
Log message:
Use node in heading if there is nothing else.
Add links to toc if TOC_LINKS is set.
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/Texinfo/Convert/HTML.pm?cvsroot=texinfo&r1=1.47&r2=1.48
Patches:
Index: HTML.pm
===================================================================
RCS file: /sources/texinfo/texinfo/tp/Texinfo/Convert/HTML.pm,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -b -r1.47 -r1.48
--- HTML.pm 1 May 2011 19:10:03 -0000 1.47
+++ HTML.pm 1 May 2011 19:40:20 -0000 1.48
@@ -1398,20 +1398,18 @@
my $args = shift;
my $contents = shift;
- # FIXME in texi2html, level is set to 0 if top node, 3 otherwise
- # and it is printed if $element->{'this'} and !$element->{'with_section'}
-
- my $do_heading = 1;
- if ($cmdname eq 'node') {
- $do_heading = 0;
+ my $content_ref = '';
+ if ($self->get_conf('TOC_LINKS')) {
+ my $content_href = $self->command_contents_href($command, 'contents',
+ $self->{'current_filename'});
+ if ($content_href) {
+ $content_ref = " href=\"$content_href\"";
+ }
}
- # FIXME TODO
- #if ($self->{'TOC_LINKS'} and defined($element->{'tocid'})) {
- # $text = &$anchor ('',
"$Texi2HTML::THISDOC{'toc_file'}#$element->{'tocid'}", $text);
- #}
my $result = '';
my $element_id = $self->command_id($command);
- $result .= "<a name=\"$element_id\"></a>\n" if (defined($element_id));
+ $result .= "<a name=\"$element_id\"${content_ref}></a>\n"
+ if (defined($element_id));
print STDERR "Process $command "
.Texinfo::Structuring::_print_root_command_texi($command)."\n"
@@ -1468,13 +1466,29 @@
}
}
+ my $heading_level;
+ # FIXME this is done as in texi2html: node is used as heading if there
+ #Â is nothing else. Is it right?
+ if ($cmdname eq 'node') {
+ if (!$element->{'extra'}->{'section'}
+ and $element->{'extra'}->{'node'} eq $command) {
+ if ($command->{'extra'}->{'normalized'} eq 'Top') {
+ $heading_level = 0;
+ } else {
+ $heading_level = 3;
+ }
+ }
+ } else {
+ $heading_level = $command->{'level'};
+ }
+
my $heading = $self->command_text($command, 'text');
- if ($heading ne '' and $do_heading) {
+ if ($heading ne '' and defined($heading_level)) {
if ($self->in_preformatted()) {
$result .= '<strong>'.$heading.'</strong>'."\n";
} else {
$result .= &{$self->{'heading_text'}}($self, $cmdname, $heading,
- $command->{'level'}, $command);
+ $heading_level, $command);
}
}
$result .= $contents if (defined($contents));
- texinfo/tp/Texinfo/Convert HTML.pm,
Patrice Dumas <=
- texinfo/tp/Texinfo/Convert HTML.pm, Patrice Dumas, 2011/05/02
- texinfo/tp/Texinfo/Convert HTML.pm, Patrice Dumas, 2011/05/03
- texinfo/tp/Texinfo/Convert HTML.pm, Patrice Dumas, 2011/05/05
- texinfo/tp/Texinfo/Convert HTML.pm, Patrice Dumas, 2011/05/09
- texinfo/tp/Texinfo/Convert HTML.pm, Patrice Dumas, 2011/05/09
- texinfo/tp/Texinfo/Convert HTML.pm, Patrice Dumas, 2011/05/09
- texinfo/tp/Texinfo/Convert HTML.pm, Patrice Dumas, 2011/05/09
- texinfo/tp/Texinfo/Convert HTML.pm, Patrice Dumas, 2011/05/10
- texinfo/tp/Texinfo/Convert HTML.pm, Karl Berry, 2011/05/23
- texinfo/tp/Texinfo/Convert HTML.pm, Patrice Dumas, 2011/05/29