texinfo-commits
[Top][All Lists]
Advanced

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

[7493] don't record normalized for xref to another manual


From: gavinsmith0123
Subject: [7493] don't record normalized for xref to another manual
Date: Thu, 3 Nov 2016 10:10:19 +0000 (UTC)

Revision: 7493
          http://svn.sv.gnu.org/viewvc/?view=rev&root=texinfo&revision=7493
Author:   gavin
Date:     2016-11-03 10:10:19 +0000 (Thu, 03 Nov 2016)
Log Message:
-----------
don't record normalized for xref to another manual

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/tp/Texinfo/Convert/TexinfoXML.pm
    trunk/tp/Texinfo/Parser.pm
    trunk/tp/t/results/converters_tests/ref_error_formatting.pl
    trunk/tp/t/results/converters_tests/ref_in_sectioning.pl
    trunk/tp/t/results/converters_tests/refs_formatting.pl
    trunk/tp/t/results/converters_tests/some_at_commands_in_ref_nodes.pl
    trunk/tp/t/results/converters_tests/top_in_ref.pl
    trunk/tp/t/results/converters_tests/top_in_ref_keep_top.pl
    trunk/tp/t/results/coverage_braces/nested_args.pl
    trunk/tp/t/results/coverage_braces/uref_in_ref.pl
    trunk/tp/t/results/float/numbering_captions_listoffloats.pl
    trunk/tp/t/results/html_tests/check_htmlxref.pl
    trunk/tp/t/results/invalid_nestings/on_node_line.pl
    trunk/tp/t/results/sectioning/character_and_spaces_in_refs.pl
    trunk/tp/t/results/sectioning/character_and_spaces_in_refs_out.pl

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog     2016-11-02 21:10:55 UTC (rev 7492)
+++ trunk/ChangeLog     2016-11-03 10:10:19 UTC (rev 7493)
@@ -1,3 +1,12 @@
+2016-11-03  Gavin Smith  <address@hidden>
+
+       * tp/Texinfo/Parser.pm (_parse_texi) <cross-reference commands>:
+       Don't record 'normalized' value on command if cross-reference is
+       to another manual.
+       (_check_empty_node): Check that 'normalized' value is defined.
+       * tp/Texinfo/Convert/TexinfoXML.pm (_convert): Call normalize_node
+       to compensate.
+
 2016-11-02  Gavin Smith  <address@hidden>
 
        * tp/Texinfo/Convert/DocBook.pm (_convert) <xref commands>: 

