texinfo-commits
[Top][All Lists]
Advanced

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

[5906] * tp/Texinfo/Convert/Plaintext.pm (_convert),


From: Patrice Dumas
Subject: [5906] * tp/Texinfo/Convert/Plaintext.pm (_convert),
Date: Sun, 02 Nov 2014 19:41:05 +0000

Revision: 5906
          http://svn.sv.gnu.org/viewvc/?view=rev&root=texinfo&revision=5906
Author:   pertusus
Date:     2014-11-02 19:41:03 +0000 (Sun, 02 Nov 2014)
Log Message:
-----------
        * tp/Texinfo/Convert/Plaintext.pm (_convert), 
        tp/Texinfo/Convert/Text.pm (heading): add an indent length
        argument to heading() and use it to indent the underlying 
        symbols.  Report from Mahlon Smith.

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/tp/Texinfo/Convert/Plaintext.pm
    trunk/tp/Texinfo/Convert/Text.pm
    trunk/tp/t/results/heading/heading_in_example.pl
    trunk/tp/t/results/heading/heading_in_quotation.pl
    trunk/tp/t/results/preformatted/titlefont_in_example.pl
    trunk/tp/tests/coverage/res_parser_info/formatting/formatting.info
    trunk/tp/tests/coverage/res_parser_info/formatting_cr/formatting.info
    trunk/tp/tests/coverage/res_parser_info/formatting_fr/formatting.info
    
trunk/tp/tests/coverage/res_parser_info/formatting_utf8_enable_encoding/formatting_utf8.info
    trunk/tp/tests/layout/res_parser/formatting_plaintext/formatting.txt
    
trunk/tp/tests/nested_formats/res_parser_info/nested_cartouche/nested_formats.info
    
trunk/tp/tests/nested_formats/res_parser_info/nested_deffn/nested_formats.info
    
trunk/tp/tests/nested_formats/res_parser_info/nested_enumerate/nested_formats.info
    
trunk/tp/tests/nested_formats/res_parser_info/nested_example/nested_formats.info
    
trunk/tp/tests/nested_formats/res_parser_info/nested_flushright/nested_formats.info
    
trunk/tp/tests/nested_formats/res_parser_info/nested_group/nested_formats.info
    
trunk/tp/tests/nested_formats/res_parser_info/nested_itemize/nested_formats.info
    
trunk/tp/tests/nested_formats/res_parser_info/nested_menu/nested_formats.info
    
trunk/tp/tests/nested_formats/res_parser_info/nested_multitable/nested_formats.info
    
trunk/tp/tests/nested_formats/res_parser_info/nested_quotation/nested_formats.info
    
trunk/tp/tests/nested_formats/res_parser_info/nested_table/nested_formats.info

Property Changed:
----------------
    trunk/tp/tests/t/

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog     2014-11-02 15:54:08 UTC (rev 5905)
+++ trunk/ChangeLog     2014-11-02 19:41:03 UTC (rev 5906)
@@ -1,5 +1,12 @@
-2014-10-02  Gavin Smith  <address@hidden>
+2014-11-02  Patrice Dumas  <address@hidden>
 
+       * tp/Texinfo/Convert/Plaintext.pm (_convert), 
+       tp/Texinfo/Convert/Text.pm (heading): add an indent length
+       argument to heading() and use it to indent the underlying 
+       symbols.  Report from Mahlon Smith.
+
+2014-11-02  Gavin Smith  <address@hidden>
+
        * info/indices.c (info_index_apropos): Include line numbers in 
        apropos node.
 

Modified: trunk/tp/Texinfo/Convert/Plaintext.pm
===================================================================
--- trunk/tp/Texinfo/Convert/Plaintext.pm       2014-11-02 15:54:08 UTC (rev 
5905)
+++ trunk/tp/Texinfo/Convert/Plaintext.pm       2014-11-02 19:41:03 UTC (rev 
5906)
@@ -2177,7 +2177,8 @@
       pop @{$self->{'count_context'}};
       $result = Texinfo::Convert::Text::heading({'level' => 0, 
         'cmdname' => 'titlefont'}, $result, $self, 
-        $self->get_conf('NUMBER_SECTIONS'));
+        $self->get_conf('NUMBER_SECTIONS'),
+        ($self->{'format_context'}->[-1]->{'indent_level'}) * $indent_length);
       $self->{'empty_lines_count'} = 0 unless ($result eq '');
       $self->_add_text_count($result);
       $self->_add_lines_count(2);
