texi2html-cvs
[Top][All Lists]
Advanced

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

[Texi2html-cvs] texi2html ChangeLog texi2html.pl examples/roff....


From: Patrice Dumas
Subject: [Texi2html-cvs] texi2html ChangeLog texi2html.pl examples/roff....
Date: Fri, 14 Nov 2008 22:34:37 +0000

CVSROOT:        /cvsroot/texi2html
Module name:    texi2html
Changes by:     Patrice Dumas <pertusus>        08/11/14 22:34:36

Modified files:
        .              : ChangeLog texi2html.pl 
        examples       : roff.init 
        test/encodings : Makefile.in 
        test/formatting: Makefile.am Makefile.in tests.txt 
Added files:
        test/formatting: double_style_paragraph.texi 
        test/formatting/res/double_style_paragraph: 
                                                    double_style_paragraph.2 
                                                    double_style_paragraph.html 
        test/formatting/res/texi_double_style_paragraph: 
                                                         
double_style_paragraph.2 
                                                         
double_style_paragraph.passfirst 
                                                         
double_style_paragraph.passtexi 
                                                         
double_style_paragraph.texi 

Log message:
                * texi2html.pl: duplicate stack to keep right paragraph nesting
                from top to bottom.
                * formatting/double_style_paragraph.texi: test for double style
                commands enclosing 2 paragraphs.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/texi2html/ChangeLog?cvsroot=texi2html&r1=1.338&r2=1.339
http://cvs.savannah.gnu.org/viewcvs/texi2html/texi2html.pl?cvsroot=texi2html&r1=1.244&r2=1.245
http://cvs.savannah.gnu.org/viewcvs/texi2html/examples/roff.init?cvsroot=texi2html&r1=1.25&r2=1.26
http://cvs.savannah.gnu.org/viewcvs/texi2html/test/encodings/Makefile.in?cvsroot=texi2html&r1=1.2&r2=1.3
http://cvs.savannah.gnu.org/viewcvs/texi2html/test/formatting/Makefile.am?cvsroot=texi2html&r1=1.8&r2=1.9
http://cvs.savannah.gnu.org/viewcvs/texi2html/test/formatting/Makefile.in?cvsroot=texi2html&r1=1.5&r2=1.6
http://cvs.savannah.gnu.org/viewcvs/texi2html/test/formatting/tests.txt?cvsroot=texi2html&r1=1.8&r2=1.9
http://cvs.savannah.gnu.org/viewcvs/texi2html/test/formatting/double_style_paragraph.texi?cvsroot=texi2html&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/texi2html/test/formatting/res/double_style_paragraph/double_style_paragraph.2?cvsroot=texi2html&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/texi2html/test/formatting/res/double_style_paragraph/double_style_paragraph.html?cvsroot=texi2html&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/texi2html/test/formatting/res/texi_double_style_paragraph/double_style_paragraph.2?cvsroot=texi2html&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/texi2html/test/formatting/res/texi_double_style_paragraph/double_style_paragraph.passfirst?cvsroot=texi2html&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/texi2html/test/formatting/res/texi_double_style_paragraph/double_style_paragraph.passtexi?cvsroot=texi2html&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/texi2html/test/formatting/res/texi_double_style_paragraph/double_style_paragraph.texi?cvsroot=texi2html&rev=1.1

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/texi2html/texi2html/ChangeLog,v
retrieving revision 1.338
retrieving revision 1.339
diff -u -b -r1.338 -r1.339
--- ChangeLog   11 Nov 2008 13:29:11 -0000      1.338
+++ ChangeLog   14 Nov 2008 22:34:34 -0000      1.339
@@ -1,3 +1,10 @@
+2008-11-14  Patrice Dumas  <address@hidden>
+
+       * texi2html.pl: duplicate stack to keep right paragraph nesting
+       from top to bottom.
+       * formatting/double_style_paragraph.texi: test for double style
+       commands enclosing 2 paragraphs.
+
 2008-11-11  Patrice Dumas  <address@hidden>
 
        * texi2html.init: set %simple_map_texi = %ascii_simple_map. 

