texinfo-commits
[Top][All Lists]
Advanced

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

texinfo/tp Texinfo/Structuring.pm Texinfo/Conve...


From: Patrice Dumas
Subject: texinfo/tp Texinfo/Structuring.pm Texinfo/Conve...
Date: Sun, 27 Feb 2011 20:15:28 +0000

CVSROOT:        /sources/texinfo
Module name:    texinfo
Changes by:     Patrice Dumas <pertusus>        11/02/27 20:15:27

Modified files:
        tp/Texinfo     : Structuring.pm 
        tp/Texinfo/Convert: Plaintext.pm 
        tp/t           : 27float.t 30sectioning.t 
        tp/t/results/float: numbering_captions_listoffloats.pl 
        tp/t/results/sectioning: nodename_parentheses.pl semi_auto.pl 
Added files:
        tp/t/results/sectioning: hole_in_sectioning.pl 
                                 lowered_subsubsection.pl 
                                 unnumbered_before_top.pl 

Log message:
        Really use associated section directions.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/Texinfo/Structuring.pm?cvsroot=texinfo&r1=1.36&r2=1.37
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/Texinfo/Convert/Plaintext.pm?cvsroot=texinfo&r1=1.99&r2=1.100
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/t/27float.t?cvsroot=texinfo&r1=1.8&r2=1.9
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/t/30sectioning.t?cvsroot=texinfo&r1=1.25&r2=1.26
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/t/results/float/numbering_captions_listoffloats.pl?cvsroot=texinfo&r1=1.15&r2=1.16
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/t/results/sectioning/nodename_parentheses.pl?cvsroot=texinfo&r1=1.32&r2=1.33
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/t/results/sectioning/semi_auto.pl?cvsroot=texinfo&r1=1.9&r2=1.10
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/t/results/sectioning/hole_in_sectioning.pl?cvsroot=texinfo&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/t/results/sectioning/lowered_subsubsection.pl?cvsroot=texinfo&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/t/results/sectioning/unnumbered_before_top.pl?cvsroot=texinfo&rev=1.1

Patches:
Index: Texinfo/Structuring.pm
===================================================================
RCS file: /sources/texinfo/texinfo/tp/Texinfo/Structuring.pm,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -b -r1.36 -r1.37
--- Texinfo/Structuring.pm      27 Feb 2011 15:57:19 -0000      1.36
+++ Texinfo/Structuring.pm      27 Feb 2011 20:15:27 -0000      1.37
@@ -389,14 +389,17 @@
       if ($node->{'extra'}->{'normalized'} ne 'Top') {
         foreach my $direction (@node_directions) {
           next if ($node->{'node_'.$direction});
-          if ($node->{'associated_section'}) {
-            my $section = $node->{'associated_section'};
+          if ($node->{'extra'}->{'associated_section'}) {
+            my $section = $node->{'extra'}->{'associated_section'};
             if ($section->{'section_'.$direction}
-               and $section->{'section_'.$direction}->{'associated_node'}) {
+               and $section->{'section_'.$direction}->{'extra'}
+               and 
$section->{'section_'.$direction}->{'extra'}->{'associated_node'}) {
               $node->{'node_'.$direction} 
-                = $section->{'section_'.$direction}->{'associated_node'};
+                = 
$section->{'section_'.$direction}->{'extra'}->{'associated_node'};
+              next;
             }
-          } elsif ($node->{'menu_'.$direction}) {
+          } 
+          if ($node->{'menu_'.$direction}) {
             $node->{'node_'.$direction} = $node->{'menu_'.$direction};
           }
         }

Index: Texinfo/Convert/Plaintext.pm
===================================================================
RCS file: /sources/texinfo/texinfo/tp/Texinfo/Convert/Plaintext.pm,v
retrieving revision 1.99
retrieving revision 1.100
diff -u -b -r1.99 -r1.100
--- Texinfo/Convert/Plaintext.pm        27 Feb 2011 17:28:58 -0000      1.99
+++ Texinfo/Convert/Plaintext.pm        27 Feb 2011 20:15:27 -0000      1.100
@@ -1465,6 +1465,7 @@
         my $node_content;
         if ($root->{'extra'}->{'node_argument'} 
             and $root->{'extra'}->{'node_argument'}->{'normalized'}
+            and !$root->{'extra'}->{'node_argument'}->{'manual_content'}
             and $self->{'labels'}
             and 
$self->{'labels'}->{$root->{'extra'}->{'node_argument'}->{'normalized'}}) {
           $node_content = 
$self->{'labels'}->{$root->{'extra'}->{'node_argument'}->{'normalized'}}->{'extra'}->{'node_content'};
@@ -2144,6 +2145,7 @@
       my $menu_entry_internal_node;
       if ($root->{'extra'} and $root->{'extra'}->{'menu_entry_node'}
           and defined($root->{'extra'}->{'menu_entry_node'}->{'normalized'})
+          and !$root->{'extra'}->{'menu_entry_node'}->{'manual_content'}
           and $self->{'labels'}
           and 
$self->{'labels'}->{$root->{'extra'}->{'menu_entry_node'}->{'normalized'}}) {
         $menu_entry_internal_node = 
$self->{'labels'}->{$root->{'extra'}->{'menu_entry_node'}->{'normalized'}};

Index: t/27float.t
===================================================================
RCS file: /sources/texinfo/texinfo/tp/t/27float.t,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -b -r1.8 -r1.9
--- t/27float.t 14 Feb 2011 23:50:11 -0000      1.8
+++ t/27float.t 27 Feb 2011 20:15:27 -0000      1.9
@@ -258,6 +258,14 @@
 @shortcaption{SC A warning}
 @end float
 
address@hidden
+* chapter::
+* Unnumbered::
+* Chapter with unnumbsubsec::
+* Appendix for float::
+* list of floats::
address@hidden menu
+
 @node chapter
 @chapter A chapter
 

Index: t/30sectioning.t
===================================================================
RCS file: /sources/texinfo/texinfo/tp/t/30sectioning.t,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -b -r1.25 -r1.26
--- t/30sectioning.t    27 Feb 2011 17:28:58 -0000      1.25
+++ t/30sectioning.t    27 Feb 2011 20:15:27 -0000      1.26
@@ -678,7 +678,71 @@
 @top In top @setfilename very badly placed setfilename
 
 @setfilename a bit too late
-']
+'],
+['unnumbered_before_top',
+'@unnumbered before top
+
address@hidden top
+'],
+['hole_in_sectioning',
+'@top Top
+
address@hidden Chapter
+
address@hidden section
+
address@hidden subsubsection with no subsection above
+
address@hidden the subsection
+'],
+['lowered_subsubsection',
+'@node Top
address@hidden
+
address@hidden
+* Chapter::
address@hidden menu
+
address@hidden Chapter
address@hidden Chapter
+
address@hidden
+* Section::
address@hidden menu
+
address@hidden Section
address@hidden Section
+
address@hidden
+* Subsection::
address@hidden menu
+
address@hidden Subsection
address@hidden Subsection
+
address@hidden
+* Subsubsection::
+* Lowered subsec::
address@hidden menu
+
address@hidden Subsubsection
address@hidden Subsubsection
+
address@hidden
address@hidden Lowered subsec
address@hidden Lowered subsec
+
address@hidden
+* Lowered subsubsection::
address@hidden menu
+
address@hidden Lowered subsubsection
address@hidden Lowered subsubsection
address@hidden
+
address@hidden
address@hidden
+'],
 );
 
 foreach my $test (@tests_converted) {

Index: t/results/float/numbering_captions_listoffloats.pl
===================================================================
RCS file: 
/sources/texinfo/texinfo/tp/t/results/float/numbering_captions_listoffloats.pl,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -b -r1.15 -r1.16
--- t/results/float/numbering_captions_listoffloats.pl  20 Feb 2011 12:18:35 
-0000      1.15
+++ t/results/float/numbering_captions_listoffloats.pl  27 Feb 2011 20:15:27 
-0000      1.16
@@ -1190,6 +1190,285 @@
           'text' => '
 ',
           'type' => 'empty_line'
+        },
+        {
+          'cmdname' => 'menu',
+          'contents' => [
+            {
+              'parent' => {},
+              'text' => '
+',
+              'type' => 'empty_line_after_command'
+            },
+            {
+              'args' => [
+                {
+                  'parent' => {},
+                  'text' => '* ',
+                  'type' => 'menu_entry_leading_text'
+                },
+                {
+                  'contents' => [
+                    {
+                      'parent' => {},
+                      'text' => 'chapter'
+                    }
+                  ],
+                  'parent' => {},
+                  'type' => 'menu_entry_node'
+                },
+                {
+                  'parent' => {},
+                  'text' => '::',
+                  'type' => 'menu_entry_separator'
+                },
+                {
+                  'contents' => [
+                    {
+                      'parent' => {},
+                      'text' => '
+'
+                    }
+                  ],
+                  'parent' => {},
+                  'type' => 'menu_entry_description'
+                }
+              ],
+              'extra' => {
+                'menu_entry_node' => {
+                  'node_content' => [
+                    {}
+                  ],
+                  'normalized' => 'chapter'
+                }
+              },
+              'line_nr' => {
+                'file_name' => '',
+                'line_nr' => 57,
+                'macro' => ''
+              },
+              'parent' => {},
+              'type' => 'menu_entry'
+            },
+            {
+              'args' => [
+                {
+                  'parent' => {},
+                  'text' => '* ',
+                  'type' => 'menu_entry_leading_text'
+                },
+                {
+                  'contents' => [
+                    {
+                      'parent' => {},
+                      'text' => 'Unnumbered'
+                    }
+                  ],
+                  'parent' => {},
+                  'type' => 'menu_entry_node'
+                },
+                {
+                  'parent' => {},
+                  'text' => '::',
+                  'type' => 'menu_entry_separator'
+                },
+                {
+                  'contents' => [
+                    {
+                      'parent' => {},
+                      'text' => '
+'
+                    }
+                  ],
+                  'parent' => {},
+                  'type' => 'menu_entry_description'
+                }
+              ],
+              'extra' => {
+                'menu_entry_node' => {
+                  'node_content' => [
+                    {}
+                  ],
+                  'normalized' => 'Unnumbered'
+                }
+              },
+              'line_nr' => {
+                'file_name' => '',
+                'line_nr' => 58,
+                'macro' => ''
+              },
+              'parent' => {},
+              'type' => 'menu_entry'
+            },
+            {
+              'args' => [
+                {
+                  'parent' => {},
+                  'text' => '* ',
+                  'type' => 'menu_entry_leading_text'
+                },
+                {
+                  'contents' => [
+                    {
+                      'parent' => {},
+                      'text' => 'Chapter with unnumbsubsec'
+                    }
+                  ],
+                  'parent' => {},
+                  'type' => 'menu_entry_node'
+                },
+                {
+                  'parent' => {},
+                  'text' => '::',
+                  'type' => 'menu_entry_separator'
+                },
+                {
+                  'contents' => [
+                    {
+                      'parent' => {},
+                      'text' => '
+'
+                    }
+                  ],
+                  'parent' => {},
+                  'type' => 'menu_entry_description'
+                }
+              ],
+              'extra' => {
+                'menu_entry_node' => {
+                  'node_content' => [
+                    {}
+                  ],
+                  'normalized' => 'Chapter-with-unnumbsubsec'
+                }
+              },
+              'line_nr' => {
+                'file_name' => '',
+                'line_nr' => 59,
+                'macro' => ''
+              },
+              'parent' => {},
+              'type' => 'menu_entry'
+            },
+            {
+              'args' => [
+                {
+                  'parent' => {},
+                  'text' => '* ',
+                  'type' => 'menu_entry_leading_text'
+                },
+                {
+                  'contents' => [
+                    {
+                      'parent' => {},
+                      'text' => 'Appendix for float'
+                    }
+                  ],
+                  'parent' => {},
+                  'type' => 'menu_entry_node'
+                },
+                {
+                  'parent' => {},
+                  'text' => '::',
+                  'type' => 'menu_entry_separator'
+                },
+                {
+                  'contents' => [
+                    {
+                      'parent' => {},
+                      'text' => '
+'
+                    }
+                  ],
+                  'parent' => {},
+                  'type' => 'menu_entry_description'
+                }
+              ],
+              'extra' => {
+                'menu_entry_node' => {
+                  'node_content' => [
+                    {}
+                  ],
+                  'normalized' => 'Appendix-for-float'
+                }
+              },
+              'line_nr' => {
+                'file_name' => '',
+                'line_nr' => 60,
+                'macro' => ''
+              },
+              'parent' => {},
+              'type' => 'menu_entry'
+            },
+            {
+              'args' => [
+                {
+                  'parent' => {},
+                  'text' => '* ',
+                  'type' => 'menu_entry_leading_text'
+                },
+                {
+                  'contents' => [
+                    {
+                      'parent' => {},
+                      'text' => 'list of floats'
+                    }
+                  ],
+                  'parent' => {},
+                  'type' => 'menu_entry_node'
+                },
+                {
+                  'parent' => {},
+                  'text' => '::',
+                  'type' => 'menu_entry_separator'
+                },
+                {
+                  'contents' => [
+                    {
+                      'parent' => {},
+                      'text' => '
+'
+                    }
+                  ],
+                  'parent' => {},
+                  'type' => 'menu_entry_description'
+                }
+              ],
+              'extra' => {
+                'menu_entry_node' => {
+                  'node_content' => [
+                    {}
+                  ],
+                  'normalized' => 'list-of-floats'
+                }
+              },
+              'line_nr' => {
+                'file_name' => '',
+                'line_nr' => 61,
+                'macro' => ''
+              },
+              'parent' => {},
+              'type' => 'menu_entry'
+            }
+          ],
+          'line_nr' => {
+            'file_name' => '',
+            'line_nr' => 56,
+            'macro' => ''
+          },
+          'parent' => {}
+        },
+        {
+          'parent' => {},
+          'text' => '
+',
+          'type' => 'empty_line_after_command'
+        },
+        {
+          'parent' => {},
+          'text' => '
+',
+          'type' => 'empty_line'
         }
       ],
       'extra' => {
@@ -1245,7 +1524,7 @@
       },
       'line_nr' => {
         'file_name' => '',
-        'line_nr' => 56,
+        'line_nr' => 64,
         'macro' => ''
       },
       'parent' => {}
@@ -1365,7 +1644,7 @@
               },
               'line_nr' => {
                 'file_name' => '',
-                'line_nr' => 62,
+                'line_nr' => 70,
                 'macro' => ''
               },
               'parent' => {}
@@ -1400,7 +1679,7 @@
           'float_section' => {},
           'line_nr' => {
             'file_name' => '',
-            'line_nr' => 59,
+            'line_nr' => 67,
             'macro' => ''
           },
           'number' => '1.1',
@@ -1501,7 +1780,7 @@
               },
               'line_nr' => {
                 'file_name' => '',
-                'line_nr' => 66,
+                'line_nr' => 74,
                 'macro' => ''
               },
               'parent' => {}
@@ -1536,7 +1815,7 @@
           'float_section' => {},
           'line_nr' => {
             'file_name' => '',
-            'line_nr' => 65,
+            'line_nr' => 73,
             'macro' => ''
           },
           'number' => '1.2',
@@ -1721,7 +2000,7 @@
               },
               'line_nr' => {
                 'file_name' => '',
-                'line_nr' => 72,
+                'line_nr' => 80,
                 'macro' => ''
               },
               'parent' => {}
@@ -1764,7 +2043,7 @@
           'float_section' => {},
           'line_nr' => {
             'file_name' => '',
-            'line_nr' => 69,
+            'line_nr' => 77,
             'macro' => ''
           },
           'number' => '1.1',
@@ -1857,7 +2136,7 @@
               },
               'line_nr' => {
                 'file_name' => '',
-                'line_nr' => 78,
+                'line_nr' => 86,
                 'macro' => ''
               },
               'parent' => {}
@@ -1893,7 +2172,7 @@
               },
               'line_nr' => {
                 'file_name' => '',
-                'line_nr' => 79,
+                'line_nr' => 87,
                 'macro' => ''
               },
               'parent' => {}
@@ -1924,7 +2203,7 @@
           'float_section' => {},
           'line_nr' => {
             'file_name' => '',
-            'line_nr' => 75,
+            'line_nr' => 83,
             'macro' => ''
           },
           'number' => '1.1',
@@ -2025,7 +2304,7 @@
               },
               'line_nr' => {
                 'file_name' => '',
-                'line_nr' => 85,
+                'line_nr' => 93,
                 'macro' => ''
               },
               'parent' => {}
@@ -2061,7 +2340,7 @@
               },
               'line_nr' => {
                 'file_name' => '',
-                'line_nr' => 86,
+                'line_nr' => 94,
                 'macro' => ''
               },
               'parent' => {}
