]> git.donarmstrong.com Git - lilypond.git/blob - lilypond-texi2html.init
Merge branch 'master' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond into dev/texi2html
[lilypond.git] / lilypond-texi2html.init
1 #!/usr/bin/env perl
2
3 # {
4 package Texi2HTML::Config;
5
6 my $lastfilename;
7 my $docnr = 0;
8 my $page_toc_depth = 2;
9 my @default_toc = [];
10
11 use Data::Dumper;
12 $Data::Dumper::Maxdepth = 2;
13
14 sub print_element_info($) 
15 {
16   my $element = shift;
17   print "~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n";
18   print "Element: $element\n";
19   print Dumper($element);
20 }
21
22
23 # Convert a given node name to its proper file name (normalization as explained
24 # in the texinfo manual:
25 # http://www.gnu.org/software/texinfo/manual/texinfo/html_node/HTML-Xref-Node-Name-Expansion.html
26 sub texinfo_file_name($)
27 {
28   my $str = shift;
29   # File name normalization by texinfo:
30   # 1/2: letters and numbers are left unchanged
31   # 3/4: multiple, leading and trailing whitespace is removed
32   $str = main::normalise_space($str);
33   # 5/6: all remaining spaces are converted to '-', all other 7- or 8-bit 
34   #      chars are replaced by _xxxx (xxxx=ascii character code)
35   my @chars = split(//, $str);
36   my $str = '';
37   foreach my $char (@chars) {
38     if ( $char eq ' ' ) { # space -> '-'
39       $str .= '-';
40     } elsif ( ('0' le $char and $char le '9' ) or
41               ('A' le $char and $char le 'Z' ) or
42               ('a' le $char and $char le 'z' ) ) { # number or letter
43       $str .= $char;
44     } else {
45       my $ccode = ord($char);
46       my $addstr;
47       if ( ord($char)<= 0xFFFF ) {
48         $addstr = sprintf("_%4x", $ccode);
49       } else {
50         $addstr = sprintf("__%6x", $ccode);
51       }
52       # padding is done by spaces, replace by '0'
53       $addstr =~ s/\ /0/g;
54       $str .= $addstr;
55     }
56   }
57   # 7: if name begins with number, prepend 't_g' (so it starts with a letter)
58   if ($str =~ /^[0-9]/) {
59     $str = 't_g' . $str;
60   }
61   # DONE
62   return $str
63 }
64
65
66
67 # This function makes sure that files are only generated for numbered sections,
68 # but not for unnumbered ones. It is called after texi2html has done its own
69 # splitting and simply returns the filename for the node given as first argument
70 # Nodes with the same filename will be printed out to the same filename, so 
71 # this really all we need. Also, make sure that the file names for sections
72 # are derived from the section title. We also might want to name the anchors
73 # according to node titles, which works by simply overriding the id element of 
74 # the $element hash.
75 sub split_at_numbered_sections($$$)
76 {
77   my $element = shift;
78   my $type = shift;
79   my $docu_name = shift;
80   my $docu_ext = $Texi2HTML::Config::EXTENSION;
81
82 #   if ($$element{number} eq "1.1") {
83 #     print_element_info ($element);
84 #   }
85
86   # TOC, footer, about etc. are called with undefined $element and $type == "toc"|"stoc"|"foot"|"about"
87   if ($type eq "toc" or $type eq "stoc" or $type eq "foot" or $type eq "about") {
88     return;
89   } else {
90     # derive the name of the anchor (i.e. the part after # in the links!), 
91     # don't use texi2html's SECx.x default!
92     my $anchor = main::remove_texi($$element{texi});
93     if ($$element{translationof}) {
94       $anchor = main::remove_texi($$element{translationof});
95     }
96     # normalize to the same file name as texinfo
97     $anchor = texinfo_file_name($anchor);
98     $$element{id} = $anchor;
99     # Numbered sections will get a filename Section_1.1.2, unnumbered sections will use 
100     # the file name of the previous numbered section:
101     if ($$element{number}) {
102       my $filename = $anchor;
103       $filename .= ".$docu_ext" if (defined($docu_ext));
104       $docnr += 1;
105       $$element{doc_nr} = $docnr;
106       $lastfilename = $filename;
107       return $filename;
108     } else {
109       $$element{doc_nr} = $docnr;
110       return $lastfilename;
111     }
112   }
113
114   return;
115 }
116
117
118 # The default formatting of external refs returns e.g. 
119 # "(lilypond-internals)Timing_translator", while we simply want "Timing_translator".
120 # Solution: Remove all (...) from the file_and_node argument before calling
121 # the default handler!
122 sub lilypond_external_ref($$$$$$)
123 {
124   my $type = shift;
125   my $section = shift;
126   my $book = shift;
127   my $file_node = shift;
128   my $href = shift;
129   my $cross_ref = shift;
130
131   $file_node =~ s/\(.*\)//;
132   return t2h_default_external_ref($type, $section, $book, $file_node, $href, $cross_ref);
133 }
134
135
136 # recursively generate the TOC entries for the element and its children (which
137 # are only shown up to maxlevel. All ancestors of the current element are also 
138 # shown with their immediate children, irrespective of their level.
139 sub generate_ly_toc_entries($$$)
140 {
141   my $element = shift;
142   my $element_path = shift;
143   my $maxlevel = shift;
144   # Skip undefined sections, plus all sections generated by index splitting
145   return() if (not defined($element) or exists($element->{'index_page'}));
146   my @result = ();
147   my $level = $element->{'toc_level'};
148   my $is_parent_of_current = $element_path->{$element->{'number'}};
149   my $print_children = ( ($level < $maxlevel) or $is_parent_of_current );
150   my $ind = '  ' x $level;
151   my $this_css_class = $is_parent_of_current ? " class=\"toc_current\"" : "";
152
153   my $entry = "$ind<li$this_css_class>" . &$anchor ($element->{'tocid'}, "$element->{'file'}#$element->{'id'}",$element->{'text'});
154
155   my $children = $element->{'section_childs'};
156   if ( $print_children and defined($children) and (ref($children) eq "ARRAY") ) {
157     push (@result, $entry);
158     my @child_result = ();
159     foreach (@$children) {
160       push (@child_result, generate_ly_toc_entries($_, $element_path, $maxlevel));
161     }
162     # if no child nodes were generated, e.g. for the index, where expanded pages
163     # are ignored, don't generate a list at all...
164     if (@child_result) {
165       push (@result, "$ind<ul$NO_BULLET_LIST_ATTRIBUTE>");
166       push (@result, @child_result);
167       push (@result, "$ind</ul></li>\n");
168     }
169   } else {
170     push (@result, $entry . "</li>\n");
171   }
172   return @result;
173 }
174
175
176 # Print a customized TOC, containing only the first two levels plus the whole
177 # path to the current page
178 sub lilypond_generate_page_toc_body($)
179 {
180     my $element = shift;
181     my $current_element = $element;
182     my %parentelements;
183     $parentelements{$element->{'number'}} = 1;
184     # Find the path to the current element
185     while ( defined($current_element->{'sectionup'}) and 
186            ($current_element->{'sectionup'} ne $current_element) )
187     {
188       $parentelements{$current_element->{'sectionup'}->{'number'}} = 1
189               if ($current_element->{'sectionup'}->{'number'} ne '');
190       $current_element = $current_element->{'sectionup'};
191     }
192     return () if not defined($current_element);
193     # Create the toc entries recursively
194     my @toc_entries = ("<div class=\"contents\">", "<ul$NO_BULLET_LIST_ATTRIBUTE>");
195     my $children = $current_element->{'section_childs'};
196     foreach ( @$children ) {
197       push (@toc_entries, generate_ly_toc_entries($_, \%parentelements, $page_toc_depth));
198     }
199     push (@toc_entries, "</ul>");
200     push (@toc_entries, "</div>");
201     return @toc_entries;
202 }
203
204 my @this_page_toc = ();
205
206 sub lilypond_print_element_header
207 {
208   my $fh = shift;
209   my $first_in_page = shift;
210   my $previous_is_top = shift;
211   if ($first_in_page and not @this_page_toc) {
212     if (defined($Texi2HTML::THIS_ELEMENT)) {
213       # Create the TOC for this page
214       @this_page_toc = lilypond_generate_page_toc_body($Texi2HTML::THIS_ELEMENT);
215     }
216   }
217   return T2H_DEFAULT_print_element_header( $fh, $first_in_page, $previous_is_top);
218 }
219
220 sub lilypond_toc_body($)
221 {
222     my $elements_list = shift;
223     # Generate a default TOC for pages without THIS_ELEMENT
224     @default_toc = lilypond_generate_page_toc_body(@$elements_list[0]);
225     return T2H_GPL_toc_body($elements_list);
226 }
227
228
229 sub lilypond_css_lines ($$)
230 {
231     my $import_lines = shift;
232     my $rule_lines = shift;
233     return if (defined($CSS_LINES));
234 #     return if (!@$rule_lines and !@$import_lines and (! keys(%css_map)));
235     if (@$rule_lines or @$import_lines)
236     {
237         $CSS_LINES = "<style type=\"text/css\">\n<!--\n";
238         $CSS_LINES .= join('',@$import_lines) . "\n" if (@$import_lines);
239         $CSS_LINES .= join('',@$rule_lines) . "\n" if (@$rule_lines);
240         $CSS_LINES .= "-->\n</style>\n";
241     }
242     foreach my $ref (@CSS_REFS)
243     {
244         $CSS_LINES .= "<link rel=\"stylesheet\" type=\"text/css\" href=\"$ref\">\n";
245     }
246     $CSS_LINES .= "<!--[if lte IE 7]>\n<link href=\"lilypond-ie-fixes.css\" rel=\"stylesheet\" type=\"text/css\">\n<![endif]-->\n";
247 }
248
249
250
251
252
253
254
255 # Print out the TOC in a <div> at the end of th page, which will be formatted as a
256 # sidebar mimicking a TOC frame
257 sub print_lilypond_page_foot($)
258 {
259   my $fh = shift;
260   my $program_string = &$program_string();
261   print $fh "<p><font size="-1">$program_string</font><br>$PRE_BODY_CLOSE</p>\n";
262   
263   # Print the TOC frame:
264   my @lines = @this_page_toc;
265   # use default TOC if no custom lines have been generated
266   @lines = @default_toc if (not @lines);
267   if (@lines) {
268     print $fh "\n\n<div id=\"tocframe\">";
269     print $fh '<h4> ' . $Texi2HTML::NAME{'Contents'}  . "</h4>\n";
270     foreach my $line (@lines) {
271       print $fh $line;
272     }
273     print $fh "</div>";
274     @this_page_toc = ();
275   }
276   
277   # Close the page:
278   print $fh "</body>\n</html>\n";
279 }
280
281
282
283
284
285
286 sub get_navigation_text
287 {
288   my $button = shift;
289   my $text = $NAVIGATION_TEXT{$button};
290   if ( ($button eq 'Back') or ($button eq 'FastBack') ) {
291     $text = $text . $Texi2HTML::NODE{$button} . "&nbsp;";
292   } elsif ( ($button eq 'Forward') or ($button eq 'FastForward') ) {
293     $text = "&nbsp;" . $Texi2HTML::NODE{$button} . $text;
294   } elsif ( $button eq 'Up' ) {
295     $text = "&nbsp;".$text.":&nbsp;" . $Texi2HTML::NODE{$button} . "&nbsp;";
296   }
297   return $text;
298 }
299
300
301 # Don't automatically create left-aligned table cells for every link, but 
302 # instead create a <td> only on an appropriate '(left|right|center)-aligned-cell-n'
303 # button text. It's alignment as well as the colspan will be taken from the
304 # name of the button. Also, add 'newline' button text to create a new table
305 # row. The texts of the buttons are generated by get_navigation_text and 
306 # will contain the name of the next/previous section/chapter.
307 sub lilypond_print_navigation
308 {
309     my $fh = shift;
310     my $buttons = shift;
311     my $vertical = shift;
312     my $spacing = 1;
313 #     print $fh '<table cellpadding="', $spacing, '" cellspacing="', $spacing,
314 #       "\" border=\"0\" class=\"nav_table\">\n";
315     print $fh "<table class=\"nav_table\">\n";
316
317     print $fh "<tr>" unless $vertical;
318     my $beginofline = 1;
319     foreach my $button (@$buttons)
320     {
321         print $fh qq{<tr valign="top" align="left">\n} if $vertical;
322         # Allow (left|right|center)-aligned-cell and newline as buttons!
323         if ( $button =~ /^(.*)-aligned-cell-(.*)$/ ) 
324         {
325           print $fh qq{</td>} unless $beginofline;
326           print $fh qq{<td valign="middle" align="$1" colspan="$2">};
327           $beginofline = 0;
328         } 
329         elsif ( $button eq 'newline' ) 
330         {
331           print $fh qq{</td>} unless $beginofline;
332           print $fh qq{</tr>};
333           print $fh qq{<tr>};
334           $beginofline = 1;
335
336         } 
337         elsif (ref($button) eq 'CODE')
338         {
339             &$button($fh, $vertical);
340         }
341         elsif (ref($button) eq 'SCALAR')
342         {
343             print $fh "$$button" if defined($$button);
344         }
345         elsif (ref($button) eq 'ARRAY')
346         {
347             my $text = $button->[1];
348             my $button_href = $button->[0];
349             # verify that $button_href is simple text and text is a reference
350             if (defined($button_href) and !ref($button_href) 
351                and defined($text) and (ref($text) eq 'SCALAR') and defined($$text))
352             {             # use given text
353                 if ($Texi2HTML::HREF{$button_href})
354                 {
355                   my $anchor_attributes = '';
356                   if ($USE_ACCESSKEY and (defined($BUTTONS_ACCESSKEY{$button_href})) and ($BUTTONS_ACCESSKEY{$button_href} ne ''))
357                   {
358                       $anchor_attributes = "accesskey=\"$BUTTONS_ACCESSKEY{$button_href}\"";
359                   }
360                   if ($USE_REL_REV and (defined($BUTTONS_REL{$button_href})) and ($BUTTONS_REL{$button_href} ne ''))
361                   {
362                       $anchor_attributes .= " rel=\"$BUTTONS_REL{$button_href}\"";
363                   }
364                   print $fh "" .
365                         &$anchor('',
366                                     $Texi2HTML::HREF{$button_href},
367                                     get_navigation_text($$text),
368                                     $anchor_attributes
369                                    );
370                 }
371                 else
372                 {
373                   print $fh get_navigation_text($$text);
374                 }
375             }
376         }
377         elsif ($button eq ' ')
378         {                       # handle space button
379             print $fh
380                 ($ICONS && $ACTIVE_ICONS{' '}) ?
381                     &$button_icon_img($BUTTONS_NAME{$button}, $ACTIVE_ICONS{' '}) :
382                         $NAVIGATION_TEXT{' '};
383             #next;
384         }
385         elsif ($Texi2HTML::HREF{$button})
386         {                       # button is active
387             my $btitle = $BUTTONS_GOTO{$button} ?
388                 'title="' . $BUTTONS_GOTO{$button} . '"' : '';
389             if ($USE_ACCESSKEY and (defined($BUTTONS_ACCESSKEY{$button})) and ($BUTTONS_ACCESSKEY{$button} ne ''))
390             {
391                 $btitle .= " accesskey=\"$BUTTONS_ACCESSKEY{$button}\"";
392             }
393             if ($USE_REL_REV and (defined($BUTTONS_REL{$button})) and ($BUTTONS_REL{$button} ne ''))
394             {
395                 $btitle .= " rel=\"$BUTTONS_REL{$button}\"";
396             }
397             if ($ICONS && $ACTIVE_ICONS{$button})
398             {                   # use icon
399                 print $fh '' .
400                     &$anchor('',
401                         $Texi2HTML::HREF{$button},
402                         &$button_icon_img($BUTTONS_NAME{$button},
403                                    $ACTIVE_ICONS{$button},
404                                    $Texi2HTML::SIMPLE_TEXT{$button}),
405                         $btitle
406                       );
407             }
408             else
409             {                   # use text
410                 print $fh
411                     '[' .
412                         &$anchor('',
413                                     $Texi2HTML::HREF{$button},
414                                     get_navigation_text ($button),
415                                     $btitle
416                                    ) .
417                                        ']';
418             }
419         }
420         else
421         {                       # button is passive
422             print $fh
423                 $ICONS && $PASSIVE_ICONS{$button} ?
424                     &$button_icon_img($BUTTONS_NAME{$button},
425                                           $PASSIVE_ICONS{$button},
426                                           $Texi2HTML::SIMPLE_TEXT{$button}) :
427
428                                               "[" . get_navigation_text($button) . "]";
429         }
430         print $fh "</td>\n" if $vertical;
431         print $fh "</tr>\n" if $vertical;
432     }
433     print $fh "</td>" unless $beginofline;
434     print $fh "</tr>" unless $vertical;
435     print $fh "</table>\n";
436 }
437
438
439 @Texi2HTML::Config::SECTION_BUTTONS =
440     ('left-aligned-cell-1', 'FastBack', 
441      'center-aligned-cell-3', 'Top', 'Contents', 'Index', 'About',
442      'right-aligned-cell-1', 'FastForward',
443      'newline',
444      'left-aligned-cell-2', 'Back',
445      'center-aligned-cell-1', 'Up',
446      'right-aligned-cell-2', 'Forward'
447     );
448
449 # buttons for misc stuff
450 @Texi2HTML::Config::MISC_BUTTONS = ('center-aligned-cell-3', 'Top', 'Contents', 'Index', 'About');
451
452 # buttons for chapter file footers
453 # (and headers but only if SECTION_NAVIGATION is false)
454 @Texi2HTML::Config::CHAPTER_BUTTONS =
455     ('left-aligned-cell-1', 'FastBack', 
456      'center-aligned-cell-3', 'Top', 'Contents', 'Index', 'About',
457      'right-aligned-cell-1', 'FastForward',
458     );
459
460 # buttons for section file footers
461 @Texi2HTML::Config::SECTION_FOOTER_BUTTONS =
462     ('left-aligned-cell-1', 'FastBack', 
463      'center-aligned-cell-3', 'Top', 'Contents', 'Index', 'About',
464      'right-aligned-cell-1', 'FastForward',
465      'newline',
466      'left-aligned-cell-2', 'Back',
467      'center-aligned-cell-1', 'Up',
468      'right-aligned-cell-2', 'Forward'
469     );
470
471 @Texi2HTML::Config::NODE_FOOTER_BUTTONS =
472     ('left-aligned-cell-1', 'FastBack', 
473      'center-aligned-cell-3', 'Top', 'Contents', 'Index', 'About',
474      'right-aligned-cell-1', 'FastForward',
475      'newline',
476      'left-aligned-cell-2', 'Back',
477      'center-aligned-cell-1', 'Up',
478      'right-aligned-cell-2', 'Forward'
479     );
480
481 # $Texi2HTML::Config::SPLIT = 'section';
482 @Texi2HTML::Config::CSS_REFS      = ("lilypond.css");
483 $Texi2HTML::Config::USE_ACCESSKEY = 1;
484 $Texi2HTML::Config::USE_LINKS     = 1;
485 $Texi2HTML::Config::USE_REL_REV   = 1;
486 $Texi2HTML::Config::element_file_name    = \&split_at_numbered_sections;
487 $Texi2HTML::Config::print_element_header = \&lilypond_print_element_header;
488 $Texi2HTML::Config::print_page_foot      = \&print_lilypond_page_foot;
489 $Texi2HTML::Config::print_navigation     = \&lilypond_print_navigation;
490 $Texi2HTML::Config::external_ref         = \&lilypond_external_ref;
491 $Texi2HTML::Config::toc_body             = \&lilypond_toc_body;
492 $Texi2HTML::Config::css_lines            = \&lilypond_css_lines;
493
494
495 # For split pages, use index(.lang).html as start page!
496 if ($Texi2HTML::Config::SPLIT == 'section') {
497 #   my $lng = $Texi2HTML::THISDOC{'current_lang'};
498 #   if ($lng and ($lng ne "en")) {
499 #     $Texi2HTML::Config::TOP_FILE = 'index.'.$lng.'.html';
500 #   } else {
501     $Texi2HTML::Config::TOP_FILE = 'index.html';
502 #   }
503 }
504
505 # if ($Texi2HTML::THISDOC{'current_lang'}) {
506 #   $Texi2HTML::Config::EXTENSION = $Texi2HTML::THISDOC{'current_lang'} . "." . 
507 #         $docu_ext = $Texi2HTML::Config::EXTENSION;;
508 # }
509
510
511
512 # Try to make use of @translationof to generate files according to the original
513 # English section title...
514 sub lilypond_unknown($$$$$)
515 {
516     my $macro = shift;
517     my $line = shift;
518     my $pass = shift;
519     my $stack = shift;
520     my $state = shift;
521
522     # the @translationof macro provides the original English section title, 
523     # which should be used for file/anchor naming, while the title will be
524     # translated to each language
525     if ($pass == 1 and $macro eq "translationof") {
526       if (ref($state->{'element'})=='HASH') {
527         $state->{'element'}->{'translationof'} = main::normalise_space($line);
528       }
529       return ('', true, undef, undef);
530     } else {
531       return t2h_default_unknown($macro, $line, $pass, $stack, $state);
532     }
533 }
534 $Texi2HTML::Config::unknown                  = \&lilypond_unknown;
535
536 %css_map=();
537
538 return 1;