From: Aarni Koskela Date: Fri, 2 Feb 2018 16:51:30 +0000 (+0200) Subject: Update copyright header years, and include the Babel team X-Git-Tag: v2.6.0~4^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6af596705230ae92f9d007002b0fcc9b24db2944;p=thirdparty%2Fbabel.git Update copyright header years, and include the Babel team --- diff --git a/LICENSE b/LICENSE index 1f1f55b6..b517a529 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (C) 2013 by the Babel Team, see AUTHORS for more information. +Copyright (c) 2013-2018 by the Babel Team, see AUTHORS for more information. All rights reserved. diff --git a/babel/__init__.py b/babel/__init__.py index 5a388226..c4e4d20a 100644 --- a/babel/__init__.py +++ b/babel/__init__.py @@ -13,7 +13,7 @@ access to various locale display names, localized number and date formatting, etc. - :copyright: (c) 2013 by the Babel Team. + :copyright: (c) 2013-2018 by the Babel Team. :license: BSD, see LICENSE for more details. """ diff --git a/babel/core.py b/babel/core.py index 5a1a9125..d028c07d 100644 --- a/babel/core.py +++ b/babel/core.py @@ -5,7 +5,7 @@ Core locale representation and locale data access. - :copyright: (c) 2013 by the Babel Team. + :copyright: (c) 2013-2018 by the Babel Team. :license: BSD, see LICENSE for more details. """ diff --git a/babel/dates.py b/babel/dates.py index a30d6d8e..cf58a485 100644 --- a/babel/dates.py +++ b/babel/dates.py @@ -12,7 +12,7 @@ * ``LC_ALL``, and * ``LANG`` - :copyright: (c) 2013 by the Babel Team. + :copyright: (c) 2013-2018 by the Babel Team. :license: BSD, see LICENSE for more details. """ diff --git a/babel/localedata.py b/babel/localedata.py index 0c94e49e..a638e58a 100644 --- a/babel/localedata.py +++ b/babel/localedata.py @@ -8,7 +8,7 @@ :note: The `Locale` class, which uses this module under the hood, provides a more convenient interface for accessing the locale data. - :copyright: (c) 2013 by the Babel Team. + :copyright: (c) 2013-2018 by the Babel Team. :license: BSD, see LICENSE for more details. """ diff --git a/babel/localtime/__init__.py b/babel/localtime/__init__.py index 883ff166..bb4341d6 100644 --- a/babel/localtime/__init__.py +++ b/babel/localtime/__init__.py @@ -6,7 +6,7 @@ Babel specific fork of tzlocal to determine the local timezone of the system. - :copyright: (c) 2013 by the Babel Team. + :copyright: (c) 2013-2018 by the Babel Team. :license: BSD, see LICENSE for more details. """ diff --git a/babel/localtime/_unix.py b/babel/localtime/_unix.py index 8f25fe7b..c2194694 100644 --- a/babel/localtime/_unix.py +++ b/babel/localtime/_unix.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- from __future__ import with_statement import os import re diff --git a/babel/messages/__init__.py b/babel/messages/__init__.py index 1b63bae2..7dd6f8b6 100644 --- a/babel/messages/__init__.py +++ b/babel/messages/__init__.py @@ -5,7 +5,7 @@ Support for ``gettext`` message catalogs. - :copyright: (c) 2013 by the Babel Team. + :copyright: (c) 2013-2018 by the Babel Team. :license: BSD, see LICENSE for more details. """ diff --git a/babel/messages/catalog.py b/babel/messages/catalog.py index b293e3c7..5f05427b 100644 --- a/babel/messages/catalog.py +++ b/babel/messages/catalog.py @@ -5,7 +5,7 @@ Data structures for message catalogs. - :copyright: (c) 2013 by the Babel Team. + :copyright: (c) 2013-2018 by the Babel Team. :license: BSD, see LICENSE for more details. """ diff --git a/babel/messages/checkers.py b/babel/messages/checkers.py index a1e6e8d6..d04ad70e 100644 --- a/babel/messages/checkers.py +++ b/babel/messages/checkers.py @@ -7,7 +7,7 @@ :since: version 0.9 - :copyright: (c) 2013 by the Babel Team. + :copyright: (c) 2013-2018 by the Babel Team. :license: BSD, see LICENSE for more details. """ diff --git a/babel/messages/extract.py b/babel/messages/extract.py index 351a2907..009bea2b 100644 --- a/babel/messages/extract.py +++ b/babel/messages/extract.py @@ -13,7 +13,7 @@ The main entry points into the extraction functionality are the functions `extract_from_dir` and `extract_from_file`. - :copyright: (c) 2013 by the Babel Team. + :copyright: (c) 2013-2018 by the Babel Team. :license: BSD, see LICENSE for more details. """ diff --git a/babel/messages/frontend.py b/babel/messages/frontend.py index b573a97c..d848f2df 100644 --- a/babel/messages/frontend.py +++ b/babel/messages/frontend.py @@ -5,7 +5,7 @@ Frontends for the message extraction functionality. - :copyright: (c) 2013 by the Babel Team. + :copyright: (c) 2013-2018 by the Babel Team. :license: BSD, see LICENSE for more details. """ from __future__ import print_function diff --git a/babel/messages/jslexer.py b/babel/messages/jslexer.py index 30d6e540..04d02761 100644 --- a/babel/messages/jslexer.py +++ b/babel/messages/jslexer.py @@ -6,7 +6,7 @@ A simple JavaScript 1.5 lexer which is used for the JavaScript extractor. - :copyright: (c) 2013 by the Babel Team. + :copyright: (c) 2013-2018 by the Babel Team. :license: BSD, see LICENSE for more details. """ from collections import namedtuple diff --git a/babel/messages/mofile.py b/babel/messages/mofile.py index 79042e00..7bddd184 100644 --- a/babel/messages/mofile.py +++ b/babel/messages/mofile.py @@ -5,7 +5,7 @@ Writing of files in the ``gettext`` MO (machine object) format. - :copyright: (c) 2013 by the Babel Team. + :copyright: (c) 2013-2018 by the Babel Team. :license: BSD, see LICENSE for more details. """ diff --git a/babel/messages/plurals.py b/babel/messages/plurals.py index 92cefa79..067ac982 100644 --- a/babel/messages/plurals.py +++ b/babel/messages/plurals.py @@ -5,7 +5,7 @@ Plural form definitions. - :copyright: (c) 2013 by the Babel Team. + :copyright: (c) 2013-2018 by the Babel Team. :license: BSD, see LICENSE for more details. """ diff --git a/babel/messages/pofile.py b/babel/messages/pofile.py index beb6f357..ea8d7d7e 100644 --- a/babel/messages/pofile.py +++ b/babel/messages/pofile.py @@ -6,7 +6,7 @@ Reading and writing of files in the ``gettext`` PO (portable object) format. - :copyright: (c) 2013 by the Babel Team. + :copyright: (c) 2013-2018 by the Babel Team. :license: BSD, see LICENSE for more details. """ diff --git a/babel/numbers.py b/babel/numbers.py index cbd14747..cb851e4c 100644 --- a/babel/numbers.py +++ b/babel/numbers.py @@ -12,7 +12,7 @@ * ``LC_ALL``, and * ``LANG`` - :copyright: (c) 2013 by the Babel Team. + :copyright: (c) 2013-2018 by the Babel Team. :license: BSD, see LICENSE for more details. """ # TODO: diff --git a/babel/plural.py b/babel/plural.py index 06f349ea..38093fe6 100644 --- a/babel/plural.py +++ b/babel/plural.py @@ -5,7 +5,7 @@ CLDR Plural support. See UTS #35. - :copyright: (c) 2013 by the Babel Team. + :copyright: (c) 2013-2018 by the Babel Team. :license: BSD, see LICENSE for more details. """ import re diff --git a/babel/support.py b/babel/support.py index 24bc9aaa..932fcf2b 100644 --- a/babel/support.py +++ b/babel/support.py @@ -8,7 +8,7 @@ .. note: the code in this module is not used by Babel itself - :copyright: (c) 2013 by the Babel Team. + :copyright: (c) 2013-2018 by the Babel Team. :license: BSD, see LICENSE for more details. """ diff --git a/babel/util.py b/babel/util.py index af8c762e..0150827d 100644 --- a/babel/util.py +++ b/babel/util.py @@ -5,7 +5,7 @@ Various utility classes and functions. - :copyright: (c) 2013 by the Babel Team. + :copyright: (c) 2013-2018 by the Babel Team. :license: BSD, see LICENSE for more details. """ diff --git a/docs/conf.py b/docs/conf.py index 432387e7..5aebe94d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -44,7 +44,7 @@ master_doc = 'index' # General information about the project. project = u'Babel' -copyright = u'2017, The Babel Team' +copyright = u'2018, The Babel Team' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the diff --git a/scripts/dump_data.py b/scripts/dump_data.py index 0bb3e911..5e128605 100755 --- a/scripts/dump_data.py +++ b/scripts/dump_data.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- # -# Copyright (C) 2007-2011 Edgewall Software +# Copyright (C) 2007-2011 Edgewall Software, 2013-2018 the Babel team # All rights reserved. # # This software is licensed as described in the file COPYING, which diff --git a/scripts/dump_global.py b/scripts/dump_global.py index 2970bc2b..ad3d35da 100755 --- a/scripts/dump_global.py +++ b/scripts/dump_global.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- # -# Copyright (C) 2007-2011 Edgewall Software +# Copyright (C) 2007-2011 Edgewall Software, 2013-2018 the Babel team # All rights reserved. # # This software is licensed as described in the file COPYING, which diff --git a/scripts/import_cldr.py b/scripts/import_cldr.py index b81fa609..89fc1a7f 100755 --- a/scripts/import_cldr.py +++ b/scripts/import_cldr.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- # -# Copyright (C) 2007-2011 Edgewall Software +# Copyright (C) 2007-2011 Edgewall Software, 2013-2018 the Babel team # All rights reserved. # # This software is licensed as described in the file COPYING, which diff --git a/tests/messages/test_catalog.py b/tests/messages/test_catalog.py index 07ed724b..f9fa7244 100644 --- a/tests/messages/test_catalog.py +++ b/tests/messages/test_catalog.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2007-2011 Edgewall Software +# Copyright (C) 2007-2011 Edgewall Software, 2013-2018 the Babel team # All rights reserved. # # This software is licensed as described in the file COPYING, which diff --git a/tests/messages/test_checkers.py b/tests/messages/test_checkers.py index e9c34bcb..6af81c64 100644 --- a/tests/messages/test_checkers.py +++ b/tests/messages/test_checkers.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2008-2011 Edgewall Software +# Copyright (C) 2007-2011 Edgewall Software, 2013-2018 the Babel team # All rights reserved. # # This software is licensed as described in the file COPYING, which diff --git a/tests/messages/test_extract.py b/tests/messages/test_extract.py index 17b090fc..13ce8735 100644 --- a/tests/messages/test_extract.py +++ b/tests/messages/test_extract.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2007-2011 Edgewall Software +# Copyright (C) 2007-2011 Edgewall Software, 2013-2018 the Babel team # All rights reserved. # # This software is licensed as described in the file COPYING, which diff --git a/tests/messages/test_frontend.py b/tests/messages/test_frontend.py index 10325fe6..0f12f1e7 100644 --- a/tests/messages/test_frontend.py +++ b/tests/messages/test_frontend.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2007-2011 Edgewall Software +# Copyright (C) 2007-2011 Edgewall Software, 2013-2018 the Babel team # All rights reserved. # # This software is licensed as described in the file COPYING, which diff --git a/tests/messages/test_mofile.py b/tests/messages/test_mofile.py index 5fedc600..c590facc 100644 --- a/tests/messages/test_mofile.py +++ b/tests/messages/test_mofile.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2007-2011 Edgewall Software +# Copyright (C) 2007-2011 Edgewall Software, 2013-2018 the Babel team # All rights reserved. # # This software is licensed as described in the file COPYING, which diff --git a/tests/messages/test_plurals.py b/tests/messages/test_plurals.py index 2e7553c1..3792a1b2 100644 --- a/tests/messages/test_plurals.py +++ b/tests/messages/test_plurals.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2008-2011 Edgewall Software +# Copyright (C) 2007-2011 Edgewall Software, 2013-2018 the Babel team # All rights reserved. # # This software is licensed as described in the file COPYING, which diff --git a/tests/messages/test_pofile.py b/tests/messages/test_pofile.py index 002954f8..1a04b4e6 100644 --- a/tests/messages/test_pofile.py +++ b/tests/messages/test_pofile.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2007-2011 Edgewall Software +# Copyright (C) 2007-2011 Edgewall Software, 2013-2018 the Babel team # All rights reserved. # # This software is licensed as described in the file COPYING, which diff --git a/tests/test_core.py b/tests/test_core.py index 4f985ca7..7fa9e003 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2007-2011 Edgewall Software +# Copyright (C) 2007-2011 Edgewall Software, 2013-2018 the Babel team # All rights reserved. # # This software is licensed as described in the file COPYING, which diff --git a/tests/test_dates.py b/tests/test_dates.py index 6df4631f..5a46c1b8 100644 --- a/tests/test_dates.py +++ b/tests/test_dates.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2007-2011 Edgewall Software +# Copyright (C) 2007-2011 Edgewall Software, 2013-2018 the Babel team # All rights reserved. # # This software is licensed as described in the file COPYING, which @@ -789,4 +789,4 @@ def test_russian_week_numbering(): # See https://github.com/python-babel/babel/issues/485 v = date(2017, 1, 1) assert dates.format_date(v, format='YYYY-ww',locale='ru_RU') == '2016-52' # This would have returned 2017-01 prior to CLDR 32 - assert dates.format_date(v, format='YYYY-ww',locale='de_DE') == '2016-52' \ No newline at end of file + assert dates.format_date(v, format='YYYY-ww',locale='de_DE') == '2016-52' diff --git a/tests/test_localedata.py b/tests/test_localedata.py index f678d5ba..be5694a7 100644 --- a/tests/test_localedata.py +++ b/tests/test_localedata.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2007-2011 Edgewall Software +# Copyright (C) 2007-2011 Edgewall Software, 2013-2018 the Babel team # All rights reserved. # # This software is licensed as described in the file COPYING, which diff --git a/tests/test_numbers.py b/tests/test_numbers.py index 3ad9c663..1f4a0fe0 100644 --- a/tests/test_numbers.py +++ b/tests/test_numbers.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2007-2011 Edgewall Software +# Copyright (C) 2007-2011 Edgewall Software, 2013-2018 the Babel team # All rights reserved. # # This software is licensed as described in the file COPYING, which diff --git a/tests/test_plural.py b/tests/test_plural.py index be741499..852a7c75 100644 --- a/tests/test_plural.py +++ b/tests/test_plural.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2008-2011 Edgewall Software +# Copyright (C) 2007-2011 Edgewall Software, 2013-2018 the Babel team # All rights reserved. # # This software is licensed as described in the file COPYING, which diff --git a/tests/test_support.py b/tests/test_support.py index 6f9fb324..7e63ba2e 100644 --- a/tests/test_support.py +++ b/tests/test_support.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2007-2011 Edgewall Software +# Copyright (C) 2007-2011 Edgewall Software, 2013-2018 the Babel team # All rights reserved. # # This software is licensed as described in the file COPYING, which diff --git a/tests/test_util.py b/tests/test_util.py index 4c769bea..61d4f4fa 100644 --- a/tests/test_util.py +++ b/tests/test_util.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2007-2011 Edgewall Software +# Copyright (C) 2007-2011 Edgewall Software, 2013-2018 the Babel team # All rights reserved. # # This software is licensed as described in the file COPYING, which