texinfo-commits
[Top][All Lists]
Advanced

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

[7158] don't store normalized for abbr or acronym


From: gavinsmith0123
Subject: [7158] don't store normalized for abbr or acronym
Date: Sun, 8 May 2016 16:33:27 +0000 (UTC)

Revision: 7158
          http://svn.sv.gnu.org/viewvc/?view=rev&root=texinfo&revision=7158
Author:   gavin
Date:     2016-05-08 16:33:27 +0000 (Sun, 08 May 2016)
Log Message:
-----------
don't store normalized for abbr or acronym

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/tp/Texinfo/Parser.pm
    trunk/tp/t/results/converters_tests/at_commands_in_raw.pl
    trunk/tp/t/results/converters_tests/at_commands_in_refs.pl
    trunk/tp/t/results/converters_tests/at_commands_in_refs_latin1.pl
    trunk/tp/t/results/converters_tests/at_commands_in_refs_utf8.pl
    trunk/tp/t/results/coverage_braces/abbr_acronym.pl
    trunk/tp/t/results/coverage_braces/nested_in_sc.pl
    trunk/tp/t/results/coverage_braces/recursive_acronym.pl
    trunk/tp/t/results/coverage_braces/too_much_args.pl
    trunk/tp/t/results/html_tests/commands_in_abbr.pl
    trunk/tp/t/results/menu/formats_in_menu.pl
    trunk/tp/t/results/plaintext_tests/at_commands_glued_in_example.pl
    trunk/tp/t/results/plaintext_tests/at_commands_glued_in_paragraph.pl
    trunk/tp/t/results/plaintext_tests/punctuation_abbr_acronym.pl
    trunk/tp/t/results/raw/inline_in_example.pl
    trunk/tp/t/results/raw/inlinefmt.pl
    trunk/tp/t/results/raw/inlinefmt_with_empty_line.pl
    trunk/tp/t/results/raw/inlineraw.pl
    trunk/tp/t/results/raw/inlineraw_with_empty_line.pl
    trunk/tp/t/results/sectioning/non_automatic_internal_top_node_up.pl
    trunk/tp/t/results/sectioning/non_automatic_top_node_up_and_url.pl

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog     2016-05-08 16:10:00 UTC (rev 7157)
+++ trunk/ChangeLog     2016-05-08 16:33:27 UTC (rev 7158)
@@ -1,5 +1,12 @@
 2016-05-08  Gavin Smith  <address@hidden>
 
+       * tp/Texinfo/Parser.pm (_parse_texi) <@abbr and @acronym>: Don't 
+       set 'normalized' values on elements.  Remove commented-out code.
+       (module documentation): Don't document that a list of the 
+       elements is kept in $self->{'explained_commands'}.  
+
+2016-05-08  Gavin Smith  <address@hidden>
+
        * tp/Texinfo/Structuring.pm (associate_internal_references): 
        Avoid adding an undefined 'label' value under certain 
        circumstances.

Modified: trunk/tp/Texinfo/Parser.pm
===================================================================
--- trunk/tp/Texinfo/Parser.pm  2016-05-08 16:10:00 UTC (rev 7157)
+++ trunk/tp/Texinfo/Parser.pm  2016-05-08 16:33:27 UTC (rev 7158)
@@ -5227,7 +5227,6 @@
                     = Texinfo::Convert::NodeNameNormalization::normalize_node(
                         {'contents' =>
                          
$current_command->{'extra'}->{'brace_command_contents'}->[0]});
-                  $current_command->{'extra'}->{'normalized'} = 
$normalized_type;
                   if 