Index: texi2html.pl
===================================================================
RCS file: /cvsroot/texi2html/texi2html/texi2html.pl,v
retrieving revision 1.244
retrieving revision 1.245
diff -u -b -r1.244 -r1.245
--- texi2html.pl        11 Nov 2008 00:52:24 -0000      1.244
+++ texi2html.pl        14 Nov 2008 22:34:34 -0000      1.245
@@ -60,7 +60,7 @@
 #--##########################################################################
 
 # CVS version:
-# $Id: texi2html.pl,v 1.244 2008/11/11 00:52:24 pertusus Exp $
+# $Id: texi2html.pl,v 1.245 2008/11/14 22:34:34 pertusus Exp $
 
 # Homepage:
 my $T2H_HOMEPAGE = "http://www.nongnu.org/texi2html/";;
@@ -13476,7 +13476,7 @@
         # @-commands: by default they are considered as style commands
         if (!exists($style_type{$style}) or $style_type{$style} eq 'style')
         {
-            push @$new_stack, { 'style' => $style, 'text' => '', 'no_open' => 
1, 'arg_nr' => 0 };
+            unshift @$new_stack, { 'style' => $style, 'text' => '', 'no_open' 
=> 1, 'arg_nr' => 0 };
         }
         elsif (($style_type{$style} eq 'simple_style') or ($style_type{$style} 
eq 'accent'))
         {

Index: examples/roff.init
===================================================================
RCS file: /cvsroot/texi2html/texi2html/examples/roff.init,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -b -r1.25 -r1.26
--- examples/roff.init  11 Nov 2008 00:52:25 -0000      1.25
+++ examples/roff.init  14 Nov 2008 22:34:35 -0000      1.26
@@ -32,8 +32,8 @@
 $DEFAULT_RULE = '';
 $MIDDLE_RULE = '';
 $BIG_RULE = '';
-$NODE_FILE_EXTENSION = "roff";
-$EXTENSION = "roff";
+$NODE_FILE_EXTENSION = 'roff';
+$EXTENSION = 'roff';
 $MENU_SYMBOL = '*';
 $AVOID_MENU_REDUNDANCY = 0;
 

Index: test/encodings/Makefile.in
===================================================================
RCS file: /cvsroot/texi2html/texi2html/test/encodings/Makefile.in,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- test/encodings/Makefile.in  19 Aug 2008 15:05:50 -0000      1.2
+++ test/encodings/Makefile.in  14 Nov 2008 22:34:35 -0000      1.3
@@ -131,7 +131,7 @@
 EXTRA_DIST = nodetest.texi nodetest_latin1.texi nodetest_utf8.texi \
  multi_lang.texi unknown_language.texi umlaut.texi accent.texi \
  weird_accents.texi accentenc.texi \
- accent-text.txi \
+ accent-text.txi ogolat2.texi  ogoutf.texi \
  no_unicode.init no_unidecode.init icons.init tests.txt res
 
 DISTCLEANFILES = l2h_tmp_dir.init tests.log tests.out

Index: test/formatting/Makefile.am
===================================================================
RCS file: /cvsroot/texi2html/texi2html/test/formatting/Makefile.am,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -b -r1.8 -r1.9
--- test/formatting/Makefile.am 3 Nov 2008 12:33:17 -0000       1.8
+++ test/formatting/Makefile.am 14 Nov 2008 22:34:35 -0000      1.9
@@ -8,6 +8,7 @@
  images.texi index_in_item_line_table.texi index_in_item_line_vtable.texi \
  index_in_item_line_table_in_code.texi table_in_table_item.texi \
  nested_formats.texi inter_item_commands.texi multitables.texi \
+ double_style_paragraph.texi \
  f--ile.gif f--ile.jpeg f--ile.png f---ile.gr--a f--ile.jpg f--ile.txt \
  simple_menu.init weird_quotes.init redefine_need.init file.css tests.txt res
 

Index: test/formatting/Makefile.in
===================================================================
RCS file: /cvsroot/texi2html/texi2html/test/formatting/Makefile.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -b -r1.5 -r1.6
--- test/formatting/Makefile.in 29 Aug 2008 15:05:55 -0000      1.5
+++ test/formatting/Makefile.in 14 Nov 2008 22:34:35 -0000      1.6
@@ -137,7 +137,8 @@
  symbol_after_block.texi html-extrali.texi html-para.texi html-title.texi \
  images.texi index_in_item_line_table.texi index_in_item_line_vtable.texi \
  index_in_item_line_table_in_code.texi table_in_table_item.texi \
- nested_formats.texi inter_item_commands.texi \
+ nested_formats.texi inter_item_commands.texi multitables.texi \
+ double_style_paragraph.texi \
  f--ile.gif f--ile.jpeg f--ile.png f---ile.gr--a f--ile.jpg f--ile.txt \
  simple_menu.init weird_quotes.init redefine_need.init file.css tests.txt res
 

Index: test/formatting/tests.txt
===================================================================
RCS file: /cvsroot/texi2html/texi2html/test/formatting/tests.txt,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -b -r1.8 -r1.9
--- test/formatting/tests.txt   3 Nov 2008 12:33:18 -0000       1.8
+++ test/formatting/tests.txt   14 Nov 2008 22:34:36 -0000      1.9
@@ -31,6 +31,7 @@
 texi table_in_table_item.texi
 texi nested_formats.texi
 texi inter_item_commands.texi
+texi double_style_paragraph.texi
 # for makeinfo
 texi ../coverage/formatting.texi -U texi2html
 def_cmds def_cmds.texi
@@ -82,3 +83,4 @@
 inter_item_commands inter_item_commands.texi
 inter_item_commands_xml inter_item_commands.texi -init xml.init
 inter_item_commands_docbook inter_item_commands.texi -init docbook.init
+double_style_paragraph double_style_paragraph.texi

Index: test/formatting/double_style_paragraph.texi
===================================================================
RCS file: test/formatting/double_style_paragraph.texi
diff -N test/formatting/double_style_paragraph.texi
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ test/formatting/double_style_paragraph.texi 14 Nov 2008 22:34:36 -0000      
1.1
@@ -0,0 +1,15 @@
+\input texinfo @c -*-texinfo-*-
+
address@hidden double_style_paragraph.info
+
address@hidden Top
address@hidden 2 style commands enclosing 2 paragraphs
+
address@hidden@strong{
+First para.
+
+Second para.
+}
+}
+
address@hidden