@@ -2097,7 +2376,7 @@
           'float_section' => {},
           'line_nr' => {
             'file_name' => '',
-            'line_nr' => 82,
+            'line_nr' => 90,
             'macro' => ''
           },
           'number' => '1.1',
@@ -2168,7 +2447,7 @@
               },
               'line_nr' => {
                 'file_name' => '',
-                'line_nr' => 90,
+                'line_nr' => 98,
                 'macro' => ''
               },
               'parent' => {},
@@ -2177,7 +2456,7 @@
           ],
           'line_nr' => {
             'file_name' => '',
-            'line_nr' => 89,
+            'line_nr' => 97,
             'macro' => ''
           },
           'parent' => {}
@@ -2203,7 +2482,7 @@
       'level' => 1,
       'line_nr' => {
         'file_name' => '',
-        'line_nr' => 57,
+        'line_nr' => 65,
         'macro' => ''
       },
       'number' => 1,
@@ -2249,7 +2528,7 @@
       },
       'line_nr' => {
         'file_name' => '',
-        'line_nr' => 93,
+        'line_nr' => 101,
         'macro' => ''
       },
       'parent' => {}
@@ -2373,7 +2652,7 @@
           'float_section' => {},
           'line_nr' => {
             'file_name' => '',
-            'line_nr' => 96,
+            'line_nr' => 104,
             'macro' => ''
           },
           'number' => '1.3',
@@ -2400,7 +2679,7 @@
       'level' => 2,
       'line_nr' => {
         'file_name' => '',
-        'line_nr' => 94,
+        'line_nr' => 102,
         'macro' => ''
       },
       'number' => '1.1',
@@ -2446,7 +2725,7 @@
       },
       'line_nr' => {
         'file_name' => '',
-        'line_nr' => 102,
+        'line_nr' => 110,
         'macro' => ''
       },
       'parent' => {}
@@ -2536,7 +2815,7 @@
               },
               'line_nr' => {
                 'file_name' => '',
-                'line_nr' => 106,
+                'line_nr' => 114,
                 'macro' => ''
               },
               'parent' => {},
@@ -2545,7 +2824,7 @@
           ],
           'line_nr' => {
             'file_name' => '',
-            'line_nr' => 105,
+            'line_nr' => 113,
             'macro' => ''
           },
           'parent' => {}
@@ -2633,7 +2912,7 @@
               },
               'line_nr' => {
                 'file_name' => '',
-                'line_nr' => 110,
+                'line_nr' => 118,
                 'macro' => ''
               },
               'parent' => {}
@@ -2669,7 +2948,7 @@
               },
               'line_nr' => {
                 'file_name' => '',
-                'line_nr' => 111,
+                'line_nr' => 119,
                 'macro' => ''
               },
               'parent' => {}
@@ -2705,7 +2984,7 @@
           'float_section' => {},
           'line_nr' => {
             'file_name' => '',
-            'line_nr' => 108,
+            'line_nr' => 116,
             'macro' => ''
           },
           'number' => 5,
@@ -2792,7 +3071,7 @@
               },
               'line_nr' => {
                 'file_name' => '',
-                'line_nr' => 116,
+                'line_nr' => 124,
                 'macro' => ''
               },
               'parent' => {}
@@ -2828,7 +3107,7 @@
               },
               'line_nr' => {
                 'file_name' => '',
-                'line_nr' => 117,
+                'line_nr' => 125,
                 'macro' => ''
               },
               'parent' => {}
@@ -2859,7 +3138,7 @@
           'float_section' => {},
           'line_nr' => {
             'file_name' => '',
-            'line_nr' => 113,
+            'line_nr' => 121,
             'macro' => ''
           },
           'number' => 5,
@@ -2892,7 +3171,7 @@
       'level' => 1,
       'line_nr' => {
         'file_name' => '',
-        'line_nr' => 103,
+        'line_nr' => 111,
         'macro' => ''
       },
       'parent' => {}
@@ -2937,7 +3216,7 @@
       },
       'line_nr' => {
         'file_name' => '',
-        'line_nr' => 121,
+        'line_nr' => 129,
         'macro' => ''
       },
       'parent' => {}
@@ -3057,7 +3336,7 @@
               },
               'line_nr' => {
                 'file_name' => '',
-                'line_nr' => 127,
+                'line_nr' => 135,
                 'macro' => ''
               },
               'parent' => {}
@@ -3093,7 +3372,7 @@
               },
               'line_nr' => {
                 'file_name' => '',
-                'line_nr' => 128,
+                'line_nr' => 136,
                 'macro' => ''
               },
               'parent' => {}
@@ -3129,7 +3408,7 @@
           'float_section' => {},
           'line_nr' => {
             'file_name' => '',
-            'line_nr' => 125,
+            'line_nr' => 133,
             'macro' => ''
           },
           'number' => 6,
@@ -3156,7 +3435,7 @@
       'level' => 2,
       'line_nr' => {
         'file_name' => '',
-        'line_nr' => 122,
+        'line_nr' => 130,
         'macro' => ''
       },
       'number' => '1.2',
@@ -3202,7 +3481,7 @@
       },
       'line_nr' => {
         'file_name' => '',
-        'line_nr' => 131,
+        'line_nr' => 139,
         'macro' => ''
       },
       'parent' => {}
@@ -3292,7 +3571,7 @@
               },
               'line_nr' => {
                 'file_name' => '',
-                'line_nr' => 135,
+                'line_nr' => 143,
                 'macro' => ''
               },
               'parent' => {},
@@ -3301,7 +3580,7 @@
           ],
           'line_nr' => {
             'file_name' => '',
-            'line_nr' => 134,
+            'line_nr' => 142,
             'macro' => ''
           },
           'parent' => {}
@@ -3389,7 +3668,7 @@
               },
               'line_nr' => {
                 'file_name' => '',
-                'line_nr' => 139,
+                'line_nr' => 147,
                 'macro' => ''
               },
               'parent' => {}
@@ -3425,7 +3704,7 @@
               },
               'line_nr' => {
                 'file_name' => '',
-                'line_nr' => 140,
+                'line_nr' => 148,
                 'macro' => ''
               },
               'parent' => {}
@@ -3461,7 +3740,7 @@
           'float_section' => {},
           'line_nr' => {
             'file_name' => '',
-            'line_nr' => 137,
+            'line_nr' => 145,
             'macro' => ''
           },
           'number' => '2.1',
@@ -3488,7 +3767,7 @@
       'level' => 1,
       'line_nr' => {
         'file_name' => '',
-        'line_nr' => 132,
+        'line_nr' => 140,
         'macro' => ''
       },
       'number' => 2,
@@ -3534,7 +3813,7 @@
       },
       'line_nr' => {
         'file_name' => '',
-        'line_nr' => 143,
+        'line_nr' => 151,
         'macro' => ''
       },
       'parent' => {}
@@ -3648,7 +3927,7 @@
               },
               'line_nr' => {
                 'file_name' => '',
-                'line_nr' => 148,
+                'line_nr' => 156,
                 'macro' => ''
               },
               'parent' => {}
@@ -3684,7 +3963,7 @@
               },
               'line_nr' => {
                 'file_name' => '',
-                'line_nr' => 149,
+                'line_nr' => 157,
                 'macro' => ''
               },
               'parent' => {}
@@ -3720,7 +3999,7 @@
           'float_section' => {},
           'line_nr' => {
             'file_name' => '',
-            'line_nr' => 146,
+            'line_nr' => 154,
             'macro' => ''
           },
           'number' => '2.2',
@@ -3813,7 +4092,7 @@
               },
               'line_nr' => {
                 'file_name' => '',
-                'line_nr' => 155,
+                'line_nr' => 163,
                 'macro' => ''
               },
               'parent' => {}
@@ -3849,7 +4128,7 @@
               },
               'line_nr' => {
                 'file_name' => '',
-                'line_nr' => 156,
+                'line_nr' => 164,
                 'macro' => ''
               },
               'parent' => {}
@@ -3880,7 +4159,7 @@
           'float_section' => {},
           'line_nr' => {
             'file_name' => '',
-            'line_nr' => 152,
+            'line_nr' => 160,
             'macro' => ''
           },
           'number' => '2.1',
@@ -3907,7 +4186,7 @@
       'level' => 2,
       'line_nr' => {
         'file_name' => '',
-        'line_nr' => 144,
+        'line_nr' => 152,
         'macro' => ''
       },
       'parent' => {}
@@ -3952,7 +4231,7 @@
       },
       'line_nr' => {
         'file_name' => '',
-        'line_nr' => 159,
+        'line_nr' => 167,
         'macro' => ''
       },
       'parent' => {}
@@ -4072,7 +4351,7 @@
               },
               'line_nr' => {
                 'file_name' => '',
-                'line_nr' => 165,
+                'line_nr' => 173,
                 'macro' => ''
               },
               'parent' => {}
@@ -4108,7 +4387,7 @@
               },
               'line_nr' => {
                 'file_name' => '',
-                'line_nr' => 166,
+                'line_nr' => 174,
                 'macro' => ''
               },
               'parent' => {}
@@ -4144,7 +4423,7 @@
           'float_section' => {},
           'line_nr' => {
             'file_name' => '',
-            'line_nr' => 162,
+            'line_nr' => 170,
             'macro' => ''
           },
           'number' => 'A.1',
@@ -4171,7 +4450,7 @@
       'level' => 1,
       'line_nr' => {
         'file_name' => '',
-        'line_nr' => 160,
+        'line_nr' => 168,
         'macro' => ''
       },
       'number' => 'A',
@@ -4217,7 +4496,7 @@
       },
       'line_nr' => {
         'file_name' => '',
-        'line_nr' => 169,
+        'line_nr' => 177,
         'macro' => ''
       },
       'parent' => {}
@@ -4291,7 +4570,7 @@
               },
               'line_nr' => {
                 'file_name' => '',
-                'line_nr' => 172,
+                'line_nr' => 180,
                 'macro' => ''
               },
               'parent' => {}
@@ -4336,7 +4615,7 @@
               },
               'line_nr' => {
                 'file_name' => '',
-                'line_nr' => 173,
+                'line_nr' => 181,
                 'macro' => ''
               },
               'parent' => {}
@@ -4377,7 +4656,7 @@
               },
               'line_nr' => {
                 'file_name' => '',
-                'line_nr' => 174,
+                'line_nr' => 182,
                 'macro' => ''
               },
               'parent' => {}
@@ -4469,7 +4748,7 @@
               },
               'line_nr' => {
                 'file_name' => '',
-                'line_nr' => 177,
+                'line_nr' => 185,
                 'macro' => ''
               },
               'parent' => {}
@@ -4576,7 +4855,7 @@
               },
               'line_nr' => {
                 'file_name' => '',
-                'line_nr' => 180,
+                'line_nr' => 188,
                 'macro' => ''
               },
               'parent' => {}
@@ -4689,7 +4968,7 @@
               },
               'line_nr' => {
                 'file_name' => '',
-                'line_nr' => 183,
+                'line_nr' => 191,
                 'macro' => ''
               },
               'parent' => {}
@@ -4746,7 +5025,7 @@
               },
               'line_nr' => {
                 'file_name' => '',
-                'line_nr' => 185,
+                'line_nr' => 193,
                 'macro' => ''
               },
               'parent' => {}
@@ -4801,7 +5080,7 @@
           },
           'line_nr' => {
             'file_name' => '',
-            'line_nr' => 187,
+            'line_nr' => 195,
             'macro' => ''
           },
           'parent' => {}
@@ -4873,7 +5152,7 @@
           },
           'line_nr' => {
             'file_name' => '',
-            'line_nr' => 188,
+            'line_nr' => 196,
             'macro' => ''
           },
           'parent' => {}
@@ -4893,7 +5172,7 @@
       'level' => 1,
       'line_nr' => {
         'file_name' => '',
-        'line_nr' => 170,
+        'line_nr' => 178,
         'macro' => ''
       },
       'parent' => {}
@@ -5111,6 +5390,50 @@
 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[24]{'parent'}
 = $result_trees{'numbering_captions_listoffloats'}{'contents'}[2];
 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[25]{'parent'}
 = $result_trees{'numbering_captions_listoffloats'}{'contents'}[2];
 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[26]{'parent'}
 = $result_trees{'numbering_captions_listoffloats'}{'contents'}[2];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[0]{'parent'}
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[1]{'args'}[0]{'parent'}
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[1];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[1]{'args'}[1]{'contents'}[0]{'parent'}
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[1]{'args'}[1];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[1]{'args'}[1]{'parent'}
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[1];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[1]{'args'}[2]{'parent'}
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[1];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[1]{'args'}[3]{'contents'}[0]{'parent'}
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[1]{'args'}[3];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[1]{'args'}[3]{'parent'}
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[1];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[1]{'extra'}{'menu_entry_node'}{'node_content'}[0]
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[1]{'args'}[1]{'contents'}[0];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[1]{'parent'}
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[2]{'args'}[0]{'parent'}
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[2];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[2]{'args'}[1]{'contents'}[0]{'parent'}
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[2]{'args'}[1];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[2]{'args'}[1]{'parent'}
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[2];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[2]{'args'}[2]{'parent'}
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[2];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[2]{'args'}[3]{'contents'}[0]{'parent'}
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[2]{'args'}[3];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[2]{'args'}[3]{'parent'}
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[2];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[2]{'extra'}{'menu_entry_node'}{'node_content'}[0]
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[2]{'args'}[1]{'contents'}[0];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[2]{'parent'}
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[3]{'args'}[0]{'parent'}
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[3];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[3]{'args'}[1]{'contents'}[0]{'parent'}
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[3]{'args'}[1];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[3]{'args'}[1]{'parent'}
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[3];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[3]{'args'}[2]{'parent'}
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[3];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[3]{'args'}[3]{'contents'}[0]{'parent'}
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[3]{'args'}[3];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[3]{'args'}[3]{'parent'}
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[3];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[3]{'extra'}{'menu_entry_node'}{'node_content'}[0]
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[3]{'args'}[1]{'contents'}[0];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[3]{'parent'}
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[4]{'args'}[0]{'parent'}
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[4];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[4]{'args'}[1]{'contents'}[0]{'parent'}
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[4]{'args'}[1];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[4]{'args'}[1]{'parent'}
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[4];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[4]{'args'}[2]{'parent'}
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[4];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[4]{'args'}[3]{'contents'}[0]{'parent'}
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[4]{'args'}[3];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[4]{'args'}[3]{'parent'}
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[4];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[4]{'extra'}{'menu_entry_node'}{'node_content'}[0]
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[4]{'args'}[1]{'contents'}[0];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[4]{'parent'}
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[5]{'args'}[0]{'parent'}
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[5];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[5]{'args'}[1]{'contents'}[0]{'parent'}
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[5]{'args'}[1];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[5]{'args'}[1]{'parent'}
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[5];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[5]{'args'}[2]{'parent'}
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[5];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[5]{'args'}[3]{'contents'}[0]{'parent'}
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[5]{'args'}[3];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[5]{'args'}[3]{'parent'}
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[5];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[5]{'extra'}{'menu_entry_node'}{'node_content'}[0]
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[5]{'args'}[1]{'contents'}[0];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'contents'}[5]{'parent'}
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[27]{'parent'}
 = $result_trees{'numbering_captions_listoffloats'}{'contents'}[2];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[28]{'parent'}
 = $result_trees{'numbering_captions_listoffloats'}{'contents'}[2];
+$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'contents'}[29]{'parent'}
 = $result_trees{'numbering_captions_listoffloats'}{'contents'}[2];
 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'extra'}{'misc_content'}[0]
 = 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'args'}[0]{'contents'}[1];
 $result_trees{'numbering_captions_listoffloats'}{'contents'}[2]{'parent'} = 
$result_trees{'numbering_captions_listoffloats'};
 
$result_trees{'numbering_captions_listoffloats'}{'contents'}[3]{'args'}[0]{'contents'}[0]{'parent'}
 = $result_trees{'numbering_captions_listoffloats'}{'contents'}[3]{'args'}[0];
@@ -5810,6 +6133,14 @@
 @shortcaption{SC A warning}
 @end float
 
address@hidden
+* chapter::
+* Unnumbered::
+* Chapter with unnumbsubsec::
+* Appendix for float::
+* list of floats::
address@hidden menu
+
 @node chapter
 @chapter A chapter
 
@@ -5987,6 +6318,12 @@
 
 
 
+* chapter::
+* Unnumbered::
+* Chapter with unnumbsubsec::
+* Appendix for float::
+* list of floats::
+
 1 A chapter
 ***********
 
@@ -6252,6 +6589,133 @@
     },
     'normalized' => 'Top'
   },
