Update of /cvsroot/crystaldoc/crystaldoc/base
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11513/base
Modified Files:
texi2html.init
Log Message:
New version of texi2html.init
Index: texi2html.init
===================================================================
RCS file: /cvsroot/crystaldoc/crystaldoc/base/texi2html.init,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** texi2html.init 25 Jun 2004 18:32:51 -0000 1.1
--- texi2html.init 14 Jul 2005 18:38:40 -0000 1.2
***************
*** 3,121 ****
# File: texi2html.init
#
! # Customizations for Crystal Space documentation.
#
######################################################################
! $T2H_EXPAND = undef;
! $T2H_TOP_FILE = 'index.html';
! $T2H_SHOW_MENU = 1;
! $T2H_NUMBER_SECTIONS = 1;
[...4361 lines suppressed...]
! {
! my $alpha = shift;
! my $nonalpha = shift;
! my $join = '';
! my $nonalpha_text = '';
! my $alpha_text = '';
! $join = " \n<br>\n" if (@$nonalpha and @$alpha);
! if (@$nonalpha)
! {
! $nonalpha_text = join("\n \n", @$nonalpha) . "\n";
! }
! if (@$alpha)
! {
! $alpha_text = join("\n \n", @$alpha) . "\n \n";
! }
! return "<table><tr><th valign=\"top\">" . &$I('Jump to') .": </th><td>" .
! $nonalpha_text . $join . $alpha_text . "</td></tr></table>\n";
! }
!
! 1;
|