Skip to content

Commit 5e7cab1

Browse files
committed
Added/updated copyright notices; whitespace fixes
No functional changes
1 parent 002b42c commit 5e7cab1

16 files changed

+153
-30
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# .travis.yml for Elixir, https://github.com/bootlin/elixir
12
language: python
23

34
os:

README.adoc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -506,3 +506,8 @@ of AGPLv3] indicates that its terms "effectively consist of the terms of GPLv3"
506506
plus the network-use paragraph. Therefore, the developers have a good-faith
507507
belief that licensing these files under AGPLv3 is authorized. (See also https://github.com/Freemius/wordpress-sdk/issues/166#issuecomment-310561976[this
508508
issue comment] for another example of a similar situation.)
509+
510+
= License
511+
512+
Elixir is copyright (c) 2017--2020 its contributors. It is licensed AGPLv3.
513+
See the `COPYING` file included with Elixir for details.

api/api.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
#!/usr/bin/env python3
22

3+
# This file is part of Elixir, a source code cross-referencer.
4+
#
5+
# Copyright (C) 2019--2020 Carmeli Tamir and contributors.
6+
#
7+
# Elixir is free software: you can redistribute it and/or modify
8+
# it under the terms of the GNU Affero General Public License as published by
9+
# the Free Software Foundation, either version 3 of the License, or
10+
# (at your option) any later version.
11+
#
12+
# Elixir is distributed in the hope that it will be useful,
13+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
# GNU Affero General Public License for more details.
16+
#
17+
# You should have received a copy of the GNU Affero General Public License
18+
# along with Elixir. If not, see <http://www.gnu.org/licenses/>.
19+
320
import json
421
import os
522

data.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
# This file is part of Elixir, a source code cross-referencer.
44
#
5-
# Copyright (C) 2017 Mikaël Bouillot
6-
# <mikael.bouillot@bootlin.com>
5+
# Copyright (C) 2017--2020 Mikaël Bouillot <mikael.bouillot@bootlin.com>
6+
# and contributors
77
#
88
# Elixir is free software: you can redistribute it and/or modify
99
# it under the terms of the GNU Affero General Public License as published by
@@ -113,7 +113,7 @@ def pack(self):
113113
return self.data
114114

115115
class RefList:
116-
'''Stores a mapping from blob ID to list of lines
116+
'''Stores a mapping from blob ID to list of lines
117117
and the corresponding family.'''
118118
def __init__(self, data=b''):
119119
self.data = data

find-file-doc-comments.pl

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,24 @@
11
#!/usr/bin/env perl
22
# find-file-doc-comments.pl: Find the doc comments for a file.
33
# Usage: find-file-doc-comments.pl <C source file name>
4-
# By Christopher White <cwhite@d3engineering.com>
5-
# Copyright (c) 2019 D3 Engineering, LLC.
6-
# Licensed AGPLv3
4+
5+
# This file is part of Elixir, a source code cross-referencer.
6+
#
7+
# By Christopher White <cwhite@d3engineering.com>
8+
# Copyright (c) 2019--2020 D3 Engineering, LLC.
9+
#
10+
# Elixir is free software: you can redistribute it and/or modify
11+
# it under the terms of the GNU Affero General Public License as published by
12+
# the Free Software Foundation, either version 3 of the License, or
13+
# (at your option) any later version.
14+
#
15+
# Elixir is distributed in the hope that it will be useful,
16+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
17+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18+
# GNU Affero General Public License for more details.
19+
#
20+
# You should have received a copy of the GNU Affero General Public License
21+
# along with Elixir. If not, see <http://www.gnu.org/licenses/>.
722

823
use 5.010001;
924
use strict;

http/web.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
# This file is part of Elixir, a source code cross-referencer.
44
#
5-
# Copyright (C) 2017 Mikaël Bouillot
6-
# <mikael.bouillot@bootlin.com>
5+
# Copyright (C) 2017--2020 Mikaël Bouillot <mikael.bouillot@bootlin.com>
6+
# and contributors.
77
#
88
# Elixir is free software: you can redistribute it and/or modify
99
# it under the terms of the GNU Affero General Public License as published by

query.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
# This file is part of Elixir, a source code cross-referencer.
44
#
5-
# Copyright (C) 2017 Mikaël Bouillot
6-
# <mikael.bouillot@bootlin.com>
5+
# Copyright (C) 2017--2020 Mikaël Bouillot <mikael.bouillot@bootlin.com>
6+
# and contributors
77
#
88
# Elixir is free software: you can redistribute it and/or modify
99
# it under the terms of the GNU Affero General Public License as published by

script.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
#
55
# Copyright (C) 2017--2020 Mikaël Bouillot
66
# <mikael.bouillot@bootlin.com> and contributors
7+
# Portions copyright (c) 2019 D3 Engineering, LLC
78
#
89
# Elixir is free software: you can redistribute it and/or modify
910
# it under the terms of the GNU Affero General Public License as published by

t/100-basic.t

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@
2121
#
2222
# This file uses core Perl modules only.
2323

24-
use strict;
25-
use warnings;
2624
use autodie; # note: still need to check system() calls manually
2725

2826
use FindBin '$Bin';

t/TestHelpers.pm

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,8 @@ EOT
410410

411411
=head2 import
412412
413-
Set up. Called automatically.
413+
Set up. Called automatically. Activates L<strict> and L<warnings>
414+
in the caller.
414415
415416
=cut
416417

0 commit comments

Comments
 (0)