+  'menu_child' => {
+    'cmdname' => 'node',
+    'extra' => {
+      'associated_section' => {
+        'cmdname' => 'chapter',
+        'extra' => {},
+        'level' => 1,
+        'number' => 1
+      },
+      'normalized' => 'chapter'
+    },
+    'menu_child' => {
+      'cmdname' => 'node',
+      'extra' => {
+        'associated_section' => {
+          'cmdname' => 'section',
+          'extra' => {},
+          'level' => 2,
+          'number' => '1.1'
+        },
+        'normalized' => 'section'
+      },
+      'node_up' => {}
+    },
+    'menus' => [
+      {
+        'cmdname' => 'menu'
+      }
+    ],
+    'node_next' => {
+      'cmdname' => 'node',
+      'extra' => {
+        'associated_section' => {
+          'cmdname' => 'unnumbered',
+          'extra' => {},
+          'level' => 1
+        },
+        'normalized' => 'Unnumbered'
+      },
+      'menu_child' => {
+        'cmdname' => 'node',
+        'extra' => {
+          'associated_section' => {
+            'cmdname' => 'section',
+            'extra' => {},
+            'level' => 2,
+            'number' => '1.2'
+          },
+          'normalized' => 'Section-within-unnumbered'
+        },
+        'node_up' => {}
+      },
+      'menus' => [
+        {
+          'cmdname' => 'menu'
+        }
+      ],
+      'node_next' => {
+        'cmdname' => 'node',
+        'extra' => {
+          'associated_section' => {
+            'cmdname' => 'chapter',
+            'extra' => {},
+            'level' => 1,
+            'number' => 2
+          },
+          'normalized' => 'Chapter-with-unnumbsubsec'
+        },
+        'menu_child' => {
+          'cmdname' => 'node',
+          'extra' => {
+            'associated_section' => {
+              'cmdname' => 'unnumberedsec',
+              'extra' => {},
+              'level' => 2
+            },
+            'normalized' => 'unnumbered-sec'
+          },
+          'node_up' => {}
+        },
+        'menus' => [
+          {
+            'cmdname' => 'menu'
+          }
+        ],
+        'node_next' => {
+          'cmdname' => 'node',
+          'extra' => {
+            'associated_section' => {
+              'cmdname' => 'appendix',
+              'extra' => {},
+              'level' => 1,
+              'number' => 'A'
+            },
+            'normalized' => 'Appendix-for-float'
+          },
+          'node_next' => {
+            'cmdname' => 'node',
+            'extra' => {
+              'associated_section' => {
+                'cmdname' => 'unnumbered',
+                'extra' => {},
+                'level' => 1
+              },
+              'normalized' => 'list-of-floats'
+            },
+            'node_prev' => {},
+            'node_up' => {}
+          },
+          'node_prev' => {},
+          'node_up' => {}
+        },
+        'node_prev' => {},
+        'node_up' => {}
+      },
+      'node_prev' => {},
+      'node_up' => {}
+    },
+    'node_prev' => {},
+    'node_up' => {}
+  },
+  'menus' => [
+    {
+      'cmdname' => 'menu'
+    }
+  ],
+  'node_next' => {},
   'node_up' => {
     'extra' => {
       'manual_content' => [
@@ -6262,61 +6726,125 @@
     }
   }
 };
+$result_nodes{'numbering_captions_listoffloats'}{'menu_child'}{'menu_child'}{'node_up'}
 = $result_nodes{'numbering_captions_listoffloats'}{'menu_child'};
+$result_nodes{'numbering_captions_listoffloats'}{'menu_child'}{'node_next'}{'menu_child'}{'node_up'}
 = $result_nodes{'numbering_captions_listoffloats'}{'menu_child'}{'node_next'};
+$result_nodes{'numbering_captions_listoffloats'}{'menu_child'}{'node_next'}{'node_next'}{'menu_child'}{'node_up'}
 = 
$result_nodes{'numbering_captions_listoffloats'}{'menu_child'}{'node_next'}{'node_next'};
+$result_nodes{'numbering_captions_listoffloats'}{'menu_child'}{'node_next'}{'node_next'}{'node_next'}{'node_next'}{'node_prev'}
 = 
$result_nodes{'numbering_captions_listoffloats'}{'menu_child'}{'node_next'}{'node_next'}{'node_next'};
+$result_nodes{'numbering_captions_listoffloats'}{'menu_child'}{'node_next'}{'node_next'}{'node_next'}{'node_next'}{'node_up'}
 = $result_nodes{'numbering_captions_listoffloats'};
+$result_nodes{'numbering_captions_listoffloats'}{'menu_child'}{'node_next'}{'node_next'}{'node_next'}{'node_prev'}
 = 
$result_nodes{'numbering_captions_listoffloats'}{'menu_child'}{'node_next'}{'node_next'};
+$result_nodes{'numbering_captions_listoffloats'}{'menu_child'}{'node_next'}{'node_next'}{'node_next'}{'node_up'}
 = $result_nodes{'numbering_captions_listoffloats'};
+$result_nodes{'numbering_captions_listoffloats'}{'menu_child'}{'node_next'}{'node_next'}{'node_prev'}
 = $result_nodes{'numbering_captions_listoffloats'}{'menu_child'}{'node_next'};
+$result_nodes{'numbering_captions_listoffloats'}{'menu_child'}{'node_next'}{'node_next'}{'node_up'}
 = $result_nodes{'numbering_captions_listoffloats'};
+$result_nodes{'numbering_captions_listoffloats'}{'menu_child'}{'node_next'}{'node_prev'}
 = $result_nodes{'numbering_captions_listoffloats'}{'menu_child'};
+$result_nodes{'numbering_captions_listoffloats'}{'menu_child'}{'node_next'}{'node_up'}
 = $result_nodes{'numbering_captions_listoffloats'};
+$result_nodes{'numbering_captions_listoffloats'}{'menu_child'}{'node_prev'} = 
$result_nodes{'numbering_captions_listoffloats'};
+$result_nodes{'numbering_captions_listoffloats'}{'menu_child'}{'node_up'} = 
$result_nodes{'numbering_captions_listoffloats'};
+$result_nodes{'numbering_captions_listoffloats'}{'node_next'} = 
$result_nodes{'numbering_captions_listoffloats'}{'menu_child'};
 
 $result_menus{'numbering_captions_listoffloats'} = {
   'cmdname' => 'node',
   'extra' => {
     'normalized' => 'Top'
+  },
+  'menu_child' => {
+    'cmdname' => 'node',
+    'extra' => {
+      'normalized' => 'chapter'
+    },
+    'menu_child' => {
+      'cmdname' => 'node',
+      'extra' => {
+        'normalized' => 'section'
+      },
+      'menu_up' => {},
+      'menu_up_hash' => {
+        'chapter' => 1
   }
-};
-
-$result_errors{'numbering_captions_listoffloats'} = [
-  {
-    'error_line' => ':56: warning: unreferenced node `chapter\'
-',
-    'file_name' => '',
-    'line_nr' => 56,
-    'macro' => '',
-    'text' => 'unreferenced node `chapter\'',
-    'type' => 'warning'
   },
-  {
-    'error_line' => ':102: warning: unreferenced node `Unnumbered\'
-',
-    'file_name' => '',
-    'line_nr' => 102,
-    'macro' => '',
-    'text' => 'unreferenced node `Unnumbered\'',
-    'type' => 'warning'
+    'menu_next' => {
+      'cmdname' => 'node',
+      'extra' => {
+        'normalized' => 'Unnumbered'
   },
-  {
-    'error_line' => ':131: warning: unreferenced node `Chapter with 
unnumbsubsec\'
-',
-    'file_name' => '',
-    'line_nr' => 131,
-    'macro' => '',
-    'text' => 'unreferenced node `Chapter with unnumbsubsec\'',
-    'type' => 'warning'
+      'menu_child' => {
+        'cmdname' => 'node',
+        'extra' => {
+          'normalized' => 'Section-within-unnumbered'
   },
-  {
-    'error_line' => ':159: warning: unreferenced node `Appendix for float\'
-',
-    'file_name' => '',
-    'line_nr' => 159,
-    'macro' => '',
-    'text' => 'unreferenced node `Appendix for float\'',
-    'type' => 'warning'
+        'menu_up' => {},
+        'menu_up_hash' => {
+          'Unnumbered' => 1
+        }
   },
-  {
-    'error_line' => ':169: warning: unreferenced node `list of floats\'
-',
-    'file_name' => '',
-    'line_nr' => 169,
-    'macro' => '',
-    'text' => 'unreferenced node `list of floats\'',
-    'type' => 'warning'
+      'menu_next' => {
+        'cmdname' => 'node',
+        'extra' => {
+          'normalized' => 'Chapter-with-unnumbsubsec'
+        },
+        'menu_child' => {
+          'cmdname' => 'node',
+          'extra' => {
+            'normalized' => 'unnumbered-sec'
+          },
+          'menu_up' => {},
+          'menu_up_hash' => {
+            'Chapter-with-unnumbsubsec' => 1
   }
-];
+        },
+        'menu_next' => {
+          'cmdname' => 'node',
+          'extra' => {
+            'normalized' => 'Appendix-for-float'
+          },
+          'menu_next' => {
+            'cmdname' => 'node',
+            'extra' => {
+              'normalized' => 'list-of-floats'
+            },
+            'menu_prev' => {},
+            'menu_up' => {},
+            'menu_up_hash' => {
+              'Top' => 1
+            }
+          },
+          'menu_prev' => {},
+          'menu_up' => {},
+          'menu_up_hash' => {
+            'Top' => 1
+          }
+        },
+        'menu_prev' => {},
+        'menu_up' => {},
+        'menu_up_hash' => {
+          'Top' => 1
+        }
+      },
+      'menu_prev' => {},
+      'menu_up' => {},
+      'menu_up_hash' => {
+        'Top' => 1
+      }
+    },
+    'menu_up' => {},
+    'menu_up_hash' => {
+      'Top' => 1
+    }
+  }
+};
+$result_menus{'numbering_captions_listoffloats'}{'menu_child'}{'menu_child'}{'menu_up'}
 = $result_menus{'numbering_captions_listoffloats'}{'menu_child'};
+$result_menus{'numbering_captions_listoffloats'}{'menu_child'}{'menu_next'}{'menu_child'}{'menu_up'}
 = $result_menus{'numbering_captions_listoffloats'}{'menu_child'}{'menu_next'};
+$result_menus{'numbering_captions_listoffloats'}{'menu_child'}{'menu_next'}{'menu_next'}{'menu_child'}{'menu_up'}
 = 
$result_menus{'numbering_captions_listoffloats'}{'menu_child'}{'menu_next'}{'menu_next'};
+$result_menus{'numbering_captions_listoffloats'}{'menu_child'}{'menu_next'}{'menu_next'}{'menu_next'}{'menu_next'}{'menu_prev'}
 = 
$result_menus{'numbering_captions_listoffloats'}{'menu_child'}{'menu_next'}{'menu_next'}{'menu_next'};
+$result_menus{'numbering_captions_listoffloats'}{'menu_child'}{'menu_next'}{'menu_next'}{'menu_next'}{'menu_next'}{'menu_up'}
 = $result_menus{'numbering_captions_listoffloats'};
+$result_menus{'numbering_captions_listoffloats'}{'menu_child'}{'menu_next'}{'menu_next'}{'menu_next'}{'menu_prev'}
 = 
$result_menus{'numbering_captions_listoffloats'}{'menu_child'}{'menu_next'}{'menu_next'};
+$result_menus{'numbering_captions_listoffloats'}{'menu_child'}{'menu_next'}{'menu_next'}{'menu_next'}{'menu_up'}
 = $result_menus{'numbering_captions_listoffloats'};
+$result_menus{'numbering_captions_listoffloats'}{'menu_child'}{'menu_next'}{'menu_next'}{'menu_prev'}
 = $result_menus{'numbering_captions_listoffloats'}{'menu_child'}{'menu_next'};
+$result_menus{'numbering_captions_listoffloats'}{'menu_child'}{'menu_next'}{'menu_next'}{'menu_up'}
 = $result_menus{'numbering_captions_listoffloats'};
+$result_menus{'numbering_captions_listoffloats'}{'menu_child'}{'menu_next'}{'menu_prev'}
 = $result_menus{'numbering_captions_listoffloats'}{'menu_child'};
+$result_menus{'numbering_captions_listoffloats'}{'menu_child'}{'menu_next'}{'menu_up'}
 = $result_menus{'numbering_captions_listoffloats'};
+$result_menus{'numbering_captions_listoffloats'}{'menu_child'}{'menu_up'} = 
$result_menus{'numbering_captions_listoffloats'};
+
+$result_errors{'numbering_captions_listoffloats'} = [];
 
 
 $result_floats{'numbering_captions_listoffloats'} = {
@@ -6946,6 +7474,14 @@
 
 Warning 1: C A warning
 
+* Menu:
+
+* chapter::
+* Unnumbered::
+* Chapter with unnumbsubsec::
+* Appendix for float::
+* list of floats::
+
 1 A chapter
 ***********
 

Index: t/results/sectioning/nodename_parentheses.pl
===================================================================
RCS file: 
/sources/texinfo/texinfo/tp/t/results/sectioning/nodename_parentheses.pl,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -b -r1.32 -r1.33
--- t/results/sectioning/nodename_parentheses.pl        20 Feb 2011 12:18:40 
-0000      1.32
+++ t/results/sectioning/nodename_parentheses.pl        27 Feb 2011 20:15:27 
-0000      1.33
@@ -1068,6 +1068,20 @@
         },
         'normalized' => 'Other-node'
       },
+      'node_next' => {
+        'cmdname' => 'node',
+        'extra' => {
+          'associated_section' => {
+            'cmdname' => 'chapter',
+            'extra' => {},
+            'level' => 1,
+            'number' => 3
+          },
+          'normalized' => 'node'
+        },
+        'node_prev' => {},
+        'node_up' => {}
+      },
       'node_prev' => {},
       'node_up' => {}
     },
@@ -1090,6 +1104,8 @@
     }
   }
 };
+$result_nodes{'nodename_parentheses'}{'menu_child'}{'node_next'}{'node_next'}{'node_prev'}
 = $result_nodes{'nodename_parentheses'}{'menu_child'}{'node_next'};
+$result_nodes{'nodename_parentheses'}{'menu_child'}{'node_next'}{'node_next'}{'node_up'}
 = $result_nodes{'nodename_parentheses'};
 $result_nodes{'nodename_parentheses'}{'menu_child'}{'node_next'}{'node_prev'} 
= $result_nodes{'nodename_parentheses'}{'menu_child'};
 $result_nodes{'nodename_parentheses'}{'menu_child'}{'node_next'}{'node_up'} = 
$result_nodes{'nodename_parentheses'};
 $result_nodes{'nodename_parentheses'}{'menu_child'}{'node_prev'} = 
$result_nodes{'nodename_parentheses'};
@@ -1149,6 +1165,15 @@
     'type' => 'error'
   },
   {
+    'error_line' => ':15: warning: No node following `Other node\' in menu, 
but `node\' follows in sectioning
+',
+    'file_name' => '',
+    'line_nr' => 15,
+    'macro' => '',
+    'text' => 'No node following `Other node\' in menu, but `node\' follows in 
sectioning',
+    'type' => 'warning'
+  },
+  {
     'error_line' => ':22: warning: unreferenced node `node\'
 ',
     'file_name' => '',
@@ -1156,6 +1181,15 @@
     'macro' => '',
     'text' => 'unreferenced node `node\'',
     'type' => 'warning'
+  },
+  {
+    'error_line' => ':1: Node `Top\' lacks menu item for `node\' despite being 
its Up target
+',
+    'file_name' => '',
+    'line_nr' => 1,
+    'macro' => '',
+    'text' => 'Node `Top\' lacks menu item for `node\' despite being its Up 
target',
+    'type' => 'error'
   }
 ];
 

Index: t/results/sectioning/semi_auto.pl
===================================================================
RCS file: /sources/texinfo/texinfo/tp/t/results/sectioning/semi_auto.pl,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -b -r1.9 -r1.10
--- t/results/sectioning/semi_auto.pl   15 Feb 2011 21:40:47 -0000      1.9
+++ t/results/sectioning/semi_auto.pl   27 Feb 2011 20:15:27 -0000      1.10
@@ -866,13 +866,6 @@
         },
         'normalized' => 'Sec-in-chapter'
       },
-      'node_up' => {}
-    },
-    'menus' => [
-      {
-        'cmdname' => 'menu'
-      }
-    ],
     'node_next' => {
       'cmdname' => 'node',
       'extra' => {
@@ -887,6 +880,14 @@
       'node_prev' => {},
       'node_up' => {}
     },
+      'node_up' => {}
+    },
+    'menus' => [
+      {
+        'cmdname' => 'menu'
+      }
+    ],
+    'node_next' => {},
     'node_prev' => {},
     'node_up' => {}
   },
@@ -906,9 +907,10 @@
     }
   }
 };
