diff --git a/manage.py b/manage.py index 256981c5..3522b988 100755 --- a/manage.py +++ b/manage.py @@ -1,5 +1,17 @@ #!/usr/bin/env python +# 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 +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# 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. + import os import sys diff --git a/monitoring/alarms/tests.py b/monitoring/alarms/tests.py index dd5e3452..77d2af17 100644 --- a/monitoring/alarms/tests.py +++ b/monitoring/alarms/tests.py @@ -1,3 +1,15 @@ +# 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 +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# 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. + from django.core import urlresolvers from mock import patch, call # noqa diff --git a/monitoring/config/local_settings.py b/monitoring/config/local_settings.py index 9f51cc49..45a10de6 100644 --- a/monitoring/config/local_settings.py +++ b/monitoring/config/local_settings.py @@ -1,3 +1,15 @@ +# 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 +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# 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. + from django.conf import settings from django.utils.translation import ugettext_lazy as _ diff --git a/monitoring/disabled/_70_remove_monasca_notification_panel.py b/monitoring/disabled/_70_remove_monasca_notification_panel.py index 09ee5ace..0ef5aa08 100644 --- a/monitoring/disabled/_70_remove_monasca_notification_panel.py +++ b/monitoring/disabled/_70_remove_monasca_notification_panel.py @@ -1,3 +1,15 @@ +# 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 +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# 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. + PANEL = 'notifications' PANEL_DASHBOARD = 'monitoring' REMOVE_PANEL = True diff --git a/monitoring/enabled/_50_admin_add_monitoring_panel.py b/monitoring/enabled/_50_admin_add_monitoring_panel.py index 3825eb23..78465467 100644 --- a/monitoring/enabled/_50_admin_add_monitoring_panel.py +++ b/monitoring/enabled/_50_admin_add_monitoring_panel.py @@ -1,3 +1,15 @@ +# 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 +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# 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. + DASHBOARD = "monitoring" # A list of applications to be added to INSTALLED_APPS. diff --git a/monitoring/notifications/tests.py b/monitoring/notifications/tests.py index 0db5c366..0ade67de 100644 --- a/monitoring/notifications/tests.py +++ b/monitoring/notifications/tests.py @@ -1,3 +1,15 @@ +# 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 +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# 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. + from django.core import urlresolvers from mock import patch, call # noqa diff --git a/monitoring/overview/tests.py b/monitoring/overview/tests.py index b59a8465..9ad6ba1e 100644 --- a/monitoring/overview/tests.py +++ b/monitoring/overview/tests.py @@ -1,4 +1,17 @@ # coding=utf-8 + +# 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 +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# 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. + from django.core import urlresolvers from django.test import RequestFactory from mock import patch, call # noqa