Skip to content

Commit 71feb2a

Browse files
authored
Merge pull request #3 from davidraker/develop
Updated copyright.
2 parents 4d38436 + bd3ca9d commit 71feb2a

File tree

6 files changed

+95
-118
lines changed

6 files changed

+95
-118
lines changed

LICENSE.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Copyright 2022, Battelle Memorial Institute.
2+
3+
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
4+
5+
http://www.apache.org/licenses/LICENSE-2.0
6+
7+
The patent license grant shall only be applicable to the following patent and patent application (Battelle IPID 17008-E), as assigned to the Battelle Memorial Institute, as used in conjunction with this Work: US Patent No. 9,094,385, issued 7/28/15 USPTO Patent App. No. 14/746,577, filed 6/22/15, published as US 2016-0006569.
8+
9+
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

docs/source/conf.py

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
# -*- coding: utf-8 -*- {{{
2+
# ===----------------------------------------------------------------------===
3+
#
4+
# Installable Component of Eclipse VOLTTRON
5+
#
6+
# ===----------------------------------------------------------------------===
7+
#
8+
# Copyright 2022 Battelle Memorial Institute
9+
#
10+
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
11+
# use this file except in compliance with the License. You may obtain a copy
12+
# of the License at
13+
#
14+
# http://www.apache.org/licenses/LICENSE-2.0
15+
#
16+
# Unless required by applicable law or agreed to in writing, software
17+
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
18+
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
19+
# License for the specific language governing permissions and limitations
20+
# under the License.
21+
#
22+
# ===----------------------------------------------------------------------===
23+
# }}}
24+
125
# Configuration file for the Sphinx documentation builder.
226

327
# -- Project information

src/historian/sql/__init__.py

