source: rtems/doc/texi2any_init.in @ cc18d7b

4.115
Last change on this file since cc18d7b was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • Property mode set to 100644
File size: 599 bytes
Line 
1set_from_init_file ('AFTER_BODY_OPEN',
2'<A HREF="http://www.rtems.org"  target="Text Frame">
3<IMG align=right BORDER=0 SRC="../images/rtems_logo.jpg" ALT="RTEMS
4Logo">   </A>
5<H1>RTEMS @VERSION@ On-Line Library</H1>
6');
7
8texinfo_register_handler('setup', \&add_button);
9
10my $button_text = '[<a href="../index.html">Directory</a>]';
11sub add_button($)
12{
13  my $self = shift;
14  foreach my $button_type ('SECTION_BUTTONS', 'CHAPTER_BUTTONS',
15                           'MISC_BUTTONS', 'TOP_BUTTONS') {
16    my $buttons = $self->get_conf($button_type);
17    push @$buttons, \$button_text;
18  }
19  return 1;
20}
Note: See TracBrowser for help on using the repository browser.