(!$current_command->{'extra'}->{'brace_command_contents'}->[1]) {
                     if 
($self->{'explained_commands'}->{$current_command->{'cmdname'}}->{$normalized_type})
 {
                       $current_command->{'extra'}->{'explanation_contents'} 
@@ -5237,13 +5236,7 @@
                     
$self->{'explained_commands'}->{$current_command->{'cmdname'}}->{$normalized_type}
 
                       = 
$current_command->{'extra'}->{'brace_command_contents'}->[1];
                   }
-                }# else {
-                #  my $argument
-                #   = Texinfo::Convert::Text::convert({'contents' =>
-                #       
$current_command->{'extra'}->{'brace_command_contents'}->[0]},
-                #       {Texinfo::Common::_convert_text_options($self)});
-                #  $current_command->{'extra'}->{'format'} = $argument; 
-                #}
+                }
               }
 
             } elsif ($current->{'parent'}->{'cmdname'} eq 'errormsg') {
@@ -6379,22 +6372,6 @@
 
 A string corresponding to a document language set by C<@documentlanguage>.
 
-=item explained_commands
-
-A hash reference of explained commands (currently abbr or acronym).
-The value is also a hash reference.  The key of this hash is a normalized
-first argument of these commands, the value is a content array
-corresponding to the explanation associated with this first argument.
-
-For example giving as an option:
-
-  'explained_commands' 
-    => {'acronym' => {'EU' => [{'text' => 'European Union'}]} 
-
-is the same as having the following texinfo code in the document:
-
-  @acronym{EU, European Union}
-
 =item INPUT_ENCODING_NAME
 
 =item INPUT_PERL_ENCODING

Modified: trunk/tp/t/results/converters_tests/at_commands_in_raw.pl
===================================================================
--- trunk/tp/t/results/converters_tests/at_commands_in_raw.pl   2016-05-08 
16:10:00 UTC (rev 7157)
+++ trunk/tp/t/results/converters_tests/at_commands_in_raw.pl   2016-05-08 
16:33:27 UTC (rev 7158)
@@ -900,8 +900,7 @@
                       [
                         {}
                       ]
-                    ],
-                    'normalized' => 'FF'
+                    ]
                   },
                   'line_nr' => {
                     'file_name' => '',
@@ -1875,8 +1874,7 @@
                   [
                     {}
                   ]
-                ],
-                'normalized' => 'FF'
+                ]
               },
               'line_nr' => {
                 'file_name' => '',

Modified: trunk/tp/t/results/converters_tests/at_commands_in_refs.pl
===================================================================
--- trunk/tp/t/results/converters_tests/at_commands_in_refs.pl  2016-05-08 
16:10:00 UTC (rev 7157)
+++ trunk/tp/t/results/converters_tests/at_commands_in_refs.pl  2016-05-08 
16:33:27 UTC (rev 7158)
@@ -2657,8 +2657,7 @@
                           [
                             {}
                           ]
-                        ],
-                        'normalized' => 'AAA'
+                        ]
                       },
                       'line_nr' => {
                         'file_name' => '',
@@ -2692,8 +2691,7 @@
                             {}
                           ]
                         ],
-                        'explanation_contents' => [],
-                        'normalized' => 'AAA'
+                        'explanation_contents' => []
                       },
                       'line_nr' => {},
                       'parent' => {}
@@ -2722,8 +2720,7 @@
                           [
                             {}
                           ]
-                        ],
-                        'normalized' => 'BBB'
+                        ]
                       },
                       'line_nr' => {},
                       'parent' => {}
@@ -2819,8 +2816,7 @@
                           [
                             {}
                           ]
-                        ],
-                        'normalized' => 'CCC'
+                        ]
                       },
                       'line_nr' => {
                         'file_name' => '',
@@ -2854,8 +2850,7 @@
                             {}
                           ]
                         ],
-                        'explanation_contents' => [],
-                        'normalized' => 'CCC'
+                        'explanation_contents' => []
                       },
                       'line_nr' => {},
                       'parent' => {}
@@ -2884,8 +2879,7 @@
                           [
                             {}
                           ]
-                        ],
-                        'normalized' => 'DDD'
+                        ]
                       },
                       'line_nr' => {},
                       'parent' => {}
@@ -9301,8 +9295,7 @@
                   [
                     {}
                   ]
-                ],
-                'normalized' => 'AAA'
+                ]
               },
               'line_nr' => {
                 'file_name' => '',
@@ -9336,8 +9329,7 @@
                     {}
                   ]
                 ],
-                'explanation_contents' => [],
-                'normalized' => 'AAA'
+                'explanation_contents' => []
               },
               'line_nr' => {},
               'parent' => {}
@@ -9366,8 +9358,7 @@
                   [
                     {}
                   ]
-                ],
-                'normalized' => 'BBB'
+                ]
               },
               'line_nr' => {},
               'parent' => {}
@@ -9455,8 +9446,7 @@
                   [
                     {}
                   ]
-                ],
-                'normalized' => 'AAA'
+                ]
               },
               'line_nr' => {
                 'file_name' => '',
@@ -9490,8 +9480,7 @@
                     {}
                   ]
                 ],
-                'explanation_contents' => [],
-                'normalized' => 'AAA'
+                'explanation_contents' => []
               },
               'line_nr' => {},
               'parent' => {}
@@ -9520,8 +9509,7 @@
                   [
                     {}
                   ]
-                ],
-                'normalized' => 'BBB'
+                ]
               },
               'line_nr' => {},
               'parent' => {}
@@ -9611,8 +9599,7 @@
                   [
                     {}
                   ]
-                ],
-                'normalized' => 'CCC'
+                ]
               },
               'line_nr' => {
                 'file_name' => '',
@@ -9646,8 +9633,7 @@
                     {}
                   ]
                 ],
-                'explanation_contents' => [],
-                'normalized' => 'CCC'
+                'explanation_contents' => []
               },
               'line_nr' => {},
               'parent' => {}
@@ -9676,8 +9662,7 @@
                   [
                     {}
                   ]
