Skip to content

Commit 6addbd9

Browse files
committed
Add copyright boilerplate to BCF and OpenCDE code
1 parent 5782691 commit 6addbd9

File tree

24 files changed

+454
-0
lines changed

24 files changed

+454
-0
lines changed

src/bcf/src/bcf/__init__.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# BCF - BCF Python library
2+
# Copyright (C) 2021 Prabhat Singh <singh01prabhat@gmail.com>
3+
#
4+
# This file is part of BCF.
5+
#
6+
# BCF is free software: you can redistribute it and/or modify
7+
# it under the terms of the GNU Lesser General Public License as published by
8+
# the Free Software Foundation, either version 3 of the License, or
9+
# (at your option) any later version.
10+
#
11+
# BCF is distributed in the hope that it will be useful,
12+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
# GNU Lesser General Public License for more details.
15+
#
16+
# You should have received a copy of the GNU Lesser General Public License
17+
# along with BCF. If not, see <http://www.gnu.org/licenses/>.

src/bcf/src/bcf/bcfxml.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
# BCF - BCF Python library
2+
# Copyright (C) 2021 Prabhat Singh <singh01prabhat@gmail.com>
3+
#
4+
# This file is part of BCF.
5+
#
6+
# BCF is free software: you can redistribute it and/or modify
7+
# it under the terms of the GNU Lesser General Public License as published by
8+
# the Free Software Foundation, either version 3 of the License, or
9+
# (at your option) any later version.
10+
#
11+
# BCF is distributed in the hope that it will be useful,
12+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
# GNU Lesser General Public License for more details.
15+
#
16+
# You should have received a copy of the GNU Lesser General Public License
17+
# along with BCF. If not, see <http://www.gnu.org/licenses/>.
18+
19+
120
import os.path
221
import zipfile
322
import tempfile

src/bcf/src/bcf/v2/__init__.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
2+
# BCF - BCF Python library
3+
# Copyright (C) 2020, 2021 Dion Moult <dion@thinkmoult.com>
4+
#
5+
# This file is part of BCF.
6+
#
7+
# BCF is free software: you can redistribute it and/or modify
8+
# it under the terms of the GNU Lesser 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+
# BCF 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 Lesser General Public License for more details.
16+
#
17+
# You should have received a copy of the GNU Lesser General Public License
18+
# along with BCF. If not, see <http://www.gnu.org/licenses/>.
19+

src/bcf/src/bcf/v2/bcfxml.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
2+
# BCF - BCF Python library
3+
# Copyright (C) 2020, 2021 Dion Moult <dion@thinkmoult.com>
4+
#
5+
# This file is part of BCF.
6+
#
7+
# BCF is free software: you can redistribute it and/or modify
8+
# it under the terms of the GNU Lesser 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+
# BCF 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 Lesser General Public License for more details.
16+
#
17+
# You should have received a copy of the GNU Lesser General Public License
18+
# along with BCF. If not, see <http://www.gnu.org/licenses/>.
19+
120
import os
221
import uuid
322
import shutil

src/bcf/src/bcf/v2/data.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
2+
# BCF - BCF Python library
3+
# Copyright (C) 2020, 2021 Dion Moult <dion@thinkmoult.com>
4+
#
5+
# This file is part of BCF.
6+
#
7+
# BCF is free software: you can redistribute it and/or modify
8+
# it under the terms of the GNU Lesser 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+
# BCF 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 Lesser General Public License for more details.
16+
#
17+
# You should have received a copy of the GNU Lesser General Public License
18+
# along with BCF. If not, see <http://www.gnu.org/licenses/>.
19+
120
class Project:
221
def __init__(self):
322
self.project_id = ""

src/bcf/src/bcf/v3/__init__.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
2+
# BCF - BCF Python library
3+
# Copyright (C) 2021 Prabhat Singh <singh01prabhat@gmail.com>
4+
#
5+
# This file is part of BCF.
6+
#
7+
# BCF is free software: you can redistribute it and/or modify
8+
# it under the terms of the GNU Lesser 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+
# BCF 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 Lesser General Public License for more details.
16+
#
17+
# You should have received a copy of the GNU Lesser General Public License
18+
# along with BCF. If not, see <http://www.gnu.org/licenses/>.
19+

src/bcf/src/bcf/v3/bcfapi.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
2+
# BCF - BCF Python library
3+
# Copyright (C) 2021 Prabhat Singh <singh01prabhat@gmail.com>
4+
#
5+
# This file is part of BCF.
6+
#
7+
# BCF is free software: you can redistribute it and/or modify
8+
# it under the terms of the GNU Lesser 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+
# BCF 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 Lesser General Public License for more details.
16+
#
17+
# You should have received a copy of the GNU Lesser General Public License
18+
# along with BCF. If not, see <http://www.gnu.org/licenses/>.
19+
120
import uuid
221
import time
322
import json

src/bcf/src/bcf/v3/bcfxml.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
2+
# BCF - BCF Python library
3+
# Copyright (C) 2021 Prabhat Singh <singh01prabhat@gmail.com>
4+
#
5+
# This file is part of BCF.
6+
#
7+
# BCF is free software: you can redistribute it and/or modify
8+
# it under the terms of the GNU Lesser 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+
# BCF 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 Lesser General Public License for more details.
16+
#
17+
# You should have received a copy of the GNU Lesser General Public License
18+
# along with BCF. If not, see <http://www.gnu.org/licenses/>.
19+
120
import os
221
import uuid
322
import shutil

src/bcf/src/bcf/v3/data.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
2+
# BCF - BCF Python library
3+
# Copyright (C) 2021 Prabhat Singh <singh01prabhat@gmail.com>
4+
#
5+
# This file is part of BCF.
6+
#
7+
# BCF is free software: you can redistribute it and/or modify
8+
# it under the terms of the GNU Lesser 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+
# BCF 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 Lesser General Public License for more details.
16+
#
17+
# You should have received a copy of the GNU Lesser General Public License
18+
# along with BCF. If not, see <http://www.gnu.org/licenses/>.
19+
120
class Project:
221
def __init__(self):
322
self.project_id = ""

src/opencdeserver/opencdeserver/bcf/routes.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
2+
# OpenCDE - OpenCDE Python implementation
3+
# Copyright (C) 2021 Prabhat Singh <singh01prabhat@gmail.com>
4+
#
5+
# This file is part of OpenCDE.
6+
#
7+
# OpenCDE is free software: you can redistribute it and/or modify
8+
# it under the terms of the GNU Lesser 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+
# OpenCDE 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 Lesser General Public License for more details.
16+
#
17+
# You should have received a copy of the GNU Lesser General Public License
18+
# along with OpenCDE. If not, see <http://www.gnu.org/licenses/>.
19+
120
from flask import jsonify, url_for, redirect, render_template, request, session, send_file
221
from flask_login import login_user, logout_user, login_required, current_user
322
from flask.blueprints import Blueprint

0 commit comments

Comments
 (0)