@@ -2357,8 +2358,10 @@
         # @* leads to an end of line, underlying appears on the line below
         # over one line
         my $heading_underlined = 
-             Texinfo::Convert::Text::heading ($root, $heading, $self,
-                                              
$self->get_conf('NUMBER_SECTIONS'));
+             Texinfo::Convert::Text::heading($root, $heading, $self,
+                                             
$self->get_conf('NUMBER_SECTIONS'),
+                           ($self->{'format_context'}->[-1]->{'indent_level'})
+                                           * $indent_length);
         $result .= $self->_add_newline_if_needed();
         $self->{'empty_lines_count'} = 0 unless ($heading_underlined eq '');
         $self->_add_text_count($heading_underlined);

Modified: trunk/tp/Texinfo/Convert/Text.pm
===================================================================
--- trunk/tp/Texinfo/Convert/Text.pm    2014-11-02 15:54:08 UTC (rev 5905)
+++ trunk/tp/Texinfo/Convert/Text.pm    2014-11-02 19:41:03 UTC (rev 5906)
@@ -286,19 +286,31 @@
   4 => '.'
 );
 
-sub heading($$$;$)
+sub heading($$$;$$)
 {
   my $current = shift;
   my $text = shift;
   my $converter = shift;
   my $numbered = shift;
+  my $indent_length = shift;
 
+  # REMARK to get the numberig right in case of an indented text, the
+  # indentation should be given here.  But this should never happen as
+  # the only @-commands allowed in indented context are not number.
   $text = Texinfo::Common::numbered_heading($converter, $current, $text, 
                                             $numbered);
   return '' if ($text !~ /\S/);
   my $result = $text ."\n";
+  if (defined($indent_length)) {
+    if ($indent_length < 0) {
+      $indent_length = 0;
+    }
+    $result .= (' ' x $indent_length);
+  } else {
+    $indent_length = 0;
+  }
   $result .=($underline_symbol{$current->{'level'}} 
-     x Texinfo::Convert::Unicode::string_width($text))."\n";
+     x (Texinfo::Convert::Unicode::string_width($text) - $indent_length))."\n";
   return $result;
 }
 

Modified: trunk/tp/t/results/heading/heading_in_example.pl
===================================================================
--- trunk/tp/t/results/heading/heading_in_example.pl    2014-11-02 15:54:08 UTC 
(rev 5905)
+++ trunk/tp/t/results/heading/heading_in_example.pl    2014-11-02 19:41:03 UTC 
(rev 5906)
@@ -192,7 +192,7 @@
 
 
 $result_converted{'plaintext'}->{'heading_in_example'} = '     in example @ 
_heading_
-===========================
+     ======================
 
 ';
 

Modified: trunk/tp/t/results/heading/heading_in_quotation.pl
===================================================================
--- trunk/tp/t/results/heading/heading_in_quotation.pl  2014-11-02 15:54:08 UTC 
(rev 5905)
+++ trunk/tp/t/results/heading/heading_in_quotation.pl  2014-11-02 19:41:03 UTC 
(rev 5906)
@@ -210,7 +210,7 @@
 
 
 $result_converted{'plaintext'}->{'heading_in_quotation'} = '     in quotation 
@ _heading_
-=============================
+     ========================
 
 ';
 

Modified: trunk/tp/t/results/preformatted/titlefont_in_example.pl
===================================================================
--- trunk/tp/t/results/preformatted/titlefont_in_example.pl     2014-11-02 
15:54:08 UTC (rev 5905)
+++ trunk/tp/t/results/preformatted/titlefont_in_example.pl     2014-11-02 
19:41:03 UTC (rev 5906)
@@ -161,7 +161,7 @@
 
 
 $result_converted{'plaintext'}->{'titlefont_in_example'} = '     Title
-**********
+     *****
 
      Text.
 ';

Modified: trunk/tp/tests/coverage/res_parser_info/formatting/formatting.info
===================================================================
--- trunk/tp/tests/coverage/res_parser_info/formatting/formatting.info  
2014-11-02 15:54:08 UTC (rev 5905)
+++ trunk/tp/tests/coverage/res_parser_info/formatting/formatting.info  
2014-11-02 19:41:03 UTC (rev 5906)
@@ -1202,7 +1202,7 @@
      @slanted{--a} -a
      @titlefont{--a} 
      -a