-                ],
-                'normalized' => 'DDD'
+                ]
               },
               'line_nr' => {},
               'parent' => {}
@@ -9765,8 +9750,7 @@
                   [
                     {}
                   ]
-                ],
-                'normalized' => 'CCC'
+                ]
               },
               'line_nr' => {
                 'file_name' => '',
@@ -9800,8 +9784,7 @@
                     {}
                   ]
                 ],
-                'explanation_contents' => [],
-                'normalized' => 'CCC'
+                'explanation_contents' => []
               },
               'line_nr' => {},
               'parent' => {}
@@ -9830,8 +9813,7 @@
                   [
                     {}
                   ]
-                ],
-                'normalized' => 'DDD'
+                ]
               },
               'line_nr' => {},
               'parent' => {}
@@ -15117,8 +15099,7 @@
                           [
                             {}
                           ]
-                        ],
-                        'normalized' => 'AAA'
+                        ]
                       },
                       'line_nr' => {
                         'file_name' => '',
@@ -15152,8 +15133,7 @@
                             {}
                           ]
                         ],
-                        'explanation_contents' => [],
-                        'normalized' => 'AAA'
+                        'explanation_contents' => []
                       },
                       'line_nr' => {},
                       'parent' => {}
@@ -15182,8 +15162,7 @@
                           [
                             {}
                           ]
-                        ],
-                        'normalized' => 'BBB'
+                        ]
                       },
                       'line_nr' => {},
                       'parent' => {}
@@ -15267,8 +15246,7 @@
                           [
                             {}
                           ]
-                        ],
-                        'normalized' => 'CCC'
+                        ]
                       },
                       'line_nr' => {
                         'file_name' => '',
@@ -15302,8 +15280,7 @@
                             {}
                           ]
                         ],
-                        'explanation_contents' => [],
-                        'normalized' => 'CCC'
+                        'explanation_contents' => []
                       },
                       'line_nr' => {},
                       'parent' => {}
@@ -15332,8 +15309,7 @@
                           [
                             {}
                           ]
-                        ],
-                        'normalized' => 'DDD'
+                        ]
                       },
                       'line_nr' => {},
                       'parent' => {}

Modified: trunk/tp/t/results/converters_tests/at_commands_in_refs_latin1.pl
===================================================================
--- trunk/tp/t/results/converters_tests/at_commands_in_refs_latin1.pl   
2016-05-08 16:10:00 UTC (rev 7157)
+++ trunk/tp/t/results/converters_tests/at_commands_in_refs_latin1.pl   
2016-05-08 16:33:27 UTC (rev 7158)
@@ -2744,8 +2744,7 @@
                           [
                             {}
                           ]
-                        ],
-                        'normalized' => 'AAA'
+                        ]
                       },
                       'line_nr' => {
                         'file_name' => '',
@@ -2779,8 +2778,7 @@
                             {}
                           ]
                         ],
-                        'explanation_contents' => [],
-                        'normalized' => 'AAA'
+                        'explanation_contents' => []
                       },
                       'line_nr' => {},
                       'parent' => {}
@@ -2809,8 +2807,7 @@
                           [
                             {}
                           ]
-                        ],
-                        'normalized' => 'BBB'
+                        ]
                       },
                       'line_nr' => {},
                       'parent' => {}
@@ -2906,8 +2903,7 @@
                           [
                             {}
                           ]
-                        ],
-                        'normalized' => 'CCC'
+                        ]
                       },
                       'line_nr' => {
                         'file_name' => '',
@@ -2941,8 +2937,7 @@
                             {}
                           ]
                         ],
-                        'explanation_contents' => [],
-                        'normalized' => 'CCC'
+                        'explanation_contents' => []
                       },
                       'line_nr' => {},
                       'parent' => {}
@@ -2971,8 +2966,7 @@
                           [
                             {}
                           ]
-                        ],
-                        'normalized' => 'DDD'
+                        ]
                       },
                       'line_nr' => {},
                       'parent' => {}
@@ -9388,8 +9382,7 @@
                   [
                     {}
                   ]
-                ],
-                'normalized' => 'AAA'
+                ]
               },
               'line_nr' => {
                 'file_name' => '',
@@ -9423,8 +9416,7 @@
                     {}
                   ]
                 ],
-                'explanation_contents' => [],
-                'normalized' => 'AAA'
+                'explanation_contents' => []
               },
               'line_nr' => {},
               'parent' => {}
@@ -9453,8 +9445,7 @@
                   [
                     {}
                   ]
-                ],
-                'normalized' => 'BBB'
+                ]
               },
               'line_nr' => {},
               'parent' => {}
@@ -9542,8 +9533,7 @@
                   [
                     {}
                   ]
