Skip to content

Commit b40ad46

Browse files
committed
Remove repeated copyright assignments in files
Everything is replaced by a more explicit message in the COPYRIGHT file. Inspired by rust-lang/rust#43498 and rust-lang/rust#57108.
1 parent 647af0b commit b40ad46

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+13
-279
lines changed

COPYRIGHT

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
WeasyPrint is free software, released under BSD 3-clause license. See LICENSE
2+
to get a full version of the license.
3+
4+
Copyrights are retained by their contributors, no copyright assignment is
5+
required to contribute to WeasyPrint.
6+
7+
Unless explicitly stated otherwise, any contribution intentionally submitted
8+
for inclusion is licensed under BSD, without any additional terms or
9+
conditions.
10+
11+
For full authorship information, see AUTHORS and the version control history.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD 3-Clause License
22

3-
Copyright (c) 2011-2019, Simon Sapin and contributors (see AUTHORS).
3+
Copyright (c) 2011-2020, Simon Sapin and contributors (see AUTHORS).
44
All rights reserved.
55

66
Redistribution and use in source and binary forms, with or without

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
# General information about the project.
2020
project = 'WeasyPrint'
21-
copyright = '2011-2019, Simon Sapin and contributors, see AUTHORS'
21+
copyright = '2011-2020, Simon Sapin and contributors (see AUTHORS)'
2222

2323
# The version info for the project you're documenting, acts as replacement for
2424
# |version| and |release|, also used in various other places throughout the

setup.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@
66
77
WeasyPrint converts web documents to PDF.
88
9-
:copyright: Copyright 2011-2019 Simon Sapin and contributors, see AUTHORS.
10-
:license: BSD, see LICENSE for details.
11-
129
"""
1310

1411
import sys

weasyprint/__init__.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@
77
The public API is what is accessible from this "root" packages
88
without importing sub-modules.
99
10-
:copyright: Copyright 2011-2019 Simon Sapin and contributors, see AUTHORS.
11-
:license: BSD, see LICENSE for details.
12-
1310
"""
1411

1512
import contextlib

weasyprint/__main__.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@
44
55
Command-line interface to WeasyPrint.
66
7-
:copyright: Copyright 2011-2019 Simon Sapin and contributors, see AUTHORS.
8-
:license: BSD, see LICENSE for details.
9-
107
"""
118

129
import argparse

weasyprint/css/__init__.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@
1212
:func:`get_all_computed_styles` function does everything, but it is itsef
1313
based on other functions in this module.
1414
15-
:copyright: Copyright 2011-2019 Simon Sapin and contributors, see AUTHORS.
16-
:license: BSD, see LICENSE for details.
17-
1815
"""
1916

2017
from collections import namedtuple

weasyprint/css/computed_values.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@
55
Convert *specified* property values (the result of the cascade and
66
inhertance) into *computed* values (that are inherited).
77
8-
:copyright: Copyright 2011-2019 Simon Sapin and contributors, see AUTHORS.
9-
:license: BSD, see LICENSE for details.
10-
118
"""
129

1310
from collections import OrderedDict

weasyprint/css/counters.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@
77
These are defined in CSS Counter Styles Level 3:
88
https://www.w3.org/TR/css-counter-styles-3/#counter-style-system
99
10-
:copyright: Copyright 2011-2019 Simon Sapin and contributors, see AUTHORS.
11-
:license: BSD, see LICENSE for details.
12-
1310
"""
1411

1512
from copy import deepcopy

weasyprint/css/media_queries.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@
66
77
https://www.w3.org/TR/mediaqueries-4/
88
9-
:copyright: Copyright 2011-2018 Simon Sapin and contributors, see AUTHORS.
10-
:license: BSD, see LICENSE for details.
11-
129
"""
1310

1411
import tinycss2

0 commit comments

Comments
 (0)