-*******
+     **
 
      @indicateurl{--a} '--a'
      @uref{--a,--b} --b (--a)
@@ -1518,23 +1518,23 @@
 
 
      majorheading
-*****************
+     ************
 
 
      chapheading
-****************
+     ***********
 
 
      heading
-============
+     =======
 
 
      subheading
----------------
+     ----------
 
 
      subsubheading
-..................
+     .............
 
 
 

Modified: trunk/tp/tests/coverage/res_parser_info/formatting_cr/formatting.info
===================================================================
--- trunk/tp/tests/coverage/res_parser_info/formatting_cr/formatting.info       
2014-11-02 15:54:08 UTC (rev 5905)
+++ trunk/tp/tests/coverage/res_parser_info/formatting_cr/formatting.info       
2014-11-02 19:41:03 UTC (rev 5906)
@@ -1203,7 +1203,7 @@
      @slanted{--a} -a
      @titlefont{--a} 
      -a
-*******
+     **
 
      @indicateurl{--a} '--a'
      @uref{--a,--b} --b (--a)
@@ -1520,23 +1520,23 @@
 
 
      majorheading
-*****************
+     ************
 
 
      chapheading
-****************
+     ***********
 
 
      heading
-============
+     =======
 
 
      subheading
----------------
+     ----------
 
 
      subsubheading
-..................
+     .............
 
 
 

Modified: trunk/tp/tests/coverage/res_parser_info/formatting_fr/formatting.info
===================================================================
--- trunk/tp/tests/coverage/res_parser_info/formatting_fr/formatting.info       
2014-11-02 15:54:08 UTC (rev 5905)
+++ trunk/tp/tests/coverage/res_parser_info/formatting_fr/formatting.info       
2014-11-02 19:41:03 UTC (rev 5906)
@@ -1202,7 +1202,7 @@
      @slanted{--a} -a
      @titlefont{--a} 
      -a
-*******
+     **
 
      @indicateurl{--a} '--a'
      @uref{--a,--b} --b (--a)
@@ -1519,23 +1519,23 @@
 
 
      majorheading
-*****************
+     ************
 
 
      chapheading
-****************
+     ***********
 
 
      heading
-============
+     =======
 
 
      subheading
----------------
+     ----------
 
 
      subsubheading
-..................
+     .............
 
 
 

Modified: 
trunk/tp/tests/coverage/res_parser_info/formatting_utf8_enable_encoding/formatting_utf8.info
===================================================================
--- 
trunk/tp/tests/coverage/res_parser_info/formatting_utf8_enable_encoding/formatting_utf8.info
        2014-11-02 15:54:08 UTC (rev 5905)
+++ 
trunk/tp/tests/coverage/res_parser_info/formatting_utf8_enable_encoding/formatting_utf8.info
        2014-11-02 19:41:03 UTC (rev 5906)
@@ -1199,7 +1199,7 @@
      @slanted{--a} –a
      @titlefont{--a} 
      –a
-*******
+     **
 
      @indicateurl{--a} ‘--a’
      @uref{--a,--b} --b (--a)
@@ -1515,23 +1515,23 @@
 
 
      majorheading
-*****************
+     ************
 
 
      chapheading
-****************
+     ***********
 
 
      heading
-============
+     =======
 
 
      subheading
----------------
+     ----------
 
 
      subsubheading
-..................
+     .............
 
 
 

Modified: trunk/tp/tests/layout/res_parser/formatting_plaintext/formatting.txt
===================================================================
--- trunk/tp/tests/layout/res_parser/formatting_plaintext/formatting.txt        
2014-11-02 15:54:08 UTC (rev 5905)
+++ trunk/tp/tests/layout/res_parser/formatting_plaintext/formatting.txt        
2014-11-02 19:41:03 UTC (rev 5906)
@@ -847,7 +847,7 @@
      @slanted{--a} -a
      @titlefont{--a} 
      -a
-*******
+     **
 
      @indicateurl{--a} '--a'
      @uref{--a,--b} --b (--a)
@@ -1169,23 +1169,23 @@
 
 
      majorheading
-*****************
+     ************
 
 
      chapheading
-****************
+     ***********
 
 
      heading
-============
+     =======
 
 
      subheading
----------------
+     ----------
 
 
      subsubheading
-..................
+     .............
 
 
 