-                ],
-                'normalized' => 'AAA'
+                ]
               },
               'line_nr' => {
                 'file_name' => '',
@@ -9577,8 +9567,7 @@
                     {}
                   ]
                 ],
-                'explanation_contents' => [],
-                'normalized' => 'AAA'
+                'explanation_contents' => []
               },
               'line_nr' => {},
               'parent' => {}
@@ -9607,8 +9596,7 @@
                   [
                     {}
                   ]
-                ],
-                'normalized' => 'BBB'
+                ]
               },
               'line_nr' => {},
               'parent' => {}
@@ -9698,8 +9686,7 @@
                   [
                     {}
                   ]
-                ],
-                'normalized' => 'CCC'
+                ]
               },
               'line_nr' => {
                 'file_name' => '',
@@ -9733,8 +9720,7 @@
                     {}
                   ]
                 ],
-                'explanation_contents' => [],
-                'normalized' => 'CCC'
+                'explanation_contents' => []
               },
               'line_nr' => {},
               'parent' => {}
@@ -9763,8 +9749,7 @@
                   [
                     {}
                   ]
-                ],
-                'normalized' => 'DDD'
+                ]
               },
               'line_nr' => {},
               'parent' => {}
@@ -9852,8 +9837,7 @@
                   [
                     {}
                   ]
-                ],
-                'normalized' => 'CCC'
+                ]
               },
               'line_nr' => {
                 'file_name' => '',
@@ -9887,8 +9871,7 @@
                     {}
                   ]
                 ],
-                'explanation_contents' => [],
-                'normalized' => 'CCC'
+                'explanation_contents' => []
               },
               'line_nr' => {},
               'parent' => {}
@@ -9917,8 +9900,7 @@
                   [
                     {}
                   ]
-                ],
-                'normalized' => 'DDD'
+                ]
               },
               'line_nr' => {},
               'parent' => {}
@@ -15204,8 +15186,7 @@
                           [
                             {}
                           ]
-                        ],
-                        'normalized' => 'AAA'
+                        ]
                       },
                       'line_nr' => {
                         'file_name' => '',
@@ -15239,8 +15220,7 @@
                             {}
                           ]
                         ],
-                        'explanation_contents' => [],
-                        'normalized' => 'AAA'
+                        'explanation_contents' => []
                       },
                       'line_nr' => {},
                       'parent' => {}
@@ -15269,8 +15249,7 @@
                           [
                             {}
                           ]
-                        ],
-                        'normalized' => 'BBB'
+                        ]
                       },
                       'line_nr' => {},
                       'parent' => {}
@@ -15354,8 +15333,7 @@
                           [
                             {}
                           ]
-                        ],
-                        'normalized' => 'CCC'
+                        ]
                       },
                       'line_nr' => {
                         'file_name' => '',
@@ -15389,8 +15367,7 @@
                             {}
                           ]
                         ],
-                        'explanation_contents' => [],
-                        'normalized' => 'CCC'
+                        'explanation_contents' => []
                       },
                       'line_nr' => {},
                       'parent' => {}
@@ -15419,8 +15396,7 @@
                           [
                             {}
                           ]
-                        ],
-                        'normalized' => 'DDD'
+                        ]
                       },
                       'line_nr' => {},
                       'parent' => {}

Modified: trunk/tp/t/results/converters_tests/at_commands_in_refs_utf8.pl
===================================================================
--- trunk/tp/t/results/converters_tests/at_commands_in_refs_utf8.pl     
2016-05-08 16:10:00 UTC (rev 7157)
+++ trunk/tp/t/results/converters_tests/at_commands_in_refs_utf8.pl     
2016-05-08 16:33:27 UTC (rev 7158)
@@ -2744,8 +2744,7 @@
                           [
                             {}
                           ]
-                        ],
-                        'normalized' => 'AAA'
+                        ]
                       },
                       'line_nr' => {
                         'file_name' => '',
@@ -2779,8 +2778,7 @@
                             {}
                           ]
                         ],
-                        'explanation_contents' => [],
-                        'normalized' => 'AAA'
+                        'explanation_contents' => []
                       },
                       'line_nr' => {},
                       'parent' => {}
@@ -2809,8 +2807,7 @@
                           [
                             {}
                           ]
-                        ],
-                        'normalized' => 'BBB'
+                        ]
                       },
                       'line_nr' => {},
                       'parent' => {}
@@ -2906,8 +2903,7 @@
                           [
                             {}
                           ]
-                        ],
-                        'normalized' => 'CCC'
+                        ]
                       },
                       'line_nr' => {
                         'file_name' => '',
@@ -2941,8 +2937,7 @@
                             {}
                           ]
                         ],
-                        'explanation_contents' => [],
-                        'normalized' => 'CCC'
+                        'explanation_contents' => []
                       },
                       'line_nr' => {},
                       'parent' => {}