+$result_nodes{'semi_auto'}{'menu_child'}{'menu_child'}{'node_next'}{'node_prev'}
 = $result_nodes{'semi_auto'}{'menu_child'};
+$result_nodes{'semi_auto'}{'menu_child'}{'menu_child'}{'node_next'}{'node_up'} 
= $result_nodes{'semi_auto'};
 $result_nodes{'semi_auto'}{'menu_child'}{'menu_child'}{'node_up'} = 
$result_nodes{'semi_auto'}{'menu_child'};
-$result_nodes{'semi_auto'}{'menu_child'}{'node_next'}{'node_prev'} = 
$result_nodes{'semi_auto'}{'menu_child'};
-$result_nodes{'semi_auto'}{'menu_child'}{'node_next'}{'node_up'} = 
$result_nodes{'semi_auto'};
+$result_nodes{'semi_auto'}{'menu_child'}{'node_next'} = 
$result_nodes{'semi_auto'}{'menu_child'}{'menu_child'}{'node_next'};
 $result_nodes{'semi_auto'}{'menu_child'}{'node_prev'} = 
$result_nodes{'semi_auto'};
 $result_nodes{'semi_auto'}{'menu_child'}{'node_up'} = 
$result_nodes{'semi_auto'};
 $result_nodes{'semi_auto'}{'node_next'} = 
$result_nodes{'semi_auto'}{'menu_child'};
@@ -955,7 +957,17 @@
 $result_menus{'semi_auto'}{'menu_child'}{'menu_next'}{'menu_up'} = 
$result_menus{'semi_auto'};
 $result_menus{'semi_auto'}{'menu_child'}{'menu_up'} = 
$result_menus{'semi_auto'};
 
-$result_errors{'semi_auto'} = [];
+$result_errors{'semi_auto'} = [
+  {
+    'error_line' => ':16: warning: No node following `Sec in chapter\' in 
menu, but `Section non auto\' follows in sectioning
+',
+    'file_name' => '',
+    'line_nr' => 16,
+    'macro' => '',
+    'text' => 'No node following `Sec in chapter\' in menu, but `Section non 
auto\' follows in sectioning',
+    'type' => 'warning'
+  }
+];
 
 
 1;

Index: t/results/sectioning/hole_in_sectioning.pl
===================================================================
RCS file: t/results/sectioning/hole_in_sectioning.pl
diff -N t/results/sectioning/hole_in_sectioning.pl
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ t/results/sectioning/hole_in_sectioning.pl  27 Feb 2011 20:15:27 -0000      
1.1
@@ -0,0 +1,372 @@
+use vars qw(%result_texis %result_texts %result_trees %result_errors 
+   %result_indices %result_sectioning %result_nodes %result_menus
+   %result_floats %result_converted %result_converted_errors);
+
+$result_trees{'hole_in_sectioning'} = {
+  'contents' => [
+    {
+      'contents' => [],
+      'parent' => {},
+      'type' => 'text_root'
+    },
+    {
+      'args' => [
+        {
+          'contents' => [
+            {
+              'parent' => {},
+              'text' => ' ',
+              'type' => 'empty_spaces_after_command'
+            },
+            {
+              'parent' => {},
+              'text' => 'Top'
+            },
+            {
+              'parent' => {},
+              'text' => '
+',
+              'type' => 'spaces_at_end'
+            }
+          ],
+          'parent' => {},
+          'type' => 'misc_line_arg'
+        }
+      ],
+      'cmdname' => 'top',
+      'contents' => [
+        {
+          'parent' => {},
+          'text' => '
+',
+          'type' => 'empty_line'
+        }
+      ],
+      'extra' => {
+        'misc_content' => [
+          {}
+        ]
+      },
+      'level' => 0,
+      'line_nr' => {
+        'file_name' => '',
+        'line_nr' => 1,
+        'macro' => ''
+      },
+      'parent' => {}
+    },
+    {
+      'args' => [
+        {
+          'contents' => [
+            {
+              'parent' => {},
+              'text' => ' ',
+              'type' => 'empty_spaces_after_command'
+            },
+            {
+              'parent' => {},
+              'text' => 'Chapter'
+            },
+            {
+              'parent' => {},
+              'text' => '
+',
+              'type' => 'spaces_at_end'
+            }
+          ],
+          'parent' => {},
+          'type' => 'misc_line_arg'
+        }
+      ],
+      'cmdname' => 'chapter',
+      'contents' => [
+        {
+          'parent' => {},
+          'text' => '
+',
+          'type' => 'empty_line'
+        }
+      ],
+      'extra' => {
+        'misc_content' => [
+          {}
+        ]
+      },
+      'level' => 1,
+      'line_nr' => {
+        'file_name' => '',
+        'line_nr' => 3,
+        'macro' => ''
+      },
+      'number' => 1,
+      'parent' => {}
+    },
+    {
+      'args' => [
+        {
+          'contents' => [
+            {
+              'parent' => {},
+              'text' => ' ',
+              'type' => 'empty_spaces_after_command'
+            },
+            {
+              'parent' => {},
+              'text' => 'section'
+            },
+            {
+              'parent' => {},
+              'text' => '
+',
+              'type' => 'spaces_at_end'
+            }
+          ],
+          'parent' => {},
+          'type' => 'misc_line_arg'
+        }
+      ],
+      'cmdname' => 'section',
+      'contents' => [
+        {
+          'parent' => {},
+          'text' => '
+',
+          'type' => 'empty_line'
+        }
+      ],
+      'extra' => {
+        'misc_content' => [
+          {}
+        ]
+      },
+      'level' => 2,
+      'line_nr' => {
+        'file_name' => '',
+        'line_nr' => 5,
+        'macro' => ''
+      },
+      'number' => '1.1',
+      'parent' => {}
+    },
+    {
+      'args' => [
+        {
+          'contents' => [
+            {
+              'parent' => {},
+              'text' => ' ',
+              'type' => 'empty_spaces_after_command'
+            },
+            {
+              'parent' => {},
+              'text' => 'subsubsection with no subsection above'
+            },
+            {
+              'parent' => {},
+              'text' => '
+',
+              'type' => 'spaces_at_end'
+            }
+          ],
+          'parent' => {},
+          'type' => 'misc_line_arg'
+        }
+      ],
+      'cmdname' => 'subsubsection',
+      'contents' => [
+        {
+          'parent' => {},
+          'text' => '
+',
+          'type' => 'empty_line'
+        }
+      ],
+      'extra' => {
+        'misc_content' => [
+          {}
+        ]
+      },
+      'level' => 3,
+      'line_nr' => {
+        'file_name' => '',
+        'line_nr' => 7,
+        'macro' => ''
+      },
+      'number' => '1.1.1',
+      'parent' => {}
+    },
+    {
+      'args' => [
+        {
+          'contents' => [
+            {
+              'parent' => {},
+              'text' => ' ',
+              'type' => 'empty_spaces_after_command'
+            },
+            {
+              'parent' => {},
+              'text' => 'the subsection'
+            },
+            {
+              'parent' => {},
+              'text' => '
+',
+              'type' => 'spaces_at_end'
+            }
+          ],
+          'parent' => {},
+          'type' => 'misc_line_arg'
+        }
+      ],
+      'cmdname' => 'subsection',
+      'contents' => [],
+      'extra' => {
+        'misc_content' => [
+          {}
+        ]
+      },
+      'level' => 3,
+      'line_nr' => {
+        'file_name' => '',
+        'line_nr' => 9,
+        'macro' => ''
+      },
+      'number' => '1.1.2',
+      'parent' => {}
+    }
+  ],
+  'type' => 'document_root'
+};
+$result_trees{'hole_in_sectioning'}{'contents'}[0]{'parent'} = 
$result_trees{'hole_in_sectioning'};
+$result_trees{'hole_in_sectioning'}{'contents'}[1]{'args'}[0]{'contents'}[0]{'parent'}
 = $result_trees{'hole_in_sectioning'}{'contents'}[1]{'args'}[0];
+$result_trees{'hole_in_sectioning'}{'contents'}[1]{'args'}[0]{'contents'}[1]{'parent'}
 = $result_trees{'hole_in_sectioning'}{'contents'}[1]{'args'}[0];
+$result_trees{'hole_in_sectioning'}{'contents'}[1]{'args'}[0]{'contents'}[2]{'parent'}
 = $result_trees{'hole_in_sectioning'}{'contents'}[1]{'args'}[0];