Modified: 
trunk/tp/tests/nested_formats/res_parser_info/nested_cartouche/nested_formats.info
===================================================================
--- 
trunk/tp/tests/nested_formats/res_parser_info/nested_cartouche/nested_formats.info
  2014-11-02 15:54:08 UTC (rev 5905)
+++ 
trunk/tp/tests/nested_formats/res_parser_info/nested_cartouche/nested_formats.info
  2014-11-02 19:41:03 UTC (rev 5906)
@@ -208,7 +208,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -296,7 +296,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -385,7 +385,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -474,7 +474,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -562,7 +562,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -651,7 +651,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1020,7 +1020,7 @@
           A quot---ation
 
      subheading
----------------
+     ----------
 
 
      in verbatim
@@ -1117,7 +1117,7 @@
           A quot---ation
 
      subheading
----------------
+     ----------
 
 
      in verbatim
@@ -1214,7 +1214,7 @@
           A quot---ation
 
      subheading
----------------
+     ----------
 
 
      in verbatim
@@ -1310,7 +1310,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1399,7 +1399,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1489,7 +1489,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1578,7 +1578,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1668,7 +1668,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1758,7 +1758,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 

Modified: 
trunk/tp/tests/nested_formats/res_parser_info/nested_deffn/nested_formats.info
===================================================================
--- 
trunk/tp/tests/nested_formats/res_parser_info/nested_deffn/nested_formats.info  
    2014-11-02 15:54:08 UTC (rev 5905)
+++ 
trunk/tp/tests/nested_formats/res_parser_info/nested_deffn/nested_formats.info  
    2014-11-02 19:41:03 UTC (rev 5906)
@@ -139,7 +139,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -238,7 +238,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -336,7 +336,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -436,7 +436,7 @@
                     A quot--ation
 
           subheading
---------------------
+          ----------
 
           in verbatim
 
@@ -536,7 +536,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -634,7 +634,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -734,7 +734,7 @@
                     A quot--ation
 
           subheading
---------------------
+          ----------
 
           in verbatim
 
@@ -1041,7 +1041,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1144,7 +1144,7 @@
                A quot---ation
 
      subheading
----------------
+     ----------
 
 
      in verbatim
@@ -1250,7 +1250,7 @@
                A quot---ation
 
      subheading
----------------
+     ----------
 
 
      in verbatim
@@ -1357,7 +1357,7 @@
                     A quot---ation
 
           subheading
---------------------
+          ----------
 
 
           in verbatim
@@ -1463,7 +1463,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1563,7 +1563,7 @@
                     A quot--ation
 
           subheading
---------------------
+          ----------
 
           in verbatim
 
@@ -1664,7 +1664,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1763,7 +1763,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1863,7 +1863,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1964,7 +1964,7 @@
                     A quot--ation
 
           subheading
---------------------
+          ----------
 
           in verbatim
 
@@ -2262,7 +2262,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -2462,7 +2462,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -2660,7 +2660,7 @@
                                                           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 

Modified: 
trunk/tp/tests/nested_formats/res_parser_info/nested_enumerate/nested_formats.info
===================================================================
--- 
trunk/tp/tests/nested_formats/res_parser_info/nested_enumerate/nested_formats.info
  2014-11-02 15:54:08 UTC (rev 5905)
+++ 
trunk/tp/tests/nested_formats/res_parser_info/nested_enumerate/nested_formats.info
  2014-11-02 19:41:03 UTC (rev 5906)
@@ -119,7 +119,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -208,7 +208,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -296,7 +296,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -385,7 +385,7 @@
                     A quot--ation
 
           subheading
---------------------
+          ----------
 
           in verbatim
 
@@ -475,7 +475,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -563,7 +563,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -652,7 +652,7 @@
                     A quot--ation
 
           subheading
---------------------
+          ----------
 
           in verbatim
 
@@ -928,7 +928,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1022,7 +1022,7 @@
                A quot---ation
 
      subheading
----------------
+     ----------
 
 
      in verbatim
@@ -1119,7 +1119,7 @@
                A quot---ation
 
      subheading
----------------
+     ----------
 
 
      in verbatim
@@ -1216,7 +1216,7 @@
                     A quot---ation
 
           subheading
---------------------
+          ----------
 
 
           in verbatim
@@ -1312,7 +1312,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1401,7 +1401,7 @@
                     A quot--ation
 
           subheading
---------------------
+          ----------
 
           in verbatim
 