Lines changed: 16 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,27 @@
11
# -*- coding: utf-8 -*- {{{
2-
# vim: set fenc=utf-8 ft=python sw=4 ts=4 sts=4 et:
2+
# ===----------------------------------------------------------------------===
33
#
4-
# Copyright 2022, Battelle Memorial Institute.
4+
# Installable Component of Eclipse VOLTTRON
55
#
6-
# Licensed under the Apache License, Version 2.0 (the "License");
7-
# you may not use this file except in compliance with the License.
8-
# You may obtain a copy of the License at
6+
# ===----------------------------------------------------------------------===
97
#
10-
# http://www.apache.org/licenses/LICENSE-2.0
8+
# Copyright 2022 Battelle Memorial Institute
119
#
12-
# Unless required by applicable law or agreed to in writing, software
13-
# distributed under the License is distributed on an "AS IS" BASIS,
14-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15-
# See the License for the specific language governing permissions and
16-
# limitations under the License.
10+
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
11+
# use this file except in compliance with the License. You may obtain a copy
12+
# of the License at
13+
#
14+
# http://www.apache.org/licenses/LICENSE-2.0
1715
#
18-
# This material was prepared as an account of work sponsored by an agency of
19-
# the United States Government. Neither the United States Government nor the
20-
# United States Department of Energy, nor Battelle, nor any of their
21-
# employees, nor any jurisdiction or organization that has cooperated in the
22-
# development of these materials, makes any warranty, express or
23-
# implied, or assumes any legal liability or responsibility for the accuracy,
24-
# completeness, or usefulness or any information, apparatus, product,
25-
# software, or process disclosed, or represents that its use would not infringe
26-
# privately owned rights. Reference herein to any specific commercial product,
27-
# process, or service by trade name, trademark, manufacturer, or otherwise
28-
# does not necessarily constitute or imply its endorsement, recommendation, or
29-
# favoring by the United States Government or any agency thereof, or
30-
# Battelle Memorial Institute. The views and opinions of authors expressed
31-
# herein do not necessarily state or reflect those of the
32-
# United States Government or any agency thereof.
16+
# Unless required by applicable law or agreed to in writing, software
17+
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
18+
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
19+
# License for the specific language governing permissions and limitations
20+
# under the License.
3321
#
34-
# PACIFIC NORTHWEST NATIONAL LABORATORY operated by
35-
# BATTELLE for the UNITED STATES DEPARTMENT OF ENERGY
36-
# under Contract DE-AC05-76RL01830
22+
# ===----------------------------------------------------------------------===
3723
# }}}
24+
3825
"""
3926
VOLTTRON SQL Historian package.
4027

src/historian/sql/basedb.py

Lines changed: 15 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,27 @@
11
# -*- coding: utf-8 -*- {{{
2-
# vim: set fenc=utf-8 ft=python sw=4 ts=4 sts=4 et:
2+
# ===----------------------------------------------------------------------===
33
#
4-
# Copyright 2022, Battelle Memorial Institute.
4+
# Installable Component of Eclipse VOLTTRON
55
#
6-
# Licensed under the Apache License, Version 2.0 (the "License");
7-
# you may not use this file except in compliance with the License.
8-
# You may obtain a copy of the License at
6+
# ===----------------------------------------------------------------------===
97
#
10-
# http://www.apache.org/licenses/LICENSE-2.0
8+
# Copyright 2022 Battelle Memorial Institute
119
#
12-
# Unless required by applicable law or agreed to in writing, software
13-
# distributed under the License is distributed on an "AS IS" BASIS,
14-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15-
# See the License for the specific language governing permissions and
16-
# limitations under the License.
10+
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
11+
# use this file except in compliance with the License. You may obtain a copy
12+
# of the License at
13+
#
14+
# http://www.apache.org/licenses/LICENSE-2.0
1715
#
18-
# This material was prepared as an account of work sponsored by an agency of
19-
# the United States Government. Neither the United States Government nor the
20-
# United States Department of Energy, nor Battelle, nor any of their
21-
# employees, nor any jurisdiction or organization that has cooperated in the
22-
# development of these materials, makes any warranty, express or
23-
# implied, or assumes any legal liability or responsibility for the accuracy,
24-
# completeness, or usefulness or any information, apparatus, product,
25-
# software, or process disclosed, or represents that its use would not infringe
26-
# privately owned rights. Reference herein to any specific commercial product,
27-
# process, or service by trade name, trademark, manufacturer, or otherwise
28-
# does not necessarily constitute or imply its endorsement, recommendation, or
29-
# favoring by the United States Government or any agency thereof, or
30-
# Battelle Memorial Institute. The views and opinions of authors expressed
31-
# herein do not necessarily state or reflect those of the
32-
# United States Government or any agency thereof.
16+
# Unless required by applicable law or agreed to in writing, software
17+
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
18+
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
19+
# License for the specific language governing permissions and limitations
20+
# under the License.
3321
#
34-
# PACIFIC NORTHWEST NATIONAL LABORATORY operated by
35-
# BATTELLE for the UNITED STATES DEPARTMENT OF ENERGY
36-
# under Contract DE-AC05-76RL01830
22+
# ===----------------------------------------------------------------------===
3723
# }}}
3824

39-
4025
import contextlib
4126
import importlib
4227
import logging

src/historian/sql/historian.py

Lines changed: 15 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,27 @@
11
# -*- coding: utf-8 -*- {{{
2-
# vim: set fenc=utf-8 ft=python sw=4 ts=4 sts=4 et:
2+
# ===----------------------------------------------------------------------===
33
#
4-
# Copyright 2022, Battelle Memorial Institute.
4+
# Installable Component of Eclipse VOLTTRON
55
#
6-
# Licensed under the Apache License, Version 2.0 (the "License");
7-
# you may not use this file except in compliance with the License.
8-
# You may obtain a copy of the License at
6+
# ===----------------------------------------------------------------------===
97
#
10-
# http://www.apache.org/licenses/LICENSE-2.0
8+
# Copyright 2022 Battelle Memorial Institute
119
#
12-
# Unless required by applicable law or agreed to in writing, software
13-
# distributed under the License is distributed on an "AS IS" BASIS,
14-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15-
# See the License for the specific language governing permissions and
16-
# limitations under the License.
10+
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
11+
# use this file except in compliance with the License. You may obtain a copy
12+
# of the License at
13+
#
14+
# http://www.apache.org/licenses/LICENSE-2.0
1715
#
18-
# This material was prepared as an account of work sponsored by an agency of
19-
# the United States Government. Neither the United States Government nor the
20-
# United States Department of Energy, nor Battelle, nor any of their
21-
# employees, nor any jurisdiction or organization that has cooperated in the
22-
# development of these materials, makes any warranty, express or
23-
# implied, or assumes any legal liability or responsibility for the accuracy,
24-
# completeness, or usefulness or any information, apparatus, product,
25-
# software, or process disclosed, or represents that its use would not infringe
26-
# privately owned rights. Reference herein to any specific commercial product,
27-
# process, or service by trade name, trademark, manufacturer, or otherwise
28-
# does not necessarily constitute or imply its endorsement, recommendation, or
29-
# favoring by the United States Government or any agency thereof, or
30-
# Battelle Memorial Institute. The views and opinions of authors expressed
31-
# herein do not necessarily state or reflect those of the
32-
# United States Government or any agency thereof.
16+
# Unless required by applicable law or agreed to in writing, software
17+
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
18+
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
19+
# License for the specific language governing permissions and limitations
20+
# under the License.
3321
#
34-
# PACIFIC NORTHWEST NATIONAL LABORATORY operated by
35-
# BATTELLE for the UNITED STATES DEPARTMENT OF ENERGY
36-
# under Contract DE-AC05-76RL01830
22+
# ===----------------------------------------------------------------------===
3723
# }}}
3824

39-
4025
import logging
4126
import sys
4227
import threading

src/historian/sql/sqlutils.py

Lines changed: 16 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,27 @@
11
# -*- coding: utf-8 -*- {{{
2-
# vim: set fenc=utf-8 ft=python sw=4 ts=4 sts=4 et:
2+
# ===----------------------------------------------------------------------===
33
#
4-
# Copyright 2022, Battelle Memorial Institute.
4+
# Installable Component of Eclipse VOLTTRON
55
#
6-
# Licensed under the Apache License, Version 2.0 (the "License");
7-
# you may not use this file except in compliance with the License.
8-
# You may obtain a copy of the License at
6+
# ===----------------------------------------------------------------------===
97
#
10-
# http://www.apache.org/licenses/LICENSE-2.0
8+
# Copyright 2022 Battelle Memorial Institute
119
#
12-
# Unless required by applicable law or agreed to in writing, software
13-
# distributed under the License is distributed on an "AS IS" BASIS,
14-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15-
# See the License for the specific language governing permissions and
16-
# limitations under the License.
10+
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
11+
# use this file except in compliance with the License. You may obtain a copy
12+
# of the License at
13+
#
14+
# http://www.apache.org/licenses/LICENSE-2.0
1715
#
18-
# This material was prepared as an account of work sponsored by an agency of
19-
# the United States Government. Neither the United States Government nor the
20-
# United States Department of Energy, nor Battelle, nor any of their
21-
# employees, nor any jurisdiction or organization that has cooperated in the
22-
# development of these materials, makes any warranty, express or
23-
# implied, or assumes any legal liability or responsibility for the accuracy,
24-
# completeness, or usefulness or any information, apparatus, product,
25-
# software, or process disclosed, or represents that its use would not infringe
26-
# privately owned rights. Reference herein to any specific commercial product,
27-
# process, or service by trade name, trademark, manufacturer, or otherwise
28-
# does not necessarily constitute or imply its endorsement, recommendation, or
29-
# favoring by the United States Government or any agency thereof, or
30-
# Battelle Memorial Institute. The views and opinions of authors expressed
31-
# herein do not necessarily state or reflect those of the
32-
# United States Government or any agency thereof.
16+
# Unless required by applicable law or agreed to in writing, software
17+
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
18+
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
19+
# License for the specific language governing permissions and limitations
20+
# under the License.
3321
#
34-
# PACIFIC NORTHWEST NATIONAL LABORATORY operated by
35-
# BATTELLE for the UNITED STATES DEPARTMENT OF ENERGY
36-
# under Contract DE-AC05-76RL01830
22+
# ===----------------------------------------------------------------------===
3723
# }}}
24+
3825
import inspect
3926
import logging
4027

0 commit comments

Comments
 (0)