Index: test/formatting/res/double_style_paragraph/double_style_paragraph.2
===================================================================
RCS file: test/formatting/res/double_style_paragraph/double_style_paragraph.2
diff -N test/formatting/res/double_style_paragraph/double_style_paragraph.2

Index: test/formatting/res/double_style_paragraph/double_style_paragraph.html
===================================================================
RCS file: test/formatting/res/double_style_paragraph/double_style_paragraph.html
diff -N test/formatting/res/double_style_paragraph/double_style_paragraph.html
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ test/formatting/res/double_style_paragraph/double_style_paragraph.html      
14 Nov 2008 22:34:36 -0000      1.1
@@ -0,0 +1,64 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
"http://www.w3.org/TR/html401/loose.dtd";>
+<html>
+<!-- Created on a sunny day by texi2html
+texi2html was written by: 
+            Lionel Cons <address@hidden> (original author)
+            Karl Berry  <address@hidden>
+            Olaf Bachmann <address@hidden>
+            and many others.
+Maintained by: Many creative people.
+Send bugs and suggestions to <address@hidden>
+-->
+<head>
+<title>Untitled Document</title>
+
+<meta name="description" content="Untitled Document">
+<meta name="keywords" content="Untitled Document">
+<meta name="resource-type" content="document">
+<meta name="distribution" content="global">
+<meta name="Generator" content="texi2html">
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<style type="text/css">
+<!--
+a.summary-letter {text-decoration: none}
+blockquote.smallquotation {font-size: smaller}
+pre.display {font-family: serif}
+pre.format {font-family: serif}
+pre.menu-comment {font-family: serif}
+pre.menu-preformatted {font-family: serif}
+pre.smalldisplay {font-family: serif; font-size: smaller}
+pre.smallexample {font-size: smaller}
+pre.smallformat {font-family: serif; font-size: smaller}
+pre.smalllisp {font-size: smaller}
+span.roman {font-family:serif; font-weight:normal;}
+span.sansserif {font-family:sans-serif; font-weight:normal;}
+ul.toc {list-style: none}
+-->
+</style>
+
+
+</head>
+
+<body lang="en" bgcolor="#FFFFFF" text="#000000" link="#0000FF" 
vlink="#800080" alink="#FF0000">
+
+<a name="Top"></a>
+<a name="g_t2-style-commands-enclosing-2-paragraphs"></a>
+<h1 class="unnumbered">2 style commands enclosing 2 paragraphs</h1>
+
+<p><em><strong>
+First para.
+</strong></em></p>
+<p><em><strong>Second para.
+</strong>
+</em>
+</p>
+<hr size="1">
+<p>
+ <font size="-1">
+  This document was generated by <em>a tester</em> on <em>a sunny day</em> 
using <a href="http://www.nongnu.org/texi2html/";><em>texi2html</em></a>.
+ </font>
+ <br>
+
+</p>
+</body>
+</html>