@@ -1492,7 +1492,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1581,7 +1581,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1671,7 +1671,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1761,7 +1761,7 @@
                     A quot--ation
 
           subheading
---------------------
+          ----------
 
           in verbatim
 
@@ -2028,7 +2028,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -2207,7 +2207,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -2384,7 +2384,7 @@
                                                           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 

Modified: 
trunk/tp/tests/nested_formats/res_parser_info/nested_example/nested_formats.info
===================================================================
--- 
trunk/tp/tests/nested_formats/res_parser_info/nested_example/nested_formats.info
    2014-11-02 15:54:08 UTC (rev 5905)
+++ 
trunk/tp/tests/nested_formats/res_parser_info/nested_example/nested_formats.info
    2014-11-02 19:41:03 UTC (rev 5906)
@@ -122,7 +122,7 @@
                A quot---ation
 
      subheading
----------------
+     ----------
 
 
      in verbatim
@@ -217,7 +217,7 @@
                A quot---ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -306,7 +306,7 @@
                A quot---ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -397,7 +397,7 @@
                     A quot---ation
 
           subheading
---------------------
+          ----------
 
 
           in verbatim
@@ -492,7 +492,7 @@
                A quot---ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -581,7 +581,7 @@
                A quot---ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -672,7 +672,7 @@
                     A quot---ation
 
           subheading
---------------------
+          ----------
 
 
           in verbatim
@@ -954,7 +954,7 @@
                A quot---ation
 
      subheading
----------------
+     ----------
 
 
      in verbatim
@@ -1051,7 +1051,7 @@
                A quot---ation
 
      subheading
----------------
+     ----------
 
 
      in verbatim
@@ -1148,7 +1148,7 @@
                A quot---ation
 
      subheading
----------------
+     ----------
 
 
      in verbatim
@@ -1245,7 +1245,7 @@
                     A quot---ation
 
           subheading
---------------------
+          ----------
 
 
           in verbatim
@@ -1342,7 +1342,7 @@
                A quot---ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1433,7 +1433,7 @@
                     A quot---ation
 
           subheading
---------------------
+          ----------
 
 
           in verbatim
@@ -1529,7 +1529,7 @@
                A quot---ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1619,7 +1619,7 @@
                A quot---ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1710,7 +1710,7 @@
                A quot---ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1802,7 +1802,7 @@
                     A quot---ation
 
           subheading
---------------------
+          ----------
 
 
           in verbatim
@@ -2077,7 +2077,7 @@
                A quot---ation
 
      subheading
----------------
+     ----------
 
 
      in verbatim
@@ -2264,7 +2264,7 @@
                A quot---ation
 
      subheading
----------------
+     ----------
 
 
      in verbatim
@@ -2449,7 +2449,7 @@
                A quot---ation
 
      subheading
----------------
+     ----------
 
 
      in verbatim

Modified: 
trunk/tp/tests/nested_formats/res_parser_info/nested_flushright/nested_formats.info
===================================================================
--- 
trunk/tp/tests/nested_formats/res_parser_info/nested_flushright/nested_formats.info
 2014-11-02 15:54:08 UTC (rev 5905)
+++ 
trunk/tp/tests/nested_formats/res_parser_info/nested_flushright/nested_formats.info
 2014-11-02 19:41:03 UTC (rev 5906)
@@ -208,7 +208,7 @@
                                                           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -296,7 +296,7 @@
                                                           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -385,7 +385,7 @@
                                                           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -474,7 +474,7 @@
                                                           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -562,7 +562,7 @@
                                                           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -651,7 +651,7 @@
                                                           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1014,7 +1014,7 @@
                                                          A quot---ation
 
      subheading
----------------
+     ----------
 
 
      in verbatim
@@ -1111,7 +1111,7 @@
                                                          A quot---ation
 
      subheading
----------------
+     ----------
 
 
      in verbatim
@@ -1206,7 +1206,7 @@
                                                          A quot---ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1298,7 +1298,7 @@
                                                           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1387,7 +1387,7 @@
                                                           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1477,7 +1477,7 @@
                                                           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1566,7 +1566,7 @@
                                                           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1656,7 +1656,7 @@
                                                           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1746,7 +1746,7 @@
                                                           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 

Modified: 
trunk/tp/tests/nested_formats/res_parser_info/nested_group/nested_formats.info
===================================================================
--- 
trunk/tp/tests/nested_formats/res_parser_info/nested_group/nested_formats.info  
    2014-11-02 15:54:08 UTC (rev 5905)
