[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
texinfo/tp TODO Texinfo/Convert/Plaintext.pm t/...
From: |
Patrice Dumas |
Subject: |
texinfo/tp TODO Texinfo/Convert/Plaintext.pm t/... |
Date: |
Mon, 14 Mar 2011 21:43:10 +0000 |
CVSROOT: /sources/texinfo
Module name: texinfo
Changes by: Patrice Dumas <pertusus> 11/03/14 21:43:10
Modified files:
tp : TODO
tp/Texinfo/Convert: Plaintext.pm
tp/t : 10menu.t 27float.t plaintext_tests.t
tp/t/results/menu: formats_in_menu.pl
Added files:
tp/t : 181quotation.t
tp/t/results/float: float_copying.pl
tp/t/results/plaintext_tests: inhibit_punctuation.pl
unknown_value.pl
tp/t/results/quotation: empty_quotation.pl
quotation_and_author.pl
space_at_commands_end_quotation_line.pl
standard_quotations.pl
Log message:
Handle right unknown value expansion.
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/TODO?cvsroot=texinfo&r1=1.108&r2=1.109
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/Texinfo/Convert/Plaintext.pm?cvsroot=texinfo&r1=1.115&r2=1.116
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/t/10menu.t?cvsroot=texinfo&r1=1.13&r2=1.14
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/t/27float.t?cvsroot=texinfo&r1=1.10&r2=1.11
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/t/plaintext_tests.t?cvsroot=texinfo&r1=1.17&r2=1.18
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/t/181quotation.t?cvsroot=texinfo&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/t/results/float/float_copying.pl?cvsroot=texinfo&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/t/results/menu/formats_in_menu.pl?cvsroot=texinfo&r1=1.1&r2=1.2
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/t/results/plaintext_tests/inhibit_punctuation.pl?cvsroot=texinfo&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/t/results/plaintext_tests/unknown_value.pl?cvsroot=texinfo&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/t/results/quotation/empty_quotation.pl?cvsroot=texinfo&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/t/results/quotation/quotation_and_author.pl?cvsroot=texinfo&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/t/results/quotation/space_at_commands_end_quotation_line.pl?cvsroot=texinfo&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/t/results/quotation/standard_quotations.pl?cvsroot=texinfo&rev=1.1
Patches:
Index: TODO
===================================================================
RCS file: /sources/texinfo/texinfo/tp/TODO,v
retrieving revision 1.108
retrieving revision 1.109
diff -u -b -r1.108 -r1.109
--- TODO 13 Mar 2011 22:01:22 -0000 1.108
+++ TODO 14 Mar 2011 21:43:07 -0000 1.109
@@ -63,6 +63,9 @@
the subsection that is both below and next the section, because it is
next in menu.
+Use PREFIX to override setfilename/input file name to determine output
+name? Isn't -o sufficient? Or call it 'setfilename'?
+
Force end lines before/after a menu?
With something like
@@ -95,8 +98,6 @@
test empty line in block or brace command in menu description.
-test unknown @value expanded.
-
test recursive acronym
@acronym{GNU, @acronym{GNU}'s Not Unix}
Index: Texinfo/Convert/Plaintext.pm
===================================================================
RCS file: /sources/texinfo/texinfo/tp/Texinfo/Convert/Plaintext.pm,v
retrieving revision 1.115
retrieving revision 1.116
diff -u -b -r1.115 -r1.116
--- Texinfo/Convert/Plaintext.pm 13 Mar 2011 15:00:01 -0000 1.115
+++ Texinfo/Convert/Plaintext.pm 14 Mar 2011 21:43:08 -0000 1.116
@@ -1659,8 +1659,14 @@
} elsif ($command eq 'value') {
my $expansion = $self->gdt('@{No value for `{value}\'@}',
{'value' => $root->{'type'}});
- unshift @{$self->{'current_contents'}->[-1]}, $expansion;
- return '';
+ if ($formatter->{'_top_formatter'}) {
+ $expansion = {'type' => 'paragraph',
+ 'contents' => [$expansion]};
+ }
+ $result .= $self->_convert($expansion);
+ # unshift @{$self->{'current_contents'}->[-1]}, $expansion;
+ #return '';
+ return $result;
} elsif ($root->{'args'} and $root->{'args'}->[0]
and $root->{'args'}->[0]->{'type'}
and $root->{'args'}->[0]->{'type'} eq 'brace_command_arg') {
Index: t/10menu.t
===================================================================
RCS file: /sources/texinfo/texinfo/tp/t/10menu.t,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -b -r1.13 -r1.14
--- t/10menu.t 13 Mar 2011 22:01:23 -0000 1.13
+++ t/10menu.t 14 Mar 2011 21:43:08 -0000 1.14
@@ -172,6 +172,12 @@
Log$
* (truc):: @acronym{description
* acronym::}
+
address@hidden
+* subsubsection::
+Menu comment
address@hidden example
+
@end menu
'],
);
Index: t/27float.t
===================================================================
RCS file: /sources/texinfo/texinfo/tp/t/27float.t,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -b -r1.10 -r1.11
--- t/27float.t 13 Mar 2011 23:19:56 -0000 1.10
+++ t/27float.t 14 Mar 2011 21:43:08 -0000 1.11
@@ -437,12 +437,59 @@
@listoffloats
'],
+['float_copying',
+'@copying
+
address@hidden Copyright notice, public domain
+
+Public domain is not really a licence, as it means than
+the author abandon his copyright.
+
address@hidden Public Domain address@hidden
+The caption copying footnote
address@hidden copying footnote anchor}
+
address@hidden indexed caption copying footnote
address@hidden public domain function
+
+see @ref{Copying and floats}.
+
+}
+
address@hidden domain anchor}
address@hidden indexed caption
address@hidden indexed caption function
+}
address@hidden float
address@hidden copying
+
address@hidden Top
address@hidden Top
+
address@hidden
+
address@hidden
+* Copying and floats::
address@hidden menu
+
address@hidden Copying and floats
address@hidden Copying and floats
+
address@hidden
address@hidden
+
address@hidden Copyright notice
+
address@hidden cp
address@hidden fn
+'],
);
my %info_tests = (
'anchor_in_caption' => 1,
'footnote_in_caption' => 1,
- 'cindex_in_caption' => 1
+ 'cindex_in_caption' => 1,
+ 'float_copying' => 1,
);
foreach my $test (@test_cases) {
Index: t/plaintext_tests.t
===================================================================
RCS file: /sources/texinfo/texinfo/tp/t/plaintext_tests.t,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -b -r1.17 -r1.18
--- t/plaintext_tests.t 12 Mar 2011 00:24:38 -0000 1.17
+++ t/plaintext_tests.t 14 Mar 2011 21:43:08 -0000 1.18
@@ -38,6 +38,14 @@
'],
['commands_and_punctuation',
'address@hidden and now inhibit.@: Now dots @dots{} and enddots @enddots{}
and'],
+['inhibit_punctuation',
+'foo vs.@: bar.
+colon :@:And something else.
+semi colon ;@:.
+And ? ?@:. ?@:
+Now ! !@:@@ !@:
+but , ,@:
+'],
['accent_command_punctuation',
'@dotaccent{e} after'],
['empty_line_in_example_end',
@@ -393,6 +401,8 @@
text
@end example
'],
+['unknown_value',
+'@value{unknown}'],
);
my $at_commands_glued_text = 'at@@.
Index: t/results/menu/formats_in_menu.pl
===================================================================
RCS file: /sources/texinfo/texinfo/tp/t/results/menu/formats_in_menu.pl,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- t/results/menu/formats_in_menu.pl 13 Mar 2011 22:01:24 -0000 1.1
+++ t/results/menu/formats_in_menu.pl 14 Mar 2011 21:43:09 -0000 1.2
@@ -491,6 +491,103 @@
'type' => 'menu_entry'
},
{
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'after_description_line'
+ },
+ {
+ 'contents' => [
+ {
+ 'cmdname' => 'example',
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'empty_line_after_command'
+ },
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => '* subsubsection::
+'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'Menu comment
+'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'preformatted'
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' => 'empty_spaces_after_command'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'example'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'spaces_at_end'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'misc_line_arg'
+ }
+ ],
+ 'cmdname' => 'end',
+ 'extra' => {
+ 'command' => {},
+ 'command_argument' => 'example',
+ 'text_arg' => 'example'
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 27,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ }
+ ],
+ 'extra' => {
+ 'end_command' => {}
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 24,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ },
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'empty_line'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'preformatted'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'menu_comment'
+ },
+ {
'args' => [
{
'contents' => [
@@ -522,7 +619,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 23,
+ 'line_nr' => 29,
'macro' => ''
},
'parent' => {}
@@ -640,13 +737,29 @@
$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[5]{'extra'}{'menu_entry_node'}{'manual_content'}[0]{'parent'}
=
$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[5]{'args'}[1];
$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[5]{'line_nr'}
=
$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[5]{'args'}[3]{'contents'}[0]{'line_nr'};
$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[5]{'parent'}
= $result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1];
-$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[6]{'args'}[0]{'contents'}[0]{'parent'}
=
$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[6]{'args'}[0];
-$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[6]{'args'}[0]{'contents'}[1]{'parent'}
=
$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[6]{'args'}[0];
-$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[6]{'args'}[0]{'contents'}[2]{'parent'}
=
$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[6]{'args'}[0];
-$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[6]{'args'}[0]{'parent'}
=
$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[6];
-$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[6]{'extra'}{'command'}
= $result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1];
$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[6]{'parent'}
= $result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1];
-$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'extra'}{'end_command'}
=
$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[6];
+$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[7]{'contents'}[0]{'contents'}[0]{'parent'}
=
$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[7]{'contents'}[0];
+$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[7]{'contents'}[0]{'contents'}[1]{'contents'}[0]{'parent'}
=
$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[7]{'contents'}[0]{'contents'}[1];
+$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[7]{'contents'}[0]{'contents'}[1]{'contents'}[1]{'parent'}
=
$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[7]{'contents'}[0]{'contents'}[1];
+$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[7]{'contents'}[0]{'contents'}[1]{'parent'}
=
$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[7]{'contents'}[0];
+$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[7]{'contents'}[0]{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'}
=
$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[7]{'contents'}[0]{'contents'}[2]{'args'}[0];
+$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[7]{'contents'}[0]{'contents'}[2]{'args'}[0]{'contents'}[1]{'parent'}
=
$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[7]{'contents'}[0]{'contents'}[2]{'args'}[0];
+$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[7]{'contents'}[0]{'contents'}[2]{'args'}[0]{'contents'}[2]{'parent'}
=
$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[7]{'contents'}[0]{'contents'}[2]{'args'}[0];
+$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[7]{'contents'}[0]{'contents'}[2]{'args'}[0]{'parent'}
=
$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[7]{'contents'}[0]{'contents'}[2];
+$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[7]{'contents'}[0]{'contents'}[2]{'extra'}{'command'}
=
$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[7]{'contents'}[0];
+$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[7]{'contents'}[0]{'contents'}[2]{'parent'}
=
$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[7]{'contents'}[0];
+$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[7]{'contents'}[0]{'extra'}{'end_command'}
=
$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[7]{'contents'}[0]{'contents'}[2];
+$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[7]{'contents'}[0]{'parent'}
=
$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[7];
+$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[7]{'contents'}[1]{'contents'}[0]{'parent'}
=
$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[7]{'contents'}[1];
+$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[7]{'contents'}[1]{'parent'}
=
$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[7];
+$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[7]{'parent'}
= $result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1];
+$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[8]{'args'}[0]{'contents'}[0]{'parent'}
=
$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[8]{'args'}[0];
+$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[8]{'args'}[0]{'contents'}[1]{'parent'}
=
$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[8]{'args'}[0];
+$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[8]{'args'}[0]{'contents'}[2]{'parent'}
=
$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[8]{'args'}[0];
+$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[8]{'args'}[0]{'parent'}
=
$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[8];
+$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[8]{'extra'}{'command'}
= $result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1];
+$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[8]{'parent'}
= $result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1];
+$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'extra'}{'end_command'}
=
$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'contents'}[8];
$result_trees{'formats_in_menu'}{'contents'}[1]{'contents'}[1]{'parent'} =
$result_trees{'formats_in_menu'}{'contents'}[1];
$result_trees{'formats_in_menu'}{'contents'}[1]{'extra'}{'node_content'}[0] =
$result_trees{'formats_in_menu'}{'contents'}[1]{'args'}[0]{'contents'}[1];
$result_trees{'formats_in_menu'}{'contents'}[1]{'extra'}{'nodes_manuals'}[0]{'node_content'}
= $result_trees{'formats_in_menu'}{'contents'}[1]{'extra'}{'node_content'};
@@ -674,6 +787,12 @@
Log$
* (truc):: @acronym{description
* acronym::}
+
address@hidden
+* subsubsection::
+Menu comment
address@hidden example
+
@end menu
';
@@ -690,6 +809,10 @@
Log$
* (truc):: description
* acronym::
+
+* subsubsection::
+Menu comment
+
';
$result_sectioning{'formats_in_menu'} = {};
@@ -771,6 +894,10 @@
Log$
* (truc):: description
* acronym::
+
+ * subsubsection::
+ Menu comment
+
';
1;
Index: t/181quotation.t
===================================================================
RCS file: t/181quotation.t
diff -N t/181quotation.t
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ t/181quotation.t 14 Mar 2011 21:43:08 -0000 1.1
@@ -0,0 +1,75 @@
+use strict;
+
+require 't/test_utils.pl';
+
+my @test_cases = (
+['quotation_and_author',
+'@quotation
address@hidden Some One
+A quot---ation
address@hidden quotation
+
address@hidden Note
address@hidden Some Notifier
+A Note
address@hidden quotation
+'],
+['space_at_commands_end_quotation_line',
+'
address@hidden @@ at the end of line @
+A @@ at the end of the @@quotation line.
address@hidden quotation
+
address@hidden @@@ at the end of line @
+A @@@ at the end of the @@quotation line.
address@hidden quotation
+'],
+['empty_quotation',
+'@quotation
address@hidden quotation
+
address@hidden Empty
address@hidden quotation
+
address@hidden @asis{}
address@hidden quotation
+
address@hidden @*
address@hidden quotation
+'],
+['standard_quotations',
+'@quotation Note
+A Note
address@hidden quotation
+
address@hidden note
+A note
address@hidden quotation
+
address@hidden Caution
+Caution
address@hidden quotation
+
address@hidden Important
+Important
address@hidden quotation
+
address@hidden Tip
+a Tip
address@hidden quotation
+
address@hidden Warning
+a Warning.
address@hidden quotation
+'],
+);
+
+our ($arg_test_case, $arg_generate, $arg_debug);
+
+foreach my $test (@test_cases) {
+ $test->[2]->{'test_formats'} = ['plaintext'];
+}
+
+run_all ('quotation', address@hidden, $arg_test_case,
+ $arg_generate, $arg_debug);
+
Index: t/results/float/float_copying.pl
===================================================================
RCS file: t/results/float/float_copying.pl
diff -N t/results/float/float_copying.pl
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ t/results/float/float_copying.pl 14 Mar 2011 21:43:09 -0000 1.1
@@ -0,0 +1,1689 @@
+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);
+
+use utf8;
+
+$result_trees{'float_copying'} = {
+ 'contents' => [
+ {
+ 'contents' => [
+ {
+ 'cmdname' => 'copying',
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'empty_line_after_command'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'empty_line'
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' => 'empty_spaces_after_command'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'Copyright notice'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'block_line_arg'
+ },
+ {
+ 'contents' => [
+ {
+ 'text' => ' ',
+ 'type' => 'empty_spaces_before_argument'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'public domain'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'space_at_end_block_command'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'block_line_arg'
+ }
+ ],
+ 'cmdname' => 'float',
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'empty_line'
+ },
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => 'Public domain is not really a licence, as it
means than
+'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'the author abandon his copyright.
+'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'paragraph'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'empty_line'
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => 'The Public Domain notice'
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'empty_spaces_before_argument'
+ },
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => 'The caption copying
footnote
+'
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => 'caption copying
footnote anchor'
+ }
+ ],
+ 'extra' => {
+ 'region' => {}
+ },
+ 'parent' => {},
+ 'type' => 'brace_command_arg'
+ }
+ ],
+ 'cmdname' => 'anchor',
+ 'contents' => [],
+ 'extra' => {
+ 'brace_command_contents' => [
+ [
+ {}
+ ]
+ ],
+ 'node_content' => [
+ {}
+ ],
+ 'normalized' =>
'caption-copying-footnote-anchor'
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 10,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ },
+ {
+ 'text' => '
+',
+ 'type' =>
'empty_spaces_after_close_brace'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'paragraph'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'empty_line'
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' =>
'empty_spaces_after_command'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'indexed caption
copying footnote'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'spaces_at_end'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'misc_line_arg'
+ }
+ ],
+ 'cmdname' => 'cindex',
+ 'extra' => {
+ 'index_entry' => {
+ 'command' => {},
+ 'content' => [
+ {}
+ ],
+ 'index_at_command' => 'cindex',
+ 'index_name' => 'cp',
+ 'index_prefix' => 'c',
+ 'key' => 'indexed caption copying
footnote',
+ 'number' => 1,
+ 'region' => {}
+ },
+ 'misc_content' => []
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 12,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' =>
'empty_spaces_after_command'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'public domain
function'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'spaces_at_end'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'misc_line_arg'
+ }
+ ],
+ 'cmdname' => 'findex',
+ 'extra' => {
+ 'index_entry' => {
+ 'command' => {},
+ 'content' => [
+ {}
+ ],
+ 'index_at_command' => 'findex',
+ 'index_name' => 'fn',
+ 'index_prefix' => 'f',
+ 'key' => 'public domain function',
+ 'number' => 1,
+ 'region' => {}
+ },
+ 'misc_content' => []
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 13,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'empty_line'
+ },
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => 'see '
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => 'Copying and
floats'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'brace_command_arg'
+ }
+ ],
+ 'cmdname' => 'ref',
+ 'contents' => [],
+ 'extra' => {
+ 'brace_command_contents' => [
+ [
+ {}
+ ]
+ ],
+ 'label' => {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' =>
'empty_spaces_after_command'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'Copying and
floats'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'spaces_at_end'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'misc_line_arg'
+ }
+ ],
+ 'cmdname' => 'node',
+ 'contents' => [],
+ 'extra' => {
+ 'node_content' => [
+ {}
+ ],
+ 'nodes_manuals' => [
+ {
+ 'node_content' => [],
+ 'normalized' =>
'Copying-and-floats'
+ }
+ ],
+ 'normalized' =>
'Copying-and-floats'
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 35,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ },
+ 'node_argument' => {
+ 'node_content' => [
+ {}
+ ],
+ 'normalized' =>
'Copying-and-floats'
+ }
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 15,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ },
+ {
+ 'parent' => {},
+ 'text' => '.
+'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'paragraph'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'empty_line'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'brace_command_context'
+ }
+ ],
+ 'cmdname' => 'footnote',
+ 'contents' => [],
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 8,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'paragraph'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'empty_line'
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => 'public domain anchor'
+ }
+ ],
+ 'extra' => {
+ 'region' => {}
+ },
+ 'parent' => {},
+ 'type' => 'brace_command_arg'
+ }
+ ],
+ 'cmdname' => 'anchor',
+ 'contents' => [],
+ 'extra' => {
+ 'brace_command_contents' => [
+ [
+ {}
+ ]
+ ],
+ 'node_content' => [
+ {}
+ ],
+ 'normalized' => 'public-domain-anchor'
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 19,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ },
+ {
+ 'text' => '
+',
+ 'type' => 'empty_spaces_after_close_brace'
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' => 'empty_spaces_after_command'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'indexed caption'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'spaces_at_end'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'misc_line_arg'
+ }
+ ],
+ 'cmdname' => 'cindex',
+ 'extra' => {
+ 'index_entry' => {
+ 'command' => {},
+ 'content' => [
+ {}
+ ],
+ 'index_at_command' => 'cindex',
+ 'index_name' => 'cp',
+ 'index_prefix' => 'c',
+ 'key' => 'indexed caption',
+ 'number' => 2,
+ 'region' => {}
+ },
+ 'misc_content' => []
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 20,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' => 'empty_spaces_after_command'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'indexed caption function'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'spaces_at_end'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'misc_line_arg'
+ }
+ ],
+ 'cmdname' => 'findex',
+ 'extra' => {
+ 'index_entry' => {
+ 'command' => {},
+ 'content' => [
+ {}
+ ],
+ 'index_at_command' => 'findex',
+ 'index_name' => 'fn',
+ 'index_prefix' => 'f',
+ 'key' => 'indexed caption function',
+ 'number' => 2,
+ 'region' => {}
+ },
+ 'misc_content' => []
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 21,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'brace_command_context'
+ }
+ ],
+ 'cmdname' => 'caption',
+ 'contents' => [],
+ 'extra' => {
+ 'float' => {}
+ },
+ 'line_nr' => {},
+ 'parent' => {}
+ },
+ {
+ 'text' => '
+',
+ 'type' => 'empty_spaces_after_close_brace'
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' => 'empty_spaces_after_command'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'float'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'spaces_at_end'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'misc_line_arg'
+ }
+ ],
+ 'cmdname' => 'end',
+ 'extra' => {
+ 'command' => {},
+ 'command_argument' => 'float',
+ 'text_arg' => 'float'
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 23,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ }
+ ],
+ 'extra' => {
+ 'block_command_line_contents' => [
+ [
+ {}
+ ],
+ [
+ {}
+ ]
+ ],
+ 'caption' => {},
+ 'end_command' => {},
+ 'node_content' => [
+ {}
+ ],
+ 'normalized' => 'public-domain',
+ 'type' => {
+ 'content' => [
+ {}
+ ],
+ 'normalized' => 'Copyright-notice'
+ }
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 3,
+ 'macro' => ''
+ },
+ 'number' => 1,
+ 'parent' => {}
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' => 'empty_spaces_after_command'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'copying'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'spaces_at_end'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'misc_line_arg'
+ }
+ ],
+ 'cmdname' => 'end',
+ 'extra' => {
+ 'command' => {},
+ 'command_argument' => 'copying',
+ 'text_arg' => 'copying'
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 24,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ }
+ ],
+ 'extra' => {
+ 'end_command' => {}
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 1,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'empty_line'
+ }
+ ],
+ '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' => 26,
+ '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' => [
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'empty_line'
+ },
+ {
+ 'cmdname' => 'insertcopying',
+ 'parent' => {}
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+'
+ },
+ {
+ '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' => 'Copying and 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' => 'Copying-and-floats'
+ }
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 32,
+ 'macro' => ''
+ },
+ 'parent' => {},
+ 'type' => 'menu_entry'
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' => 'empty_spaces_after_command'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'menu'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'spaces_at_end'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'misc_line_arg'
+ }
+ ],
+ 'cmdname' => 'end',
+ 'extra' => {
+ 'command' => {},
+ 'command_argument' => 'menu',
+ 'text_arg' => 'menu'
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 33,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ }
+ ],
+ 'extra' => {
+ 'end_command' => {}
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 31,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'empty_line'
+ }
+ ],
+ 'extra' => {
+ 'misc_content' => [
+ {}
+ ]
+ },
+ 'level' => 0,
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 27,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ },
+ {},
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' => 'empty_spaces_after_command'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'Copying and floats'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'spaces_at_end'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'misc_line_arg'
+ }
+ ],
+ 'cmdname' => 'appendix',
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'empty_line'
+ },
+ {
+ 'cmdname' => 'insertcopying',
+ 'parent' => {}
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+'
+ },
+ {
+ 'cmdname' => 'insertcopying',
+ 'parent' => {}
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'empty_line'
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' => 'empty_spaces_after_command'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'Copyright notice'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'spaces_at_end'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'misc_line_arg'
+ }
+ ],
+ 'cmdname' => 'listoffloats',
+ 'extra' => {
+ 'type' => {
+ 'content' => [
+ {}
+ ],
+ 'normalized' => 'Copyright-notice'
+ }
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 41,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'empty_line'
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' => 'empty_spaces_after_command'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'cp'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'spaces_at_end'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'misc_line_arg'
+ }
+ ],
+ 'cmdname' => 'printindex',
+ 'extra' => {
+ 'misc_args' => [
+ 'cp'
+ ]
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 43,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' => 'empty_spaces_after_command'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'fn'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'spaces_at_end'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'misc_line_arg'
+ }
+ ],
+ 'cmdname' => 'printindex',
+ 'extra' => {
+ 'misc_args' => [
+ 'fn'
+ ]
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 44,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ }
+ ],
+ 'extra' => {
+ 'misc_content' => [
+ {}
+ ]
+ },
+ 'level' => 1,
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 36,
+ 'macro' => ''
+ },
+ 'number' => 'A',
+ 'parent' => {}
+ }
+ ],
+ 'type' => 'document_root'
+};
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[0]{'parent'}
= $result_trees{'float_copying'}{'contents'}[0]{'contents'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[1]{'parent'}
= $result_trees{'float_copying'}{'contents'}[0]{'contents'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'args'}[0]{'contents'}[1]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'args'}[0]{'parent'}
= $result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'args'}[1]{'contents'}[1]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'args'}[1];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'args'}[1]{'contents'}[2]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'args'}[1];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'args'}[1]{'parent'}
= $result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[0]{'parent'}
= $result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[1]{'contents'}[0]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[1];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[1]{'contents'}[1]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[1];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[1]{'parent'}
= $result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[2]{'parent'}
= $result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[0]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[0]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[1]{'contents'}[0]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[1];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[1]{'contents'}[1]{'args'}[0]{'contents'}[0]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[1]{'contents'}[1]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[1]{'contents'}[1]{'args'}[0]{'extra'}{'region'}
= $result_trees{'float_copying'}{'contents'}[0]{'contents'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[1]{'contents'}[1]{'args'}[0]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[1]{'contents'}[1];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[1]{'contents'}[1]{'extra'}{'brace_command_contents'}[0][0]
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[1]{'contents'}[1]{'args'}[0]{'contents'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[1]{'contents'}[1]{'extra'}{'node_content'}[0]
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[1]{'contents'}[1]{'args'}[0]{'contents'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[1]{'contents'}[1]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[1];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[1]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[2]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[3]{'args'}[0]{'contents'}[0]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[3]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[3]{'args'}[0]{'contents'}[1]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[3]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[3]{'args'}[0]{'contents'}[2]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[3]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[3]{'args'}[0]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[3];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[3]{'extra'}{'index_entry'}{'command'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[3];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[3]{'extra'}{'index_entry'}{'content'}[0]
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[3]{'args'}[0]{'contents'}[1];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[3]{'extra'}{'index_entry'}{'region'}
= $result_trees{'float_copying'}{'contents'}[0]{'contents'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[3]{'extra'}{'misc_content'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[3]{'extra'}{'index_entry'}{'content'};
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[3]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[4]{'args'}[0]{'contents'}[0]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[4]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[4]{'args'}[0]{'contents'}[1]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[4]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[4]{'args'}[0]{'contents'}[2]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[4]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[4]{'args'}[0]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[4];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[4]{'extra'}{'index_entry'}{'command'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[4];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[4]{'extra'}{'index_entry'}{'content'}[0]
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[4]{'args'}[0]{'contents'}[1];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[4]{'extra'}{'index_entry'}{'region'}
= $result_trees{'float_copying'}{'contents'}[0]{'contents'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[4]{'extra'}{'misc_content'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[4]{'extra'}{'index_entry'}{'content'};
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[4]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[5]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[6]{'contents'}[0]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[6];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[6]{'contents'}[1]{'args'}[0]{'contents'}[0]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[6]{'contents'}[1]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[6]{'contents'}[1]{'args'}[0]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[6]{'contents'}[1];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[6]{'contents'}[1]{'extra'}{'brace_command_contents'}[0][0]
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[6]{'contents'}[1]{'args'}[0]{'contents'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[6]{'contents'}[1]{'extra'}{'label'}{'args'}[0]{'contents'}[0]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[6]{'contents'}[1]{'extra'}{'label'}{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[6]{'contents'}[1]{'extra'}{'label'}{'args'}[0]{'contents'}[1]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[6]{'contents'}[1]{'extra'}{'label'}{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[6]{'contents'}[1]{'extra'}{'label'}{'args'}[0]{'contents'}[2]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[6]{'contents'}[1]{'extra'}{'label'}{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[6]{'contents'}[1]{'extra'}{'label'}{'args'}[0]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[6]{'contents'}[1]{'extra'}{'label'};
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[6]{'contents'}[1]{'extra'}{'label'}{'extra'}{'node_content'}[0]
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[6]{'contents'}[1]{'extra'}{'label'}{'args'}[0]{'contents'}[1];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[6]{'contents'}[1]{'extra'}{'label'}{'extra'}{'nodes_manuals'}[0]{'node_content'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[6]{'contents'}[1]{'extra'}{'label'}{'extra'}{'node_content'};
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[6]{'contents'}[1]{'extra'}{'label'}{'parent'}
= $result_trees{'float_copying'};
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[6]{'contents'}[1]{'extra'}{'node_argument'}{'node_content'}[0]
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[6]{'contents'}[1]{'args'}[0]{'contents'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[6]{'contents'}[1]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[6];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[6]{'contents'}[2]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[6];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[6]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[7]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[2]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[1]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[2]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[2]{'args'}[0]{'extra'}{'region'}
= $result_trees{'float_copying'}{'contents'}[0]{'contents'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[2]{'args'}[0]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[2];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[2]{'extra'}{'brace_command_contents'}[0][0]
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[2]{'args'}[0]{'contents'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[2]{'extra'}{'node_content'}[0]
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[2]{'args'}[0]{'contents'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[2]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[4]{'args'}[0]{'contents'}[0]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[4]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[4]{'args'}[0]{'contents'}[1]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[4]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[4]{'args'}[0]{'contents'}[2]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[4]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[4]{'args'}[0]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[4];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[4]{'extra'}{'index_entry'}{'command'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[4];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[4]{'extra'}{'index_entry'}{'content'}[0]
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[4]{'args'}[0]{'contents'}[1];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[4]{'extra'}{'index_entry'}{'region'}
= $result_trees{'float_copying'}{'contents'}[0]{'contents'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[4]{'extra'}{'misc_content'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[4]{'extra'}{'index_entry'}{'content'};
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[4]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[5]{'args'}[0]{'contents'}[0]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[5]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[5]{'args'}[0]{'contents'}[1]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[5]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[5]{'args'}[0]{'contents'}[2]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[5]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[5]{'args'}[0]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[5];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[5]{'extra'}{'index_entry'}{'command'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[5];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[5]{'extra'}{'index_entry'}{'content'}[0]
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[5]{'args'}[0]{'contents'}[1];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[5]{'extra'}{'index_entry'}{'region'}
= $result_trees{'float_copying'}{'contents'}[0]{'contents'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[5]{'extra'}{'misc_content'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[5]{'extra'}{'index_entry'}{'content'};
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[5]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'extra'}{'float'}
= $result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'line_nr'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'line_nr'};
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'parent'}
= $result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[5]{'args'}[0]{'contents'}[0]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[5]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[5]{'args'}[0]{'contents'}[1]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[5]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[5]{'args'}[0]{'contents'}[2]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[5]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[5]{'args'}[0]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[5];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[5]{'extra'}{'command'}
= $result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[5]{'parent'}
= $result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'extra'}{'block_command_line_contents'}[0][0]
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'args'}[0]{'contents'}[1];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'extra'}{'block_command_line_contents'}[1][0]
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'args'}[1]{'contents'}[1];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'extra'}{'caption'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'extra'}{'end_command'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[5];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'extra'}{'node_content'}[0]
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'args'}[1]{'contents'}[1];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'extra'}{'type'}{'content'}[0]
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'args'}[0]{'contents'}[1];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'parent'}
= $result_trees{'float_copying'}{'contents'}[0]{'contents'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[3]{'args'}[0]{'contents'}[0]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[3]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[3]{'args'}[0]{'contents'}[1]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[3]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[3]{'args'}[0]{'contents'}[2]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[3]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[3]{'args'}[0]{'parent'}
= $result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[3];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[3]{'extra'}{'command'}
= $result_trees{'float_copying'}{'contents'}[0]{'contents'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[3]{'parent'}
= $result_trees{'float_copying'}{'contents'}[0]{'contents'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'extra'}{'end_command'}
= $result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[3];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'parent'} =
$result_trees{'float_copying'}{'contents'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'contents'}[1]{'parent'} =
$result_trees{'float_copying'}{'contents'}[0];
+$result_trees{'float_copying'}{'contents'}[0]{'parent'} =
$result_trees{'float_copying'};
+$result_trees{'float_copying'}{'contents'}[1]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'float_copying'}{'contents'}[1]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[1]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'float_copying'}{'contents'}[1]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[1]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'float_copying'}{'contents'}[1]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[1]{'args'}[0]{'parent'} =
$result_trees{'float_copying'}{'contents'}[1];
+$result_trees{'float_copying'}{'contents'}[1]{'extra'}{'node_content'}[0] =
$result_trees{'float_copying'}{'contents'}[1]{'args'}[0]{'contents'}[1];
+$result_trees{'float_copying'}{'contents'}[1]{'extra'}{'nodes_manuals'}[0]{'node_content'}
= $result_trees{'float_copying'}{'contents'}[1]{'extra'}{'node_content'};
+$result_trees{'float_copying'}{'contents'}[1]{'parent'} =
$result_trees{'float_copying'};
+$result_trees{'float_copying'}{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'float_copying'}{'contents'}[2]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[2]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'float_copying'}{'contents'}[2]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[2]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'float_copying'}{'contents'}[2]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[2]{'args'}[0]{'parent'} =
$result_trees{'float_copying'}{'contents'}[2];
+$result_trees{'float_copying'}{'contents'}[2]{'contents'}[0]{'parent'} =
$result_trees{'float_copying'}{'contents'}[2];
+$result_trees{'float_copying'}{'contents'}[2]{'contents'}[1]{'parent'} =
$result_trees{'float_copying'}{'contents'}[2];
+$result_trees{'float_copying'}{'contents'}[2]{'contents'}[2]{'parent'} =
$result_trees{'float_copying'}{'contents'}[2];
+$result_trees{'float_copying'}{'contents'}[2]{'contents'}[3]{'parent'} =
$result_trees{'float_copying'}{'contents'}[2];
+$result_trees{'float_copying'}{'contents'}[2]{'contents'}[4]{'contents'}[0]{'parent'}
= $result_trees{'float_copying'}{'contents'}[2]{'contents'}[4];
+$result_trees{'float_copying'}{'contents'}[2]{'contents'}[4]{'contents'}[1]{'args'}[0]{'parent'}
= $result_trees{'float_copying'}{'contents'}[2]{'contents'}[4]{'contents'}[1];
+$result_trees{'float_copying'}{'contents'}[2]{'contents'}[4]{'contents'}[1]{'args'}[1]{'contents'}[0]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[2]{'contents'}[4]{'contents'}[1]{'args'}[1];
+$result_trees{'float_copying'}{'contents'}[2]{'contents'}[4]{'contents'}[1]{'args'}[1]{'parent'}
= $result_trees{'float_copying'}{'contents'}[2]{'contents'}[4]{'contents'}[1];
+$result_trees{'float_copying'}{'contents'}[2]{'contents'}[4]{'contents'}[1]{'args'}[2]{'parent'}
= $result_trees{'float_copying'}{'contents'}[2]{'contents'}[4]{'contents'}[1];
+$result_trees{'float_copying'}{'contents'}[2]{'contents'}[4]{'contents'}[1]{'args'}[3]{'contents'}[0]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[2]{'contents'}[4]{'contents'}[1]{'args'}[3];
+$result_trees{'float_copying'}{'contents'}[2]{'contents'}[4]{'contents'}[1]{'args'}[3]{'parent'}
= $result_trees{'float_copying'}{'contents'}[2]{'contents'}[4]{'contents'}[1];
+$result_trees{'float_copying'}{'contents'}[2]{'contents'}[4]{'contents'}[1]{'extra'}{'menu_entry_node'}{'node_content'}[0]
=
$result_trees{'float_copying'}{'contents'}[2]{'contents'}[4]{'contents'}[1]{'args'}[1]{'contents'}[0];
+$result_trees{'float_copying'}{'contents'}[2]{'contents'}[4]{'contents'}[1]{'parent'}
= $result_trees{'float_copying'}{'contents'}[2]{'contents'}[4];
+$result_trees{'float_copying'}{'contents'}[2]{'contents'}[4]{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[2]{'contents'}[4]{'contents'}[2]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[2]{'contents'}[4]{'contents'}[2]{'args'}[0]{'contents'}[1]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[2]{'contents'}[4]{'contents'}[2]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[2]{'contents'}[4]{'contents'}[2]{'args'}[0]{'contents'}[2]{'parent'}
=
$result_trees{'float_copying'}{'contents'}[2]{'contents'}[4]{'contents'}[2]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[2]{'contents'}[4]{'contents'}[2]{'args'}[0]{'parent'}
= $result_trees{'float_copying'}{'contents'}[2]{'contents'}[4]{'contents'}[2];
+$result_trees{'float_copying'}{'contents'}[2]{'contents'}[4]{'contents'}[2]{'extra'}{'command'}
= $result_trees{'float_copying'}{'contents'}[2]{'contents'}[4];
+$result_trees{'float_copying'}{'contents'}[2]{'contents'}[4]{'contents'}[2]{'parent'}
= $result_trees{'float_copying'}{'contents'}[2]{'contents'}[4];
+$result_trees{'float_copying'}{'contents'}[2]{'contents'}[4]{'extra'}{'end_command'}
= $result_trees{'float_copying'}{'contents'}[2]{'contents'}[4]{'contents'}[2];
+$result_trees{'float_copying'}{'contents'}[2]{'contents'}[4]{'parent'} =
$result_trees{'float_copying'}{'contents'}[2];
+$result_trees{'float_copying'}{'contents'}[2]{'contents'}[5]{'parent'} =
$result_trees{'float_copying'}{'contents'}[2];
+$result_trees{'float_copying'}{'contents'}[2]{'extra'}{'misc_content'}[0] =
$result_trees{'float_copying'}{'contents'}[2]{'args'}[0]{'contents'}[1];
+$result_trees{'float_copying'}{'contents'}[2]{'parent'} =
$result_trees{'float_copying'};
+$result_trees{'float_copying'}{'contents'}[3] =
$result_trees{'float_copying'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'contents'}[3]{'args'}[0]{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[6]{'contents'}[1]{'extra'}{'label'};
+$result_trees{'float_copying'}{'contents'}[4]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'float_copying'}{'contents'}[4]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[4]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'float_copying'}{'contents'}[4]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[4]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'float_copying'}{'contents'}[4]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[4]{'args'}[0]{'parent'} =
$result_trees{'float_copying'}{'contents'}[4];
+$result_trees{'float_copying'}{'contents'}[4]{'contents'}[0]{'parent'} =
$result_trees{'float_copying'}{'contents'}[4];
+$result_trees{'float_copying'}{'contents'}[4]{'contents'}[1]{'parent'} =
$result_trees{'float_copying'}{'contents'}[4];
+$result_trees{'float_copying'}{'contents'}[4]{'contents'}[2]{'parent'} =
$result_trees{'float_copying'}{'contents'}[4];
+$result_trees{'float_copying'}{'contents'}[4]{'contents'}[3]{'parent'} =
$result_trees{'float_copying'}{'contents'}[4];
+$result_trees{'float_copying'}{'contents'}[4]{'contents'}[4]{'parent'} =
$result_trees{'float_copying'}{'contents'}[4];
+$result_trees{'float_copying'}{'contents'}[4]{'contents'}[5]{'parent'} =
$result_trees{'float_copying'}{'contents'}[4];
+$result_trees{'float_copying'}{'contents'}[4]{'contents'}[6]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'float_copying'}{'contents'}[4]{'contents'}[6]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[4]{'contents'}[6]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'float_copying'}{'contents'}[4]{'contents'}[6]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[4]{'contents'}[6]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'float_copying'}{'contents'}[4]{'contents'}[6]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[4]{'contents'}[6]{'args'}[0]{'parent'}
= $result_trees{'float_copying'}{'contents'}[4]{'contents'}[6];
+$result_trees{'float_copying'}{'contents'}[4]{'contents'}[6]{'extra'}{'type'}{'content'}[0]
=
$result_trees{'float_copying'}{'contents'}[4]{'contents'}[6]{'args'}[0]{'contents'}[1];
+$result_trees{'float_copying'}{'contents'}[4]{'contents'}[6]{'parent'} =
$result_trees{'float_copying'}{'contents'}[4];
+$result_trees{'float_copying'}{'contents'}[4]{'contents'}[7]{'parent'} =
$result_trees{'float_copying'}{'contents'}[4];
+$result_trees{'float_copying'}{'contents'}[4]{'contents'}[8]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'float_copying'}{'contents'}[4]{'contents'}[8]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[4]{'contents'}[8]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'float_copying'}{'contents'}[4]{'contents'}[8]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[4]{'contents'}[8]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'float_copying'}{'contents'}[4]{'contents'}[8]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[4]{'contents'}[8]{'args'}[0]{'parent'}
= $result_trees{'float_copying'}{'contents'}[4]{'contents'}[8];
+$result_trees{'float_copying'}{'contents'}[4]{'contents'}[8]{'parent'} =
$result_trees{'float_copying'}{'contents'}[4];
+$result_trees{'float_copying'}{'contents'}[4]{'contents'}[9]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'float_copying'}{'contents'}[4]{'contents'}[9]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[4]{'contents'}[9]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'float_copying'}{'contents'}[4]{'contents'}[9]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[4]{'contents'}[9]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'float_copying'}{'contents'}[4]{'contents'}[9]{'args'}[0];
+$result_trees{'float_copying'}{'contents'}[4]{'contents'}[9]{'args'}[0]{'parent'}
= $result_trees{'float_copying'}{'contents'}[4]{'contents'}[9];
+$result_trees{'float_copying'}{'contents'}[4]{'contents'}[9]{'parent'} =
$result_trees{'float_copying'}{'contents'}[4];
+$result_trees{'float_copying'}{'contents'}[4]{'extra'}{'misc_content'}[0] =
$result_trees{'float_copying'}{'contents'}[4]{'args'}[0]{'contents'}[1];
+$result_trees{'float_copying'}{'contents'}[4]{'parent'} =
$result_trees{'float_copying'};
+
+$result_texis{'float_copying'} = '@copying
+
address@hidden Copyright notice, public domain
+
+Public domain is not really a licence, as it means than
+the author abandon his copyright.
+
address@hidden Public Domain address@hidden
+The caption copying footnote
address@hidden copying footnote anchor}
+
address@hidden indexed caption copying footnote
address@hidden public domain function
+
+see @ref{Copying and floats}.
+
+}
+
address@hidden domain anchor}
address@hidden indexed caption
address@hidden indexed caption function
+}
address@hidden float
address@hidden copying
+
address@hidden Top
address@hidden Top
+
address@hidden
+
address@hidden
+* Copying and floats::
address@hidden menu
+
address@hidden Copying and floats
address@hidden Copying and floats
+
address@hidden
address@hidden
+
address@hidden Copyright notice
+
address@hidden cp
address@hidden fn
+';
+
+
+$result_texts{'float_copying'} = '
+Top
+***
+
+
+
+* Copying and floats::
+
+Appendix A Copying and floats
+*****************************
+
+
+
+
+
+';
+
+$result_sectioning{'float_copying'} = {
+ 'level' => -1,
+ 'section_childs' => [
+ {
+ 'cmdname' => 'top',
+ 'extra' => {
+ 'associated_node' => {
+ 'cmdname' => 'node',
+ 'extra' => {
+ 'normalized' => 'Top'
+ }
+ }
+ },
+ 'level' => 0,
+ 'section_childs' => [
+ {
+ 'cmdname' => 'appendix',
+ 'extra' => {
+ 'associated_node' => {
+ 'cmdname' => 'node',
+ 'extra' => {
+ 'normalized' => 'Copying-and-floats'
+ }
+ }
+ },
+ 'level' => 1,
+ 'number' => 'A',
+ 'section_up' => {}
+ }
+ ],
+ 'section_up' => {}
+ }
+ ]
+};
+$result_sectioning{'float_copying'}{'section_childs'}[0]{'section_childs'}[0]{'section_up'}
= $result_sectioning{'float_copying'}{'section_childs'}[0];
+$result_sectioning{'float_copying'}{'section_childs'}[0]{'section_up'} =
$result_sectioning{'float_copying'};
+
+$result_nodes{'float_copying'} = {
+ 'cmdname' => 'node',
+ 'extra' => {
+ 'associated_section' => {
+ 'cmdname' => 'top',
+ 'extra' => {},
+ 'level' => 0
+ },
+ 'normalized' => 'Top'
+ },
+ 'menu_child' => {
+ 'cmdname' => 'node',
+ 'extra' => {
+ 'associated_section' => {
+ 'cmdname' => 'appendix',
+ 'extra' => {},
+ 'level' => 1,
+ 'number' => 'A'
+ },
+ 'normalized' => 'Copying-and-floats'
+ },
+ 'node_prev' => {},
+ 'node_up' => {}
+ },
+ 'menus' => [
+ {
+ 'cmdname' => 'menu',
+ 'extra' => {
+ 'end_command' => {
+ 'cmdname' => 'end',
+ 'extra' => {
+ 'command' => {},
+ 'command_argument' => 'menu',
+ 'text_arg' => 'menu'
+ }
+ }
+ }
+ }
+ ],
+ 'node_next' => {},
+ 'node_up' => {
+ 'extra' => {
+ 'manual_content' => [
+ {
+ 'text' => 'dir'
+ }
+ ]
+ }
+ }
+};
+$result_nodes{'float_copying'}{'menu_child'}{'node_prev'} =
$result_nodes{'float_copying'};
+$result_nodes{'float_copying'}{'menu_child'}{'node_up'} =
$result_nodes{'float_copying'};
+$result_nodes{'float_copying'}{'menus'}[0]{'extra'}{'end_command'}{'extra'}{'command'}
= $result_nodes{'float_copying'}{'menus'}[0];
+$result_nodes{'float_copying'}{'node_next'} =
$result_nodes{'float_copying'}{'menu_child'};
+
+$result_menus{'float_copying'} = {
+ 'cmdname' => 'node',
+ 'extra' => {
+ 'normalized' => 'Top'
+ },
+ 'menu_child' => {
+ 'cmdname' => 'node',
+ 'extra' => {
+ 'normalized' => 'Copying-and-floats'
+ },
+ 'menu_up' => {},
+ 'menu_up_hash' => {
+ 'Top' => 1
+ }
+ }
+};
+$result_menus{'float_copying'}{'menu_child'}{'menu_up'} =
$result_menus{'float_copying'};
+
+$result_errors{'float_copying'} = [];
+
+
+$result_floats{'float_copying'} = {
+ 'Copyright-notice' => [
+ {
+ 'cmdname' => 'float',
+ 'extra' => {
+ 'caption' => {
+ 'cmdname' => 'caption',
+ 'extra' => {
+ 'float' => {}
+ }
+ },
+ 'end_command' => {
+ 'cmdname' => 'end',
+ 'extra' => {
+ 'command' => {},
+ 'command_argument' => 'float',
+ 'text_arg' => 'float'
+ }
+ },
+ 'normalized' => 'public-domain',
+ 'type' => {
+ 'content' => [
+ {
+ 'text' => 'Copyright notice'
+ }
+ ],
+ 'normalized' => 'Copyright-notice'
+ }
+ },
+ 'number' => 1
+ }
+ ]
+};
+$result_floats{'float_copying'}{'Copyright-notice'}[0]{'extra'}{'caption'}{'extra'}{'float'}
= $result_floats{'float_copying'}{'Copyright-notice'}[0];
+$result_floats{'float_copying'}{'Copyright-notice'}[0]{'extra'}{'end_command'}{'extra'}{'command'}
= $result_floats{'float_copying'}{'Copyright-notice'}[0];
+
+
+
+$result_converted{'plaintext'}->{'float_copying'} = '
+Top
+***
+
+Public domain is not really a licence, as it means than the author
+abandon his copyright.
+
+Copyright notice 1: The Public Domain notice(1)
+
+* Menu:
+
+* Copying and floats::
+
+ ---------- Footnotes ----------
+
+ (1) The caption copying footnote
+
+ see *note Copying and floats::.
+
+Appendix A Copying and floats
+*****************************
+
+Public domain is not really a licence, as it means than the author
+abandon his copyright.
+
+Copyright notice 1: The Public Domain notice(1)
+
+Public domain is not really a licence, as it means than the author
+abandon his copyright.
+
+Copyright notice 1: The Public Domain notice(2)
+
+* Menu:
+
+* Copyright notice 1: public domain. The Public Domain notice(2)
+
+ ---------- Footnotes ----------
+
+ (1) The caption copying footnote
+
+ see *note Copying and floats::.
+
+ (2) The caption copying footnote
+
+ see *note Copying and floats::.
+
+';
+
+
+$result_converted{'info'}->{'float_copying'} = 'This is , produced by makeinfo
version 4.13 from .
+
+Public domain is not really a licence, as it means than the author
+abandon his copyright.
+
+Copyright notice 1: The Public Domain notice(1)
+
+ ---------- Footnotes ----------
+
+ (1) The caption copying footnote
+
+ see *note Copying and floats::.
+
+
+File: , Node: Top, Next: Copying and floats, Up: (dir)
+
+Top
+***
+
+Public domain is not really a licence, as it means than the author
+abandon his copyright.
+
+Copyright notice 1: The Public Domain notice(1)
+
+* Menu:
+
+* Copying and floats::
+
+ ---------- Footnotes ----------
+
+ (1) The caption copying footnote
+
+ see *note Copying and floats::.
+
+
+File: , Node: Copying and floats, Prev: Top, Up: Top
+
+Appendix A Copying and floats
+*****************************
+
+Public domain is not really a licence, as it means than the author
+abandon his copyright.
+
+Copyright notice 1: The Public Domain notice(1)
+
+Public domain is not really a licence, as it means than the author
+abandon his copyright.
+
+Copyright notice 1: The Public Domain notice(2)
+
+* Menu:
+
+* Copyright notice 1: public domain. The Public Domain notice(2)
+
+ [index ]
+* Menu:
+
+* indexed caption: Copying and floats. (line 16)
+* indexed caption copying footnote: Top. (line 19)
+
+ [index ]
+* Menu:
+
+* indexed caption function: Copying and floats. (line 16)
+* public domain function: Top. (line 19)
+
+ ---------- Footnotes ----------
+
+ (1) The caption copying footnote
+
+ see *note Copying and floats::.
+
+ (2) The caption copying footnote
+
+ see *note Copying and floats::.
+
+
+
+Tag Table:
+Node: Top301
+Ref: public domain371
+Ref: public domain anchor511
+Ref: Top-Footnote-1580
+Ref: caption copying footnote anchor615
+Node: Copying and floats653
+Ref: Copying and floats-Footnote-11504
+Ref: Copying and floats-Footnote-21577
+
+End Tag Table
+';
+
+$result_converted_errors{'info'}->{'float_copying'} = [
+ {
+ 'file_name' => '',
+ 'error_line' => ':3: @float `public domain\' output more than once
+',
+ 'text' => '@float `public domain\' output more than once',
+ 'type' => 'error',
+ 'macro' => '',
+ 'line_nr' => 3
+ },
+ {
+ 'file_name' => '',
+ 'error_line' => ':19: @anchor `public domain anchor\' output more than once
+',
+ 'text' => '@anchor `public domain anchor\' output more than once',
+ 'type' => 'error',
+ 'macro' => '',
+ 'line_nr' => 19
+ },
+ {
+ 'file_name' => '',
+ 'error_line' => ':3: @float `public domain\' output more than once
+',
+ 'text' => '@float `public domain\' output more than once',
+ 'type' => 'error',
+ 'macro' => '',
+ 'line_nr' => 3
+ },
+ {
+ 'file_name' => '',
+ 'error_line' => ':19: @anchor `public domain anchor\' output more than once
+',
+ 'text' => '@anchor `public domain anchor\' output more than once',
+ 'type' => 'error',
+ 'macro' => '',
+ 'line_nr' => 19
+ },
+ {
+ 'file_name' => '',
+ 'error_line' => ':10: @anchor `caption copying footnote anchor\' output
more than once
+',
+ 'text' => '@anchor `caption copying footnote anchor\' output more than
once',
+ 'type' => 'error',
+ 'macro' => '',
+ 'line_nr' => 10
+ },
+ {
+ 'file_name' => '',
+ 'error_line' => ':10: @anchor `caption copying footnote anchor\' output
more than once
+',
+ 'text' => '@anchor `caption copying footnote anchor\' output more than
once',
+ 'type' => 'error',
+ 'macro' => '',
+ 'line_nr' => 10
+ }
+];
+
+
+1;
Index: t/results/plaintext_tests/inhibit_punctuation.pl
===================================================================
RCS file: t/results/plaintext_tests/inhibit_punctuation.pl
diff -N t/results/plaintext_tests/inhibit_punctuation.pl
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ t/results/plaintext_tests/inhibit_punctuation.pl 14 Mar 2011 21:43:09
-0000 1.1
@@ -0,0 +1,166 @@
+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);
+
+use utf8;
+
+$result_trees{'inhibit_punctuation'} = {
+ 'contents' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => 'foo vs.'
+ },
+ {
+ 'cmdname' => ':',
+ 'parent' => {}
+ },
+ {
+ 'parent' => {},
+ 'text' => ' bar.
+'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'colon :'
+ },
+ {
+ 'cmdname' => ':',
+ 'parent' => {}
+ },
+ {
+ 'parent' => {},
+ 'text' => 'And something else.
+'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'semi colon ;'
+ },
+ {
+ 'cmdname' => ':',
+ 'parent' => {}
+ },
+ {
+ 'parent' => {},
+ 'text' => '.
+'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'And ? ?'
+ },
+ {
+ 'cmdname' => ':',
+ 'parent' => {}
+ },
+ {
+ 'parent' => {},
+ 'text' => '. ?'
+ },
+ {
+ 'cmdname' => ':',
+ 'parent' => {}
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'Now ! !'
+ },
+ {
+ 'cmdname' => ':',
+ 'parent' => {}
+ },
+ {
+ 'cmdname' => '@',
+ 'parent' => {}
+ },
+ {
+ 'parent' => {},
+ 'text' => ' !'
+ },
+ {
+ 'cmdname' => ':',
+ 'parent' => {}
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'but , ,'
+ },
+ {
+ 'cmdname' => ':',
+ 'parent' => {}
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'paragraph'
+ }
+ ],
+ 'type' => 'text_root'
+};
+$result_trees{'inhibit_punctuation'}{'contents'}[0]{'contents'}[0]{'parent'} =
$result_trees{'inhibit_punctuation'}{'contents'}[0];
+$result_trees{'inhibit_punctuation'}{'contents'}[0]{'contents'}[1]{'parent'} =
$result_trees{'inhibit_punctuation'}{'contents'}[0];
+$result_trees{'inhibit_punctuation'}{'contents'}[0]{'contents'}[2]{'parent'} =
$result_trees{'inhibit_punctuation'}{'contents'}[0];
+$result_trees{'inhibit_punctuation'}{'contents'}[0]{'contents'}[3]{'parent'} =
$result_trees{'inhibit_punctuation'}{'contents'}[0];
+$result_trees{'inhibit_punctuation'}{'contents'}[0]{'contents'}[4]{'parent'} =
$result_trees{'inhibit_punctuation'}{'contents'}[0];
+$result_trees{'inhibit_punctuation'}{'contents'}[0]{'contents'}[5]{'parent'} =
$result_trees{'inhibit_punctuation'}{'contents'}[0];
+$result_trees{'inhibit_punctuation'}{'contents'}[0]{'contents'}[6]{'parent'} =
$result_trees{'inhibit_punctuation'}{'contents'}[0];
+$result_trees{'inhibit_punctuation'}{'contents'}[0]{'contents'}[7]{'parent'} =
$result_trees{'inhibit_punctuation'}{'contents'}[0];
+$result_trees{'inhibit_punctuation'}{'contents'}[0]{'contents'}[8]{'parent'} =
$result_trees{'inhibit_punctuation'}{'contents'}[0];
+$result_trees{'inhibit_punctuation'}{'contents'}[0]{'contents'}[9]{'parent'} =
$result_trees{'inhibit_punctuation'}{'contents'}[0];
+$result_trees{'inhibit_punctuation'}{'contents'}[0]{'contents'}[10]{'parent'}
= $result_trees{'inhibit_punctuation'}{'contents'}[0];
+$result_trees{'inhibit_punctuation'}{'contents'}[0]{'contents'}[11]{'parent'}
= $result_trees{'inhibit_punctuation'}{'contents'}[0];
+$result_trees{'inhibit_punctuation'}{'contents'}[0]{'contents'}[12]{'parent'}
= $result_trees{'inhibit_punctuation'}{'contents'}[0];
+$result_trees{'inhibit_punctuation'}{'contents'}[0]{'contents'}[13]{'parent'}
= $result_trees{'inhibit_punctuation'}{'contents'}[0];
+$result_trees{'inhibit_punctuation'}{'contents'}[0]{'contents'}[14]{'parent'}
= $result_trees{'inhibit_punctuation'}{'contents'}[0];
+$result_trees{'inhibit_punctuation'}{'contents'}[0]{'contents'}[15]{'parent'}
= $result_trees{'inhibit_punctuation'}{'contents'}[0];
+$result_trees{'inhibit_punctuation'}{'contents'}[0]{'contents'}[16]{'parent'}
= $result_trees{'inhibit_punctuation'}{'contents'}[0];
+$result_trees{'inhibit_punctuation'}{'contents'}[0]{'contents'}[17]{'parent'}
= $result_trees{'inhibit_punctuation'}{'contents'}[0];
+$result_trees{'inhibit_punctuation'}{'contents'}[0]{'contents'}[18]{'parent'}
= $result_trees{'inhibit_punctuation'}{'contents'}[0];
+$result_trees{'inhibit_punctuation'}{'contents'}[0]{'contents'}[19]{'parent'}
= $result_trees{'inhibit_punctuation'}{'contents'}[0];
+$result_trees{'inhibit_punctuation'}{'contents'}[0]{'contents'}[20]{'parent'}
= $result_trees{'inhibit_punctuation'}{'contents'}[0];
+$result_trees{'inhibit_punctuation'}{'contents'}[0]{'contents'}[21]{'parent'}
= $result_trees{'inhibit_punctuation'}{'contents'}[0];
+$result_trees{'inhibit_punctuation'}{'contents'}[0]{'contents'}[22]{'parent'}
= $result_trees{'inhibit_punctuation'}{'contents'}[0];
+$result_trees{'inhibit_punctuation'}{'contents'}[0]{'parent'} =
$result_trees{'inhibit_punctuation'};
+
+$result_texis{'inhibit_punctuation'} = 'foo vs.@: bar.
+colon :@:And something else.
+semi colon ;@:.
+And ? ?@:. ?@:
+Now ! !@:@@ !@:
+but , ,@:
+';
+
+
+$result_texts{'inhibit_punctuation'} = 'foo vs. bar.
+colon :And something else.
+semi colon ;.
+And ? ?. ?
+Now ! !@ !
+but , ,
+';
+
+$result_errors{'inhibit_punctuation'} = [];
+
+
+
+$result_converted{'plaintext'}->{'inhibit_punctuation'} = 'foo vs. bar. colon
:And something else. semi colon ;. And ? ?. ?
+Now ! !@ ! but , ,
+';
+
+1;
Index: t/results/plaintext_tests/unknown_value.pl
===================================================================
RCS file: t/results/plaintext_tests/unknown_value.pl
diff -N t/results/plaintext_tests/unknown_value.pl
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ t/results/plaintext_tests/unknown_value.pl 14 Mar 2011 21:43:09 -0000
1.1
@@ -0,0 +1,46 @@
+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);
+
+use utf8;
+
+$result_trees{'unknown_value'} = {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => '',
+ 'type' => 'empty_line'
+ },
+ {
+ 'cmdname' => 'value',
+ 'type' => 'unknown'
+ }
+ ],
+ 'type' => 'text_root'
+};
+$result_trees{'unknown_value'}{'contents'}[0]{'parent'} =
$result_trees{'unknown_value'};
+
+$result_texis{'unknown_value'} = '@value{unknown}';
+
+
+$result_texts{'unknown_value'} = '';
+
+$result_errors{'unknown_value'} = [
+ {
+ 'error_line' => ':1: warning: undefined flag: unknown
+',
+ 'file_name' => '',
+ 'line_nr' => 1,
+ 'macro' => '',
+ 'text' => 'undefined flag: unknown',
+ 'type' => 'warning'
+ }
+];
+
+
+
+$result_converted{'plaintext'}->{'unknown_value'} = '
+{No value for `unknown\'}
+';
+
+1;
Index: t/results/quotation/empty_quotation.pl
===================================================================
RCS file: t/results/quotation/empty_quotation.pl
diff -N t/results/quotation/empty_quotation.pl
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ t/results/quotation/empty_quotation.pl 14 Mar 2011 21:43:09 -0000
1.1
@@ -0,0 +1,423 @@
+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);
+
+use utf8;
+
+$result_trees{'empty_quotation'} = {
+ 'contents' => [
+ {
+ 'cmdname' => 'quotation',
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'empty_line_after_command'
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' => 'empty_spaces_after_command'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'quotation'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'spaces_at_end'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'misc_line_arg'
+ }
+ ],
+ 'cmdname' => 'end',
+ 'extra' => {
+ 'command' => {},
+ 'command_argument' => 'quotation',
+ 'text_arg' => 'quotation'
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 2,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ }
+ ],
+ 'extra' => {
+ 'end_command' => {}
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 1,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'empty_line'
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' => 'empty_spaces_after_command'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'Empty'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'space_at_end_block_command'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'block_line_arg'
+ }
+ ],
+ 'cmdname' => 'quotation',
+ 'contents' => [
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' => 'empty_spaces_after_command'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'quotation'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'spaces_at_end'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'misc_line_arg'
+ }
+ ],
+ 'cmdname' => 'end',
+ 'extra' => {
+ 'command' => {},
+ 'command_argument' => 'quotation',
+ 'text_arg' => 'quotation'
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 5,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ }
+ ],
+ 'extra' => {
+ 'block_command_line_contents' => [
+ [
+ {}
+ ]
+ ],
+ 'end_command' => {}
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 4,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'empty_line'
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' => 'empty_spaces_after_command'
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [],
+ 'parent' => {},
+ 'type' => 'brace_command_arg'
+ }
+ ],
+ 'cmdname' => 'asis',
+ 'contents' => [],
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 7,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'space_at_end_block_command'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'block_line_arg'
+ }
+ ],
+ 'cmdname' => 'quotation',
+ 'contents' => [
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' => 'empty_spaces_after_command'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'quotation'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'spaces_at_end'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'misc_line_arg'
+ }
+ ],
+ 'cmdname' => 'end',
+ 'extra' => {
+ 'command' => {},
+ 'command_argument' => 'quotation',
+ 'text_arg' => 'quotation'
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 8,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ }
+ ],
+ 'extra' => {
+ 'block_command_line_contents' => [
+ [
+ {}
+ ]
+ ],
+ 'end_command' => {}
+ },
+ 'line_nr' => {},
+ 'parent' => {}
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'empty_line'
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' => 'empty_spaces_after_command'
+ },
+ {
+ 'cmdname' => '*',
+ 'parent' => {}
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'space_at_end_block_command'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'block_line_arg'
+ }
+ ],
+ 'cmdname' => 'quotation',
+ 'contents' => [
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' => 'empty_spaces_after_command'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'quotation'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'spaces_at_end'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'misc_line_arg'
+ }
+ ],
+ 'cmdname' => 'end',
+ 'extra' => {
+ 'command' => {},
+ 'command_argument' => 'quotation',
+ 'text_arg' => 'quotation'
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 11,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ }
+ ],
+ 'extra' => {
+ 'block_command_line_contents' => [
+ [
+ {}
+ ]
+ ],
+ 'end_command' => {}
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 10,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ }
+ ],
+ 'type' => 'text_root'
+};
+$result_trees{'empty_quotation'}{'contents'}[0]{'contents'}[0]{'parent'} =
$result_trees{'empty_quotation'}{'contents'}[0];
+$result_trees{'empty_quotation'}{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'empty_quotation'}{'contents'}[0]{'contents'}[1]{'args'}[0];
+$result_trees{'empty_quotation'}{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'empty_quotation'}{'contents'}[0]{'contents'}[1]{'args'}[0];
+$result_trees{'empty_quotation'}{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'empty_quotation'}{'contents'}[0]{'contents'}[1]{'args'}[0];
+$result_trees{'empty_quotation'}{'contents'}[0]{'contents'}[1]{'args'}[0]{'parent'}
= $result_trees{'empty_quotation'}{'contents'}[0]{'contents'}[1];
+$result_trees{'empty_quotation'}{'contents'}[0]{'contents'}[1]{'extra'}{'command'}
= $result_trees{'empty_quotation'}{'contents'}[0];
+$result_trees{'empty_quotation'}{'contents'}[0]{'contents'}[1]{'parent'} =
$result_trees{'empty_quotation'}{'contents'}[0];
+$result_trees{'empty_quotation'}{'contents'}[0]{'extra'}{'end_command'} =
$result_trees{'empty_quotation'}{'contents'}[0]{'contents'}[1];
+$result_trees{'empty_quotation'}{'contents'}[0]{'parent'} =
$result_trees{'empty_quotation'};
+$result_trees{'empty_quotation'}{'contents'}[1]{'parent'} =
$result_trees{'empty_quotation'};
+$result_trees{'empty_quotation'}{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'empty_quotation'}{'contents'}[2]{'args'}[0];
+$result_trees{'empty_quotation'}{'contents'}[2]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'empty_quotation'}{'contents'}[2]{'args'}[0];
+$result_trees{'empty_quotation'}{'contents'}[2]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'empty_quotation'}{'contents'}[2]{'args'}[0];
+$result_trees{'empty_quotation'}{'contents'}[2]{'args'}[0]{'parent'} =
$result_trees{'empty_quotation'}{'contents'}[2];
+$result_trees{'empty_quotation'}{'contents'}[2]{'contents'}[0]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'empty_quotation'}{'contents'}[2]{'contents'}[0]{'args'}[0];
+$result_trees{'empty_quotation'}{'contents'}[2]{'contents'}[0]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'empty_quotation'}{'contents'}[2]{'contents'}[0]{'args'}[0];
+$result_trees{'empty_quotation'}{'contents'}[2]{'contents'}[0]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'empty_quotation'}{'contents'}[2]{'contents'}[0]{'args'}[0];
+$result_trees{'empty_quotation'}{'contents'}[2]{'contents'}[0]{'args'}[0]{'parent'}
= $result_trees{'empty_quotation'}{'contents'}[2]{'contents'}[0];
+$result_trees{'empty_quotation'}{'contents'}[2]{'contents'}[0]{'extra'}{'command'}
= $result_trees{'empty_quotation'}{'contents'}[2];
+$result_trees{'empty_quotation'}{'contents'}[2]{'contents'}[0]{'parent'} =
$result_trees{'empty_quotation'}{'contents'}[2];
+$result_trees{'empty_quotation'}{'contents'}[2]{'extra'}{'block_command_line_contents'}[0][0]
= $result_trees{'empty_quotation'}{'contents'}[2]{'args'}[0]{'contents'}[1];
+$result_trees{'empty_quotation'}{'contents'}[2]{'extra'}{'end_command'} =
$result_trees{'empty_quotation'}{'contents'}[2]{'contents'}[0];
+$result_trees{'empty_quotation'}{'contents'}[2]{'parent'} =
$result_trees{'empty_quotation'};
+$result_trees{'empty_quotation'}{'contents'}[3]{'parent'} =
$result_trees{'empty_quotation'};
+$result_trees{'empty_quotation'}{'contents'}[4]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'empty_quotation'}{'contents'}[4]{'args'}[0];
+$result_trees{'empty_quotation'}{'contents'}[4]{'args'}[0]{'contents'}[1]{'args'}[0]{'parent'}
= $result_trees{'empty_quotation'}{'contents'}[4]{'args'}[0]{'contents'}[1];
+$result_trees{'empty_quotation'}{'contents'}[4]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'empty_quotation'}{'contents'}[4]{'args'}[0];
+$result_trees{'empty_quotation'}{'contents'}[4]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'empty_quotation'}{'contents'}[4]{'args'}[0];
+$result_trees{'empty_quotation'}{'contents'}[4]{'args'}[0]{'parent'} =
$result_trees{'empty_quotation'}{'contents'}[4];
+$result_trees{'empty_quotation'}{'contents'}[4]{'contents'}[0]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'empty_quotation'}{'contents'}[4]{'contents'}[0]{'args'}[0];
+$result_trees{'empty_quotation'}{'contents'}[4]{'contents'}[0]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'empty_quotation'}{'contents'}[4]{'contents'}[0]{'args'}[0];
+$result_trees{'empty_quotation'}{'contents'}[4]{'contents'}[0]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'empty_quotation'}{'contents'}[4]{'contents'}[0]{'args'}[0];
+$result_trees{'empty_quotation'}{'contents'}[4]{'contents'}[0]{'args'}[0]{'parent'}
= $result_trees{'empty_quotation'}{'contents'}[4]{'contents'}[0];
+$result_trees{'empty_quotation'}{'contents'}[4]{'contents'}[0]{'extra'}{'command'}
= $result_trees{'empty_quotation'}{'contents'}[4];
+$result_trees{'empty_quotation'}{'contents'}[4]{'contents'}[0]{'parent'} =
$result_trees{'empty_quotation'}{'contents'}[4];
+$result_trees{'empty_quotation'}{'contents'}[4]{'extra'}{'block_command_line_contents'}[0][0]
= $result_trees{'empty_quotation'}{'contents'}[4]{'args'}[0]{'contents'}[1];
+$result_trees{'empty_quotation'}{'contents'}[4]{'extra'}{'end_command'} =
$result_trees{'empty_quotation'}{'contents'}[4]{'contents'}[0];
+$result_trees{'empty_quotation'}{'contents'}[4]{'line_nr'} =
$result_trees{'empty_quotation'}{'contents'}[4]{'args'}[0]{'contents'}[1]{'line_nr'};
+$result_trees{'empty_quotation'}{'contents'}[4]{'parent'} =
$result_trees{'empty_quotation'};
+$result_trees{'empty_quotation'}{'contents'}[5]{'parent'} =
$result_trees{'empty_quotation'};
+$result_trees{'empty_quotation'}{'contents'}[6]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'empty_quotation'}{'contents'}[6]{'args'}[0];
+$result_trees{'empty_quotation'}{'contents'}[6]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'empty_quotation'}{'contents'}[6]{'args'}[0];
+$result_trees{'empty_quotation'}{'contents'}[6]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'empty_quotation'}{'contents'}[6]{'args'}[0];
+$result_trees{'empty_quotation'}{'contents'}[6]{'args'}[0]{'parent'} =
$result_trees{'empty_quotation'}{'contents'}[6];
+$result_trees{'empty_quotation'}{'contents'}[6]{'contents'}[0]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'empty_quotation'}{'contents'}[6]{'contents'}[0]{'args'}[0];
+$result_trees{'empty_quotation'}{'contents'}[6]{'contents'}[0]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'empty_quotation'}{'contents'}[6]{'contents'}[0]{'args'}[0];
+$result_trees{'empty_quotation'}{'contents'}[6]{'contents'}[0]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'empty_quotation'}{'contents'}[6]{'contents'}[0]{'args'}[0];
+$result_trees{'empty_quotation'}{'contents'}[6]{'contents'}[0]{'args'}[0]{'parent'}
= $result_trees{'empty_quotation'}{'contents'}[6]{'contents'}[0];
+$result_trees{'empty_quotation'}{'contents'}[6]{'contents'}[0]{'extra'}{'command'}
= $result_trees{'empty_quotation'}{'contents'}[6];
+$result_trees{'empty_quotation'}{'contents'}[6]{'contents'}[0]{'parent'} =
$result_trees{'empty_quotation'}{'contents'}[6];
+$result_trees{'empty_quotation'}{'contents'}[6]{'extra'}{'block_command_line_contents'}[0][0]
= $result_trees{'empty_quotation'}{'contents'}[6]{'args'}[0]{'contents'}[1];
+$result_trees{'empty_quotation'}{'contents'}[6]{'extra'}{'end_command'} =
$result_trees{'empty_quotation'}{'contents'}[6]{'contents'}[0];
+$result_trees{'empty_quotation'}{'contents'}[6]{'parent'} =
$result_trees{'empty_quotation'};
+
+$result_texis{'empty_quotation'} = '@quotation
address@hidden quotation
+
address@hidden Empty
address@hidden quotation
+
address@hidden @asis{}
address@hidden quotation
+
address@hidden @*
address@hidden quotation
+';
+
+
+$result_texts{'empty_quotation'} = '
+Empty
+
+
+
+
+
+
+
+
+';
+
+$result_errors{'empty_quotation'} = [];
+
+
+
+$result_converted{'plaintext'}->{'empty_quotation'} = '
+ Empty:
+ :
+
+ : ';
+
+1;
Index: t/results/quotation/quotation_and_author.pl
===================================================================
RCS file: t/results/quotation/quotation_and_author.pl
diff -N t/results/quotation/quotation_and_author.pl
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ t/results/quotation/quotation_and_author.pl 14 Mar 2011 21:43:10 -0000
1.1
@@ -0,0 +1,332 @@
+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);
+
+use utf8;
+
+$result_trees{'quotation_and_author'} = {
+ 'contents' => [
+ {
+ 'cmdname' => 'quotation',
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'empty_line_after_command'
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' => 'empty_spaces_after_command'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'Some One'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'spaces_at_end'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'misc_line_arg'
+ }
+ ],
+ 'cmdname' => 'author',
+ 'extra' => {
+ 'misc_content' => [
+ {}
+ ],
+ 'quotation' => {}
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 2,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ },
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => 'A quot---ation
+'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'paragraph'
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' => 'empty_spaces_after_command'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'quotation'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'spaces_at_end'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'misc_line_arg'
+ }
+ ],
+ 'cmdname' => 'end',
+ 'extra' => {
+ 'command' => {},
+ 'command_argument' => 'quotation',
+ 'text_arg' => 'quotation'
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 4,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ }
+ ],
+ 'extra' => {
+ 'authors' => [
+ {}
+ ],
+ 'end_command' => {}
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 1,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'empty_line'
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' => 'empty_spaces_after_command'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'Note'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'space_at_end_block_command'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'block_line_arg'
+ }
+ ],
+ 'cmdname' => 'quotation',
+ 'contents' => [
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' => 'empty_spaces_after_command'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'Some Notifier'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'spaces_at_end'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'misc_line_arg'
+ }
+ ],
+ 'cmdname' => 'author',
+ 'extra' => {
+ 'misc_content' => [
+ {}
+ ],
+ 'quotation' => {}
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 7,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ },
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => 'A Note
+'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'paragraph'
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' => 'empty_spaces_after_command'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'quotation'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'spaces_at_end'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'misc_line_arg'
+ }
+ ],
+ 'cmdname' => 'end',
+ 'extra' => {
+ 'command' => {},
+ 'command_argument' => 'quotation',
+ 'text_arg' => 'quotation'
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 9,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ }
+ ],
+ 'extra' => {
+ 'authors' => [
+ {}
+ ],
+ 'block_command_line_contents' => [
+ [
+ {}
+ ]
+ ],
+ 'end_command' => {}
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 6,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ }
+ ],
+ 'type' => 'text_root'
+};
+$result_trees{'quotation_and_author'}{'contents'}[0]{'contents'}[0]{'parent'}
= $result_trees{'quotation_and_author'}{'contents'}[0];
+$result_trees{'quotation_and_author'}{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[0]{'parent'}
=
$result_trees{'quotation_and_author'}{'contents'}[0]{'contents'}[1]{'args'}[0];
+$result_trees{'quotation_and_author'}{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[1]{'parent'}
=
$result_trees{'quotation_and_author'}{'contents'}[0]{'contents'}[1]{'args'}[0];
+$result_trees{'quotation_and_author'}{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[2]{'parent'}
=
$result_trees{'quotation_and_author'}{'contents'}[0]{'contents'}[1]{'args'}[0];
+$result_trees{'quotation_and_author'}{'contents'}[0]{'contents'}[1]{'args'}[0]{'parent'}
= $result_trees{'quotation_and_author'}{'contents'}[0]{'contents'}[1];
+$result_trees{'quotation_and_author'}{'contents'}[0]{'contents'}[1]{'extra'}{'misc_content'}[0]
=
$result_trees{'quotation_and_author'}{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[1];
+$result_trees{'quotation_and_author'}{'contents'}[0]{'contents'}[1]{'extra'}{'quotation'}
= $result_trees{'quotation_and_author'}{'contents'}[0];
+$result_trees{'quotation_and_author'}{'contents'}[0]{'contents'}[1]{'parent'}
= $result_trees{'quotation_and_author'}{'contents'}[0];
+$result_trees{'quotation_and_author'}{'contents'}[0]{'contents'}[2]{'contents'}[0]{'parent'}
= $result_trees{'quotation_and_author'}{'contents'}[0]{'contents'}[2];
+$result_trees{'quotation_and_author'}{'contents'}[0]{'contents'}[2]{'parent'}
= $result_trees{'quotation_and_author'}{'contents'}[0];
+$result_trees{'quotation_and_author'}{'contents'}[0]{'contents'}[3]{'args'}[0]{'contents'}[0]{'parent'}
=
$result_trees{'quotation_and_author'}{'contents'}[0]{'contents'}[3]{'args'}[0];
+$result_trees{'quotation_and_author'}{'contents'}[0]{'contents'}[3]{'args'}[0]{'contents'}[1]{'parent'}
=
$result_trees{'quotation_and_author'}{'contents'}[0]{'contents'}[3]{'args'}[0];
+$result_trees{'quotation_and_author'}{'contents'}[0]{'contents'}[3]{'args'}[0]{'contents'}[2]{'parent'}
=
$result_trees{'quotation_and_author'}{'contents'}[0]{'contents'}[3]{'args'}[0];
+$result_trees{'quotation_and_author'}{'contents'}[0]{'contents'}[3]{'args'}[0]{'parent'}
= $result_trees{'quotation_and_author'}{'contents'}[0]{'contents'}[3];
+$result_trees{'quotation_and_author'}{'contents'}[0]{'contents'}[3]{'extra'}{'command'}
= $result_trees{'quotation_and_author'}{'contents'}[0];
+$result_trees{'quotation_and_author'}{'contents'}[0]{'contents'}[3]{'parent'}
= $result_trees{'quotation_and_author'}{'contents'}[0];
+$result_trees{'quotation_and_author'}{'contents'}[0]{'extra'}{'authors'}[0] =
$result_trees{'quotation_and_author'}{'contents'}[0]{'contents'}[1];
+$result_trees{'quotation_and_author'}{'contents'}[0]{'extra'}{'end_command'} =
$result_trees{'quotation_and_author'}{'contents'}[0]{'contents'}[3];
+$result_trees{'quotation_and_author'}{'contents'}[0]{'parent'} =
$result_trees{'quotation_and_author'};
+$result_trees{'quotation_and_author'}{'contents'}[1]{'parent'} =
$result_trees{'quotation_and_author'};
+$result_trees{'quotation_and_author'}{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'quotation_and_author'}{'contents'}[2]{'args'}[0];
+$result_trees{'quotation_and_author'}{'contents'}[2]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'quotation_and_author'}{'contents'}[2]{'args'}[0];
+$result_trees{'quotation_and_author'}{'contents'}[2]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'quotation_and_author'}{'contents'}[2]{'args'}[0];
+$result_trees{'quotation_and_author'}{'contents'}[2]{'args'}[0]{'parent'} =
$result_trees{'quotation_and_author'}{'contents'}[2];
+$result_trees{'quotation_and_author'}{'contents'}[2]{'contents'}[0]{'args'}[0]{'contents'}[0]{'parent'}
=
$result_trees{'quotation_and_author'}{'contents'}[2]{'contents'}[0]{'args'}[0];
+$result_trees{'quotation_and_author'}{'contents'}[2]{'contents'}[0]{'args'}[0]{'contents'}[1]{'parent'}
=
$result_trees{'quotation_and_author'}{'contents'}[2]{'contents'}[0]{'args'}[0];
+$result_trees{'quotation_and_author'}{'contents'}[2]{'contents'}[0]{'args'}[0]{'contents'}[2]{'parent'}
=
$result_trees{'quotation_and_author'}{'contents'}[2]{'contents'}[0]{'args'}[0];
+$result_trees{'quotation_and_author'}{'contents'}[2]{'contents'}[0]{'args'}[0]{'parent'}
= $result_trees{'quotation_and_author'}{'contents'}[2]{'contents'}[0];
+$result_trees{'quotation_and_author'}{'contents'}[2]{'contents'}[0]{'extra'}{'misc_content'}[0]
=
$result_trees{'quotation_and_author'}{'contents'}[2]{'contents'}[0]{'args'}[0]{'contents'}[1];
+$result_trees{'quotation_and_author'}{'contents'}[2]{'contents'}[0]{'extra'}{'quotation'}
= $result_trees{'quotation_and_author'}{'contents'}[2];
+$result_trees{'quotation_and_author'}{'contents'}[2]{'contents'}[0]{'parent'}
= $result_trees{'quotation_and_author'}{'contents'}[2];
+$result_trees{'quotation_and_author'}{'contents'}[2]{'contents'}[1]{'contents'}[0]{'parent'}
= $result_trees{'quotation_and_author'}{'contents'}[2]{'contents'}[1];
+$result_trees{'quotation_and_author'}{'contents'}[2]{'contents'}[1]{'parent'}
= $result_trees{'quotation_and_author'}{'contents'}[2];
+$result_trees{'quotation_and_author'}{'contents'}[2]{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'}
=
$result_trees{'quotation_and_author'}{'contents'}[2]{'contents'}[2]{'args'}[0];
+$result_trees{'quotation_and_author'}{'contents'}[2]{'contents'}[2]{'args'}[0]{'contents'}[1]{'parent'}
=
$result_trees{'quotation_and_author'}{'contents'}[2]{'contents'}[2]{'args'}[0];
+$result_trees{'quotation_and_author'}{'contents'}[2]{'contents'}[2]{'args'}[0]{'contents'}[2]{'parent'}
=
$result_trees{'quotation_and_author'}{'contents'}[2]{'contents'}[2]{'args'}[0];
+$result_trees{'quotation_and_author'}{'contents'}[2]{'contents'}[2]{'args'}[0]{'parent'}
= $result_trees{'quotation_and_author'}{'contents'}[2]{'contents'}[2];
+$result_trees{'quotation_and_author'}{'contents'}[2]{'contents'}[2]{'extra'}{'command'}
= $result_trees{'quotation_and_author'}{'contents'}[2];
+$result_trees{'quotation_and_author'}{'contents'}[2]{'contents'}[2]{'parent'}
= $result_trees{'quotation_and_author'}{'contents'}[2];
+$result_trees{'quotation_and_author'}{'contents'}[2]{'extra'}{'authors'}[0] =
$result_trees{'quotation_and_author'}{'contents'}[2]{'contents'}[0];
+$result_trees{'quotation_and_author'}{'contents'}[2]{'extra'}{'block_command_line_contents'}[0][0]
=
$result_trees{'quotation_and_author'}{'contents'}[2]{'args'}[0]{'contents'}[1];
+$result_trees{'quotation_and_author'}{'contents'}[2]{'extra'}{'end_command'} =
$result_trees{'quotation_and_author'}{'contents'}[2]{'contents'}[2];
+$result_trees{'quotation_and_author'}{'contents'}[2]{'parent'} =
$result_trees{'quotation_and_author'};
+
+$result_texis{'quotation_and_author'} = '@quotation
address@hidden Some One
+A quot---ation
address@hidden quotation
+
address@hidden Note
address@hidden Some Notifier
+A Note
address@hidden quotation
+';
+
+
+$result_texts{'quotation_and_author'} = 'A quot---ation
+
+Note
+
+A Note
+';
+
+$result_errors{'quotation_and_author'} = [];
+
+
+
+$result_converted{'plaintext'}->{'quotation_and_author'} = ' A quot--ation
+ -- _Some One_
+
+ Note: A Note
+ -- _Some Notifier_
+';
+
+1;
Index: t/results/quotation/space_at_commands_end_quotation_line.pl
===================================================================
RCS file: t/results/quotation/space_at_commands_end_quotation_line.pl
diff -N t/results/quotation/space_at_commands_end_quotation_line.pl
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ t/results/quotation/space_at_commands_end_quotation_line.pl 14 Mar 2011
21:43:10 -0000 1.1
@@ -0,0 +1,341 @@
+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);
+
+use utf8;
+
+$result_trees{'space_at_commands_end_quotation_line'} = {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'empty_line'
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' => 'empty_spaces_after_command'
+ },
+ {
+ 'cmdname' => '@',
+ 'parent' => {}
+ },
+ {
+ 'parent' => {},
+ 'text' => ' at the end of line '
+ },
+ {
+ 'cmdname' => '
+',
+ 'parent' => {}
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'block_line_arg'
+ }
+ ],
+ 'cmdname' => 'quotation',
+ 'contents' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => 'A '
+ },
+ {
+ 'cmdname' => '@',
+ 'parent' => {}
+ },
+ {
+ 'parent' => {},
+ 'text' => ' at the end of the '
+ },
+ {
+ 'cmdname' => '@',
+ 'parent' => {}
+ },
+ {
+ 'parent' => {},
+ 'text' => 'quotation line.
+'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'paragraph'
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' => 'empty_spaces_after_command'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'quotation'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'spaces_at_end'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'misc_line_arg'
+ }
+ ],
+ 'cmdname' => 'end',
+ 'extra' => {
+ 'command' => {},
+ 'command_argument' => 'quotation',
+ 'text_arg' => 'quotation'
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 4,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ }
+ ],
+ 'extra' => {
+ 'block_command_line_contents' => [
+ [
+ {},
+ {},
+ {}
+ ]
+ ],
+ 'end_command' => {}
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 2,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'empty_line'
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' => 'empty_spaces_after_command'
+ },
+ {
+ 'cmdname' => '@',
+ 'parent' => {}
+ },
+ {
+ 'cmdname' => ' ',
+ 'parent' => {}
+ },
+ {
+ 'parent' => {},
+ 'text' => ' at the end of line '
+ },
+ {
+ 'cmdname' => ' ',
+ 'parent' => {}
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'space_at_end_block_command'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'block_line_arg'
+ }
+ ],
+ 'cmdname' => 'quotation',
+ 'contents' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => 'A '
+ },
+ {
+ 'cmdname' => '@',
+ 'parent' => {}
+ },
+ {
+ 'cmdname' => ' ',
+ 'parent' => {}
+ },
+ {
+ 'parent' => {},
+ 'text' => ' at the end of the '
+ },
+ {
+ 'cmdname' => '@',
+ 'parent' => {}
+ },
+ {
+ 'parent' => {},
+ 'text' => 'quotation line.
+'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'paragraph'
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' => 'empty_spaces_after_command'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'quotation'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'spaces_at_end'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'misc_line_arg'
+ }
+ ],
+ 'cmdname' => 'end',
+ 'extra' => {
+ 'command' => {},
+ 'command_argument' => 'quotation',
+ 'text_arg' => 'quotation'
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 8,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ }
+ ],
+ 'extra' => {
+ 'block_command_line_contents' => [
+ [
+ {},
+ {},
+ {},
+ {}
+ ]
+ ],
+ 'end_command' => {}
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 6,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ }
+ ],
+ 'type' => 'text_root'
+};
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[0]{'parent'}
= $result_trees{'space_at_commands_end_quotation_line'};
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1]{'args'}[0]{'contents'}[0]{'parent'}
=
$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1]{'args'}[0];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1]{'args'}[0]{'contents'}[1]{'parent'}
=
$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1]{'args'}[0];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1]{'args'}[0]{'contents'}[2]{'parent'}
=
$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1]{'args'}[0];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1]{'args'}[0]{'contents'}[3]{'parent'}
=
$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1]{'args'}[0];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1]{'args'}[0]{'parent'}
= $result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1]{'contents'}[0]{'contents'}[0]{'parent'}
=
$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1]{'contents'}[0];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1]{'contents'}[0]{'contents'}[1]{'parent'}
=
$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1]{'contents'}[0];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1]{'contents'}[0]{'contents'}[2]{'parent'}
=
$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1]{'contents'}[0];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1]{'contents'}[0]{'contents'}[3]{'parent'}
=
$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1]{'contents'}[0];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1]{'contents'}[0]{'contents'}[4]{'parent'}
=
$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1]{'contents'}[0];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1]{'contents'}[0]{'parent'}
= $result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1]{'contents'}[1]{'args'}[0]{'contents'}[0]{'parent'}
=
$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1]{'contents'}[1]{'args'}[0];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1]{'contents'}[1]{'args'}[0]{'contents'}[1]{'parent'}
=
$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1]{'contents'}[1]{'args'}[0];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1]{'contents'}[1]{'args'}[0]{'contents'}[2]{'parent'}
=
$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1]{'contents'}[1]{'args'}[0];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1]{'contents'}[1]{'args'}[0]{'parent'}
=
$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1]{'contents'}[1];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1]{'contents'}[1]{'extra'}{'command'}
= $result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1]{'contents'}[1]{'parent'}
= $result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1]{'extra'}{'block_command_line_contents'}[0][0]
=
$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1]{'args'}[0]{'contents'}[1];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1]{'extra'}{'block_command_line_contents'}[0][1]
=
$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1]{'args'}[0]{'contents'}[2];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1]{'extra'}{'block_command_line_contents'}[0][2]
=
$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1]{'args'}[0]{'contents'}[3];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1]{'extra'}{'end_command'}
=
$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1]{'contents'}[1];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[1]{'parent'}
= $result_trees{'space_at_commands_end_quotation_line'};
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[2]{'parent'}
= $result_trees{'space_at_commands_end_quotation_line'};
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'args'}[0]{'contents'}[0]{'parent'}
=
$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'args'}[0];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'args'}[0]{'contents'}[1]{'parent'}
=
$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'args'}[0];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'args'}[0]{'contents'}[2]{'parent'}
=
$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'args'}[0];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'args'}[0]{'contents'}[3]{'parent'}
=
$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'args'}[0];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'args'}[0]{'contents'}[4]{'parent'}
=
$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'args'}[0];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'args'}[0]{'contents'}[5]{'parent'}
=
$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'args'}[0];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'args'}[0]{'parent'}
= $result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'contents'}[0]{'contents'}[0]{'parent'}
=
$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'contents'}[0];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'contents'}[0]{'contents'}[1]{'parent'}
=
$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'contents'}[0];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'contents'}[0]{'contents'}[2]{'parent'}
=
$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'contents'}[0];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'contents'}[0]{'contents'}[3]{'parent'}
=
$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'contents'}[0];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'contents'}[0]{'contents'}[4]{'parent'}
=
$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'contents'}[0];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'contents'}[0]{'contents'}[5]{'parent'}
=
$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'contents'}[0];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'contents'}[0]{'parent'}
= $result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'contents'}[1]{'args'}[0]{'contents'}[0]{'parent'}
=
$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'contents'}[1]{'args'}[0];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'contents'}[1]{'args'}[0]{'contents'}[1]{'parent'}
=
$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'contents'}[1]{'args'}[0];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'contents'}[1]{'args'}[0]{'contents'}[2]{'parent'}
=
$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'contents'}[1]{'args'}[0];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'contents'}[1]{'args'}[0]{'parent'}
=
$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'contents'}[1];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'contents'}[1]{'extra'}{'command'}
= $result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'contents'}[1]{'parent'}
= $result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'extra'}{'block_command_line_contents'}[0][0]
=
$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'args'}[0]{'contents'}[1];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'extra'}{'block_command_line_contents'}[0][1]
=
$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'args'}[0]{'contents'}[2];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'extra'}{'block_command_line_contents'}[0][2]
=
$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'args'}[0]{'contents'}[3];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'extra'}{'block_command_line_contents'}[0][3]
=
$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'args'}[0]{'contents'}[4];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'extra'}{'end_command'}
=
$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'contents'}[1];
+$result_trees{'space_at_commands_end_quotation_line'}{'contents'}[3]{'parent'}
= $result_trees{'space_at_commands_end_quotation_line'};
+
+$result_texis{'space_at_commands_end_quotation_line'} = '
address@hidden @@ at the end of line @
+A @@ at the end of the @@quotation line.
address@hidden quotation
+
address@hidden @@@ at the end of line @
+A @@@ at the end of the @@quotation line.
address@hidden quotation
+';
+
+
+$result_texts{'space_at_commands_end_quotation_line'} = '
+@ at the end of line
+A @ at the end of the @quotation line.
+
+@ at the end of line
+
+A @ at the end of the @quotation line.
+';
+
+$result_errors{'space_at_commands_end_quotation_line'} = [];
+
+
+
+$result_converted{'plaintext'}->{'space_at_commands_end_quotation_line'} = '
+ @ at the end of line : A @ at the end of the @quotation line.
+
+ @ at the end of line : A @ at the end of the @quotation line.
+';
+
+1;
Index: t/results/quotation/standard_quotations.pl
===================================================================
RCS file: t/results/quotation/standard_quotations.pl
diff -N t/results/quotation/standard_quotations.pl
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ t/results/quotation/standard_quotations.pl 14 Mar 2011 21:43:10 -0000
1.1
@@ -0,0 +1,746 @@
+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);
+
+use utf8;
+
+$result_trees{'standard_quotations'} = {
+ 'contents' => [
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' => 'empty_spaces_after_command'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'Note'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'space_at_end_block_command'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'block_line_arg'
+ }
+ ],
+ 'cmdname' => 'quotation',
+ 'contents' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => 'A Note
+'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'paragraph'
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' => 'empty_spaces_after_command'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'quotation'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'spaces_at_end'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'misc_line_arg'
+ }
+ ],
+ 'cmdname' => 'end',
+ 'extra' => {
+ 'command' => {},
+ 'command_argument' => 'quotation',
+ 'text_arg' => 'quotation'
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 3,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ }
+ ],
+ 'extra' => {
+ 'block_command_line_contents' => [
+ [
+ {}
+ ]
+ ],
+ 'end_command' => {}
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 1,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'empty_line'
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' => 'empty_spaces_after_command'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'note'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'space_at_end_block_command'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'block_line_arg'
+ }
+ ],
+ 'cmdname' => 'quotation',
+ 'contents' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => 'A note
+'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'paragraph'
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' => 'empty_spaces_after_command'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'quotation'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'spaces_at_end'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'misc_line_arg'
+ }
+ ],
+ 'cmdname' => 'end',
+ 'extra' => {
+ 'command' => {},
+ 'command_argument' => 'quotation',
+ 'text_arg' => 'quotation'
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 7,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ }
+ ],
+ 'extra' => {
+ 'block_command_line_contents' => [
+ [
+ {}
+ ]
+ ],
+ 'end_command' => {}
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 5,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'empty_line'
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' => 'empty_spaces_after_command'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'Caution'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'space_at_end_block_command'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'block_line_arg'
+ }
+ ],
+ 'cmdname' => 'quotation',
+ 'contents' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => 'Caution
+'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'paragraph'
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' => 'empty_spaces_after_command'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'quotation'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'spaces_at_end'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'misc_line_arg'
+ }
+ ],
+ 'cmdname' => 'end',
+ 'extra' => {
+ 'command' => {},
+ 'command_argument' => 'quotation',
+ 'text_arg' => 'quotation'
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 11,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ }
+ ],
+ 'extra' => {
+ 'block_command_line_contents' => [
+ [
+ {}
+ ]
+ ],
+ 'end_command' => {}
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 9,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'empty_line'
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' => 'empty_spaces_after_command'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'Important'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'space_at_end_block_command'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'block_line_arg'
+ }
+ ],
+ 'cmdname' => 'quotation',
+ 'contents' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => 'Important
+'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'paragraph'
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' => 'empty_spaces_after_command'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'quotation'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'spaces_at_end'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'misc_line_arg'
+ }
+ ],
+ 'cmdname' => 'end',
+ 'extra' => {
+ 'command' => {},
+ 'command_argument' => 'quotation',
+ 'text_arg' => 'quotation'
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 15,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ }
+ ],
+ 'extra' => {
+ 'block_command_line_contents' => [
+ [
+ {}
+ ]
+ ],
+ 'end_command' => {}
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 13,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'empty_line'
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' => 'empty_spaces_after_command'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'Tip'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'space_at_end_block_command'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'block_line_arg'
+ }
+ ],
+ 'cmdname' => 'quotation',
+ 'contents' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => 'a Tip
+'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'paragraph'
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' => 'empty_spaces_after_command'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'quotation'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'spaces_at_end'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'misc_line_arg'
+ }
+ ],
+ 'cmdname' => 'end',
+ 'extra' => {
+ 'command' => {},
+ 'command_argument' => 'quotation',
+ 'text_arg' => 'quotation'
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 19,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ }
+ ],
+ 'extra' => {
+ 'block_command_line_contents' => [
+ [
+ {}
+ ]
+ ],
+ 'end_command' => {}
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 17,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'empty_line'
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' => 'empty_spaces_after_command'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'Warning'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'space_at_end_block_command'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'block_line_arg'
+ }
+ ],
+ 'cmdname' => 'quotation',
+ 'contents' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => 'a Warning.
+'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'paragraph'
+ },
+ {
+ 'args' => [
+ {
+ 'contents' => [
+ {
+ 'parent' => {},
+ 'text' => ' ',
+ 'type' => 'empty_spaces_after_command'
+ },
+ {
+ 'parent' => {},
+ 'text' => 'quotation'
+ },
+ {
+ 'parent' => {},
+ 'text' => '
+',
+ 'type' => 'spaces_at_end'
+ }
+ ],
+ 'parent' => {},
+ 'type' => 'misc_line_arg'
+ }
+ ],
+ 'cmdname' => 'end',
+ 'extra' => {
+ 'command' => {},
+ 'command_argument' => 'quotation',
+ 'text_arg' => 'quotation'
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 23,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ }
+ ],
+ 'extra' => {
+ 'block_command_line_contents' => [
+ [
+ {}
+ ]
+ ],
+ 'end_command' => {}
+ },
+ 'line_nr' => {
+ 'file_name' => '',
+ 'line_nr' => 21,
+ 'macro' => ''
+ },
+ 'parent' => {}
+ }
+ ],
+ 'type' => 'text_root'
+};
+$result_trees{'standard_quotations'}{'contents'}[0]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'standard_quotations'}{'contents'}[0]{'args'}[0];
+$result_trees{'standard_quotations'}{'contents'}[0]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'standard_quotations'}{'contents'}[0]{'args'}[0];
+$result_trees{'standard_quotations'}{'contents'}[0]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'standard_quotations'}{'contents'}[0]{'args'}[0];
+$result_trees{'standard_quotations'}{'contents'}[0]{'args'}[0]{'parent'} =
$result_trees{'standard_quotations'}{'contents'}[0];
+$result_trees{'standard_quotations'}{'contents'}[0]{'contents'}[0]{'contents'}[0]{'parent'}
= $result_trees{'standard_quotations'}{'contents'}[0]{'contents'}[0];
+$result_trees{'standard_quotations'}{'contents'}[0]{'contents'}[0]{'parent'} =
$result_trees{'standard_quotations'}{'contents'}[0];
+$result_trees{'standard_quotations'}{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[0]{'parent'}
=
$result_trees{'standard_quotations'}{'contents'}[0]{'contents'}[1]{'args'}[0];
+$result_trees{'standard_quotations'}{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[1]{'parent'}
=
$result_trees{'standard_quotations'}{'contents'}[0]{'contents'}[1]{'args'}[0];
+$result_trees{'standard_quotations'}{'contents'}[0]{'contents'}[1]{'args'}[0]{'contents'}[2]{'parent'}
=
$result_trees{'standard_quotations'}{'contents'}[0]{'contents'}[1]{'args'}[0];
+$result_trees{'standard_quotations'}{'contents'}[0]{'contents'}[1]{'args'}[0]{'parent'}
= $result_trees{'standard_quotations'}{'contents'}[0]{'contents'}[1];
+$result_trees{'standard_quotations'}{'contents'}[0]{'contents'}[1]{'extra'}{'command'}
= $result_trees{'standard_quotations'}{'contents'}[0];
+$result_trees{'standard_quotations'}{'contents'}[0]{'contents'}[1]{'parent'} =
$result_trees{'standard_quotations'}{'contents'}[0];
+$result_trees{'standard_quotations'}{'contents'}[0]{'extra'}{'block_command_line_contents'}[0][0]
=
$result_trees{'standard_quotations'}{'contents'}[0]{'args'}[0]{'contents'}[1];
+$result_trees{'standard_quotations'}{'contents'}[0]{'extra'}{'end_command'} =
$result_trees{'standard_quotations'}{'contents'}[0]{'contents'}[1];
+$result_trees{'standard_quotations'}{'contents'}[0]{'parent'} =
$result_trees{'standard_quotations'};
+$result_trees{'standard_quotations'}{'contents'}[1]{'parent'} =
$result_trees{'standard_quotations'};
+$result_trees{'standard_quotations'}{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'standard_quotations'}{'contents'}[2]{'args'}[0];
+$result_trees{'standard_quotations'}{'contents'}[2]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'standard_quotations'}{'contents'}[2]{'args'}[0];
+$result_trees{'standard_quotations'}{'contents'}[2]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'standard_quotations'}{'contents'}[2]{'args'}[0];
+$result_trees{'standard_quotations'}{'contents'}[2]{'args'}[0]{'parent'} =
$result_trees{'standard_quotations'}{'contents'}[2];
+$result_trees{'standard_quotations'}{'contents'}[2]{'contents'}[0]{'contents'}[0]{'parent'}
= $result_trees{'standard_quotations'}{'contents'}[2]{'contents'}[0];
+$result_trees{'standard_quotations'}{'contents'}[2]{'contents'}[0]{'parent'} =
$result_trees{'standard_quotations'}{'contents'}[2];
+$result_trees{'standard_quotations'}{'contents'}[2]{'contents'}[1]{'args'}[0]{'contents'}[0]{'parent'}
=
$result_trees{'standard_quotations'}{'contents'}[2]{'contents'}[1]{'args'}[0];
+$result_trees{'standard_quotations'}{'contents'}[2]{'contents'}[1]{'args'}[0]{'contents'}[1]{'parent'}
=
$result_trees{'standard_quotations'}{'contents'}[2]{'contents'}[1]{'args'}[0];
+$result_trees{'standard_quotations'}{'contents'}[2]{'contents'}[1]{'args'}[0]{'contents'}[2]{'parent'}
=
$result_trees{'standard_quotations'}{'contents'}[2]{'contents'}[1]{'args'}[0];
+$result_trees{'standard_quotations'}{'contents'}[2]{'contents'}[1]{'args'}[0]{'parent'}
= $result_trees{'standard_quotations'}{'contents'}[2]{'contents'}[1];
+$result_trees{'standard_quotations'}{'contents'}[2]{'contents'}[1]{'extra'}{'command'}
= $result_trees{'standard_quotations'}{'contents'}[2];
+$result_trees{'standard_quotations'}{'contents'}[2]{'contents'}[1]{'parent'} =
$result_trees{'standard_quotations'}{'contents'}[2];
+$result_trees{'standard_quotations'}{'contents'}[2]{'extra'}{'block_command_line_contents'}[0][0]
=
$result_trees{'standard_quotations'}{'contents'}[2]{'args'}[0]{'contents'}[1];
+$result_trees{'standard_quotations'}{'contents'}[2]{'extra'}{'end_command'} =
$result_trees{'standard_quotations'}{'contents'}[2]{'contents'}[1];
+$result_trees{'standard_quotations'}{'contents'}[2]{'parent'} =
$result_trees{'standard_quotations'};
+$result_trees{'standard_quotations'}{'contents'}[3]{'parent'} =
$result_trees{'standard_quotations'};
+$result_trees{'standard_quotations'}{'contents'}[4]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'standard_quotations'}{'contents'}[4]{'args'}[0];
+$result_trees{'standard_quotations'}{'contents'}[4]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'standard_quotations'}{'contents'}[4]{'args'}[0];
+$result_trees{'standard_quotations'}{'contents'}[4]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'standard_quotations'}{'contents'}[4]{'args'}[0];
+$result_trees{'standard_quotations'}{'contents'}[4]{'args'}[0]{'parent'} =
$result_trees{'standard_quotations'}{'contents'}[4];
+$result_trees{'standard_quotations'}{'contents'}[4]{'contents'}[0]{'contents'}[0]{'parent'}
= $result_trees{'standard_quotations'}{'contents'}[4]{'contents'}[0];
+$result_trees{'standard_quotations'}{'contents'}[4]{'contents'}[0]{'parent'} =
$result_trees{'standard_quotations'}{'contents'}[4];
+$result_trees{'standard_quotations'}{'contents'}[4]{'contents'}[1]{'args'}[0]{'contents'}[0]{'parent'}
=
$result_trees{'standard_quotations'}{'contents'}[4]{'contents'}[1]{'args'}[0];
+$result_trees{'standard_quotations'}{'contents'}[4]{'contents'}[1]{'args'}[0]{'contents'}[1]{'parent'}
=
$result_trees{'standard_quotations'}{'contents'}[4]{'contents'}[1]{'args'}[0];
+$result_trees{'standard_quotations'}{'contents'}[4]{'contents'}[1]{'args'}[0]{'contents'}[2]{'parent'}
=
$result_trees{'standard_quotations'}{'contents'}[4]{'contents'}[1]{'args'}[0];
+$result_trees{'standard_quotations'}{'contents'}[4]{'contents'}[1]{'args'}[0]{'parent'}
= $result_trees{'standard_quotations'}{'contents'}[4]{'contents'}[1];
+$result_trees{'standard_quotations'}{'contents'}[4]{'contents'}[1]{'extra'}{'command'}
= $result_trees{'standard_quotations'}{'contents'}[4];
+$result_trees{'standard_quotations'}{'contents'}[4]{'contents'}[1]{'parent'} =
$result_trees{'standard_quotations'}{'contents'}[4];
+$result_trees{'standard_quotations'}{'contents'}[4]{'extra'}{'block_command_line_contents'}[0][0]
=
$result_trees{'standard_quotations'}{'contents'}[4]{'args'}[0]{'contents'}[1];
+$result_trees{'standard_quotations'}{'contents'}[4]{'extra'}{'end_command'} =
$result_trees{'standard_quotations'}{'contents'}[4]{'contents'}[1];
+$result_trees{'standard_quotations'}{'contents'}[4]{'parent'} =
$result_trees{'standard_quotations'};
+$result_trees{'standard_quotations'}{'contents'}[5]{'parent'} =
$result_trees{'standard_quotations'};
+$result_trees{'standard_quotations'}{'contents'}[6]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'standard_quotations'}{'contents'}[6]{'args'}[0];
+$result_trees{'standard_quotations'}{'contents'}[6]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'standard_quotations'}{'contents'}[6]{'args'}[0];
+$result_trees{'standard_quotations'}{'contents'}[6]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'standard_quotations'}{'contents'}[6]{'args'}[0];
+$result_trees{'standard_quotations'}{'contents'}[6]{'args'}[0]{'parent'} =
$result_trees{'standard_quotations'}{'contents'}[6];
+$result_trees{'standard_quotations'}{'contents'}[6]{'contents'}[0]{'contents'}[0]{'parent'}
= $result_trees{'standard_quotations'}{'contents'}[6]{'contents'}[0];
+$result_trees{'standard_quotations'}{'contents'}[6]{'contents'}[0]{'parent'} =
$result_trees{'standard_quotations'}{'contents'}[6];
+$result_trees{'standard_quotations'}{'contents'}[6]{'contents'}[1]{'args'}[0]{'contents'}[0]{'parent'}
=
$result_trees{'standard_quotations'}{'contents'}[6]{'contents'}[1]{'args'}[0];
+$result_trees{'standard_quotations'}{'contents'}[6]{'contents'}[1]{'args'}[0]{'contents'}[1]{'parent'}
=
$result_trees{'standard_quotations'}{'contents'}[6]{'contents'}[1]{'args'}[0];
+$result_trees{'standard_quotations'}{'contents'}[6]{'contents'}[1]{'args'}[0]{'contents'}[2]{'parent'}
=
$result_trees{'standard_quotations'}{'contents'}[6]{'contents'}[1]{'args'}[0];
+$result_trees{'standard_quotations'}{'contents'}[6]{'contents'}[1]{'args'}[0]{'parent'}
= $result_trees{'standard_quotations'}{'contents'}[6]{'contents'}[1];
+$result_trees{'standard_quotations'}{'contents'}[6]{'contents'}[1]{'extra'}{'command'}
= $result_trees{'standard_quotations'}{'contents'}[6];
+$result_trees{'standard_quotations'}{'contents'}[6]{'contents'}[1]{'parent'} =
$result_trees{'standard_quotations'}{'contents'}[6];
+$result_trees{'standard_quotations'}{'contents'}[6]{'extra'}{'block_command_line_contents'}[0][0]
=
$result_trees{'standard_quotations'}{'contents'}[6]{'args'}[0]{'contents'}[1];
+$result_trees{'standard_quotations'}{'contents'}[6]{'extra'}{'end_command'} =
$result_trees{'standard_quotations'}{'contents'}[6]{'contents'}[1];
+$result_trees{'standard_quotations'}{'contents'}[6]{'parent'} =
$result_trees{'standard_quotations'};
+$result_trees{'standard_quotations'}{'contents'}[7]{'parent'} =
$result_trees{'standard_quotations'};
+$result_trees{'standard_quotations'}{'contents'}[8]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'standard_quotations'}{'contents'}[8]{'args'}[0];
+$result_trees{'standard_quotations'}{'contents'}[8]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'standard_quotations'}{'contents'}[8]{'args'}[0];
+$result_trees{'standard_quotations'}{'contents'}[8]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'standard_quotations'}{'contents'}[8]{'args'}[0];
+$result_trees{'standard_quotations'}{'contents'}[8]{'args'}[0]{'parent'} =
$result_trees{'standard_quotations'}{'contents'}[8];
+$result_trees{'standard_quotations'}{'contents'}[8]{'contents'}[0]{'contents'}[0]{'parent'}
= $result_trees{'standard_quotations'}{'contents'}[8]{'contents'}[0];
+$result_trees{'standard_quotations'}{'contents'}[8]{'contents'}[0]{'parent'} =
$result_trees{'standard_quotations'}{'contents'}[8];
+$result_trees{'standard_quotations'}{'contents'}[8]{'contents'}[1]{'args'}[0]{'contents'}[0]{'parent'}
=
$result_trees{'standard_quotations'}{'contents'}[8]{'contents'}[1]{'args'}[0];
+$result_trees{'standard_quotations'}{'contents'}[8]{'contents'}[1]{'args'}[0]{'contents'}[1]{'parent'}
=
$result_trees{'standard_quotations'}{'contents'}[8]{'contents'}[1]{'args'}[0];
+$result_trees{'standard_quotations'}{'contents'}[8]{'contents'}[1]{'args'}[0]{'contents'}[2]{'parent'}
=
$result_trees{'standard_quotations'}{'contents'}[8]{'contents'}[1]{'args'}[0];
+$result_trees{'standard_quotations'}{'contents'}[8]{'contents'}[1]{'args'}[0]{'parent'}
= $result_trees{'standard_quotations'}{'contents'}[8]{'contents'}[1];
+$result_trees{'standard_quotations'}{'contents'}[8]{'contents'}[1]{'extra'}{'command'}
= $result_trees{'standard_quotations'}{'contents'}[8];
+$result_trees{'standard_quotations'}{'contents'}[8]{'contents'}[1]{'parent'} =
$result_trees{'standard_quotations'}{'contents'}[8];
+$result_trees{'standard_quotations'}{'contents'}[8]{'extra'}{'block_command_line_contents'}[0][0]
=
$result_trees{'standard_quotations'}{'contents'}[8]{'args'}[0]{'contents'}[1];
+$result_trees{'standard_quotations'}{'contents'}[8]{'extra'}{'end_command'} =
$result_trees{'standard_quotations'}{'contents'}[8]{'contents'}[1];
+$result_trees{'standard_quotations'}{'contents'}[8]{'parent'} =
$result_trees{'standard_quotations'};
+$result_trees{'standard_quotations'}{'contents'}[9]{'parent'} =
$result_trees{'standard_quotations'};
+$result_trees{'standard_quotations'}{'contents'}[10]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'standard_quotations'}{'contents'}[10]{'args'}[0];
+$result_trees{'standard_quotations'}{'contents'}[10]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'standard_quotations'}{'contents'}[10]{'args'}[0];
+$result_trees{'standard_quotations'}{'contents'}[10]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'standard_quotations'}{'contents'}[10]{'args'}[0];
+$result_trees{'standard_quotations'}{'contents'}[10]{'args'}[0]{'parent'} =
$result_trees{'standard_quotations'}{'contents'}[10];
+$result_trees{'standard_quotations'}{'contents'}[10]{'contents'}[0]{'contents'}[0]{'parent'}
= $result_trees{'standard_quotations'}{'contents'}[10]{'contents'}[0];
+$result_trees{'standard_quotations'}{'contents'}[10]{'contents'}[0]{'parent'}
= $result_trees{'standard_quotations'}{'contents'}[10];
+$result_trees{'standard_quotations'}{'contents'}[10]{'contents'}[1]{'args'}[0]{'contents'}[0]{'parent'}
=
$result_trees{'standard_quotations'}{'contents'}[10]{'contents'}[1]{'args'}[0];
+$result_trees{'standard_quotations'}{'contents'}[10]{'contents'}[1]{'args'}[0]{'contents'}[1]{'parent'}
=
$result_trees{'standard_quotations'}{'contents'}[10]{'contents'}[1]{'args'}[0];
+$result_trees{'standard_quotations'}{'contents'}[10]{'contents'}[1]{'args'}[0]{'contents'}[2]{'parent'}
=
$result_trees{'standard_quotations'}{'contents'}[10]{'contents'}[1]{'args'}[0];
+$result_trees{'standard_quotations'}{'contents'}[10]{'contents'}[1]{'args'}[0]{'parent'}
= $result_trees{'standard_quotations'}{'contents'}[10]{'contents'}[1];
+$result_trees{'standard_quotations'}{'contents'}[10]{'contents'}[1]{'extra'}{'command'}
= $result_trees{'standard_quotations'}{'contents'}[10];
+$result_trees{'standard_quotations'}{'contents'}[10]{'contents'}[1]{'parent'}
= $result_trees{'standard_quotations'}{'contents'}[10];
+$result_trees{'standard_quotations'}{'contents'}[10]{'extra'}{'block_command_line_contents'}[0][0]
=
$result_trees{'standard_quotations'}{'contents'}[10]{'args'}[0]{'contents'}[1];
+$result_trees{'standard_quotations'}{'contents'}[10]{'extra'}{'end_command'} =
$result_trees{'standard_quotations'}{'contents'}[10]{'contents'}[1];
+$result_trees{'standard_quotations'}{'contents'}[10]{'parent'} =
$result_trees{'standard_quotations'};
+
+$result_texis{'standard_quotations'} = '@quotation Note
+A Note
address@hidden quotation
+
address@hidden note
+A note
address@hidden quotation
+
address@hidden Caution
+Caution
address@hidden quotation
+
address@hidden Important
+Important
address@hidden quotation
+
address@hidden Tip
+a Tip
address@hidden quotation
+
address@hidden Warning
+a Warning.
address@hidden quotation
+';
+
+
+$result_texts{'standard_quotations'} = 'Note
+
+A Note
+
+note
+
+A note
+
+Caution
+
+Caution
+
+Important
+
+Important
+
+Tip
+
+a Tip
+
+Warning
+
+a Warning.
+';
+
+$result_errors{'standard_quotations'} = [];
+
+
+
+$result_converted{'plaintext'}->{'standard_quotations'} = ' Note: A Note
+
+ note: A note
+
+ Caution: Caution
+
+ Important: Important
+
+ Tip: a Tip
+
+ Warning: a Warning.
+';
+
+1;
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- texinfo/tp TODO Texinfo/Convert/Plaintext.pm t/...,
Patrice Dumas <=