File: test_directions.init

package info (click to toggle)
texi2html 1.82%2Bdfsg1-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 35,264 kB
  • sloc: perl: 15,901; xml: 6,075; sh: 3,977; makefile: 501
file content (18 lines) | stat: -rw-r--r-- 684 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

@SECTION_BUTTONS = ();

foreach my $direction (('Up', 'Forward', 'Back', 'Next',
                        'Prev', 'FastForward', 'FastBack', 'This', 'NodeUp',
                        'NodePrev', 'NodeNext', 'Following' ))
#                        'NodePrev', 'NodeNext', 'ToplevelPrev', 'ToplevelNext',  'Following' ))

{
    my $direction_node = "node-".$direction;
    my $direction_href = "href-".$direction;
    my $direction_name = "name-".$direction;
    push @SECTION_BUTTONS, \"|", \$direction_node, \$Texi2HTML::NODE{$direction}, \$direction_href, \$Texi2HTML::HREF{$direction}, \$direction_name, \$Texi2HTML::NAME{$direction}, \"|";
}

@MISC_BUTTONS = @SECTION_BUTTONS;

1;