@@ -2971,8 +2966,7 @@
                           [
                             {}
                           ]
-                        ],
-                        'normalized' => 'DDD'
+                        ]
                       },
                       'line_nr' => {},
                       'parent' => {}
@@ -9388,8 +9382,7 @@
                   [
                     {}
                   ]
-                ],
-                'normalized' => 'AAA'
+                ]
               },
               'line_nr' => {
                 'file_name' => '',
@@ -9423,8 +9416,7 @@
                     {}
                   ]
                 ],
-                'explanation_contents' => [],
-                'normalized' => 'AAA'
+                'explanation_contents' => []
               },
               'line_nr' => {},
               'parent' => {}
@@ -9453,8 +9445,7 @@
                   [
                     {}
                   ]
-                ],
-                'normalized' => 'BBB'
+                ]
               },
               'line_nr' => {},
               'parent' => {}
@@ -9542,8 +9533,7 @@
                   [
                     {}
                   ]
-                ],
-                'normalized' => 'AAA'
+                ]
               },
               'line_nr' => {
                 'file_name' => '',
@@ -9577,8 +9567,7 @@
                     {}
                   ]
                 ],
-                'explanation_contents' => [],
-                'normalized' => 'AAA'
+                'explanation_contents' => []
               },
               'line_nr' => {},
               'parent' => {}
@@ -9607,8 +9596,7 @@
                   [
                     {}
                   ]
-                ],
-                'normalized' => 'BBB'
+                ]
               },
               'line_nr' => {},
               'parent' => {}
@@ -9698,8 +9686,7 @@
                   [
                     {}
                   ]
-                ],
-                'normalized' => 'CCC'
+                ]
               },
               'line_nr' => {
                 'file_name' => '',
@@ -9733,8 +9720,7 @@
                     {}
                   ]
                 ],
-                'explanation_contents' => [],
-                'normalized' => 'CCC'
+                'explanation_contents' => []
               },
               'line_nr' => {},
               'parent' => {}
@@ -9763,8 +9749,7 @@
                   [
                     {}
                   ]
-                ],
-                'normalized' => 'DDD'
+                ]
               },
               'line_nr' => {},
               'parent' => {}
@@ -9852,8 +9837,7 @@
                   [
                     {}
                   ]
-                ],
-                'normalized' => 'CCC'
+                ]
               },
               'line_nr' => {
                 'file_name' => '',
@@ -9887,8 +9871,7 @@
                     {}
                   ]
                 ],
-                'explanation_contents' => [],
-                'normalized' => 'CCC'
+                'explanation_contents' => []
               },
               'line_nr' => {},
               'parent' => {}
@@ -9917,8 +9900,7 @@
                   [
                     {}
                   ]
-                ],
-                'normalized' => 'DDD'
+                ]
               },
               'line_nr' => {},
               'parent' => {}
@@ -15204,8 +15186,7 @@
                           [
                             {}
                           ]
-                        ],
-                        'normalized' => 'AAA'
+                        ]
                       },
                       'line_nr' => {
                         'file_name' => '',
@@ -15239,8 +15220,7 @@
                             {}
                           ]
                         ],
-                        'explanation_contents' => [],
-                        'normalized' => 'AAA'
+                        'explanation_contents' => []
                       },
                       'line_nr' => {},
                       'parent' => {}
@@ -15269,8 +15249,7 @@
                           [
                             {}
                           ]
-                        ],
-                        'normalized' => 'BBB'
+                        ]
                       },
                       'line_nr' => {},
                       'parent' => {}
@@ -15354,8 +15333,7 @@
                           [
                             {}
                           ]
-                        ],
-                        'normalized' => 'CCC'
+                        ]
                       },
                       'line_nr' => {
                         'file_name' => '',
@@ -15389,8 +15367,7 @@
                             {}
                           ]
                         ],
-                        'explanation_contents' => [],
-                        'normalized' => 'CCC'
+                        'explanation_contents' => []
                       },
                       'line_nr' => {},
                       'parent' => {}
@@ -15419,8 +15396,7 @@
                           [
                             {}
                           ]
-                        ],
-                        'normalized' => 'DDD'
+                        ]
                       },
                       'line_nr' => {},
                       'parent' => {}

Modified: trunk/tp/t/results/coverage_braces/abbr_acronym.pl
===================================================================
--- trunk/tp/t/results/coverage_braces/abbr_acronym.pl  2016-05-08 16:10:00 UTC 
(rev 7157)
+++ trunk/tp/t/results/coverage_braces/abbr_acronym.pl  2016-05-08 16:33:27 UTC 
(rev 7158)
@@ -42,8 +42,7 @@
               [
                 {}
               ]
-            ],
-            'normalized' => '_002d_002da'
+            ]
           },
           'line_nr' => {
             'file_name' => '',
@@ -78,8 +77,7 @@
                 {}
               ]
             ],
