[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[no subject]
From: |
Patrice Dumas |
Date: |
Sat, 5 Feb 2022 17:47:57 -0500 (EST) |
branch: master
commit 46512a78304b97ebfacf45c0b760eeddd58ed987
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Sat Feb 5 23:41:31 2022 +0100
Add copyright notice in all pod files, using only the first year
---
tp/Texinfo/Common.pm | 10 ++++++++++
tp/Texinfo/Convert/Converter.pm | 10 ++++++++++
tp/Texinfo/Convert/DocBook.pm | 3 ++-
tp/Texinfo/Convert/HTML.pm | 3 ++-
tp/Texinfo/Convert/IXINSXML.pm | 2 ++
tp/Texinfo/Convert/Info.pm | 3 ++-
tp/Texinfo/Convert/LaTeX.pm | 3 ++-
tp/Texinfo/Convert/NodeNameNormalization.pm | 10 ++++++++++
tp/Texinfo/Convert/Plaintext.pm | 3 ++-
tp/Texinfo/Convert/Texinfo.pm | 10 ++++++++++
tp/Texinfo/Convert/TexinfoSXML.pm | 2 ++
tp/Texinfo/Convert/TexinfoXML.pm | 3 ++-
tp/Texinfo/Convert/Text.pm | 10 ++++++++++
tp/Texinfo/Convert/Unicode.pm | 11 ++++++++++-
tp/Texinfo/Convert/Utils.pm | 10 ++++++++++
tp/Texinfo/Encoding.pm | 10 ++++++++++
tp/Texinfo/ParserNonXS.pm | 10 ++++++++++
tp/Texinfo/Report.pm | 10 ++++++++++
tp/Texinfo/Structuring.pm | 10 ++++++++++
tp/Texinfo/Transformations.pm | 3 ++-
tp/Texinfo/Translations.pm | 10 ++++++++++
tp/maintain/template.pod | 3 ++-
22 files changed, 140 insertions(+), 9 deletions(-)
diff --git a/tp/Texinfo/Common.pm b/tp/Texinfo/Common.pm
index b08070555d..762e7bc0b3 100644
--- a/tp/Texinfo/Common.pm
+++ b/tp/Texinfo/Common.pm
@@ -3167,4 +3167,14 @@ L<Texinfo::Parser>, L<Texinfo::Convert::Converter> and
L<Texinfo::Report>.
Patrice Dumas, E<lt>pertusus@free.frE<gt>
+=head1 COPYRIGHT AND LICENSE
+
+Copyright 2010- Free Software Foundation, Inc. See the source file for
+all copyright years.
+
+This library is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 3 of the License, or (at
+your option) any later version.
+
=cut
diff --git a/tp/Texinfo/Convert/Converter.pm b/tp/Texinfo/Convert/Converter.pm
index b8b80ec086..d4e1d5cc90 100644
--- a/tp/Texinfo/Convert/Converter.pm
+++ b/tp/Texinfo/Convert/Converter.pm
@@ -1886,4 +1886,14 @@ L<Texinfo::Translations>, L<Texinfo::Convert::Utils> and
L<Texinfo::Parser>.
Patrice Dumas, E<lt>pertusus@free.frE<gt>
+=head1 COPYRIGHT AND LICENSE
+
+Copyright 2011- Free Software Foundation, Inc. See the source file for
+all copyright years.
+
+This library is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 3 of the License, or (at
+your option) any later version.
+
=cut
diff --git a/tp/Texinfo/Convert/DocBook.pm b/tp/Texinfo/Convert/DocBook.pm
index 332ea12a6e..152b6da240 100644
--- a/tp/Texinfo/Convert/DocBook.pm
+++ b/tp/Texinfo/Convert/DocBook.pm
@@ -1530,7 +1530,8 @@ Patrice Dumas, E<lt>pertusus@free.frE<gt>
=head1 COPYRIGHT AND LICENSE
-Copyright 2016 Free Software Foundation, Inc.
+Copyright 2010- Free Software Foundation, Inc. See the source file for
+all copyright years.
This library is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/tp/Texinfo/Convert/HTML.pm b/tp/Texinfo/Convert/HTML.pm
index 6cf0a6b844..3021bd6a76 100644
--- a/tp/Texinfo/Convert/HTML.pm
+++ b/tp/Texinfo/Convert/HTML.pm
@@ -10238,7 +10238,8 @@ Patrice Dumas, E<lt>pertusus@free.frE<gt>
=head1 COPYRIGHT AND LICENSE
-Copyright 2016 Free Software Foundation, Inc.
+Copyright 2010- Free Software Foundation, Inc. See the source file for
+all copyright years.
This library is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/tp/Texinfo/Convert/IXINSXML.pm b/tp/Texinfo/Convert/IXINSXML.pm
index a18ea49fa5..594b343875 100644
--- a/tp/Texinfo/Convert/IXINSXML.pm
+++ b/tp/Texinfo/Convert/IXINSXML.pm
@@ -67,3 +67,5 @@ sub output($)
return $self->output_ixin($root);
}
+
+1;
diff --git a/tp/Texinfo/Convert/Info.pm b/tp/Texinfo/Convert/Info.pm
index ea887712c5..b81eafb1f0 100644
--- a/tp/Texinfo/Convert/Info.pm
+++ b/tp/Texinfo/Convert/Info.pm
@@ -623,7 +623,8 @@ Patrice Dumas, E<lt>pertusus@free.frE<gt>
=head1 COPYRIGHT AND LICENSE
-Copyright 2016 Free Software Foundation, Inc.
+Copyright 2010- Free Software Foundation, Inc. See the source file for
+all copyright years.
This library is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/tp/Texinfo/Convert/LaTeX.pm b/tp/Texinfo/Convert/LaTeX.pm
index 9e87f94321..dd3cd7f3ca 100644
--- a/tp/Texinfo/Convert/LaTeX.pm
+++ b/tp/Texinfo/Convert/LaTeX.pm
@@ -17,7 +17,8 @@
#
# TODO
#
-# @def* not implemented
+# @def* not implemented (code from Plaintext was kept as-is), including
+# effect of @deftypefnnewline
#
# @shortcontent is not implemented. Tried shorttoc package but it
# has two limitations that are not in Texinfo, need a main \tableofcontents
diff --git a/tp/Texinfo/Convert/NodeNameNormalization.pm
b/tp/Texinfo/Convert/NodeNameNormalization.pm
index d1bedb0d6a..ef41b0d3e8 100644
--- a/tp/Texinfo/Convert/NodeNameNormalization.pm
+++ b/tp/Texinfo/Convert/NodeNameNormalization.pm
@@ -411,4 +411,14 @@ is not used for characters whose transliteration is not
built-in.
Patrice Dumas, E<lt>pertusus@free.frE<gt>
+=head1 COPYRIGHT AND LICENSE
+
+Copyright 2010- Free Software Foundation, Inc. See the source file for
+all copyright years.
+
+This library is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 3 of the License, or (at
+your option) any later version.
+
=cut
diff --git a/tp/Texinfo/Convert/Plaintext.pm b/tp/Texinfo/Convert/Plaintext.pm
index c9470a92d2..a58d580e0b 100644
--- a/tp/Texinfo/Convert/Plaintext.pm
+++ b/tp/Texinfo/Convert/Plaintext.pm
@@ -3370,7 +3370,8 @@ Patrice Dumas, E<lt>pertusus@free.frE<gt>
=head1 COPYRIGHT AND LICENSE
-Copyright 2016 Free Software Foundation, Inc.
+Copyright 2010- Free Software Foundation, Inc. See the source file for
+all copyright years.
This library is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/tp/Texinfo/Convert/Texinfo.pm b/tp/Texinfo/Convert/Texinfo.pm
index 08a2bdc493..00e9cbdb19 100644
--- a/tp/Texinfo/Convert/Texinfo.pm
+++ b/tp/Texinfo/Convert/Texinfo.pm
@@ -271,4 +271,14 @@ Converts the Texinfo tree I<$tree> to Texinfo code.
Patrice Dumas, E<lt>pertusus@free.frE<gt>
+=head1 COPYRIGHT AND LICENSE
+
+Copyright 2010- Free Software Foundation, Inc. See the source file for
+all copyright years.
+
+This library is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 3 of the License, or (at
+your option) any later version.
+
=cut
diff --git a/tp/Texinfo/Convert/TexinfoSXML.pm
b/tp/Texinfo/Convert/TexinfoSXML.pm
index 77cb2defea..78258cc3fd 100644
--- a/tp/Texinfo/Convert/TexinfoSXML.pm
+++ b/tp/Texinfo/Convert/TexinfoSXML.pm
@@ -175,3 +175,5 @@ sub format_header($$$)
}
return $header;
}
+
+1;
diff --git a/tp/Texinfo/Convert/TexinfoXML.pm b/tp/Texinfo/Convert/TexinfoXML.pm
index a798fac6bf..dcd23391d9 100644
--- a/tp/Texinfo/Convert/TexinfoXML.pm
+++ b/tp/Texinfo/Convert/TexinfoXML.pm
@@ -1774,7 +1774,8 @@ Patrice Dumas, E<lt>pertusus@free.frE<gt>
=head1 COPYRIGHT AND LICENSE
-Copyright 2016 Free Software Foundation, Inc.
+Copyright 2010- Free Software Foundation, Inc. See the source file for
+all copyright years.
This library is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/tp/Texinfo/Convert/Text.pm b/tp/Texinfo/Convert/Text.pm
index 3a36bb8e0d..f561bb0e7a 100644
--- a/tp/Texinfo/Convert/Text.pm
+++ b/tp/Texinfo/Convert/Text.pm
@@ -930,4 +930,14 @@ lower-cased.
Patrice Dumas, E<lt>pertusus@free.frE<gt>
+=head1 COPYRIGHT AND LICENSE
+
+Copyright 2010- Free Software Foundation, Inc. See the source file for
+all copyright years.
+
+This library is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 3 of the License, or (at
+your option) any later version.
+
=cut
diff --git a/tp/Texinfo/Convert/Unicode.pm b/tp/Texinfo/Convert/Unicode.pm
index 5ae80669a5..b29527b826 100644
--- a/tp/Texinfo/Convert/Unicode.pm
+++ b/tp/Texinfo/Convert/Unicode.pm
@@ -1655,5 +1655,14 @@ have a zero width (like composing accents) while some
have a width of 2
Patrice Dumas, E<lt>pertusus@free.frE<gt>
-=cut
+=head1 COPYRIGHT AND LICENSE
+
+Copyright 2010- Free Software Foundation, Inc. See the source file for
+all copyright years.
+This library is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 3 of the License, or (at
+your option) any later version.
+
+=cut
diff --git a/tp/Texinfo/Convert/Utils.pm b/tp/Texinfo/Convert/Utils.pm
index 25414b1a1f..bc2efa911e 100644
--- a/tp/Texinfo/Convert/Utils.pm
+++ b/tp/Texinfo/Convert/Utils.pm
@@ -380,4 +380,14 @@ L<Texinfo::Convert::Converter> and
L<Texinfo::Translations>.
Patrice Dumas, E<lt>pertusus@free.frE<gt>
+=head1 COPYRIGHT AND LICENSE
+
+Copyright 2010- Free Software Foundation, Inc. See the source file for
+all copyright years.
+
+This library is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 3 of the License, or (at
+your option) any later version.
+
=cut
diff --git a/tp/Texinfo/Encoding.pm b/tp/Texinfo/Encoding.pm
index e338e63db1..cda0fa3513 100644
--- a/tp/Texinfo/Encoding.pm
+++ b/tp/Texinfo/Encoding.pm
@@ -128,4 +128,14 @@ output formats, especially HTML,
I<$canonical_output_encoding>.
Patrice Dumas, E<lt>pertusus@free.frE<gt>
+=head1 COPYRIGHT AND LICENSE
+
+Copyright 2010- Free Software Foundation, Inc. See the source file for
+all copyright years.
+
+This library is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 3 of the License, or (at
+your option) any later version.
+
=cut
diff --git a/tp/Texinfo/ParserNonXS.pm b/tp/Texinfo/ParserNonXS.pm
index 3e729a332b..025a682148 100644
--- a/tp/Texinfo/ParserNonXS.pm
+++ b/tp/Texinfo/ParserNonXS.pm
@@ -7253,4 +7253,14 @@ L<Texinfo
manual|http://www.gnu.org/software/texinfo/manual/texinfo/>.
Patrice Dumas, E<lt>pertusus@free.frE<gt>
+=head1 COPYRIGHT AND LICENSE
+
+Copyright 2010- Free Software Foundation, Inc. See the source file for
+all copyright years.
+
+This library is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 3 of the License, or (at
+your option) any later version.
+
=cut
diff --git a/tp/Texinfo/Report.pm b/tp/Texinfo/Report.pm
index 9d3ba8fb96..4888968125 100644
--- a/tp/Texinfo/Report.pm
+++ b/tp/Texinfo/Report.pm
@@ -345,4 +345,14 @@ the line I<$line_nr> in the file.
Patrice Dumas, E<lt>pertusus@free.frE<gt>
+=head1 COPYRIGHT AND LICENSE
+
+Copyright 2010- Free Software Foundation, Inc. See the source file for
+all copyright years.
+
+This library is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 3 of the License, or (at
+your option) any later version.
+
=cut
diff --git a/tp/Texinfo/Structuring.pm b/tp/Texinfo/Structuring.pm
index f25b6bbe3b..01bb9a9bd5 100644
--- a/tp/Texinfo/Structuring.pm
+++ b/tp/Texinfo/Structuring.pm
@@ -2127,4 +2127,14 @@ L<Texinfo::Parser>.
Patrice Dumas, E<lt>pertusus@free.frE<gt>
+=head1 COPYRIGHT AND LICENSE
+
+Copyright 2010- Free Software Foundation, Inc. See the source file for
+all copyright years.
+
+This library is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 3 of the License, or (at
+your option) any later version.
+
=cut
diff --git a/tp/Texinfo/Transformations.pm b/tp/Texinfo/Transformations.pm
index 3166b88f08..ab9f1921c2 100644
--- a/tp/Texinfo/Transformations.pm
+++ b/tp/Texinfo/Transformations.pm
@@ -949,7 +949,8 @@ Patrice Dumas, E<lt>pertusus@free.frE<gt>
=head1 COPYRIGHT AND LICENSE
-Copyright 2016 Free Software Foundation, Inc.
+Copyright 2010- Free Software Foundation, Inc. See the source file for
+all copyright years.
This library is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/tp/Texinfo/Translations.pm b/tp/Texinfo/Translations.pm
index 58811e9c1a..8b2d0eb7ae 100644
--- a/tp/Texinfo/Translations.pm
+++ b/tp/Texinfo/Translations.pm
@@ -489,4 +489,14 @@ may only be strings in that case.
Patrice Dumas, E<lt>pertusus@free.frE<gt>
+=head1 COPYRIGHT AND LICENSE
+
+Copyright 2010- Free Software Foundation, Inc. See the source file for
+all copyright years.
+
+This library is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 3 of the License, or (at
+your option) any later version.
+
=cut
diff --git a/tp/maintain/template.pod b/tp/maintain/template.pod
index 03cb02303a..dfb4f0ce05 100644
--- a/tp/maintain/template.pod
+++ b/tp/maintain/template.pod
@@ -65,7 +65,8 @@ Patrice Dumas, E<lt>pertusus@free.frE<gt>
=head1 COPYRIGHT AND LICENSE
-Copyright 2016 Free Software Foundation, Inc.
+Copyright 2010- Free Software Foundation, Inc. See the source file for
+all copyright years.
This library is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by