From ae820f9ff2f755a2f8807af9bbf119409a0cca7b Mon Sep 17 00:00:00 2001 From: Tim Buckley Date: Tue, 4 Aug 2015 10:12:39 -0600 Subject: [PATCH] Add missing license headers; remove unused/empty app.js --- export_static.py | 14 ++++++++++++++ stackviz/global_template_injector.py | 14 ++++++++++++++ stackviz/parser/devstack_parser.py | 14 ++++++++++++++ stackviz/parser/log_node.py | 14 ++++++++++++++ stackviz/parser/tempest_subunit.py | 14 ++++++++++++++ stackviz/settings.py | 14 ++++++++++++++ stackviz/static/js/app.js | 0 stackviz/static/js/summary.js | 16 ++++++++++++++++ stackviz/static/js/timeline.js | 16 ++++++++++++++++ stackviz/static/js/upstream_run.js | 16 ++++++++++++++++ stackviz/static/js/visuals.js | 15 +++++++++++++++ stackviz/tests/test_stackviz.py | 4 +++- stackviz/urls.py | 21 ++++++++++++++++----- stackviz/views/devstack/results.py | 14 ++++++++++++++ stackviz/views/devstack/urls.py | 14 ++++++++++++++ stackviz/views/dstat/api.py | 14 ++++++++++++++ stackviz/views/dstat/urls.py | 14 ++++++++++++++ stackviz/views/index.py | 14 ++++++++++++++ stackviz/views/tempest/aggregate.py | 14 ++++++++++++++ stackviz/views/tempest/api.py | 14 ++++++++++++++ stackviz/views/tempest/results.py | 14 ++++++++++++++ stackviz/views/tempest/timeline.py | 14 ++++++++++++++ stackviz/views/tempest/urls.py | 14 ++++++++++++++ stackviz/views/upstream/api.py | 14 ++++++++++++++ stackviz/views/upstream/run.py | 14 ++++++++++++++ stackviz/views/upstream/test.py | 14 ++++++++++++++ stackviz/views/upstream/urls.py | 14 ++++++++++++++ stackviz/wsgi.py | 14 ++++++++++++++ 28 files changed, 376 insertions(+), 6 deletions(-) delete mode 100644 stackviz/static/js/app.js diff --git a/export_static.py b/export_static.py index 5d6ead4..250a9c1 100644 --- a/export_static.py +++ b/export_static.py @@ -1,3 +1,17 @@ +# Copyright 2015 Hewlett-Packard Development Company, L.P. +# +# 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 gzip import shutil diff --git a/stackviz/global_template_injector.py b/stackviz/global_template_injector.py index 3b4c053..b0b9fd8 100644 --- a/stackviz/global_template_injector.py +++ b/stackviz/global_template_injector.py @@ -1,3 +1,17 @@ +# Copyright 2015 Hewlett-Packard Development Company, L.P. +# +# 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 stackviz.parser.tempest_subunit import get_repositories from stackviz.settings import USE_GZIP diff --git a/stackviz/parser/devstack_parser.py b/stackviz/parser/devstack_parser.py index 6cf6fb1..ece088f 100644 --- a/stackviz/parser/devstack_parser.py +++ b/stackviz/parser/devstack_parser.py @@ -1,3 +1,17 @@ +# Copyright 2015 Hewlett-Packard Development Company, L.P. +# +# 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. + # # A parser for logs as generated by DevStack's `stack.sh` script. # Logs can be generated by running: diff --git a/stackviz/parser/log_node.py b/stackviz/parser/log_node.py index 39ef47c..4da0b8f 100644 --- a/stackviz/parser/log_node.py +++ b/stackviz/parser/log_node.py @@ -1,3 +1,17 @@ +# Copyright 2015 Hewlett-Packard Development Company, L.P. +# +# 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 inspect import getmembers from numbers import Number from datetime import datetime, timedelta diff --git a/stackviz/parser/tempest_subunit.py b/stackviz/parser/tempest_subunit.py index eea604e..e4e59e6 100644 --- a/stackviz/parser/tempest_subunit.py +++ b/stackviz/parser/tempest_subunit.py @@ -1,3 +1,17 @@ +# Copyright 2015 Hewlett-Packard Development Company, L.P. +# +# 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 re from functools import partial diff --git a/stackviz/settings.py b/stackviz/settings.py index 94f0bd4..8979b44 100644 --- a/stackviz/settings.py +++ b/stackviz/settings.py @@ -1,3 +1,17 @@ +# Copyright 2015 Hewlett-Packard Development Company, L.P. +# +# 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. + """ Django settings for stackviz project. diff --git a/stackviz/static/js/app.js b/stackviz/static/js/app.js deleted file mode 100644 index e69de29..0000000 diff --git a/stackviz/static/js/summary.js b/stackviz/static/js/summary.js index 5ff31fb..9eece6e 100644 --- a/stackviz/static/js/summary.js +++ b/stackviz/static/js/summary.js @@ -1,3 +1,19 @@ +/* + * (c) Copyright 2015 Hewlett-Packard Development Company, L.P. + * + * 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. + */ + "use strict"; /* diff --git a/stackviz/static/js/timeline.js b/stackviz/static/js/timeline.js index 4200b27..b224ad8 100644 --- a/stackviz/static/js/timeline.js +++ b/stackviz/static/js/timeline.js @@ -1,3 +1,19 @@ +/* + * (c) Copyright 2015 Hewlett-Packard Development Company, L.P. + * + * 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. + */ + /*global d3:false*/ var statusColorMap = { diff --git a/stackviz/static/js/upstream_run.js b/stackviz/static/js/upstream_run.js index 21d88d2..0c89f29 100644 --- a/stackviz/static/js/upstream_run.js +++ b/stackviz/static/js/upstream_run.js @@ -1,3 +1,19 @@ +/* + * (c) Copyright 2015 Hewlett-Packard Development Company, L.P. + * + * 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. + */ + "use strict"; window.addEventListener('load', function() { diff --git a/stackviz/static/js/visuals.js b/stackviz/static/js/visuals.js index 7ca4766..6512f92 100644 --- a/stackviz/static/js/visuals.js +++ b/stackviz/static/js/visuals.js @@ -1,3 +1,18 @@ +/* + * (c) Copyright 2015 Hewlett-Packard Development Company, L.P. + * + * 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. + */ "use strict"; diff --git a/stackviz/tests/test_stackviz.py b/stackviz/tests/test_stackviz.py index 07d5029..5503415 100644 --- a/stackviz/tests/test_stackviz.py +++ b/stackviz/tests/test_stackviz.py @@ -1,10 +1,12 @@ # -*- coding: utf-8 -*- +# Copyright 2015 Hewlett-Packard Development Company, L.P. +# # 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 +# 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 diff --git a/stackviz/urls.py b/stackviz/urls.py index 6f4fb42..7eb46b8 100644 --- a/stackviz/urls.py +++ b/stackviz/urls.py @@ -1,13 +1,24 @@ +# Copyright 2015 Hewlett-Packard Development Company, L.P. +# +# 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.urls import patterns, include, url from django.contrib import admin from stackviz.views.index import IndexView -urlpatterns = patterns('', - # Examples: - # url(r'^$', 'stackviz.views.home', name='home'), - # url(r'^blog/', include('blog.urls')), - +urlpatterns = patterns( + '', url(r'^$', IndexView.as_view()), url(r'^index.html$', IndexView.as_view(), name="index"), url(r'^tempest_', include('stackviz.views.tempest.urls')), diff --git a/stackviz/views/devstack/results.py b/stackviz/views/devstack/results.py index 096cba4..c8c498f 100644 --- a/stackviz/views/devstack/results.py +++ b/stackviz/views/devstack/results.py @@ -1,3 +1,17 @@ +# Copyright 2015 Hewlett-Packard Development Company, L.P. +# +# 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.views.generic import TemplateView class ResultsView(TemplateView): diff --git a/stackviz/views/devstack/urls.py b/stackviz/views/devstack/urls.py index fd0802b..228873e 100644 --- a/stackviz/views/devstack/urls.py +++ b/stackviz/views/devstack/urls.py @@ -1,3 +1,17 @@ +# Copyright 2015 Hewlett-Packard Development Company, L.P. +# +# 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.urls import patterns, include, url from django.contrib import admin diff --git a/stackviz/views/dstat/api.py b/stackviz/views/dstat/api.py index 9ba6f9d..b95ab9d 100644 --- a/stackviz/views/dstat/api.py +++ b/stackviz/views/dstat/api.py @@ -1,3 +1,17 @@ +# Copyright 2015 Hewlett-Packard Development Company, L.P. +# +# 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 from django.http import HttpResponse, Http404 diff --git a/stackviz/views/dstat/urls.py b/stackviz/views/dstat/urls.py index 24aeb72..b887637 100644 --- a/stackviz/views/dstat/urls.py +++ b/stackviz/views/dstat/urls.py @@ -1,3 +1,17 @@ +# Copyright 2015 Hewlett-Packard Development Company, L.P. +# +# 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.urls import patterns, include, url from .api import DStatCSVEndpoint diff --git a/stackviz/views/index.py b/stackviz/views/index.py index 729eebe..658693a 100644 --- a/stackviz/views/index.py +++ b/stackviz/views/index.py @@ -1,3 +1,17 @@ +# Copyright 2015 Hewlett-Packard Development Company, L.P. +# +# 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.views.generic import TemplateView class IndexView(TemplateView): diff --git a/stackviz/views/tempest/aggregate.py b/stackviz/views/tempest/aggregate.py index 9beddbb..57325e1 100644 --- a/stackviz/views/tempest/aggregate.py +++ b/stackviz/views/tempest/aggregate.py @@ -1,3 +1,17 @@ +# Copyright 2015 Hewlett-Packard Development Company, L.P. +# +# 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.views.generic import TemplateView class AggregateResultsView(TemplateView): diff --git a/stackviz/views/tempest/api.py b/stackviz/views/tempest/api.py index c5455d1..e9a309a 100644 --- a/stackviz/views/tempest/api.py +++ b/stackviz/views/tempest/api.py @@ -1,3 +1,17 @@ +# Copyright 2015 Hewlett-Packard Development Company, L.P. +# +# 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.http import Http404 from restless.views import Endpoint diff --git a/stackviz/views/tempest/results.py b/stackviz/views/tempest/results.py index 23e2fc9..8bc2f43 100644 --- a/stackviz/views/tempest/results.py +++ b/stackviz/views/tempest/results.py @@ -1,3 +1,17 @@ +# Copyright 2015 Hewlett-Packard Development Company, L.P. +# +# 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.urlresolvers import reverse from django.views.generic import TemplateView, RedirectView from django.http import Http404 diff --git a/stackviz/views/tempest/timeline.py b/stackviz/views/tempest/timeline.py index cba627a..9516a75 100644 --- a/stackviz/views/tempest/timeline.py +++ b/stackviz/views/tempest/timeline.py @@ -1,3 +1,17 @@ +# Copyright 2015 Hewlett-Packard Development Company, L.P. +# +# 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.urlresolvers import reverse from django.views.generic import TemplateView, RedirectView from django.http import Http404 diff --git a/stackviz/views/tempest/urls.py b/stackviz/views/tempest/urls.py index bc5047f..2504e17 100644 --- a/stackviz/views/tempest/urls.py +++ b/stackviz/views/tempest/urls.py @@ -1,3 +1,17 @@ +# Copyright 2015 Hewlett-Packard Development Company, L.P. +# +# 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.urls import patterns, include, url from .results import ResultsView diff --git a/stackviz/views/upstream/api.py b/stackviz/views/upstream/api.py index 82b6c22..698f3fe 100644 --- a/stackviz/views/upstream/api.py +++ b/stackviz/views/upstream/api.py @@ -1,3 +1,17 @@ +# Copyright 2015 Hewlett-Packard Development Company, L.P. +# +# 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 subunit2sql.db import api, models from sqlalchemy import create_engine from sqlalchemy.orm import sessionmaker diff --git a/stackviz/views/upstream/run.py b/stackviz/views/upstream/run.py index 62fb4dc..058fbd2 100644 --- a/stackviz/views/upstream/run.py +++ b/stackviz/views/upstream/run.py @@ -1,3 +1,17 @@ +# Copyright 2015 Hewlett-Packard Development Company, L.P. +# +# 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.views.generic import TemplateView # TODO Planned f(x): diff --git a/stackviz/views/upstream/test.py b/stackviz/views/upstream/test.py index ff82d58..969bfec 100644 --- a/stackviz/views/upstream/test.py +++ b/stackviz/views/upstream/test.py @@ -1,3 +1,17 @@ +# Copyright 2015 Hewlett-Packard Development Company, L.P. +# +# 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.views.generic import TemplateView # TODO: Planned f(x): diff --git a/stackviz/views/upstream/urls.py b/stackviz/views/upstream/urls.py index 2fae38b..a7aa26e 100644 --- a/stackviz/views/upstream/urls.py +++ b/stackviz/views/upstream/urls.py @@ -1,3 +1,17 @@ +# Copyright 2015 Hewlett-Packard Development Company, L.P. +# +# 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.urls import patterns, include, url from .run import RunView diff --git a/stackviz/wsgi.py b/stackviz/wsgi.py index 2c86f9a..37ec47a 100644 --- a/stackviz/wsgi.py +++ b/stackviz/wsgi.py @@ -1,3 +1,17 @@ +# Copyright 2015 Hewlett-Packard Development Company, L.P. +# +# 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. + """ WSGI config for stackviz project.