-            'explanation_contents' => [],
-            'normalized' => '_002d_002da'
+            'explanation_contents' => []
           },
           'line_nr' => {
             'file_name' => '',
@@ -163,8 +161,7 @@
                 {},
                 {}
               ]
-            ],
-            'normalized' => '_002d_002da'
+            ]
           },
           'line_nr' => {},
           'parent' => {}
@@ -316,8 +313,7 @@
                 {},
                 {}
               ]
-            ],
-            'normalized' => '_00c9_002d_002da_002e-_002cA_002e'
+            ]
           },
           'line_nr' => {},
           'parent' => {}
@@ -390,8 +386,7 @@
                 {}
               ]
             ],
-            'explanation_contents' => [],
-            'normalized' => '_00c9_002d_002da_002e-_002cA_002e'
+            'explanation_contents' => []
           },
           'line_nr' => {},
           'parent' => {}

Modified: trunk/tp/t/results/coverage_braces/nested_in_sc.pl
===================================================================
--- trunk/tp/t/results/coverage_braces/nested_in_sc.pl  2016-05-08 16:10:00 UTC 
(rev 7157)
+++ trunk/tp/t/results/coverage_braces/nested_in_sc.pl  2016-05-08 16:33:27 UTC 
(rev 7158)
@@ -178,8 +178,7 @@
                               [
                                 {}
                               ]
-                            ],
-                            'normalized' => 'ABr'
+                            ]
                           },
                           'line_nr' => {},
                           'parent' => {}

Modified: trunk/tp/t/results/coverage_braces/recursive_acronym.pl
===================================================================
--- trunk/tp/t/results/coverage_braces/recursive_acronym.pl     2016-05-08 
16:10:00 UTC (rev 7157)
+++ trunk/tp/t/results/coverage_braces/recursive_acronym.pl     2016-05-08 
16:33:27 UTC (rev 7158)
@@ -48,8 +48,7 @@
                       [
                         {}
                       ]
-                    ],
-                    'normalized' => 'GNU'
+                    ]
                   },
                   'line_nr' => {
                     'file_name' => '',
@@ -78,8 +77,7 @@
                 {},
                 {}
               ]
-            ],
-            'normalized' => 'GNU'
+            ]
           },
           'line_nr' => {},
           'parent' => {}

Modified: trunk/tp/t/results/coverage_braces/too_much_args.pl
===================================================================
--- trunk/tp/t/results/coverage_braces/too_much_args.pl 2016-05-08 16:10:00 UTC 
(rev 7157)
+++ trunk/tp/t/results/coverage_braces/too_much_args.pl 2016-05-08 16:33:27 UTC 
(rev 7158)
@@ -47,8 +47,7 @@
               [
                 {}
               ]
-            ],
-            'normalized' => 'AZE'
+            ]
           },
           'line_nr' => {
             'file_name' => '',

Modified: trunk/tp/t/results/html_tests/commands_in_abbr.pl
===================================================================
--- trunk/tp/t/results/html_tests/commands_in_abbr.pl   2016-05-08 16:10:00 UTC 
(rev 7157)
+++ trunk/tp/t/results/html_tests/commands_in_abbr.pl   2016-05-08 16:33:27 UTC 
(rev 7158)
@@ -70,8 +70,7 @@
                 {},
                 {}
               ]
-            ],
-            'normalized' => 'A'
+            ]
           },
           'line_nr' => {},
           'parent' => {}
@@ -166,8 +165,7 @@
                     {},
                     {}
                   ]
-                ],
-                'normalized' => 'A'
+                ]
               },
               'line_nr' => {},
               'parent' => {}

Modified: trunk/tp/t/results/menu/formats_in_menu.pl
===================================================================
--- trunk/tp/t/results/menu/formats_in_menu.pl  2016-05-08 16:10:00 UTC (rev 
7157)
+++ trunk/tp/t/results/menu/formats_in_menu.pl  2016-05-08 16:33:27 UTC (rev 
7158)
@@ -603,8 +603,7 @@
                                 {},
                                 {}
                               ]
-                            ],
-                            'normalized' => 
'description-_002a-acronym_003a_003a'
+                            ]
                           },
                           'line_nr' => {
                             'file_name' => '',

Modified: trunk/tp/t/results/plaintext_tests/at_commands_glued_in_example.pl
===================================================================
--- trunk/tp/t/results/plaintext_tests/at_commands_glued_in_example.pl  
2016-05-08 16:10:00 UTC (rev 7157)
+++ trunk/tp/t/results/plaintext_tests/at_commands_glued_in_example.pl  
2016-05-08 16:33:27 UTC (rev 7158)
@@ -133,8 +133,7 @@
                   [
                     {}
                   ]
-                ],
-                'normalized' => 'ABC'
+                ]
               },
               'line_nr' => {
                 'file_name' => '',
@@ -173,8 +172,7 @@
                     {}
                   ]
                 ],
