texinfo-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

texinfo ChangeLog doc/texinfo.txi


From: Karl Berry
Subject: texinfo ChangeLog doc/texinfo.txi
Date: Sun, 12 Sep 2010 23:32:37 +0000

CVSROOT:        /sources/texinfo
Module name:    texinfo
Changes by:     Karl Berry <karl>       10/09/12 23:32:37

Modified files:
        .              : ChangeLog 
        doc            : texinfo.txi 

Log message:
        (Customizing HTML Page Footers): rename + edit

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/texinfo/ChangeLog?cvsroot=texinfo&r1=1.1135&r2=1.1136
http://cvs.savannah.gnu.org/viewcvs/texinfo/doc/texinfo.txi?cvsroot=texinfo&r1=1.309&r2=1.310

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/texinfo/texinfo/ChangeLog,v
retrieving revision 1.1135
retrieving revision 1.1136
diff -u -b -r1.1135 -r1.1136
--- ChangeLog   12 Sep 2010 20:06:07 -0000      1.1135
+++ ChangeLog   12 Sep 2010 23:32:36 -0000      1.1136
@@ -1,3 +1,7 @@
+2010-09-11  Karl Berry  <address@hidden>
+
+       * doc/texinfo.txi (Customizing HTML Page Footers): rename + edit.
+
 2010-09-12  Patrice Dumas  <address@hidden>
 
        * texi2html/texi2html.pl (rearrange_elements), 

Index: doc/texinfo.txi
===================================================================
RCS file: /sources/texinfo/texinfo/doc/texinfo.txi,v
retrieving revision 1.309
retrieving revision 1.310
diff -u -b -r1.309 -r1.310
--- doc/texinfo.txi     11 Sep 2010 23:59:23 -0000      1.309
+++ doc/texinfo.txi     12 Sep 2010 23:32:36 -0000      1.310
@@ -1,5 +1,5 @@
 \input texinfo.tex    @c -*-texinfo-*-
address@hidden $Id: texinfo.txi,v 1.309 2010/09/11 23:59:23 karl Exp $
address@hidden $Id: texinfo.txi,v 1.310 2010/09/12 23:32:36 karl Exp $
 @c Ordinarily, Texinfo files have the extension .texi.  But texinfo.texi
 @c clashes with texinfo.tex on 8.3 filesystems, so we use texinfo.txi.
 
@@ -19204,7 +19204,7 @@
 sub my_init_out() 
 @{
    &$default_init_out();
-   address@hidden'Following'@} = ' &gt; ';
+   address@hidden'NodeForward'@} = ' &gt; ';
 @}
 @end example
 
@@ -19766,9 +19766,12 @@
 @item NodeNext
 Next node.
 
address@hidden Following
address@hidden NodeForward
 Next node in node reading order.
 
address@hidden NodeBack
+Previous node in node reading order.
+
 @item NodePrev
 Previous node.
 
@@ -20057,7 +20060,7 @@
 @menu
 * Headers:  Customizing HTML Page Headers.
 * Sections: Customizing HTML Section Layout.
-* Footers:  Customizing file footers.
+* Footers:  Customizing HTML Page Footers.
 @end menu
 
 
@@ -20065,17 +20068,17 @@
 @subsection Customizing HTML Page Headers
 
 @cindex Customizing HTML page headers
address@hidden Page headers, customizing in HTML
address@hidden Headers, customizing for HTML
 
-The three following function references give full control over the
+The following three function references give full control over the
 page header formatting done at the top of each HTML output file.  The
 @code{$print_page_head} function is called for all pages.  After that,
 the @code{$print_chapter_header} function is called if the output is
 split at chapters, or the @code{$print_section_header} function if the
-document is split at sections.
+split at sections.
 
 @deftypefn {Function Reference} print_page_head $filehandle
address@hidden @code{<body> element}, outputting
address@hidden @code{<body> tag, outputting
 @var{$filehandle} is the opened filehandle to which the function
 should write.  This function should print the page header, in HTML,
 including the @code{<body>} element.
@@ -20091,15 +20094,15 @@
 @deffn {Function Reference} print_section_header $filehandle \%element
 @var{$filehandle} and @var{\%element} are as above.  This function is
 called if the output is split at sections, after
address@hidden
address@hidden
 @end deffn
 
 @vindex $EXTRA_HEAD
 @vindex $AFTER_BODY_OPEN
 @cindex @code{<head>}, adding to
-Defining the variable @code{$EXTRA_HEAD} adds lines to the text within
-the @code{<head>} HTML element.  Similarly, defining
address@hidden adds lines just after @code{<body>} is output.
+You can define the variable @code{$EXTRA_HEAD} to add text within the
address@hidden<head>} HTML element.  Similarly, the value of
address@hidden is added just after @code{<body>} is output.
 These variables are empty by default.
 
 @vindex $BODYTEXT