+$result_trees{'hole_in_sectioning'}{'contents'}[1]{'args'}[0]{'parent'} = 
$result_trees{'hole_in_sectioning'}{'contents'}[1];
+$result_trees{'hole_in_sectioning'}{'contents'}[1]{'contents'}[0]{'parent'} = 
$result_trees{'hole_in_sectioning'}{'contents'}[1];
+$result_trees{'hole_in_sectioning'}{'contents'}[1]{'extra'}{'misc_content'}[0] 
= $result_trees{'hole_in_sectioning'}{'contents'}[1]{'args'}[0]{'contents'}[1];
+$result_trees{'hole_in_sectioning'}{'contents'}[1]{'parent'} = 
$result_trees{'hole_in_sectioning'};
+$result_trees{'hole_in_sectioning'}{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'}
 = $result_trees{'hole_in_sectioning'}{'contents'}[2]{'args'}[0];
+$result_trees{'hole_in_sectioning'}{'contents'}[2]{'args'}[0]{'contents'}[1]{'parent'}
 = $result_trees{'hole_in_sectioning'}{'contents'}[2]{'args'}[0];
+$result_trees{'hole_in_sectioning'}{'contents'}[2]{'args'}[0]{'contents'}[2]{'parent'}
 = $result_trees{'hole_in_sectioning'}{'contents'}[2]{'args'}[0];
+$result_trees{'hole_in_sectioning'}{'contents'}[2]{'args'}[0]{'parent'} = 
$result_trees{'hole_in_sectioning'}{'contents'}[2];
+$result_trees{'hole_in_sectioning'}{'contents'}[2]{'contents'}[0]{'parent'} = 
$result_trees{'hole_in_sectioning'}{'contents'}[2];
+$result_trees{'hole_in_sectioning'}{'contents'}[2]{'extra'}{'misc_content'}[0] 
= $result_trees{'hole_in_sectioning'}{'contents'}[2]{'args'}[0]{'contents'}[1];
+$result_trees{'hole_in_sectioning'}{'contents'}[2]{'parent'} = 
$result_trees{'hole_in_sectioning'};
+$result_trees{'hole_in_sectioning'}{'contents'}[3]{'args'}[0]{'contents'}[0]{'parent'}
 = $result_trees{'hole_in_sectioning'}{'contents'}[3]{'args'}[0];
+$result_trees{'hole_in_sectioning'}{'contents'}[3]{'args'}[0]{'contents'}[1]{'parent'}
 = $result_trees{'hole_in_sectioning'}{'contents'}[3]{'args'}[0];
+$result_trees{'hole_in_sectioning'}{'contents'}[3]{'args'}[0]{'contents'}[2]{'parent'}
 = $result_trees{'hole_in_sectioning'}{'contents'}[3]{'args'}[0];
+$result_trees{'hole_in_sectioning'}{'contents'}[3]{'args'}[0]{'parent'} = 
$result_trees{'hole_in_sectioning'}{'contents'}[3];
+$result_trees{'hole_in_sectioning'}{'contents'}[3]{'contents'}[0]{'parent'} = 
$result_trees{'hole_in_sectioning'}{'contents'}[3];
+$result_trees{'hole_in_sectioning'}{'contents'}[3]{'extra'}{'misc_content'}[0] 
= $result_trees{'hole_in_sectioning'}{'contents'}[3]{'args'}[0]{'contents'}[1];
+$result_trees{'hole_in_sectioning'}{'contents'}[3]{'parent'} = 
$result_trees{'hole_in_sectioning'};
+$result_trees{'hole_in_sectioning'}{'contents'}[4]{'args'}[0]{'contents'}[0]{'parent'}
 = $result_trees{'hole_in_sectioning'}{'contents'}[4]{'args'}[0];
+$result_trees{'hole_in_sectioning'}{'contents'}[4]{'args'}[0]{'contents'}[1]{'parent'}
 = $result_trees{'hole_in_sectioning'}{'contents'}[4]{'args'}[0];
+$result_trees{'hole_in_sectioning'}{'contents'}[4]{'args'}[0]{'contents'}[2]{'parent'}
 = $result_trees{'hole_in_sectioning'}{'contents'}[4]{'args'}[0];
+$result_trees{'hole_in_sectioning'}{'contents'}[4]{'args'}[0]{'parent'} = 
$result_trees{'hole_in_sectioning'}{'contents'}[4];
+$result_trees{'hole_in_sectioning'}{'contents'}[4]{'contents'}[0]{'parent'} = 
$result_trees{'hole_in_sectioning'}{'contents'}[4];
+$result_trees{'hole_in_sectioning'}{'contents'}[4]{'extra'}{'misc_content'}[0] 
= $result_trees{'hole_in_sectioning'}{'contents'}[4]{'args'}[0]{'contents'}[1];
+$result_trees{'hole_in_sectioning'}{'contents'}[4]{'parent'} = 
$result_trees{'hole_in_sectioning'};
+$result_trees{'hole_in_sectioning'}{'contents'}[5]{'args'}[0]{'contents'}[0]{'parent'}
 = $result_trees{'hole_in_sectioning'}{'contents'}[5]{'args'}[0];
+$result_trees{'hole_in_sectioning'}{'contents'}[5]{'args'}[0]{'contents'}[1]{'parent'}
 = $result_trees{'hole_in_sectioning'}{'contents'}[5]{'args'}[0];
+$result_trees{'hole_in_sectioning'}{'contents'}[5]{'args'}[0]{'contents'}[2]{'parent'}
 = $result_trees{'hole_in_sectioning'}{'contents'}[5]{'args'}[0];
+$result_trees{'hole_in_sectioning'}{'contents'}[5]{'args'}[0]{'parent'} = 
$result_trees{'hole_in_sectioning'}{'contents'}[5];
+$result_trees{'hole_in_sectioning'}{'contents'}[5]{'extra'}{'misc_content'}[0] 
= $result_trees{'hole_in_sectioning'}{'contents'}[5]{'args'}[0]{'contents'}[1];
+$result_trees{'hole_in_sectioning'}{'contents'}[5]{'parent'} = 
$result_trees{'hole_in_sectioning'};
+
+$result_texis{'hole_in_sectioning'} = '@top Top
+
address@hidden Chapter
+
address@hidden section
+
address@hidden subsubsection with no subsection above
+
address@hidden the subsection
+';
+
+
+$result_texts{'hole_in_sectioning'} = 'Top
+***
+
+1 Chapter
+*********
+
+1.1 section
+===========
+
+1.1.1 subsubsection with no subsection above
+--------------------------------------------
+
+1.1.2 the subsection
+--------------------
+';
+
+$result_sectioning{'hole_in_sectioning'} = {
+  'level' => -1,
+  'section_childs' => [
+    {
+      'cmdname' => 'top',
+      'extra' => {},
+      'level' => 0,
+      'section_childs' => [
+        {
+          'cmdname' => 'chapter',
+          'extra' => {},
+          'level' => 1,
+          'number' => 1,
+          'section_childs' => [
+            {
+              'cmdname' => 'section',
+              'extra' => {},
+              'level' => 2,
+              'number' => '1.1',
+              'section_childs' => [
+                {
+                  'cmdname' => 'subsubsection',
+                  'extra' => {},
+                  'level' => 3,
+                  'number' => '1.1.1',
+                  'section_up' => {}
+                },
+                {
+                  'cmdname' => 'subsection',
+                  'extra' => {},
+                  'level' => 3,
+                  'number' => '1.1.2',
+                  'section_prev' => {},
+                  'section_up' => {}
+                }
+              ],
+              'section_up' => {}
+            }
+          ],
+          'section_up' => {}
+        }
+      ],
+      'section_up' => {}
+    }
+  ]
+};
+$result_sectioning{'hole_in_sectioning'}{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_up'}
 = 
$result_sectioning{'hole_in_sectioning'}{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0];
+$result_sectioning{'hole_in_sectioning'}{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[1]{'section_prev'}
 = 
$result_sectioning{'hole_in_sectioning'}{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0];
+$result_sectioning{'hole_in_sectioning'}{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[1]{'section_up'}
 = 
$result_sectioning{'hole_in_sectioning'}{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0];
+$result_sectioning{'hole_in_sectioning'}{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_up'}
 = 
$result_sectioning{'hole_in_sectioning'}{'section_childs'}[0]{'section_childs'}[0];
+$result_sectioning{'hole_in_sectioning'}{'section_childs'}[0]{'section_childs'}[0]{'section_up'}
 = $result_sectioning{'hole_in_sectioning'}{'section_childs'}[0];
+$result_sectioning{'hole_in_sectioning'}{'section_childs'}[0]{'section_up'} = 
$result_sectioning{'hole_in_sectioning'};
+
+$result_errors{'hole_in_sectioning'} = [
+  {
+    'error_line' => ':7: Upping the section level of @subsubsection which is 
too low
+',
+    'file_name' => '',
+    'line_nr' => 7,
+    'macro' => '',
+    'text' => 'Upping the section level of @subsubsection which is too low',
+    'type' => 'error'
+  }
+];
+
+
+1;

Index: t/results/sectioning/lowered_subsubsection.pl
===================================================================
RCS file: t/results/sectioning/lowered_subsubsection.pl
diff -N t/results/sectioning/lowered_subsubsection.pl
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ t/results/sectioning/lowered_subsubsection.pl       27 Feb 2011 20:15:27 
-0000      1.1
@@ -0,0 +1,1725 @@
+use vars qw(%result_texis %result_texts %result_trees %result_errors 
+   %result_indices %result_sectioning %result_nodes %result_menus
+   %result_floats %result_converted %result_converted_errors);
+
+$result_trees{'lowered_subsubsection'} = {
+  'contents' => [
+    {
+      'contents' => [],
+      'parent' => {},
+      'type' => 'text_root'
+    },
+    {
+      'args' => [
+        {
+          'contents' => [
+            {
+              'parent' => {},
+              'text' => ' ',
+              'type' => 'empty_spaces_after_command'
+            },
+            {
+              'parent' => {},
+              'text' => 'Top'
+            },
+            {
+              'parent' => {},
+              'text' => '
+',
+              'type' => 'spaces_at_end'
+            }
+          ],
+          'parent' => {},
+          'type' => 'misc_line_arg'
+        }
+      ],
+      'cmdname' => 'node',
+      'contents' => [],
+      'extra' => {
+        'node_content' => [
+          {}
+        ],
+        'nodes_manuals' => [
+          {
+            'node_content' => [],
+            'normalized' => 'Top'
+          }
+        ],
+        'normalized' => 'Top'
+      },
+      'line_nr' => {
+        'file_name' => '',
+        'line_nr' => 1,
+        'macro' => ''
+      },
+      'parent' => {}
+    },
+    {
+      'args' => [
+        {
+          'contents' => [
+            {
+              'parent' => {},
+              'text' => '
+',
+              'type' => 'empty_line_after_command'
+            }
+          ],
+          'parent' => {},
+          'type' => 'misc_line_arg'
+        }
+      ],
+      'cmdname' => 'top',
+      'contents' => [
+        {
+          'parent' => {},
+          'text' => '
+',
+          'type' => 'empty_line'
+        },
+        {
+          'cmdname' => 'menu',
+          'contents' => [
+            {
+              'parent' => {},
+              'text' => '
+',
+              'type' => 'empty_line_after_command'
+            },
+            {
+              'args' => [
+                {
+                  'parent' => {},
+                  'text' => '* ',
+                  'type' => 'menu_entry_leading_text'
+                },
+                {
+                  'contents' => [
+                    {
+                      'parent' => {},
+                      'text' => 'Chapter'
+                    }
+                  ],
+                  'parent' => {},
+                  'type' => 'menu_entry_node'
+                },
+                {
+                  'parent' => {},
+                  'text' => '::',
+                  'type' => 'menu_entry_separator'
+                },
+                {
+                  'contents' => [
+                    {
+                      'parent' => {},
+                      'text' => '
+'
+                    }
+                  ],
+                  'parent' => {},
+                  'type' => 'menu_entry_description'
+                }
+              ],
+              'extra' => {
+                'menu_entry_node' => {
+                  'node_content' => [
+                    {}
+                  ],
+                  'normalized' => 'Chapter'
+                }
+              },
+              'line_nr' => {
+                'file_name' => '',
+                'line_nr' => 5,
+                'macro' => ''
+              },
+              'parent' => {},
+              'type' => 'menu_entry'
+            }
+          ],
+          'line_nr' => {
+            'file_name' => '',
+            'line_nr' => 4,
+            'macro' => ''
+          },
+          'parent' => {}
+        },
+        {
+          'parent' => {},
+          'text' => '
+',
+          'type' => 'empty_line_after_command'
+        },
+        {
+          'parent' => {},
+          'text' => '
+',
+          'type' => 'empty_line'
+        }
+      ],
+      'extra' => {
+        'misc_content' => []
+      },
+      'level' => 0,
+      'line_nr' => {
+        'file_name' => '',
+        'line_nr' => 2,
+        'macro' => ''
+      },
+      'parent' => {}
+    },
+    {
+      'args' => [
+        {
+          'contents' => [
+            {
+              'parent' => {},
+              'text' => ' ',
+              'type' => 'empty_spaces_after_command'
+            },
+            {
+              'parent' => {},
+              'text' => 'Chapter'
+            },
+            {
+              'parent' => {},
+              'text' => '
+',
+              'type' => 'spaces_at_end'
+            }
+          ],
+          'parent' => {},
+          'type' => 'misc_line_arg'
+        }
+      ],
+      'cmdname' => 'node',
+      'contents' => [],
+      'extra' => {
+        'node_content' => [
+          {}
+        ],
+        'nodes_manuals' => [
+          {
+            'node_content' => [],
+            'normalized' => 'Chapter'
+          }
+        ],
+        'normalized' => 'Chapter'
+      },
+      'line_nr' => {
+        'file_name' => '',
+        'line_nr' => 8,
+        'macro' => ''
+      },
+      'parent' => {}
+    },
+    {
+      'args' => [
+        {
+          'contents' => [
+            {
+              'parent' => {},
+              'text' => ' ',
+              'type' => 'empty_spaces_after_command'
+            },
+            {
+              'parent' => {},
+              'text' => 'Chapter'
+            },
+            {
+              'parent' => {},
+              'text' => '
+',
+              'type' => 'spaces_at_end'
+            }
+          ],
+          'parent' => {},
+          'type' => 'misc_line_arg'
+        }
+      ],
+      'cmdname' => 'chapter',
+      'contents' => [
+        {
+          'parent' => {},
+          'text' => '
+',
+          'type' => 'empty_line'
+        },
+        {
+          'cmdname' => 'menu',
+          'contents' => [
+            {
+              'parent' => {},
+              'text' => '
+',
+              'type' => 'empty_line_after_command'
+            },
+            {
+              'args' => [
+                {
+                  'parent' => {},
+                  'text' => '* ',
+                  'type' => 'menu_entry_leading_text'
+                },
+                {
+                  'contents' => [
+                    {
+                      'parent' => {},
+                      'text' => 'Section'
+                    }
+                  ],
+                  'parent' => {},
+                  'type' => 'menu_entry_node'
+                },
+                {
+                  'parent' => {},
+                  'text' => '::',
+                  'type' => 'menu_entry_separator'
+                },
+                {
+                  'contents' => [
+                    {
+                      'parent' => {},
+                      'text' => '
+'
+                    }
+                  ],
+                  'parent' => {},
+                  'type' => 'menu_entry_description'
+                }
+              ],
+              'extra' => {
+                'menu_entry_node' => {
+                  'node_content' => [
+                    {}
+                  ],
+                  'normalized' => 'Section'
+                }
+              },
+              'line_nr' => {
+                'file_name' => '',
+                'line_nr' => 12,
+                'macro' => ''
+              },
+              'parent' => {},
+              'type' => 'menu_entry'
+            }
+          ],
+          'line_nr' => {
+            'file_name' => '',
+            'line_nr' => 11,
+            'macro' => ''
+          },
+          'parent' => {}
+        },
+        {
+          'parent' => {},
+          'text' => '
+',
+          'type' => 'empty_line_after_command'
+        },
+        {
+          'parent' => {},
+          'text' => '
+',
+          'type' => 'empty_line'
+        }
+      ],
+      'extra' => {
+        'misc_content' => [
+          {}
+        ]
+      },
+      'level' => 1,
+      'line_nr' => {
+        'file_name' => '',
+        'line_nr' => 9,
+        'macro' => ''
+      },
+      'number' => 1,
+      'parent' => {}
+    },
+    {
+      'args' => [
+        {
+          'contents' => [
+            {
+              'parent' => {},
+              'text' => ' ',
+              'type' => 'empty_spaces_after_command'
+            },
+            {
+              'parent' => {},
+              'text' => 'Section'
+            },
+            {
+              'parent' => {},
+              'text' => '
+',
+              'type' => 'spaces_at_end'
+            }
+          ],
+          'parent' => {},
+          'type' => 'misc_line_arg'
+        }
+      ],
+      'cmdname' => 'node',
+      'contents' => [],
+      'extra' => {
+        'node_content' => [
+          {}
+        ],
+        'nodes_manuals' => [
+          {
+            'node_content' => [],
+            'normalized' => 'Section'
+          }
+        ],
+        'normalized' => 'Section'
+      },
+      'line_nr' => {
+        'file_name' => '',
+        'line_nr' => 15,
+        'macro' => ''
+      },
+      'parent' => {}
+    },
+    {
+      'args' => [
+        {
+          'contents' => [
+            {
+              'parent' => {},
+              'text' => ' ',
+              'type' => 'empty_spaces_after_command'
+            },
+            {
+              'parent' => {},
+              'text' => 'Section'
+            },
+            {
+              'parent' => {},
+              'text' => '
+',
+              'type' => 'spaces_at_end'
+            }
+          ],
+          'parent' => {},
+          'type' => 'misc_line_arg'
+        }
+      ],
+      'cmdname' => 'section',
+      'contents' => [
+        {
+          'parent' => {},
+          'text' => '
+',
+          'type' => 'empty_line'
+        },
+        {
+          'cmdname' => 'menu',
+          'contents' => [
+            {
+              'parent' => {},
+              'text' => '
+',
+              'type' => 'empty_line_after_command'
+            },
+            {
+              'args' => [
+                {
+                  'parent' => {},
+                  'text' => '* ',
+                  'type' => 'menu_entry_leading_text'
+                },
+                {
+                  'contents' => [
+                    {
+                      'parent' => {},
+                      'text' => 'Subsection'
+                    }
+                  ],
+                  'parent' => {},
+                  'type' => 'menu_entry_node'
+                },
+                {
+                  'parent' => {},
+                  'text' => '::',
+                  'type' => 'menu_entry_separator'
+                },
+                {
+                  'contents' => [
+                    {
+                      'parent' => {},
+                      'text' => '
+'
+                    }
+                  ],
+                  'parent' => {},
+                  'type' => 'menu_entry_description'
+                }
+              ],
+              'extra' => {
+                'menu_entry_node' => {
+                  'node_content' => [
+                    {}
+                  ],
+                  'normalized' => 'Subsection'
+                }
+              },
+              'line_nr' => {
+                'file_name' => '',
+                'line_nr' => 19,
+                'macro' => ''
+              },
+              'parent' => {},
+              'type' => 'menu_entry'
+            }
+          ],
+          'line_nr' => {
+            'file_name' => '',
+            'line_nr' => 18,
+            'macro' => ''
+          },
+          'parent' => {}
+        },
+        {
+          'parent' => {},
+          'text' => '
+',
+          'type' => 'empty_line_after_command'
+        },
+        {
+          'parent' => {},
+          'text' => '
+',
+          'type' => 'empty_line'
+        }
+      ],
+      'extra' => {
+        'misc_content' => [
+          {}
+        ]
+      },
+      'level' => 2,
+      'line_nr' => {
+        'file_name' => '',
+        'line_nr' => 16,
+        'macro' => ''
+      },
+      'number' => '1.1',
+      'parent' => {}
+    },
+    {
+      'args' => [
+        {
+          'contents' => [
+            {
+              'parent' => {},
+              'text' => ' ',
+              'type' => 'empty_spaces_after_command'
+            },
+            {
+              'parent' => {},
+              'text' => 'Subsection'
+            },
+            {
+              'parent' => {},
+              'text' => '
+',
+              'type' => 'spaces_at_end'
+            }
+          ],
+          'parent' => {},
+          'type' => 'misc_line_arg'
+        }
+      ],
+      'cmdname' => 'node',
+      'contents' => [],
+      'extra' => {
+        'node_content' => [
+          {}
+        ],
+        'nodes_manuals' => [
+          {
+            'node_content' => [],
+            'normalized' => 'Subsection'
+          }
+        ],
+        'normalized' => 'Subsection'
+      },
+      'line_nr' => {
+        'file_name' => '',
+        'line_nr' => 22,
+        'macro' => ''
+      },
+      'parent' => {}
+    },
+    {
+      'args' => [
+        {
+          'contents' => [
+            {
+              'parent' => {},
+              'text' => ' ',
+              'type' => 'empty_spaces_after_command'
+            },
+            {
+              'parent' => {},
+              'text' => 'Subsection'
+            },
+            {
+              'parent' => {},
+              'text' => '
+',
+              'type' => 'spaces_at_end'
+            }
+          ],
+          'parent' => {},
+          'type' => 'misc_line_arg'
+        }
+      ],
+      'cmdname' => 'subsection',
+      'contents' => [
+        {
+          'parent' => {},
+          'text' => '
+',
+          'type' => 'empty_line'
+        },
+        {
+          'cmdname' => 'menu',
+          'contents' => [
+            {
+              'parent' => {},
+              'text' => '
+',
+              'type' => 'empty_line_after_command'
+            },
+            {
+              'args' => [
+                {
+                  'parent' => {},
+                  'text' => '* ',
+                  'type' => 'menu_entry_leading_text'
+                },
+                {
+                  'contents' => [
+                    {
+                      'parent' => {},
+                      'text' => 'Subsubsection'
+                    }
+                  ],
+                  'parent' => {},
+                  'type' => 'menu_entry_node'
+                },
+                {
+                  'parent' => {},
+                  'text' => '::',
+                  'type' => 'menu_entry_separator'
+                },
+                {
+                  'contents' => [
+                    {
+                      'parent' => {},
+                      'text' => '
+'
+                    }
+                  ],
+                  'parent' => {},
+                  'type' => 'menu_entry_description'
+                }
+              ],
+              'extra' => {
+                'menu_entry_node' => {
+                  'node_content' => [
+                    {}
+                  ],
+                  'normalized' => 'Subsubsection'
+                }
+              },
+              'line_nr' => {
+                'file_name' => '',
+                'line_nr' => 26,
+                'macro' => ''
+              },
+              'parent' => {},
+              'type' => 'menu_entry'
+            },
+            {
+              'args' => [
+                {
+                  'parent' => {},
+                  'text' => '* ',
+                  'type' => 'menu_entry_leading_text'
+                },
+                {
+                  'contents' => [
+                    {
+                      'parent' => {},
+                      'text' => 'Lowered subsec'
+                    }
+                  ],
+                  'parent' => {},
+                  'type' => 'menu_entry_node'
+                },
+                {
+                  'parent' => {},
+                  'text' => '::',
+                  'type' => 'menu_entry_separator'
+                },
+                {
+                  'contents' => [
+                    {
+                      'parent' => {},
+                      'text' => '
+'
+                    }
+                  ],
+                  'parent' => {},
+                  'type' => 'menu_entry_description'
+                }
+              ],
+              'extra' => {
+                'menu_entry_node' => {
+                  'node_content' => [
+                    {}
+                  ],
+                  'normalized' => 'Lowered-subsec'
+                }
+              },
+              'line_nr' => {
+                'file_name' => '',
+                'line_nr' => 27,
+                'macro' => ''
+              },
+              'parent' => {},
+              'type' => 'menu_entry'
+            }
+          ],
+          'line_nr' => {
+            'file_name' => '',
+            'line_nr' => 25,
+            'macro' => ''
+          },
+          'parent' => {}
+        },
+        {
+          'parent' => {},
+          'text' => '
+',
+          'type' => 'empty_line_after_command'
+        },
+        {
+          'parent' => {},
+          'text' => '
+',
+          'type' => 'empty_line'
+        }
+      ],
+      'extra' => {
+        'misc_content' => [
+          {}
+        ]
+      },
+      'level' => 3,
+      'line_nr' => {
+        'file_name' => '',
+        'line_nr' => 23,
+        'macro' => ''
+      },
+      'number' => '1.1.1',
+      'parent' => {}
+    },
+    {
+      'args' => [
+        {
+          'contents' => [
+            {
+              'parent' => {},
+              'text' => ' ',
+              'type' => 'empty_spaces_after_command'
+            },
+            {
+              'parent' => {},
+              'text' => 'Subsubsection'
+            },
+            {
+              'parent' => {},
+              'text' => '
+',
+              'type' => 'spaces_at_end'
+            }
+          ],
+          'parent' => {},
+          'type' => 'misc_line_arg'
+        }
+      ],
+      'cmdname' => 'node',
+      'contents' => [],
+      'extra' => {
+        'node_content' => [
+          {}
+        ],
+        'nodes_manuals' => [
+          {
+            'node_content' => [],
+            'normalized' => 'Subsubsection'
+          }
+        ],
+        'normalized' => 'Subsubsection'
+      },
+      'line_nr' => {
+        'file_name' => '',
+        'line_nr' => 30,
+        'macro' => ''
+      },
+      'parent' => {}
+    },
+    {
+      'args' => [
+        {
+          'contents' => [
+            {
+              'parent' => {},
+              'text' => ' ',
+              'type' => 'empty_spaces_after_command'
+            },
+            {
+              'parent' => {},
+              'text' => 'Subsubsection'
+            },
+            {
+              'parent' => {},
+              'text' => '
+',
+              'type' => 'spaces_at_end'
+            }
+          ],
+          'parent' => {},
+          'type' => 'misc_line_arg'
+        }
+      ],
+      'cmdname' => 'subsubsection',
+      'contents' => [
+        {
+          'parent' => {},
+          'text' => '
+',
+          'type' => 'empty_line'
+        },
+        {
+          'cmdname' => 'lowersections',
+          'parent' => {}
+        }
+      ],
+      'extra' => {
+        'misc_content' => [
+          {}
+        ]
+      },
+      'level' => 4,
+      'line_nr' => {
+        'file_name' => '',
+        'line_nr' => 31,
+        'macro' => ''
+      },
+      'number' => '1.1.1.1',
+      'parent' => {}
+    },
+    {
+      'args' => [
+        {
+          'contents' => [
+            {
+              'parent' => {},
+              'text' => ' ',
+              'type' => 'empty_spaces_after_command'
+            },
+            {
+              'parent' => {},
+              'text' => 'Lowered subsec'
+            },
+            {
+              'parent' => {},
+              'text' => '
+',
+              'type' => 'spaces_at_end'
+            }
+          ],
+          'parent' => {},
+          'type' => 'misc_line_arg'
+        }
+      ],
+      'cmdname' => 'node',
+      'contents' => [],
+      'extra' => {
+        'node_content' => [
+          {}
+        ],
+        'nodes_manuals' => [
+          {
+            'node_content' => [],
+            'normalized' => 'Lowered-subsec'
+          }
+        ],
+        'normalized' => 'Lowered-subsec'
+      },
+      'line_nr' => {
+        'file_name' => '',
+        'line_nr' => 34,
+        'macro' => ''
+      },
+      'parent' => {}
+    },
+    {
+      'args' => [
+        {
+          'contents' => [
+            {
+              'parent' => {},
+              'text' => ' ',
+              'type' => 'empty_spaces_after_command'
+            },
+            {
+              'parent' => {},
+              'text' => 'Lowered subsec'
+            },
+            {
+              'parent' => {},
+              'text' => '
+',
+              'type' => 'spaces_at_end'
+            }
+          ],
+          'parent' => {},
+          'type' => 'misc_line_arg'
+        }
+      ],
+      'cmdname' => 'subsection',
+      'contents' => [
+        {
+          'parent' => {},
+          'text' => '
+',
+          'type' => 'empty_line'
+        },
+        {
+          'cmdname' => 'menu',
+          'contents' => [
+            {
+              'parent' => {},
+              'text' => '
+',
+              'type' => 'empty_line_after_command'
+            },
+            {
+              'args' => [
+                {
+                  'parent' => {},
+                  'text' => '* ',
+                  'type' => 'menu_entry_leading_text'
+                },
+                {
+                  'contents' => [
+                    {
+                      'parent' => {},
+                      'text' => 'Lowered subsubsection'
+                    }
+                  ],
+                  'parent' => {},
+                  'type' => 'menu_entry_node'
+                },
+                {
+                  'parent' => {},
+                  'text' => '::',
+                  'type' => 'menu_entry_separator'
+                },
+                {
+                  'contents' => [
+                    {
+                      'parent' => {},
+                      'text' => '
+'
+                    }
+                  ],
+                  'parent' => {},
+                  'type' => 'menu_entry_description'
+                }
+              ],
+              'extra' => {
+                'menu_entry_node' => {
+                  'node_content' => [
+                    {}
+                  ],
+                  'normalized' => 'Lowered-subsubsection'
+                }
+              },
+              'line_nr' => {
+                'file_name' => '',
+                'line_nr' => 38,
+                'macro' => ''
+              },
+              'parent' => {},
+              'type' => 'menu_entry'
+            }
+          ],
+          'line_nr' => {
+            'file_name' => '',
+            'line_nr' => 37,
+            'macro' => ''
+          },
+          'parent' => {}
+        },
+        {
+          'parent' => {},
+          'text' => '
+',
+          'type' => 'empty_line_after_command'
+        },
+        {
+          'parent' => {},
+          'text' => '
+',
+          'type' => 'empty_line'
+        }
+      ],
+      'extra' => {
+        'misc_content' => [
+          {}
+        ],
+        'sections_level' => -1
+      },
+      'level' => 4,
+      'line_nr' => {
+        'file_name' => '',
+        'line_nr' => 35,
+        'macro' => ''
+      },
+      'number' => '1.1.1.2',
+      'parent' => {}
+    },
+    {
+      'args' => [
+        {
+          'contents' => [
+            {
+              'parent' => {},
+              'text' => ' ',
+              'type' => 'empty_spaces_after_command'
+            },
+            {
+              'parent' => {},
+              'text' => 'Lowered subsubsection'
+            },
+            {
+              'parent' => {},
+              'text' => '
+',
+              'type' => 'spaces_at_end'
+            }
+          ],
+          'parent' => {},
+          'type' => 'misc_line_arg'
+        }
+      ],
+      'cmdname' => 'node',
+      'contents' => [],
+      'extra' => {
+        'node_content' => [
+          {}
+        ],
+        'nodes_manuals' => [
+          {
+            'node_content' => [],
+            'normalized' => 'Lowered-subsubsection'
+          }
+        ],
+        'normalized' => 'Lowered-subsubsection'
+      },
+      'line_nr' => {
+        'file_name' => '',
+        'line_nr' => 41,
+        'macro' => ''
+      },
+      'parent' => {}
+    },
+    {
+      'args' => [
+        {
+          'contents' => [
+            {
+              'parent' => {},
+              'text' => ' ',
+              'type' => 'empty_spaces_after_command'
+            },
+            {
+              'parent' => {},
+              'text' => 'Lowered subsubsection'
+            },
+            {
+              'parent' => {},
+              'text' => '
+',
+              'type' => 'spaces_at_end'
+            }
+          ],
+          'parent' => {},
+          'type' => 'misc_line_arg'
+        }
+      ],
+      'cmdname' => 'subsubsection',
+      'contents' => [
+        {
+          'cmdname' => 'raisesections',
+          'parent' => {}
+        },
+        {
+          'parent' => {},
+          'text' => '
+',
+          'type' => 'empty_line'
+        },
+        {
+          'cmdname' => 'contents',
+          'parent' => {}
+        }
+      ],
+      'extra' => {
+        'misc_content' => [
+          {}
+        ],
+        'sections_level' => -1
+      },
+      'level' => 4,
+      'line_nr' => {
+        'file_name' => '',
+        'line_nr' => 42,
+        'macro' => ''
+      },
+      'number' => '1.1.1.3',
+      'parent' => {}
+    },
+    {
+      'cmdname' => 'bye',
+      'parent' => {}
+    }
+  ],
+  'type' => 'document_root'
+};
+$result_trees{'lowered_subsubsection'}{'contents'}[0]{'parent'} = 
$result_trees{'lowered_subsubsection'};
+$result_trees{'lowered_subsubsection'}{'contents'}[1]{'args'}[0]{'contents'}[0]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[1]{'args'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[1]{'args'}[0]{'contents'}[1]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[1]{'args'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[1]{'args'}[0]{'contents'}[2]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[1]{'args'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[1]{'args'}[0]{'parent'} = 
$result_trees{'lowered_subsubsection'}{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[1]{'extra'}{'node_content'}[0]
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[1]{'args'}[0]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[1]{'extra'}{'nodes_manuals'}[0]{'node_content'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[1]{'extra'}{'node_content'};
+$result_trees{'lowered_subsubsection'}{'contents'}[1]{'parent'} = 
$result_trees{'lowered_subsubsection'};
+$result_trees{'lowered_subsubsection'}{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[2]{'args'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[2]{'args'}[0]{'parent'} = 
$result_trees{'lowered_subsubsection'}{'contents'}[2];
+$result_trees{'lowered_subsubsection'}{'contents'}[2]{'contents'}[0]{'parent'} 
= $result_trees{'lowered_subsubsection'}{'contents'}[2];
+$result_trees{'lowered_subsubsection'}{'contents'}[2]{'contents'}[1]{'contents'}[0]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[2]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'args'}[0]{'parent'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[2]{'contents'}[1]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'args'}[1]{'contents'}[0]{'parent'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'args'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'args'}[1]{'parent'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[2]{'contents'}[1]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'args'}[2]{'parent'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[2]{'contents'}[1]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'args'}[3]{'contents'}[0]{'parent'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'args'}[3];
+$result_trees{'lowered_subsubsection'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'args'}[3]{'parent'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[2]{'contents'}[1]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'extra'}{'menu_entry_node'}{'node_content'}[0]
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'args'}[1]{'contents'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[2]{'contents'}[1]{'contents'}[1]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[2]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[2]{'contents'}[1]{'parent'} 
= $result_trees{'lowered_subsubsection'}{'contents'}[2];
+$result_trees{'lowered_subsubsection'}{'contents'}[2]{'contents'}[2]{'parent'} 
= $result_trees{'lowered_subsubsection'}{'contents'}[2];
+$result_trees{'lowered_subsubsection'}{'contents'}[2]{'contents'}[3]{'parent'} 
= $result_trees{'lowered_subsubsection'}{'contents'}[2];
+$result_trees{'lowered_subsubsection'}{'contents'}[2]{'parent'} = 
$result_trees{'lowered_subsubsection'};
+$result_trees{'lowered_subsubsection'}{'contents'}[3]{'args'}[0]{'contents'}[0]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[3]{'args'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[3]{'args'}[0]{'contents'}[1]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[3]{'args'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[3]{'args'}[0]{'contents'}[2]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[3]{'args'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[3]{'args'}[0]{'parent'} = 
$result_trees{'lowered_subsubsection'}{'contents'}[3];
+$result_trees{'lowered_subsubsection'}{'contents'}[3]{'extra'}{'node_content'}[0]
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[3]{'args'}[0]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[3]{'extra'}{'nodes_manuals'}[0]{'node_content'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[3]{'extra'}{'node_content'};
+$result_trees{'lowered_subsubsection'}{'contents'}[3]{'parent'} = 
$result_trees{'lowered_subsubsection'};
+$result_trees{'lowered_subsubsection'}{'contents'}[4]{'args'}[0]{'contents'}[0]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[4]{'args'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[4]{'args'}[0]{'contents'}[1]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[4]{'args'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[4]{'args'}[0]{'contents'}[2]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[4]{'args'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[4]{'args'}[0]{'parent'} = 
$result_trees{'lowered_subsubsection'}{'contents'}[4];
+$result_trees{'lowered_subsubsection'}{'contents'}[4]{'contents'}[0]{'parent'} 
= $result_trees{'lowered_subsubsection'}{'contents'}[4];
+$result_trees{'lowered_subsubsection'}{'contents'}[4]{'contents'}[1]{'contents'}[0]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[4]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[4]{'contents'}[1]{'contents'}[1]{'args'}[0]{'parent'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[4]{'contents'}[1]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[4]{'contents'}[1]{'contents'}[1]{'args'}[1]{'contents'}[0]{'parent'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[4]{'contents'}[1]{'contents'}[1]{'args'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[4]{'contents'}[1]{'contents'}[1]{'args'}[1]{'parent'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[4]{'contents'}[1]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[4]{'contents'}[1]{'contents'}[1]{'args'}[2]{'parent'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[4]{'contents'}[1]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[4]{'contents'}[1]{'contents'}[1]{'args'}[3]{'contents'}[0]{'parent'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[4]{'contents'}[1]{'contents'}[1]{'args'}[3];
+$result_trees{'lowered_subsubsection'}{'contents'}[4]{'contents'}[1]{'contents'}[1]{'args'}[3]{'parent'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[4]{'contents'}[1]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[4]{'contents'}[1]{'contents'}[1]{'extra'}{'menu_entry_node'}{'node_content'}[0]
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[4]{'contents'}[1]{'contents'}[1]{'args'}[1]{'contents'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[4]{'contents'}[1]{'contents'}[1]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[4]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[4]{'contents'}[1]{'parent'} 
= $result_trees{'lowered_subsubsection'}{'contents'}[4];
+$result_trees{'lowered_subsubsection'}{'contents'}[4]{'contents'}[2]{'parent'} 
= $result_trees{'lowered_subsubsection'}{'contents'}[4];
+$result_trees{'lowered_subsubsection'}{'contents'}[4]{'contents'}[3]{'parent'} 
= $result_trees{'lowered_subsubsection'}{'contents'}[4];
+$result_trees{'lowered_subsubsection'}{'contents'}[4]{'extra'}{'misc_content'}[0]
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[4]{'args'}[0]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[4]{'parent'} = 
$result_trees{'lowered_subsubsection'};
+$result_trees{'lowered_subsubsection'}{'contents'}[5]{'args'}[0]{'contents'}[0]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[5]{'args'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[5]{'args'}[0]{'contents'}[1]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[5]{'args'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[5]{'args'}[0]{'contents'}[2]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[5]{'args'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[5]{'args'}[0]{'parent'} = 
$result_trees{'lowered_subsubsection'}{'contents'}[5];
+$result_trees{'lowered_subsubsection'}{'contents'}[5]{'extra'}{'node_content'}[0]
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[5]{'args'}[0]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[5]{'extra'}{'nodes_manuals'}[0]{'node_content'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[5]{'extra'}{'node_content'};
+$result_trees{'lowered_subsubsection'}{'contents'}[5]{'parent'} = 
$result_trees{'lowered_subsubsection'};
+$result_trees{'lowered_subsubsection'}{'contents'}[6]{'args'}[0]{'contents'}[0]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[6]{'args'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[6]{'args'}[0]{'contents'}[1]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[6]{'args'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[6]{'args'}[0]{'contents'}[2]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[6]{'args'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[6]{'args'}[0]{'parent'} = 
$result_trees{'lowered_subsubsection'}{'contents'}[6];
+$result_trees{'lowered_subsubsection'}{'contents'}[6]{'contents'}[0]{'parent'} 
= $result_trees{'lowered_subsubsection'}{'contents'}[6];
+$result_trees{'lowered_subsubsection'}{'contents'}[6]{'contents'}[1]{'contents'}[0]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[6]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[6]{'contents'}[1]{'contents'}[1]{'args'}[0]{'parent'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[6]{'contents'}[1]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[6]{'contents'}[1]{'contents'}[1]{'args'}[1]{'contents'}[0]{'parent'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[6]{'contents'}[1]{'contents'}[1]{'args'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[6]{'contents'}[1]{'contents'}[1]{'args'}[1]{'parent'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[6]{'contents'}[1]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[6]{'contents'}[1]{'contents'}[1]{'args'}[2]{'parent'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[6]{'contents'}[1]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[6]{'contents'}[1]{'contents'}[1]{'args'}[3]{'contents'}[0]{'parent'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[6]{'contents'}[1]{'contents'}[1]{'args'}[3];
+$result_trees{'lowered_subsubsection'}{'contents'}[6]{'contents'}[1]{'contents'}[1]{'args'}[3]{'parent'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[6]{'contents'}[1]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[6]{'contents'}[1]{'contents'}[1]{'extra'}{'menu_entry_node'}{'node_content'}[0]
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[6]{'contents'}[1]{'contents'}[1]{'args'}[1]{'contents'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[6]{'contents'}[1]{'contents'}[1]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[6]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[6]{'contents'}[1]{'parent'} 
= $result_trees{'lowered_subsubsection'}{'contents'}[6];
+$result_trees{'lowered_subsubsection'}{'contents'}[6]{'contents'}[2]{'parent'} 
= $result_trees{'lowered_subsubsection'}{'contents'}[6];
+$result_trees{'lowered_subsubsection'}{'contents'}[6]{'contents'}[3]{'parent'} 
= $result_trees{'lowered_subsubsection'}{'contents'}[6];
+$result_trees{'lowered_subsubsection'}{'contents'}[6]{'extra'}{'misc_content'}[0]
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[6]{'args'}[0]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[6]{'parent'} = 
$result_trees{'lowered_subsubsection'};
+$result_trees{'lowered_subsubsection'}{'contents'}[7]{'args'}[0]{'contents'}[0]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[7]{'args'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[7]{'args'}[0]{'contents'}[1]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[7]{'args'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[7]{'args'}[0]{'contents'}[2]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[7]{'args'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[7]{'args'}[0]{'parent'} = 
$result_trees{'lowered_subsubsection'}{'contents'}[7];
+$result_trees{'lowered_subsubsection'}{'contents'}[7]{'extra'}{'node_content'}[0]
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[7]{'args'}[0]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[7]{'extra'}{'nodes_manuals'}[0]{'node_content'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[7]{'extra'}{'node_content'};
+$result_trees{'lowered_subsubsection'}{'contents'}[7]{'parent'} = 
$result_trees{'lowered_subsubsection'};
+$result_trees{'lowered_subsubsection'}{'contents'}[8]{'args'}[0]{'contents'}[0]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[8]{'args'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[8]{'args'}[0]{'contents'}[1]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[8]{'args'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[8]{'args'}[0]{'contents'}[2]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[8]{'args'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[8]{'args'}[0]{'parent'} = 
$result_trees{'lowered_subsubsection'}{'contents'}[8];
+$result_trees{'lowered_subsubsection'}{'contents'}[8]{'contents'}[0]{'parent'} 
= $result_trees{'lowered_subsubsection'}{'contents'}[8];
+$result_trees{'lowered_subsubsection'}{'contents'}[8]{'contents'}[1]{'contents'}[0]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[8]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[8]{'contents'}[1]{'contents'}[1]{'args'}[0]{'parent'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[8]{'contents'}[1]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[8]{'contents'}[1]{'contents'}[1]{'args'}[1]{'contents'}[0]{'parent'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[8]{'contents'}[1]{'contents'}[1]{'args'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[8]{'contents'}[1]{'contents'}[1]{'args'}[1]{'parent'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[8]{'contents'}[1]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[8]{'contents'}[1]{'contents'}[1]{'args'}[2]{'parent'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[8]{'contents'}[1]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[8]{'contents'}[1]{'contents'}[1]{'args'}[3]{'contents'}[0]{'parent'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[8]{'contents'}[1]{'contents'}[1]{'args'}[3];
+$result_trees{'lowered_subsubsection'}{'contents'}[8]{'contents'}[1]{'contents'}[1]{'args'}[3]{'parent'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[8]{'contents'}[1]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[8]{'contents'}[1]{'contents'}[1]{'extra'}{'menu_entry_node'}{'node_content'}[0]
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[8]{'contents'}[1]{'contents'}[1]{'args'}[1]{'contents'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[8]{'contents'}[1]{'contents'}[1]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[8]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[8]{'contents'}[1]{'contents'}[2]{'args'}[0]{'parent'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[8]{'contents'}[1]{'contents'}[2];
+$result_trees{'lowered_subsubsection'}{'contents'}[8]{'contents'}[1]{'contents'}[2]{'args'}[1]{'contents'}[0]{'parent'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[8]{'contents'}[1]{'contents'}[2]{'args'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[8]{'contents'}[1]{'contents'}[2]{'args'}[1]{'parent'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[8]{'contents'}[1]{'contents'}[2];
+$result_trees{'lowered_subsubsection'}{'contents'}[8]{'contents'}[1]{'contents'}[2]{'args'}[2]{'parent'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[8]{'contents'}[1]{'contents'}[2];
+$result_trees{'lowered_subsubsection'}{'contents'}[8]{'contents'}[1]{'contents'}[2]{'args'}[3]{'contents'}[0]{'parent'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[8]{'contents'}[1]{'contents'}[2]{'args'}[3];
+$result_trees{'lowered_subsubsection'}{'contents'}[8]{'contents'}[1]{'contents'}[2]{'args'}[3]{'parent'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[8]{'contents'}[1]{'contents'}[2];
+$result_trees{'lowered_subsubsection'}{'contents'}[8]{'contents'}[1]{'contents'}[2]{'extra'}{'menu_entry_node'}{'node_content'}[0]
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[8]{'contents'}[1]{'contents'}[2]{'args'}[1]{'contents'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[8]{'contents'}[1]{'contents'}[2]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[8]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[8]{'contents'}[1]{'parent'} 
= $result_trees{'lowered_subsubsection'}{'contents'}[8];
+$result_trees{'lowered_subsubsection'}{'contents'}[8]{'contents'}[2]{'parent'} 
= $result_trees{'lowered_subsubsection'}{'contents'}[8];
+$result_trees{'lowered_subsubsection'}{'contents'}[8]{'contents'}[3]{'parent'} 
= $result_trees{'lowered_subsubsection'}{'contents'}[8];
+$result_trees{'lowered_subsubsection'}{'contents'}[8]{'extra'}{'misc_content'}[0]
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[8]{'args'}[0]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[8]{'parent'} = 
$result_trees{'lowered_subsubsection'};
+$result_trees{'lowered_subsubsection'}{'contents'}[9]{'args'}[0]{'contents'}[0]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[9]{'args'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[9]{'args'}[0]{'contents'}[1]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[9]{'args'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[9]{'args'}[0]{'contents'}[2]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[9]{'args'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[9]{'args'}[0]{'parent'} = 
$result_trees{'lowered_subsubsection'}{'contents'}[9];
+$result_trees{'lowered_subsubsection'}{'contents'}[9]{'extra'}{'node_content'}[0]
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[9]{'args'}[0]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[9]{'extra'}{'nodes_manuals'}[0]{'node_content'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[9]{'extra'}{'node_content'};
+$result_trees{'lowered_subsubsection'}{'contents'}[9]{'parent'} = 
$result_trees{'lowered_subsubsection'};
+$result_trees{'lowered_subsubsection'}{'contents'}[10]{'args'}[0]{'contents'}[0]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[10]{'args'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[10]{'args'}[0]{'contents'}[1]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[10]{'args'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[10]{'args'}[0]{'contents'}[2]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[10]{'args'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[10]{'args'}[0]{'parent'} = 
$result_trees{'lowered_subsubsection'}{'contents'}[10];
+$result_trees{'lowered_subsubsection'}{'contents'}[10]{'contents'}[0]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[10];
+$result_trees{'lowered_subsubsection'}{'contents'}[10]{'contents'}[1]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[10];
+$result_trees{'lowered_subsubsection'}{'contents'}[10]{'extra'}{'misc_content'}[0]
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[10]{'args'}[0]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[10]{'parent'} = 
$result_trees{'lowered_subsubsection'};
+$result_trees{'lowered_subsubsection'}{'contents'}[11]{'args'}[0]{'contents'}[0]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[11]{'args'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[11]{'args'}[0]{'contents'}[1]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[11]{'args'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[11]{'args'}[0]{'contents'}[2]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[11]{'args'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[11]{'args'}[0]{'parent'} = 
$result_trees{'lowered_subsubsection'}{'contents'}[11];
+$result_trees{'lowered_subsubsection'}{'contents'}[11]{'extra'}{'node_content'}[0]
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[11]{'args'}[0]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[11]{'extra'}{'nodes_manuals'}[0]{'node_content'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[11]{'extra'}{'node_content'};
+$result_trees{'lowered_subsubsection'}{'contents'}[11]{'parent'} = 
$result_trees{'lowered_subsubsection'};
+$result_trees{'lowered_subsubsection'}{'contents'}[12]{'args'}[0]{'contents'}[0]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[12]{'args'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[12]{'args'}[0]{'contents'}[1]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[12]{'args'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[12]{'args'}[0]{'contents'}[2]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[12]{'args'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[12]{'args'}[0]{'parent'} = 
$result_trees{'lowered_subsubsection'}{'contents'}[12];
+$result_trees{'lowered_subsubsection'}{'contents'}[12]{'contents'}[0]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[12];
+$result_trees{'lowered_subsubsection'}{'contents'}[12]{'contents'}[1]{'contents'}[0]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[12]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[12]{'contents'}[1]{'contents'}[1]{'args'}[0]{'parent'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[12]{'contents'}[1]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[12]{'contents'}[1]{'contents'}[1]{'args'}[1]{'contents'}[0]{'parent'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[12]{'contents'}[1]{'contents'}[1]{'args'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[12]{'contents'}[1]{'contents'}[1]{'args'}[1]{'parent'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[12]{'contents'}[1]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[12]{'contents'}[1]{'contents'}[1]{'args'}[2]{'parent'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[12]{'contents'}[1]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[12]{'contents'}[1]{'contents'}[1]{'args'}[3]{'contents'}[0]{'parent'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[12]{'contents'}[1]{'contents'}[1]{'args'}[3];
+$result_trees{'lowered_subsubsection'}{'contents'}[12]{'contents'}[1]{'contents'}[1]{'args'}[3]{'parent'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[12]{'contents'}[1]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[12]{'contents'}[1]{'contents'}[1]{'extra'}{'menu_entry_node'}{'node_content'}[0]
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[12]{'contents'}[1]{'contents'}[1]{'args'}[1]{'contents'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[12]{'contents'}[1]{'contents'}[1]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[12]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[12]{'contents'}[1]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[12];
+$result_trees{'lowered_subsubsection'}{'contents'}[12]{'contents'}[2]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[12];
+$result_trees{'lowered_subsubsection'}{'contents'}[12]{'contents'}[3]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[12];
+$result_trees{'lowered_subsubsection'}{'contents'}[12]{'extra'}{'misc_content'}[0]
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[12]{'args'}[0]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[12]{'parent'} = 
$result_trees{'lowered_subsubsection'};
+$result_trees{'lowered_subsubsection'}{'contents'}[13]{'args'}[0]{'contents'}[0]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[13]{'args'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[13]{'args'}[0]{'contents'}[1]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[13]{'args'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[13]{'args'}[0]{'contents'}[2]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[13]{'args'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[13]{'args'}[0]{'parent'} = 
$result_trees{'lowered_subsubsection'}{'contents'}[13];
+$result_trees{'lowered_subsubsection'}{'contents'}[13]{'extra'}{'node_content'}[0]
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[13]{'args'}[0]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[13]{'extra'}{'nodes_manuals'}[0]{'node_content'}
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[13]{'extra'}{'node_content'};
+$result_trees{'lowered_subsubsection'}{'contents'}[13]{'parent'} = 
$result_trees{'lowered_subsubsection'};
+$result_trees{'lowered_subsubsection'}{'contents'}[14]{'args'}[0]{'contents'}[0]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[14]{'args'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[14]{'args'}[0]{'contents'}[1]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[14]{'args'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[14]{'args'}[0]{'contents'}[2]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[14]{'args'}[0];
+$result_trees{'lowered_subsubsection'}{'contents'}[14]{'args'}[0]{'parent'} = 
$result_trees{'lowered_subsubsection'}{'contents'}[14];
+$result_trees{'lowered_subsubsection'}{'contents'}[14]{'contents'}[0]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[14];
+$result_trees{'lowered_subsubsection'}{'contents'}[14]{'contents'}[1]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[14];
+$result_trees{'lowered_subsubsection'}{'contents'}[14]{'contents'}[2]{'parent'}
 = $result_trees{'lowered_subsubsection'}{'contents'}[14];
+$result_trees{'lowered_subsubsection'}{'contents'}[14]{'extra'}{'misc_content'}[0]
 = 
$result_trees{'lowered_subsubsection'}{'contents'}[14]{'args'}[0]{'contents'}[1];
+$result_trees{'lowered_subsubsection'}{'contents'}[14]{'parent'} = 
$result_trees{'lowered_subsubsection'};
+$result_trees{'lowered_subsubsection'}{'contents'}[15]{'parent'} = 
$result_trees{'lowered_subsubsection'};
+
+$result_texis{'lowered_subsubsection'} = '@node Top
address@hidden
+
address@hidden
+* Chapter::
address@hidden menu
+
address@hidden Chapter
address@hidden Chapter
+
address@hidden
+* Section::
address@hidden menu
+
address@hidden Section
address@hidden Section
+
address@hidden
+* Subsection::
address@hidden menu
+
address@hidden Subsection
address@hidden Subsection
+
address@hidden
+* Subsubsection::
+* Lowered subsec::
address@hidden menu
+
address@hidden Subsubsection
address@hidden Subsubsection
+
address@hidden
address@hidden Lowered subsec
address@hidden Lowered subsec
+
address@hidden
+* Lowered subsubsection::
address@hidden menu
+
address@hidden Lowered subsubsection
address@hidden Lowered subsubsection
address@hidden
+
address@hidden
address@hidden
+';
+
+
+$result_texts{'lowered_subsubsection'} = '
+* Chapter::
+
+1 Chapter
+*********
+
+* Section::
+
+1.1 Section
+===========
+
+* Subsection::
+
+1.1.1 Subsection
+----------------
+
+* Subsubsection::
+* Lowered subsec::
+
+1.1.1.1 Subsubsection
+.....................
+
+1.1.1.2 Lowered subsec
+......................
+
+* Lowered subsubsection::
+
+1.1.1.3 Lowered subsubsection
+.............................
+
+';
+
+$result_sectioning{'lowered_subsubsection'} = {
+  'level' => -1,
+  'section_childs' => [
+    {
+      'cmdname' => 'top',
+      'extra' => {
+        'associated_node' => {
+          'cmdname' => 'node',
+          'extra' => {
+            'normalized' => 'Top'
+          }
+        }
+      },
+      'level' => 0,
+      'section_childs' => [
+        {
+          'cmdname' => 'chapter',
+          'extra' => {
+            'associated_node' => {
+              'cmdname' => 'node',
+              'extra' => {
+                'normalized' => 'Chapter'
+              }
+            }
+          },
+          'level' => 1,
+          'number' => 1,
+          'section_childs' => [
+            {
+              'cmdname' => 'section',
+              'extra' => {
+                'associated_node' => {
+                  'cmdname' => 'node',
+                  'extra' => {
+                    'normalized' => 'Section'
+                  }
+                }
+              },
+              'level' => 2,
+              'number' => '1.1',
+              'section_childs' => [
+                {
+                  'cmdname' => 'subsection',
+                  'extra' => {
+                    'associated_node' => {
+                      'cmdname' => 'node',
+                      'extra' => {
+                        'normalized' => 'Subsection'
+                      }
+                    }
+                  },
+                  'level' => 3,
+                  'number' => '1.1.1',
+                  'section_childs' => [
+                    {
+                      'cmdname' => 'subsubsection',
+                      'extra' => {
+                        'associated_node' => {
+                          'cmdname' => 'node',
+                          'extra' => {
+                            'normalized' => 'Subsubsection'
+                          }
+                        }
+                      },
+                      'level' => 4,
+                      'number' => '1.1.1.1',
+                      'section_up' => {}
+                    },
+                    {
+                      'cmdname' => 'subsection',
+                      'extra' => {
+                        'associated_node' => {
+                          'cmdname' => 'node',
+                          'extra' => {
+                            'normalized' => 'Lowered-subsec'
+                          }
+                        },
+                        'sections_level' => -1
+                      },
+                      'level' => 4,
+                      'number' => '1.1.1.2',
+                      'section_prev' => {},
+                      'section_up' => {}
+                    },
+                    {
+                      'cmdname' => 'subsubsection',
+                      'extra' => {
+                        'associated_node' => {
+                          'cmdname' => 'node',
+                          'extra' => {
+                            'normalized' => 'Lowered-subsubsection'
+                          }
+                        },
+                        'sections_level' => -1
+                      },
+                      'level' => 4,
+                      'number' => '1.1.1.3',
+                      'section_prev' => {},
+                      'section_up' => {}
+                    }
+                  ],
+                  'section_up' => {}
+                }
+              ],
+              'section_up' => {}
+            }
+          ],
+          'section_up' => {}
+        }
+      ],
+      'section_up' => {}
+    }
+  ]
+};
+$result_sectioning{'lowered_subsubsection'}{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_up'}
 = 
$result_sectioning{'lowered_subsubsection'}{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0];
+$result_sectioning{'lowered_subsubsection'}{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[1]{'section_prev'}
 = 
$result_sectioning{'lowered_subsubsection'}{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0];
+$result_sectioning{'lowered_subsubsection'}{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[1]{'section_up'}
 = 
$result_sectioning{'lowered_subsubsection'}{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0];
+$result_sectioning{'lowered_subsubsection'}{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[2]{'section_prev'}
 = 
$result_sectioning{'lowered_subsubsection'}{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[1];
+$result_sectioning{'lowered_subsubsection'}{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[2]{'section_up'}
 = 
$result_sectioning{'lowered_subsubsection'}{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0];
+$result_sectioning{'lowered_subsubsection'}{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_up'}
 = 
$result_sectioning{'lowered_subsubsection'}{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0];
+$result_sectioning{'lowered_subsubsection'}{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_up'}
 = 
$result_sectioning{'lowered_subsubsection'}{'section_childs'}[0]{'section_childs'}[0];
+$result_sectioning{'lowered_subsubsection'}{'section_childs'}[0]{'section_childs'}[0]{'section_up'}
 = $result_sectioning{'lowered_subsubsection'}{'section_childs'}[0];
+$result_sectioning{'lowered_subsubsection'}{'section_childs'}[0]{'section_up'} 
= $result_sectioning{'lowered_subsubsection'};
+
+$result_nodes{'lowered_subsubsection'} = {
+  'cmdname' => 'node',
+  'extra' => {
+    'associated_section' => {
+      'cmdname' => 'top',
+      'extra' => {},
+      'level' => 0
+    },
+    'normalized' => 'Top'
+  },
+  'menu_child' => {
+    'cmdname' => 'node',
+    'extra' => {
+      'associated_section' => {
+        'cmdname' => 'chapter',
+        'extra' => {},
+        'level' => 1,
+        'number' => 1
+      },
+      'normalized' => 'Chapter'
+    },
+    'menu_child' => {
+      'cmdname' => 'node',
+      'extra' => {
+        'associated_section' => {
+          'cmdname' => 'section',
+          'extra' => {},
+          'level' => 2,
+          'number' => '1.1'
+        },
+        'normalized' => 'Section'
+      },
+      'menu_child' => {
+        'cmdname' => 'node',
+        'extra' => {
+          'associated_section' => {
+            'cmdname' => 'subsection',
+            'extra' => {},
+            'level' => 3,
+            'number' => '1.1.1'
+          },
+          'normalized' => 'Subsection'
+        },
+        'menu_child' => {
+          'cmdname' => 'node',
+          'extra' => {
+            'associated_section' => {
+              'cmdname' => 'subsubsection',
+              'extra' => {},
+              'level' => 4,
+              'number' => '1.1.1.1'
+            },
+            'normalized' => 'Subsubsection'
+          },
+          'node_next' => {
+            'cmdname' => 'node',
+            'extra' => {
+              'associated_section' => {
+                'cmdname' => 'subsection',
+                'extra' => {
+                  'sections_level' => -1
+                },
+                'level' => 4,
+                'number' => '1.1.1.2'
+              },
+              'normalized' => 'Lowered-subsec'
+            },
+            'menu_child' => {
+              'cmdname' => 'node',
+              'extra' => {
+                'associated_section' => {
+                  'cmdname' => 'subsubsection',
+                  'extra' => {
+                    'sections_level' => -1
+                  },
+                  'level' => 4,
+                  'number' => '1.1.1.3'
+                },
+                'normalized' => 'Lowered-subsubsection'
+              },
+              'node_prev' => {},
+              'node_up' => {}
+            },
+            'menus' => [
+              {
+                'cmdname' => 'menu'
+              }
+            ],
+            'node_next' => {},
+            'node_prev' => {},
+            'node_up' => {}
+          },
+          'node_up' => {}
+        },
+        'menus' => [
+          {
+            'cmdname' => 'menu'
+          }
+        ],
+        'node_up' => {}
+      },
+      'menus' => [
+        {
+          'cmdname' => 'menu'
+        }
+      ],
+      'node_up' => {}
+    },
+    'menus' => [
+      {
+        'cmdname' => 'menu'
+      }
+    ],
+    'node_prev' => {},
+    'node_up' => {}
+  },
+  'menus' => [
+    {
+      'cmdname' => 'menu'
+    }
+  ],
+  'node_next' => {},
+  'node_up' => {
+    'extra' => {
+      'manual_content' => [
+        {
+          'text' => 'dir'
+        }
+      ]
+    }
+  }
+};
+$result_nodes{'lowered_subsubsection'}{'menu_child'}{'menu_child'}{'menu_child'}{'menu_child'}{'node_next'}{'menu_child'}{'node_prev'}
 = 
$result_nodes{'lowered_subsubsection'}{'menu_child'}{'menu_child'}{'menu_child'}{'menu_child'}{'node_next'};
+$result_nodes{'lowered_subsubsection'}{'menu_child'}{'menu_child'}{'menu_child'}{'menu_child'}{'node_next'}{'menu_child'}{'node_up'}
 = 
$result_nodes{'lowered_subsubsection'}{'menu_child'}{'menu_child'}{'menu_child'};
+$result_nodes{'lowered_subsubsection'}{'menu_child'}{'menu_child'}{'menu_child'}{'menu_child'}{'node_next'}{'node_next'}
 = 
$result_nodes{'lowered_subsubsection'}{'menu_child'}{'menu_child'}{'menu_child'}{'menu_child'}{'node_next'}{'menu_child'};
+$result_nodes{'lowered_subsubsection'}{'menu_child'}{'menu_child'}{'menu_child'}{'menu_child'}{'node_next'}{'node_prev'}
 = 
$result_nodes{'lowered_subsubsection'}{'menu_child'}{'menu_child'}{'menu_child'}{'menu_child'};
+$result_nodes{'lowered_subsubsection'}{'menu_child'}{'menu_child'}{'menu_child'}{'menu_child'}{'node_next'}{'node_up'}
 = 
$result_nodes{'lowered_subsubsection'}{'menu_child'}{'menu_child'}{'menu_child'};
+$result_nodes{'lowered_subsubsection'}{'menu_child'}{'menu_child'}{'menu_child'}{'menu_child'}{'node_up'}
 = 
$result_nodes{'lowered_subsubsection'}{'menu_child'}{'menu_child'}{'menu_child'};
+$result_nodes{'lowered_subsubsection'}{'menu_child'}{'menu_child'}{'menu_child'}{'node_up'}
 = $result_nodes{'lowered_subsubsection'}{'menu_child'}{'menu_child'};
+$result_nodes{'lowered_subsubsection'}{'menu_child'}{'menu_child'}{'node_up'} 
= $result_nodes{'lowered_subsubsection'}{'menu_child'};
+$result_nodes{'lowered_subsubsection'}{'menu_child'}{'node_prev'} = 
$result_nodes{'lowered_subsubsection'};
+$result_nodes{'lowered_subsubsection'}{'menu_child'}{'node_up'} = 
$result_nodes{'lowered_subsubsection'};
+$result_nodes{'lowered_subsubsection'}{'node_next'} = 
$result_nodes{'lowered_subsubsection'}{'menu_child'};
+
+$result_menus{'lowered_subsubsection'} = {
+  'cmdname' => 'node',
+  'extra' => {
+    'normalized' => 'Top'
+  },
+  'menu_child' => {
+    'cmdname' => 'node',
+    'extra' => {
+      'normalized' => 'Chapter'
+    },
+    'menu_child' => {
+      'cmdname' => 'node',
+      'extra' => {
+        'normalized' => 'Section'
+      },
+      'menu_child' => {
+        'cmdname' => 'node',
+        'extra' => {
+          'normalized' => 'Subsection'
+        },
+        'menu_child' => {
+          'cmdname' => 'node',
+          'extra' => {
+            'normalized' => 'Subsubsection'
+          },
+          'menu_next' => {
+            'cmdname' => 'node',
+            'extra' => {
+              'normalized' => 'Lowered-subsec'
+            },
+            'menu_child' => {
+              'cmdname' => 'node',
+              'extra' => {
+                'normalized' => 'Lowered-subsubsection'
+              },
+              'menu_up' => {},
+              'menu_up_hash' => {
+                'Lowered-subsec' => 1
+              }
+            },
+            'menu_prev' => {},
+            'menu_up' => {},
+            'menu_up_hash' => {
+              'Subsection' => 1
+            }
+          },
+          'menu_up' => {},
+          'menu_up_hash' => {
+            'Subsection' => 1
+          }
+        },
+        'menu_up' => {},
+        'menu_up_hash' => {
+          'Section' => 1
+        }
+      },
+      'menu_up' => {},
+      'menu_up_hash' => {
+        'Chapter' => 1
+      }
+    },
+    'menu_up' => {},
+    'menu_up_hash' => {
+      'Top' => 1
+    }
+  }
+};
+$result_menus{'lowered_subsubsection'}{'menu_child'}{'menu_child'}{'menu_child'}{'menu_child'}{'menu_next'}{'menu_child'}{'menu_up'}
 = 
$result_menus{'lowered_subsubsection'}{'menu_child'}{'menu_child'}{'menu_child'}{'menu_child'}{'menu_next'};
+$result_menus{'lowered_subsubsection'}{'menu_child'}{'menu_child'}{'menu_child'}{'menu_child'}{'menu_next'}{'menu_prev'}
 = 
$result_menus{'lowered_subsubsection'}{'menu_child'}{'menu_child'}{'menu_child'}{'menu_child'};
+$result_menus{'lowered_subsubsection'}{'menu_child'}{'menu_child'}{'menu_child'}{'menu_child'}{'menu_next'}{'menu_up'}
 = 
$result_menus{'lowered_subsubsection'}{'menu_child'}{'menu_child'}{'menu_child'};
+$result_menus{'lowered_subsubsection'}{'menu_child'}{'menu_child'}{'menu_child'}{'menu_child'}{'menu_up'}
 = 
$result_menus{'lowered_subsubsection'}{'menu_child'}{'menu_child'}{'menu_child'};
+$result_menus{'lowered_subsubsection'}{'menu_child'}{'menu_child'}{'menu_child'}{'menu_up'}
 = $result_menus{'lowered_subsubsection'}{'menu_child'}{'menu_child'};
+$result_menus{'lowered_subsubsection'}{'menu_child'}{'menu_child'}{'menu_up'} 
= $result_menus{'lowered_subsubsection'}{'menu_child'};
+$result_menus{'lowered_subsubsection'}{'menu_child'}{'menu_up'} = 
$result_menus{'lowered_subsubsection'};
+
+$result_errors{'lowered_subsubsection'} = [
+  {
+    'error_line' => ':34: warning: No node following `Lowered subsec\' in 
menu, but `Lowered subsubsection\' follows in sectioning
+',
+    'file_name' => '',
+    'line_nr' => 34,
+    'macro' => '',
+    'text' => 'No node following `Lowered subsec\' in menu, but `Lowered 
subsubsection\' follows in sectioning',
+    'type' => 'warning'
+  },
+  {
+    'error_line' => ':22: Node `Subsection\' lacks menu item for `Lowered 
subsubsection\' despite being its Up target
+',
+    'file_name' => '',
+    'line_nr' => 22,
+    'macro' => '',
+    'text' => 'Node `Subsection\' lacks menu item for `Lowered subsubsection\' 
despite being its Up target',
+    'type' => 'error'
+  }
+];
+
+
+1;

Index: t/results/sectioning/unnumbered_before_top.pl
===================================================================
RCS file: t/results/sectioning/unnumbered_before_top.pl
diff -N t/results/sectioning/unnumbered_before_top.pl
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ t/results/sectioning/unnumbered_before_top.pl       27 Feb 2011 20:15:27 
-0000      1.1
@@ -0,0 +1,163 @@
+use vars qw(%result_texis %result_texts %result_trees %result_errors 
+   %result_indices %result_sectioning %result_nodes %result_menus
+   %result_floats %result_converted %result_converted_errors);
+
+$result_trees{'unnumbered_before_top'} = {
+  'contents' => [
+    {
+      'contents' => [],
+      'parent' => {},
+      'type' => 'text_root'
+    },
+    {
+      'args' => [
+        {
+          'contents' => [
+            {
+              'parent' => {},
+              'text' => ' ',
+              'type' => 'empty_spaces_after_command'
+            },
+            {
+              'parent' => {},
+              'text' => 'before top'
+            },
+            {
+              'parent' => {},
+              'text' => '
+',
+              'type' => 'spaces_at_end'
+            }
+          ],
+          'parent' => {},
+          'type' => 'misc_line_arg'
+        }
+      ],
+      'cmdname' => 'unnumbered',
+      'contents' => [
+        {
+          'parent' => {},
+          'text' => '
+',
+          'type' => 'empty_line'
+        }
+      ],
+      'extra' => {
+        'misc_content' => [
+          {}
+        ]
+      },
+      'level' => 1,
+      'line_nr' => {
+        'file_name' => '',
+        'line_nr' => 1,
+        'macro' => ''
+      },
+      'parent' => {}
+    },
+    {
+      'args' => [
+        {
+          'contents' => [
+            {
+              'parent' => {},
+              'text' => ' ',
+              'type' => 'empty_spaces_after_command'
+            },
+            {
+              'parent' => {},
+              'text' => 'top'
+            },
+            {
+              'parent' => {},
+              'text' => '
+',
+              'type' => 'spaces_at_end'
+            }
+          ],
+          'parent' => {},
+          'type' => 'misc_line_arg'
+        }
+      ],
+      'cmdname' => 'top',
+      'contents' => [],
+      'extra' => {
+        'misc_content' => [
+          {}
+        ]
+      },
+      'level' => 1,
+      'line_nr' => {
+        'file_name' => '',
+        'line_nr' => 3,
+        'macro' => ''
+      },
+      'parent' => {}
+    }
+  ],
+  'type' => 'document_root'
+};
+$result_trees{'unnumbered_before_top'}{'contents'}[0]{'parent'} = 
$result_trees{'unnumbered_before_top'};
+$result_trees{'unnumbered_before_top'}{'contents'}[1]{'args'}[0]{'contents'}[0]{'parent'}
 = $result_trees{'unnumbered_before_top'}{'contents'}[1]{'args'}[0];
+$result_trees{'unnumbered_before_top'}{'contents'}[1]{'args'}[0]{'contents'}[1]{'parent'}
 = $result_trees{'unnumbered_before_top'}{'contents'}[1]{'args'}[0];
+$result_trees{'unnumbered_before_top'}{'contents'}[1]{'args'}[0]{'contents'}[2]{'parent'}
 = $result_trees{'unnumbered_before_top'}{'contents'}[1]{'args'}[0];
+$result_trees{'unnumbered_before_top'}{'contents'}[1]{'args'}[0]{'parent'} = 
$result_trees{'unnumbered_before_top'}{'contents'}[1];
+$result_trees{'unnumbered_before_top'}{'contents'}[1]{'contents'}[0]{'parent'} 
= $result_trees{'unnumbered_before_top'}{'contents'}[1];
+$result_trees{'unnumbered_before_top'}{'contents'}[1]{'extra'}{'misc_content'}[0]
 = 
$result_trees{'unnumbered_before_top'}{'contents'}[1]{'args'}[0]{'contents'}[1];
+$result_trees{'unnumbered_before_top'}{'contents'}[1]{'parent'} = 
$result_trees{'unnumbered_before_top'};
+$result_trees{'unnumbered_before_top'}{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'}
 = $result_trees{'unnumbered_before_top'}{'contents'}[2]{'args'}[0];
+$result_trees{'unnumbered_before_top'}{'contents'}[2]{'args'}[0]{'contents'}[1]{'parent'}
 = $result_trees{'unnumbered_before_top'}{'contents'}[2]{'args'}[0];
+$result_trees{'unnumbered_before_top'}{'contents'}[2]{'args'}[0]{'contents'}[2]{'parent'}
 = $result_trees{'unnumbered_before_top'}{'contents'}[2]{'args'}[0];
+$result_trees{'unnumbered_before_top'}{'contents'}[2]{'args'}[0]{'parent'} = 
$result_trees{'unnumbered_before_top'}{'contents'}[2];
+$result_trees{'unnumbered_before_top'}{'contents'}[2]{'extra'}{'misc_content'}[0]
 = 
$result_trees{'unnumbered_before_top'}{'contents'}[2]{'args'}[0]{'contents'}[1];
+$result_trees{'unnumbered_before_top'}{'contents'}[2]{'parent'} = 
$result_trees{'unnumbered_before_top'};
+
+$result_texis{'unnumbered_before_top'} = '@unnumbered before top
+
address@hidden top
+';
+
+
+$result_texts{'unnumbered_before_top'} = 'before top
+**********
+
+top
+***
+';
+
+$result_sectioning{'unnumbered_before_top'} = {
+  'level' => 0,
+  'section_childs' => [
+    {
+      'cmdname' => 'unnumbered',
+      'extra' => {},
+      'level' => 1,
+      'section_up' => {}
+    },
+    {
+      'cmdname' => 'top',
+      'extra' => {},
+      'level' => 1,
+      'section_prev' => {},
+      'section_up' => {}
+    }
+  ]
+};
+$result_sectioning{'unnumbered_before_top'}{'section_childs'}[0]{'section_up'} 
= $result_sectioning{'unnumbered_before_top'};
+$result_sectioning{'unnumbered_before_top'}{'section_childs'}[1]{'section_prev'}
 = $result_sectioning{'unnumbered_before_top'}{'section_childs'}[0];
+$result_sectioning{'unnumbered_before_top'}{'section_childs'}[1]{'section_up'} 
= $result_sectioning{'unnumbered_before_top'};
+
+$result_errors{'unnumbered_before_top'} = [
+  {
+    'error_line' => ':3: Lowering the section level of @top appearing after a 
lower element
+',
+    'file_name' => '',
+    'line_nr' => 3,
+    'macro' => '',
+    'text' => 'Lowering the section level of @top appearing after a lower 
element',
+    'type' => 'error'
+  }
+];
+
+
+1;



reply via email to

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