Modified: trunk/tp/Texinfo/Convert/TexinfoXML.pm
===================================================================
--- trunk/tp/Texinfo/Convert/TexinfoXML.pm      2016-11-02 21:10:55 UTC (rev 
7492)
+++ trunk/tp/Texinfo/Convert/TexinfoXML.pm      2016-11-03 10:10:19 UTC (rev 
7493)
@@ -1219,11 +1219,18 @@
         }
       } elsif ($Texinfo::Common::ref_commands{$root->{'cmdname'}}) {
         if ($root->{'extra'}->{'brace_command_contents'}) {
+          my $normalized;
           if ($root->{'extra'}->{'node_argument'}
-              and $root->{'extra'}->{'node_argument'}->{'node_content'}
-              and 
defined($root->{'extra'}->{'node_argument'}->{'normalized'})) {
-            push @$attribute, ('label', 
-                 $root->{'extra'}->{'node_argument'}->{'normalized'});
+              and $root->{'extra'}->{'node_argument'}->{'node_content'}) {
+            my $normalized;
+            if (defined($root->{'extra'}->{'node_argument'}->{'normalized'})) {
+              $normalized = 
$root->{'extra'}->{'node_argument'}->{'normalized'};
+            } else {
+              $normalized = 
Texinfo::Convert::NodeNameNormalization::normalize_node( {'contents' => 
$root->{'extra'}->{'node_argument'}->{'node_content'} } );
+            }
+            if ($normalized) {
+              push @$attribute, ('label', $normalized);
+            }
           }
           my $manual;
           my $manual_arg_index = 3;

Modified: trunk/tp/Texinfo/Parser.pm
===================================================================
--- trunk/tp/Texinfo/Parser.pm  2016-11-02 21:10:55 UTC (rev 7492)
+++ trunk/tp/Texinfo/Parser.pm  2016-11-03 10:10:19 UTC (rev 7493)
@@ -3467,7 +3467,8 @@
     $self->line_error (sprintf($self->__("empty argument in address@hidden"),
                 $command), $line_nr);
     return 0;
-  } elsif ($parsed_node->{'normalized'} !~ /[^-]/) {
+  } elsif (defined($parsed_node->{'normalized'})
+             and $parsed_node->{'normalized'} !~ /[^-]/) {
     $self->line_error (sprintf($self->__("empty node name after expansion 
`%s'"),
                 Texinfo::Convert::Texinfo::convert({'contents' 
                                         => $parsed_node->{'node_content'}})), 
@@ -5091,8 +5092,12 @@
                                         $closed_command), $line_nr);
                 } else {
                   my $parsed_ref_node = 
_parse_node_manual($ref->{'args'}->[0]);
-                  $ref->{'extra'}->{'node_argument'} = $parsed_ref_node
-                     if (defined($parsed_ref_node));
+                  if (defined($parsed_ref_node)) {
+                    if ($args[3] or $args[4]) {
+                      delete $parsed_ref_node->{'normalized'};
+                    }
+                    $ref->{'extra'}->{'node_argument'} = $parsed_ref_node
+                  }
                   if ($closed_command ne 'inforef' 
                       and !defined($args[3]) and !defined($args[4])
                       and !$parsed_ref_node->{'manual_content'}) {

Modified: trunk/tp/t/results/converters_tests/ref_error_formatting.pl
===================================================================
--- trunk/tp/t/results/converters_tests/ref_error_formatting.pl 2016-11-02 
21:10:55 UTC (rev 7492)
+++ trunk/tp/t/results/converters_tests/ref_error_formatting.pl 2016-11-03 
10:10:19 UTC (rev 7493)
@@ -732,8 +732,7 @@
             'node_argument' => {
               'node_content' => [
                 {}
-              ],
-              'normalized' => 'node'
+              ]
             }
           },
           'line_nr' => {},
@@ -841,8 +840,7 @@
             'node_argument' => {
               'node_content' => [
                 {}
-              ],
-              'normalized' => 'node'
+              ]
             }
           },
           'line_nr' => {},
@@ -1061,8 +1059,7 @@
             'node_argument' => {
               'node_content' => [
                 {}
-              ],
-              'normalized' => 'node'
+              ]
             }
           },
           'line_nr' => {},
@@ -1177,8 +1174,7 @@
             'node_argument' => {
               'node_content' => [
                 {}
-              ],
-              'normalized' => 'node'
+              ]
             }
           },
           'line_nr' => {},
@@ -1294,8 +1290,7 @@
             'node_argument' => {
               'node_content' => [
                 {}
-              ],
-              'normalized' => 'node'
+              ]
             }
           },
           'line_nr' => {},
@@ -1417,8 +1412,7 @@
             'node_argument' => {
               'node_content' => [
                 {}
-              ],
-              'normalized' => 'node'
+              ]
             }
           },
           'line_nr' => {},
@@ -1557,8 +1551,7 @@
             'node_argument' => {
               'node_content' => [
                 {}
-              ],
-              'normalized' => 'node'
+              ]
             }
           },
           'line_nr' => {},
@@ -1667,8 +1660,7 @@
             'node_argument' => {
               'node_content' => [
                 {}
-              ],
-              'normalized' => 'node'
+              ]
             }
           },
           'line_nr' => {},
@@ -1783,8 +1775,7 @@
             'node_argument' => {
               'node_content' => [
                 {}
-              ],
-              'normalized' => 'node'
+              ]
             }
           },
           'line_nr' => {},
@@ -1916,8 +1907,7 @@
             'node_argument' => {
               'node_content' => [
                 {}
-              ],
-              'normalized' => 'node'
+              ]
             }
           },
           'line_nr' => {},
@@ -2032,8 +2022,7 @@
             'node_argument' => {
               'node_content' => [
                 {}
-              ],
-              'normalized' => 'node'
+              ]
             }
           },
           'line_nr' => {},

Modified: trunk/tp/t/results/converters_tests/ref_in_sectioning.pl
===================================================================
--- trunk/tp/t/results/converters_tests/ref_in_sectioning.pl    2016-11-02 
21:10:55 UTC (rev 7492)
+++ trunk/tp/t/results/converters_tests/ref_in_sectioning.pl    2016-11-03 
10:10:19 UTC (rev 7493)
@@ -297,8 +297,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -621,8 +620,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'node'
+                  ]
                 }
               },
               'line_nr' => {
@@ -1123,8 +1121,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'node'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -1243,8 +1240,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'node'
+                  ]
                 }
               },
               'line_nr' => {
@@ -1367,8 +1363,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {
@@ -1829,8 +1824,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 },
                 'spaces_before_argument' => {}
               },
@@ -2049,8 +2043,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {

Modified: trunk/tp/t/results/converters_tests/refs_formatting.pl
===================================================================
--- trunk/tp/t/results/converters_tests/refs_formatting.pl      2016-11-02 
21:10:55 UTC (rev 7492)
+++ trunk/tp/t/results/converters_tests/refs_formatting.pl      2016-11-03 
10:10:19 UTC (rev 7493)
@@ -379,8 +379,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'chapter'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -488,8 +487,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'chapter'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -709,8 +707,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'chapter'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -825,8 +822,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'chapter'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -942,8 +938,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'chapter'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -1065,8 +1060,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'chapter'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -1205,8 +1199,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'chapter'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -1315,8 +1308,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'chapter'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -1431,8 +1423,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'chapter'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -1564,8 +1555,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'chapter'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -1680,8 +1670,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'chapter'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -2010,8 +1999,7 @@
                       'parent' => {},
                       'text' => 'anode'
                     }
-                  ],
-                  'normalized' => 'anode'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -2128,8 +2116,7 @@
                       'parent' => {},
                       'text' => 'anode'
                     }
-                  ],
-                  'normalized' => 'anode'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -2366,8 +2353,7 @@
                       'parent' => {},
                       'text' => 'anode'
                     }
-                  ],
-                  'normalized' => 'anode'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -2491,8 +2477,7 @@
                       'parent' => {},
                       'text' => 'anode'
                     }
-                  ],
-                  'normalized' => 'anode'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -2617,8 +2602,7 @@
                       'parent' => {},
                       'text' => 'anode'
                     }
-                  ],
-                  'normalized' => 'anode'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -2749,8 +2733,7 @@
                       'parent' => {},
                       'text' => 'anode'
                     }
-                  ],
-                  'normalized' => 'anode'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -2898,8 +2881,7 @@
                       'parent' => {},
                       'text' => 'anode'
                     }
-                  ],
-                  'normalized' => 'anode'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -3017,8 +2999,7 @@
                       'parent' => {},
                       'text' => 'anode'
                     }
-                  ],
-                  'normalized' => 'anode'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -3142,8 +3123,7 @@
                       'parent' => {},
                       'text' => 'anode'
                     }
-                  ],
-                  'normalized' => 'anode'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -3284,8 +3264,7 @@
                       'parent' => {},
                       'text' => 'anode'
                     }
-                  ],
-                  'normalized' => 'anode'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -3409,8 +3388,7 @@
                       'parent' => {},
                       'text' => 'anode'
                     }
-                  ],
-                  'normalized' => 'anode'
+                  ]
                 }
               },
               'line_nr' => {},

Modified: trunk/tp/t/results/converters_tests/some_at_commands_in_ref_nodes.pl
===================================================================
--- trunk/tp/t/results/converters_tests/some_at_commands_in_ref_nodes.pl        
2016-11-02 21:10:55 UTC (rev 7492)
+++ trunk/tp/t/results/converters_tests/some_at_commands_in_ref_nodes.pl        
2016-11-03 10:10:19 UTC (rev 7493)
@@ -1272,8 +1272,7 @@
                     {},
                     {},
                     {}
-                  ],
-                  'normalized' => 
'a-strong-ref-with-SC_002c-a-i-trema-_00ef_002c-a-dotless-i-trema-_00ef-_1e14-and-exclamdown-_00a1'
+                  ]
                 }
               },
               'line_nr' => {},

Modified: trunk/tp/t/results/converters_tests/top_in_ref.pl
===================================================================
--- trunk/tp/t/results/converters_tests/top_in_ref.pl   2016-11-02 21:10:55 UTC 
(rev 7492)
+++ trunk/tp/t/results/converters_tests/top_in_ref.pl   2016-11-03 10:10:19 UTC 
(rev 7493)
@@ -330,8 +330,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -439,8 +438,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -660,8 +658,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -776,8 +773,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -893,8 +889,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -1016,8 +1011,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -1156,8 +1150,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -1266,8 +1259,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -1382,8 +1374,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -1515,8 +1506,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -1631,8 +1621,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -1961,8 +1950,7 @@
                       'parent' => {},
                       'text' => 'Top'
                     }
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -2079,8 +2067,7 @@
                       'parent' => {},
                       'text' => 'Top'
                     }
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -2317,8 +2304,7 @@
                       'parent' => {},
                       'text' => 'Top'
                     }
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -2442,8 +2428,7 @@
                       'parent' => {},
                       'text' => 'Top'
                     }
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -2568,8 +2553,7 @@
                       'parent' => {},
                       'text' => 'Top'
                     }
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -2700,8 +2684,7 @@
                       'parent' => {},
                       'text' => 'Top'
                     }
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -2849,8 +2832,7 @@
                       'parent' => {},
                       'text' => 'Top'
                     }
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -2968,8 +2950,7 @@
                       'parent' => {},
                       'text' => 'Top'
                     }
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -3093,8 +3074,7 @@
                       'parent' => {},
                       'text' => 'Top'
                     }
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -3235,8 +3215,7 @@
                       'parent' => {},
                       'text' => 'Top'
                     }
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -3360,8 +3339,7 @@
                       'parent' => {},
                       'text' => 'Top'
                     }
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},

Modified: trunk/tp/t/results/converters_tests/top_in_ref_keep_top.pl
===================================================================
--- trunk/tp/t/results/converters_tests/top_in_ref_keep_top.pl  2016-11-02 
21:10:55 UTC (rev 7492)
+++ trunk/tp/t/results/converters_tests/top_in_ref_keep_top.pl  2016-11-03 
10:10:19 UTC (rev 7493)
@@ -330,8 +330,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -439,8 +438,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -660,8 +658,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -776,8 +773,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -893,8 +889,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -1016,8 +1011,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -1156,8 +1150,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -1266,8 +1259,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -1382,8 +1374,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -1515,8 +1506,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -1631,8 +1621,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -1961,8 +1950,7 @@
                       'parent' => {},
                       'text' => 'Top'
                     }
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -2079,8 +2067,7 @@
                       'parent' => {},
                       'text' => 'Top'
                     }
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -2317,8 +2304,7 @@
                       'parent' => {},
                       'text' => 'Top'
                     }
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -2442,8 +2428,7 @@
                       'parent' => {},
                       'text' => 'Top'
                     }
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -2568,8 +2553,7 @@
                       'parent' => {},
                       'text' => 'Top'
                     }
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -2700,8 +2684,7 @@
                       'parent' => {},
                       'text' => 'Top'
                     }
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -2849,8 +2832,7 @@
                       'parent' => {},
                       'text' => 'Top'
                     }
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -2968,8 +2950,7 @@
                       'parent' => {},
                       'text' => 'Top'
                     }
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -3093,8 +3074,7 @@
                       'parent' => {},
                       'text' => 'Top'
                     }
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -3235,8 +3215,7 @@
                       'parent' => {},
                       'text' => 'Top'
                     }
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},
@@ -3360,8 +3339,7 @@
                       'parent' => {},
                       'text' => 'Top'
                     }
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 }
               },
               'line_nr' => {},

Modified: trunk/tp/t/results/coverage_braces/nested_args.pl
===================================================================
--- trunk/tp/t/results/coverage_braces/nested_args.pl   2016-11-02 21:10:55 UTC 
(rev 7492)
+++ trunk/tp/t/results/coverage_braces/nested_args.pl   2016-11-03 10:10:19 UTC 
(rev 7493)
@@ -179,8 +179,7 @@
                 {},
                 {},
                 {}
-              ],
-              'normalized' => '_0040-in-samp'
+              ]
             }
           },
           'line_nr' => {},

Modified: trunk/tp/t/results/coverage_braces/uref_in_ref.pl
===================================================================
--- trunk/tp/t/results/coverage_braces/uref_in_ref.pl   2016-11-02 21:10:55 UTC 
(rev 7492)
+++ trunk/tp/t/results/coverage_braces/uref_in_ref.pl   2016-11-03 10:10:19 UTC 
(rev 7493)
@@ -274,8 +274,7 @@
                   'parent' => {},
                   'text' => 'node'
                 }
-              ],
-              'normalized' => 'node'
+              ]
             }
           },
           'line_nr' => {},

Modified: trunk/tp/t/results/float/numbering_captions_listoffloats.pl
===================================================================
--- trunk/tp/t/results/float/numbering_captions_listoffloats.pl 2016-11-02 
21:10:55 UTC (rev 7492)
+++ trunk/tp/t/results/float/numbering_captions_listoffloats.pl 2016-11-03 
10:10:19 UTC (rev 7493)
@@ -6043,8 +6043,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'text-with-a-lot-of-features'
+                  ]
                 }
               },
               'line_nr' => {
@@ -6160,8 +6159,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'text-with-a-lot-of-features'
+                  ]
                 }
               },
               'line_nr' => {

Modified: trunk/tp/t/results/html_tests/check_htmlxref.pl
===================================================================
--- trunk/tp/t/results/html_tests/check_htmlxref.pl     2016-11-02 21:10:55 UTC 
(rev 7492)
+++ trunk/tp/t/results/html_tests/check_htmlxref.pl     2016-11-03 10:10:19 UTC 
(rev 7493)
@@ -251,8 +251,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'a'
+                  ]
                 }
               },
               'line_nr' => {
@@ -345,8 +344,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'a'
+                  ]
                 }
               },
               'line_nr' => {

Modified: trunk/tp/t/results/invalid_nestings/on_node_line.pl
===================================================================
--- trunk/tp/t/results/invalid_nestings/on_node_line.pl 2016-11-02 21:10:55 UTC 
(rev 7492)
+++ trunk/tp/t/results/invalid_nestings/on_node_line.pl 2016-11-03 10:10:19 UTC 
(rev 7493)
@@ -103,8 +103,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'a'
+                  ]
                 }
               },
               'line_nr' => {

Modified: trunk/tp/t/results/sectioning/character_and_spaces_in_refs.pl
===================================================================
--- trunk/tp/t/results/sectioning/character_and_spaces_in_refs.pl       
2016-11-02 21:10:55 UTC (rev 7492)
+++ trunk/tp/t/results/sectioning/character_and_spaces_in_refs.pl       
2016-11-03 10:10:19 UTC (rev 7493)
@@ -338,8 +338,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'a-node'
+                  ]
                 },
                 'spaces_before_argument' => {}
               },
@@ -404,8 +403,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => '_003a'
+                  ]
                 }
               },
               'line_nr' => {
@@ -484,8 +482,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'Top'
+                  ]
                 },
                 'spaces_before_argument' => {}
               },
@@ -604,8 +601,7 @@
                 'node_argument' => {
                   'node_content' => [
                     {}
-                  ],
-                  'normalized' => 'node'
+                  ]
                 }
               },
               'line_nr' => {

Modified: trunk/tp/t/results/sectioning/character_and_spaces_in_refs_out.pl
===================================================================
--- trunk/tp/t/results/sectioning/character_and_spaces_in_refs_out.pl   
2016-11-02 21:10:55 UTC (rev 7492)
+++ trunk/tp/t/results/sectioning/character_and_spaces_in_refs_out.pl   
2016-11-03 10:10:19 UTC (rev 7493)
@@ -339,8 +339,7 @@
                   'node_argument' => {
                     'node_content' => [
                       {}
-                    ],
-                    'normalized' => 'a-node'
+                    ]
                   },
                   'spaces_before_argument' => {}
                 },
@@ -405,8 +404,7 @@
                   'node_argument' => {
                     'node_content' => [
                       {}
-                    ],
-                    'normalized' => '_003a'
+                    ]
                   }
                 },
                 'line_nr' => {
@@ -485,8 +483,7 @@
                   'node_argument' => {
                     'node_content' => [
                       {}
-                    ],
-                    'normalized' => 'Top'
+                    ]
                   },
                   'spaces_before_argument' => {}
                 },
@@ -605,8 +602,7 @@
                   'node_argument' => {
                     'node_content' => [
                       {}
-                    ],
-                    'normalized' => 'node'
+                    ]
                   }
                 },
                 'line_nr' => {




reply via email to

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