[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
texinfo/tp Texinfo/Common.pm Texinfo/Parser.pm ...
From: |
Patrice Dumas |
Subject: |
texinfo/tp Texinfo/Common.pm Texinfo/Parser.pm ... |
Date: |
Thu, 15 Sep 2011 20:01:47 +0000 |
CVSROOT: /sources/texinfo
Module name: texinfo
Changes by: Patrice Dumas <pertusus> 11/09/15 20:01:47
Modified files:
tp/Texinfo : Common.pm Parser.pm Structuring.pm
tp/Texinfo/Convert: HTML.pm
tp/t/results/macro: macro_in_misc_commands.pl
tp/t/results/misc_commands: many_lines.pl
tp/t/results/value: value_in_misc_commands.pl
Log message:
Consider that footnotestyle is a unique @-command. Indeed it should not
be possible to change it in the middle of a document.
Also remove @shorttitle, it doesn't seems to exist.
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/Texinfo/Common.pm?cvsroot=texinfo&r1=1.60&r2=1.61
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/Texinfo/Parser.pm?cvsroot=texinfo&r1=1.293&r2=1.294
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/Texinfo/Structuring.pm?cvsroot=texinfo&r1=1.81&r2=1.82
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/Texinfo/Convert/HTML.pm?cvsroot=texinfo&r1=1.148&r2=1.149
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/t/results/macro/macro_in_misc_commands.pl?cvsroot=texinfo&r1=1.57&r2=1.58
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/t/results/misc_commands/many_lines.pl?cvsroot=texinfo&r1=1.32&r2=1.33
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/t/results/value/value_in_misc_commands.pl?cvsroot=texinfo&r1=1.48&r2=1.49
Patches:
Index: Texinfo/Common.pm
===================================================================
RCS file: /sources/texinfo/texinfo/tp/Texinfo/Common.pm,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -b -r1.60 -r1.61
--- Texinfo/Common.pm 28 Aug 2011 21:22:53 -0000 1.60
+++ Texinfo/Common.pm 15 Sep 2011 20:01:31 -0000 1.61
@@ -272,7 +272,7 @@
'printindex' => 1,
'listoffloats' => 'line',
# especially in titlepage
- 'shorttitle' => 'line',
+# 'shorttitle' => 'line',
'shorttitlepage' => 'line',
'settitle' => 'line',
'author' => 'line',
Index: Texinfo/Parser.pm
===================================================================
RCS file: /sources/texinfo/texinfo/tp/Texinfo/Parser.pm,v
retrieving revision 1.293
retrieving revision 1.294
diff -u -b -r1.293 -r1.294
--- Texinfo/Parser.pm 7 Sep 2011 22:41:21 -0000 1.293
+++ Texinfo/Parser.pm 15 Sep 2011 20:01:40 -0000 1.294
@@ -446,7 +446,7 @@
'documentencoding', 'insertcopying',
'subtitle', 'contents', 'shortcontents', 'summarycontents',
'kbdinputstyle', 'paragraphindent', 'firstparagraphindent',
- 'frenchspacing', 'footnotestyle', 'hyphenation', 'urefbreakstyle',
+ 'frenchspacing', 'hyphenation', 'urefbreakstyle',
'xrefautomaticsectiontitle', 'codequoteundirected',
'codequotebacktick', 'titlefont', 'footnote', 'printindex') {
$global_multiple_commands{$global_multiple_command} = 1;
@@ -457,7 +457,7 @@
'shorttitlepage', 'settitle', 'copying', 'documentdescription',
'novalidate', 'titlepage',
'setfilename', 'setcontentsaftertitlepage',
- 'setshortcontentsaftertitlepage',
+ 'setshortcontentsaftertitlepage', 'footnotestyle',
'documentencoding', 'everyheadingmarks','everyfootingmarks',
'evenheadingmarks', 'oddheadingmarks', 'evenfootingmarks', 'oddfootingmarks',
'fonttextsize', 'pagesizes', 'setchapternewpage', 'top'
Index: Texinfo/Structuring.pm
===================================================================
RCS file: /sources/texinfo/texinfo/tp/Texinfo/Structuring.pm,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -b -r1.81 -r1.82
--- Texinfo/Structuring.pm 6 Sep 2011 20:20:44 -0000 1.81
+++ Texinfo/Structuring.pm 15 Sep 2011 20:01:42 -0000 1.82
@@ -67,7 +67,7 @@
# anchor may appear in @center? @item/x?
# going in node, sectioning
-# not going in: pagesizes listoffloats shorttitle shorttitlepage
+# not going in: pagesizes listoffloats shorttitlepage
# settitle author subtitle title
# index entries
# footnote? section node
Index: Texinfo/Convert/HTML.pm
===================================================================
RCS file: /sources/texinfo/texinfo/tp/Texinfo/Convert/HTML.pm,v
retrieving revision 1.148
retrieving revision 1.149
diff -u -b -r1.148 -r1.149
--- Texinfo/Convert/HTML.pm 8 Sep 2011 21:13:08 -0000 1.148
+++ Texinfo/Convert/HTML.pm 15 Sep 2011 20:01:43 -0000 1.149
@@ -1041,7 +1041,7 @@
# 'novalidate'
foreach my $misc_command(@informative_global_commands,
'verbatiminclude', 'insertcopying', 'printindex', 'listoffloats',
- 'shorttitle', 'shorttitlepage', 'author', 'subtitle',
+ 'shorttitlepage', 'author', 'subtitle',
'title', keys(%default_index_commands),
keys(%formatting_misc_commands)) {
$kept_misc_commands{$misc_command} = 1;
Index: t/results/macro/macro_in_misc_commands.pl
===================================================================
RCS file:
/sources/texinfo/texinfo/tp/t/results/macro/macro_in_misc_commands.pl,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -b -r1.57 -r1.58
--- t/results/macro/macro_in_misc_commands.pl 19 Aug 2011 23:09:43 -0000
1.57
+++ t/results/macro/macro_in_misc_commands.pl 15 Sep 2011 20:01:43 -0000
1.58
@@ -4428,6 +4428,15 @@
'type' => 'warning'
},
{
+ 'error_line' => ':112: warning: Multiple @footnotestyle
+',
+ 'file_name' => '',
+ 'line_nr' => 112,
+ 'macro' => '',
+ 'text' => 'Multiple @footnotestyle',
+ 'type' => 'warning'
+ },
+ {
'error_line' => ':149: warning: @page should only appear at a line
beginning (possibly involving @page-macro)
',
'file_name' => '',
Index: t/results/misc_commands/many_lines.pl
===================================================================
RCS file: /sources/texinfo/texinfo/tp/t/results/misc_commands/many_lines.pl,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -b -r1.32 -r1.33
--- t/results/misc_commands/many_lines.pl 3 Jul 2011 14:51:00 -0000
1.32
+++ t/results/misc_commands/many_lines.pl 15 Sep 2011 20:01:44 -0000
1.33
@@ -1769,6 +1769,15 @@
'type' => 'warning'
},
{
+ 'error_line' => ':28: warning: Multiple @footnotestyle
+',
+ 'file_name' => '',
+ 'line_nr' => 28,
+ 'macro' => '',
+ 'text' => 'Multiple @footnotestyle',
+ 'type' => 'warning'
+ },
+ {
'error_line' => ':29: warning: @documentencoding should only appear at a
line beginning
',
'file_name' => '',
Index: t/results/value/value_in_misc_commands.pl
===================================================================
RCS file:
/sources/texinfo/texinfo/tp/t/results/value/value_in_misc_commands.pl,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -b -r1.48 -r1.49
--- t/results/value/value_in_misc_commands.pl 19 Aug 2011 23:09:47 -0000
1.48
+++ t/results/value/value_in_misc_commands.pl 15 Sep 2011 20:01:45 -0000
1.49
@@ -3483,6 +3483,15 @@
'type' => 'warning'
},
{
+ 'error_line' => ':80: warning: Multiple @footnotestyle
+',
+ 'file_name' => '',
+ 'line_nr' => 80,
+ 'macro' => '',
+ 'text' => 'Multiple @footnotestyle',
+ 'type' => 'warning'
+ },
+ {
'error_line' => ':88: warning: @documentlanguage should only appear at a
line beginning
',
'file_name' => '',
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- texinfo/tp Texinfo/Common.pm Texinfo/Parser.pm ...,
Patrice Dumas <=