-                'explanation_contents' => [],
-                'normalized' => 'ABC'
+                'explanation_contents' => []
               },
               'line_nr' => {
                 'file_name' => '',

Modified: trunk/tp/t/results/plaintext_tests/at_commands_glued_in_paragraph.pl
===================================================================
--- trunk/tp/t/results/plaintext_tests/at_commands_glued_in_paragraph.pl        
2016-05-08 16:10:00 UTC (rev 7157)
+++ trunk/tp/t/results/plaintext_tests/at_commands_glued_in_paragraph.pl        
2016-05-08 16:33:27 UTC (rev 7158)
@@ -121,8 +121,7 @@
               [
                 {}
               ]
-            ],
-            'normalized' => 'ABC'
+            ]
           },
           'line_nr' => {
             'file_name' => '',
@@ -161,8 +160,7 @@
                 {}
               ]
             ],
-            'explanation_contents' => [],
-            'normalized' => 'ABC'
+            'explanation_contents' => []
           },
           'line_nr' => {
             'file_name' => '',

Modified: trunk/tp/t/results/plaintext_tests/punctuation_abbr_acronym.pl
===================================================================
--- trunk/tp/t/results/plaintext_tests/punctuation_abbr_acronym.pl      
2016-05-08 16:10:00 UTC (rev 7157)
+++ trunk/tp/t/results/plaintext_tests/punctuation_abbr_acronym.pl      
2016-05-08 16:33:27 UTC (rev 7158)
@@ -29,8 +29,7 @@
               [
                 {}
               ]
-            ],
-            'normalized' => 'AAA'
+            ]
           },
           'line_nr' => {
             'file_name' => '',
@@ -63,8 +62,7 @@
               [
                 {}
               ]
-            ],
-            'normalized' => 'BBB'
+            ]
           },
           'line_nr' => {},
           'parent' => {}
@@ -93,8 +91,7 @@
               [
                 {}
               ]
-            ],
-            'normalized' => 'aaa'
+            ]
           },
           'line_nr' => {},
           'parent' => {}
@@ -123,8 +120,7 @@
               [
                 {}
               ]
-            ],
-            'normalized' => 'bbb'
+            ]
           },
           'line_nr' => {},
           'parent' => {}
@@ -172,8 +168,7 @@
               [
                 {}
               ]
-            ],
-            'normalized' => 'AAA'
+            ]
           },
           'line_nr' => {
             'file_name' => '',
@@ -224,8 +219,7 @@
               [
                 {}
               ]
-            ],
-            'normalized' => 'BBB'
+            ]
           },
           'line_nr' => {},
           'parent' => {}
@@ -272,8 +266,7 @@
               [
                 {}
               ]
-            ],
-            'normalized' => 'aaa'
+            ]
           },
           'line_nr' => {},
           'parent' => {}
@@ -321,8 +314,7 @@
               [
                 {}
               ]