@@ -20134,6 +20137,9 @@
 @node Customizing HTML Section Layout
 @subsection Customizing HTML Section Layout
 
address@hidden Customizing HTML section layout
address@hidden Section layout, customizing for HTML
+
 The following function references are used for the formatting of
 sections in HTML output:
 
@@ -20166,41 +20172,47 @@
 @end deffn
 
 
address@hidden Customizing file footers
address@hidden Customizing the file footers
address@hidden Customizing HTML Page Footers
address@hidden Customizing HTML Page Footers
 
-You can have full control over the file footer 
-formatting by redefining three function references.
-The function associated with @code{$print_chapter_footer} is called
-if the document is split at chapters, or the function associated with
address@hidden is called if the document is split at sections.
-After that the function associated with @code{$print_page_foot} is called.
address@hidden Customizing HTML page footers
address@hidden Footer, customizing for HTML
+
+The following function references give full control over the page
+footer formatting done at the bottom of each HTML output file.  The
address@hidden function is called if the output is split
+at chapters, or the @code{$print_section_footer} footer is called if
+split at sections.  After that, the @code{$print_page_foot} function
+is called.
 
 @deffn {Function Reference} print_page_foot $filehandle
address@hidden is the opened filehandle the function should write to.
-This function should print the page foot, including the @code{</body>}
-element.
address@hidden @code{</body>} tag, outputting
address@hidden is the opened filehandle to which the function
+should write.  This function should print the page footer, including
+the @code{</body>} element.
 @end deffn
 
 @deffn {Function Reference} print_chapter_footer $filehandle \%element
address@hidden is the opened filehandle the function should write to.
-This function is called if the document is split at chapters, before 
address@hidden
address@hidden is a reference on a hash holding informations about the element.
address@hidden is the opened filehandle to which the function
+should write.  @var{\%element} is a reference on a hash holding
+informations about the element.  This function is called if the
+output is split at chapters, before @code{$print_page_foot}.
 @end deffn
 
 @deffn {Function Reference} print_section_footer $filehandle \%element
address@hidden is the opened filehandle the function should write to.
-This function is called if the document is split at sections, before
address@hidden
address@hidden is a reference on a hash holding informations about the element.
address@hidden and @var{\%element} are as above.
+This function is called if the output is split at sections, before
address@hidden
 @end deffn
 
 @vindex $PRE_BODY_CLOSE
-In HTML, it is possible to add text just before the @code{</body>} 
-element with the variable @code{$PRE_BODY_CLOSE}.  Nothing is added
-by default.  If @code{PROGRAM_NAME_IN_FOOTER} is set, the date and the 
-program name that generated the output manual is output in the footer.
+You can define the variable @code{$PRE_BODY_CLOSE} to add text just
+before the HTML @code{</body>} element.  Nothing is added by default.
+
address@hidden $PROGRAM_NAME_IN_FOOTER
+If @code{$PROGRAM_NAME_IN_FOOTER} is set, the date and name of the
+program that generated the output are output in the footer.
+
 
 @node Special elements
 @section Customizing the special elements pages and files
@@ -24565,7 +24577,7 @@
 (@url{http://www.gnu.org/software/rcs}) version control systems, which
 expand it into a string such as:
 @example
-$Id: texinfo.txi,v 1.309 2010/09/11 23:59:23 karl Exp $
+$Id: texinfo.txi,v 1.310 2010/09/12 23:32:36 karl Exp $
 @end example
 (This is useful in all sources that use version control, not just manuals.)
 You may wish to include the @samp{$Id:} comment in the @code{@@copying}
@@ -24644,7 +24656,7 @@
 
 @verbatim
 \input texinfo   @c -*-texinfo-*-
address@hidden $Id: texinfo.txi,v 1.309 2010/09/11 23:59:23 karl Exp $
address@hidden $Id: texinfo.txi,v 1.310 2010/09/12 23:32:36 karl Exp $
 @comment %**start of header
 @setfilename sample.info
 @include version.texi



reply via email to

[Prev in Thread] Current Thread [Next in Thread]