Index: test/formatting/res/texi_double_style_paragraph/double_style_paragraph.2
===================================================================
RCS file: 
test/formatting/res/texi_double_style_paragraph/double_style_paragraph.2
diff -N test/formatting/res/texi_double_style_paragraph/double_style_paragraph.2

Index: 
test/formatting/res/texi_double_style_paragraph/double_style_paragraph.passfirst
===================================================================
RCS file: 
test/formatting/res/texi_double_style_paragraph/double_style_paragraph.passfirst
diff -N 
test/formatting/res/texi_double_style_paragraph/double_style_paragraph.passfirst
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ 
test/formatting/res/texi_double_style_paragraph/double_style_paragraph.passfirst
    14 Nov 2008 22:34:36 -0000      1.1
@@ -0,0 +1,14 @@
+double_style_paragraph.texi(,2) 
+double_style_paragraph.texi(,3) @setfilename double_style_paragraph.info
+double_style_paragraph.texi(,4) 
+double_style_paragraph.texi(,5) @node Top
+double_style_paragraph.texi(,6) @top 2 style commands enclosing 2 paragraphs
+double_style_paragraph.texi(,7) 
+double_style_paragraph.texi(,8) @address@hidden
+double_style_paragraph.texi(,9) First para.
+double_style_paragraph.texi(,10) 
+double_style_paragraph.texi(,11) Second para.
+double_style_paragraph.texi(,12) }
+double_style_paragraph.texi(,13) }
+double_style_paragraph.texi(,14) 
+double_style_paragraph.texi(,15) @bye

Index: 
test/formatting/res/texi_double_style_paragraph/double_style_paragraph.passtexi
===================================================================
RCS file: 
test/formatting/res/texi_double_style_paragraph/double_style_paragraph.passtexi
diff -N 
test/formatting/res/texi_double_style_paragraph/double_style_paragraph.passtexi
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ 
test/formatting/res/texi_double_style_paragraph/double_style_paragraph.passtexi 
    14 Nov 2008 22:34:36 -0000      1.1
@@ -0,0 +1,14 @@
+double_style_paragraph.texi(,2) 
+double_style_paragraph.texi(,3) @setfilename double_style_paragraph.info
+double_style_paragraph.texi(,4) 
+double_style_paragraph.texi(,5) @node Top
+double_style_paragraph.texi(,6) @top 2 style commands enclosing 2 paragraphs
+double_style_paragraph.texi(,7) 
+double_style_paragraph.texi(,8) @address@hidden
+double_style_paragraph.texi(,9) First para.
+double_style_paragraph.texi(,10) 
+double_style_paragraph.texi(,11) Second para.
+double_style_paragraph.texi(,12) }
+double_style_paragraph.texi(,13) }
+double_style_paragraph.texi(,14) 
+double_style_paragraph.texi(,15) @bye

Index: 
test/formatting/res/texi_double_style_paragraph/double_style_paragraph.texi
===================================================================
RCS file: 
test/formatting/res/texi_double_style_paragraph/double_style_paragraph.texi
diff -N 
test/formatting/res/texi_double_style_paragraph/double_style_paragraph.texi
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ test/formatting/res/texi_double_style_paragraph/double_style_paragraph.texi 
14 Nov 2008 22:34:36 -0000      1.1
@@ -0,0 +1,15 @@
+\input texinfo @c -*-texinfo-*-
+
address@hidden double_style_paragraph.info
+
address@hidden Top
address@hidden 2 style commands enclosing 2 paragraphs
+
address@hidden@strong{
+First para.
+
+Second para.
+}
+}
+
address@hidden




reply via email to

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