-            ],
-            'normalized' => 'bbb'
+            ]
           },
           'line_nr' => {
             'file_name' => '',

Modified: trunk/tp/t/results/raw/inline_in_example.pl
===================================================================
--- trunk/tp/t/results/raw/inline_in_example.pl 2016-05-08 16:10:00 UTC (rev 
7157)
+++ trunk/tp/t/results/raw/inline_in_example.pl 2016-05-08 16:33:27 UTC (rev 
7158)
@@ -228,8 +228,7 @@
                           [
                             {}
                           ]
-                        ],
-                        'normalized' => 'HTML'
+                        ]
                       },
                       'line_nr' => {
                         'file_name' => '',

Modified: trunk/tp/t/results/raw/inlinefmt.pl
===================================================================
--- trunk/tp/t/results/raw/inlinefmt.pl 2016-05-08 16:10:00 UTC (rev 7157)
+++ trunk/tp/t/results/raw/inlinefmt.pl 2016-05-08 16:33:27 UTC (rev 7158)
@@ -128,8 +128,7 @@
                       [
                         {}
                       ]
-                    ],
-                    'normalized' => 'HTML'
+                    ]
                   },
                   'line_nr' => {
                     'file_name' => '',

Modified: trunk/tp/t/results/raw/inlinefmt_with_empty_line.pl
===================================================================
--- trunk/tp/t/results/raw/inlinefmt_with_empty_line.pl 2016-05-08 16:10:00 UTC 
(rev 7157)
+++ trunk/tp/t/results/raw/inlinefmt_with_empty_line.pl 2016-05-08 16:33:27 UTC 
(rev 7158)
@@ -177,8 +177,7 @@
               [
                 {}
               ]
-            ],
-            'normalized' => 'HTML'
+            ]
           },
           'line_nr' => {
             'file_name' => '',

Modified: trunk/tp/t/results/raw/inlineraw.pl
===================================================================
--- trunk/tp/t/results/raw/inlineraw.pl 2016-05-08 16:10:00 UTC (rev 7157)
+++ trunk/tp/t/results/raw/inlineraw.pl 2016-05-08 16:33:27 UTC (rev 7158)
@@ -128,8 +128,7 @@
                       [
                         {}
                       ]
-                    ],
-                    'normalized' => 'HTML'
+                    ]
                   },
                   'line_nr' => {
                     'file_name' => '',

Modified: trunk/tp/t/results/raw/inlineraw_with_empty_line.pl
===================================================================
--- trunk/tp/t/results/raw/inlineraw_with_empty_line.pl 2016-05-08 16:10:00 UTC 
(rev 7157)
+++ trunk/tp/t/results/raw/inlineraw_with_empty_line.pl 2016-05-08 16:33:27 UTC 
(rev 7158)
@@ -151,8 +151,7 @@
                       [
                         {}
                       ]
-                    ],
-                    'normalized' => 'HTML'
+                    ]
                   },
                   'line_nr' => {
                     'file_name' => '',

Modified: trunk/tp/t/results/sectioning/non_automatic_internal_top_node_up.pl
===================================================================
--- trunk/tp/t/results/sectioning/non_automatic_internal_top_node_up.pl 
2016-05-08 16:10:00 UTC (rev 7157)
+++ trunk/tp/t/results/sectioning/non_automatic_internal_top_node_up.pl 
2016-05-08 16:33:27 UTC (rev 7158)
@@ -94,8 +94,7 @@
                             [
                               {}
                             ]
-                          ],
-                          'normalized' => 'GNU'
+                          ]
                         },
                         'line_nr' => {
                           'file_name' => '',
@@ -124,8 +123,7 @@
                       {},
                       {}
                     ]
-                  ],
-                  'normalized' => 'GNU'
+                  ]
                 },
                 'line_nr' => {},
                 'parent' => {}
@@ -185,8 +183,7 @@
                               {}
                             ]
                           ],
-                          'explanation_contents' => [],
-                          'normalized' => 'GNU'
+                          'explanation_contents' => []
                         },
                         'line_nr' => {},
                         'parent' => {}
@@ -211,8 +208,7 @@
                       {},
                       {}
                     ]
-                  ],
-                  'normalized' => 'GNU'
+                  ]
                 },
                 'line_nr' => {},
                 'parent' => {}
@@ -552,8 +548,7 @@
                               {}
                             ]
                           ],
-                          'explanation_contents' => [],
-                          'normalized' => 'GNU'
+                          'explanation_contents' => []
                         },
                         'line_nr' => {
                           'file_name' => '',
@@ -582,8 +577,7 @@
                       {},
                       {}
                     ]
-                  ],
-                  'normalized' => 'GNU'
+                  ]
                 },
                 'line_nr' => {},
                 'parent' => {}

Modified: trunk/tp/t/results/sectioning/non_automatic_top_node_up_and_url.pl
===================================================================
--- trunk/tp/t/results/sectioning/non_automatic_top_node_up_and_url.pl  
2016-05-08 16:10:00 UTC (rev 7157)
+++ trunk/tp/t/results/sectioning/non_automatic_top_node_up_and_url.pl  
2016-05-08 16:33:27 UTC (rev 7158)
@@ -94,8 +94,7 @@
                             [
                               {}
                             ]
-                          ],
-                          'normalized' => 'GNU'
+                          ]
                         },
                         'line_nr' => {
                           'file_name' => '',
@@ -124,8 +123,7 @@
                       {},
                       {}
                     ]
-                  ],
-                  'normalized' => 'GNU'
+                  ]
                 },
                 'line_nr' => {},
                 'parent' => {}
@@ -185,8 +183,7 @@
                               {}
                             ]
                           ],
-                          'explanation_contents' => [],
-                          'normalized' => 'GNU'
+                          'explanation_contents' => []
                         },
                         'line_nr' => {},
                         'parent' => {}
@@ -211,8 +208,7 @@
                       {},
                       {}
                     ]
-                  ],
-                  'normalized' => 'GNU'
+                  ]
                 },
                 'line_nr' => {},
                 'parent' => {}
@@ -552,8 +548,7 @@
                               {}
                             ]
                           ],
-                          'explanation_contents' => [],
-                          'normalized' => 'GNU'
+                          'explanation_contents' => []
                         },
                         'line_nr' => {
                           'file_name' => '',
@@ -582,8 +577,7 @@
                       {},
                       {}
                     ]
-                  ],
-                  'normalized' => 'GNU'
+                  ]
                 },
                 'line_nr' => {},
                 'parent' => {}




reply via email to

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