+++ 
trunk/tp/tests/nested_formats/res_parser_info/nested_group/nested_formats.info  
    2014-11-02 19:41:03 UTC (rev 5906)
@@ -208,7 +208,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -296,7 +296,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -385,7 +385,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -474,7 +474,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -562,7 +562,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -651,7 +651,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1020,7 +1020,7 @@
           A quot---ation
 
      subheading
----------------
+     ----------
 
 
      in verbatim
@@ -1117,7 +1117,7 @@
           A quot---ation
 
      subheading
----------------
+     ----------
 
 
      in verbatim
@@ -1214,7 +1214,7 @@
           A quot---ation
 
      subheading
----------------
+     ----------
 
 
      in verbatim
@@ -1310,7 +1310,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1399,7 +1399,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1489,7 +1489,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1578,7 +1578,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1668,7 +1668,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1758,7 +1758,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 

Modified: 
trunk/tp/tests/nested_formats/res_parser_info/nested_itemize/nested_formats.info
===================================================================
--- 
trunk/tp/tests/nested_formats/res_parser_info/nested_itemize/nested_formats.info
    2014-11-02 15:54:08 UTC (rev 5905)
+++ 
trunk/tp/tests/nested_formats/res_parser_info/nested_itemize/nested_formats.info
    2014-11-02 19:41:03 UTC (rev 5906)
@@ -119,7 +119,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -208,7 +208,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -296,7 +296,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -385,7 +385,7 @@
                     A quot--ation
 
           subheading
---------------------
+          ----------
 
           in verbatim
 
@@ -475,7 +475,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -563,7 +563,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -652,7 +652,7 @@
                     A quot--ation
 
           subheading
---------------------
+          ----------
 
           in verbatim
 
@@ -928,7 +928,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1022,7 +1022,7 @@
                A quot---ation
 
      subheading
----------------
+     ----------
 
 
      in verbatim
@@ -1119,7 +1119,7 @@
                A quot---ation
 
      subheading
----------------
+     ----------
 
 
      in verbatim
@@ -1216,7 +1216,7 @@
                     A quot---ation
 
           subheading
---------------------
+          ----------
 
 
           in verbatim
@@ -1312,7 +1312,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1401,7 +1401,7 @@
                     A quot--ation
 
           subheading
---------------------
+          ----------
 
           in verbatim
 
@@ -1492,7 +1492,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1581,7 +1581,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1671,7 +1671,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1761,7 +1761,7 @@
                     A quot--ation
 
           subheading
---------------------
+          ----------
 
           in verbatim
 
@@ -2028,7 +2028,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -2207,7 +2207,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -2384,7 +2384,7 @@
                                                           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 

Modified: 
trunk/tp/tests/nested_formats/res_parser_info/nested_menu/nested_formats.info
===================================================================
--- 
trunk/tp/tests/nested_formats/res_parser_info/nested_menu/nested_formats.info   
    2014-11-02 15:54:08 UTC (rev 5905)
+++ 
trunk/tp/tests/nested_formats/res_parser_info/nested_menu/nested_formats.info   
    2014-11-02 19:41:03 UTC (rev 5906)
@@ -268,7 +268,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -374,7 +374,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -485,7 +485,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
 
      in verbatim
@@ -596,7 +596,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -702,7 +702,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -813,7 +813,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
 
      in verbatim
@@ -1263,7 +1263,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
 
      in verbatim
@@ -1378,7 +1378,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
 
      in verbatim
@@ -1495,7 +1495,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
 
      in verbatim
@@ -1609,7 +1609,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1720,7 +1720,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
 
      in verbatim
@@ -1832,7 +1832,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1939,7 +1939,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -2047,7 +2047,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -2159,7 +2159,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
 
      in verbatim

Modified: 
trunk/tp/tests/nested_formats/res_parser_info/nested_multitable/nested_formats.info
===================================================================
--- 
trunk/tp/tests/nested_formats/res_parser_info/nested_multitable/nested_formats.info
 2014-11-02 15:54:08 UTC (rev 5905)
+++ 
trunk/tp/tests/nested_formats/res_parser_info/nested_multitable/nested_formats.info
 2014-11-02 19:41:03 UTC (rev 5906)
@@ -208,7 +208,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -296,7 +296,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -385,7 +385,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -474,7 +474,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -562,7 +562,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -651,7 +651,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1020,7 +1020,7 @@
           A quot---ation
 
      subheading
----------------
+     ----------
 
 
      in verbatim
@@ -1117,7 +1117,7 @@
           A quot---ation
 
      subheading
----------------
+     ----------
 
 
      in verbatim
@@ -1214,7 +1214,7 @@
           A quot---ation
 
      subheading
----------------
+     ----------
 
 
      in verbatim
@@ -1310,7 +1310,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1399,7 +1399,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1489,7 +1489,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1578,7 +1578,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1668,7 +1668,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1758,7 +1758,7 @@
           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 

Modified: 
trunk/tp/tests/nested_formats/res_parser_info/nested_quotation/nested_formats.info
===================================================================
--- 
trunk/tp/tests/nested_formats/res_parser_info/nested_quotation/nested_formats.info
  2014-11-02 15:54:08 UTC (rev 5905)
+++ 
trunk/tp/tests/nested_formats/res_parser_info/nested_quotation/nested_formats.info
  2014-11-02 19:41:03 UTC (rev 5906)
@@ -119,7 +119,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -208,7 +208,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -296,7 +296,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -385,7 +385,7 @@
                     A quot--ation
 
           subheading
---------------------
+          ----------
 
           in verbatim
 
@@ -475,7 +475,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -563,7 +563,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -652,7 +652,7 @@
                     A quot--ation
 
           subheading
---------------------
+          ----------
 
           in verbatim
 
@@ -928,7 +928,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1022,7 +1022,7 @@
                A quot---ation
 
      subheading
----------------
+     ----------
 
 
      in verbatim
@@ -1119,7 +1119,7 @@
                A quot---ation
 
      subheading
----------------
+     ----------
 
 
      in verbatim
@@ -1216,7 +1216,7 @@
                     A quot---ation
 
           subheading
---------------------
+          ----------
 
 
           in verbatim
@@ -1312,7 +1312,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1401,7 +1401,7 @@
                     A quot--ation
 
           subheading
---------------------
+          ----------
 
           in verbatim
 
@@ -1492,7 +1492,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1581,7 +1581,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1671,7 +1671,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1761,7 +1761,7 @@
                     A quot--ation
 
           subheading
---------------------
+          ----------
 
           in verbatim
 
@@ -2028,7 +2028,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -2207,7 +2207,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -2384,7 +2384,7 @@
                                                           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 

Modified: 
trunk/tp/tests/nested_formats/res_parser_info/nested_table/nested_formats.info
===================================================================
--- 
trunk/tp/tests/nested_formats/res_parser_info/nested_table/nested_formats.info  
    2014-11-02 15:54:08 UTC (rev 5905)
+++ 
trunk/tp/tests/nested_formats/res_parser_info/nested_table/nested_formats.info  
    2014-11-02 19:41:03 UTC (rev 5906)
@@ -119,7 +119,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -208,7 +208,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -296,7 +296,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -385,7 +385,7 @@
                     A quot--ation
 
           subheading
---------------------
+          ----------
 
           in verbatim
 
@@ -475,7 +475,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -563,7 +563,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -652,7 +652,7 @@
                     A quot--ation
 
           subheading
---------------------
+          ----------
 
           in verbatim
 
@@ -928,7 +928,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1022,7 +1022,7 @@
                A quot---ation
 
      subheading
----------------
+     ----------
 
 
      in verbatim
@@ -1119,7 +1119,7 @@
                A quot---ation
 
      subheading
----------------
+     ----------
 
 
      in verbatim
@@ -1216,7 +1216,7 @@
                     A quot---ation
 
           subheading
---------------------
+          ----------
 
 
           in verbatim
@@ -1312,7 +1312,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1401,7 +1401,7 @@
                     A quot--ation
 
           subheading
---------------------
+          ----------
 
           in verbatim
 
@@ -1492,7 +1492,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1581,7 +1581,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1671,7 +1671,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -1761,7 +1761,7 @@
                     A quot--ation
 
           subheading
---------------------
+          ----------
 
           in verbatim
 
@@ -2028,7 +2028,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -2207,7 +2207,7 @@
                A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 
@@ -2384,7 +2384,7 @@
                                                           A quot--ation
 
      subheading
----------------
+     ----------
 
      in verbatim
 


Property changes on: trunk/tp/tests/t
___________________________________________________________________
Added: svn:ignore
   + *.log
*.trs





reply via email to

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