From aa9cd72418998f40bd1657d6c18dfe10235811ef Mon Sep 17 00:00:00 2001 From: Chip Childers Date: Tue, 30 Jul 2013 10:01:20 -0400 Subject: [PATCH] Fixing license headers within the tools/ngui folder --- tools/ngui/static/css/app.css | 18 ++++++++++++++++++ tools/ngui/static/js/app/accounts/accounts.js | 17 +++++++++++++++++ .../static/js/app/accounts/accounts.tpl.html | 18 ++++++++++++++++++ tools/ngui/static/js/app/app.js | 17 +++++++++++++++++ tools/ngui/static/js/app/domains/domains.js | 17 +++++++++++++++++ tools/ngui/static/js/app/events/events.js | 17 +++++++++++++++++ .../js/app/globalsettings/globalsettings.js | 17 +++++++++++++++++ .../app/globalsettings/globalsettings.tpl.html | 18 ++++++++++++++++++ .../js/app/instances/instance-details.tpl.html | 18 ++++++++++++++++++ .../ngui/static/js/app/instances/instances.js | 17 +++++++++++++++++ .../static/js/app/instances/instances.tpl.html | 18 ++++++++++++++++++ tools/ngui/static/js/app/networks/networks.js | 17 +++++++++++++++++ tools/ngui/static/js/app/projects/projects.js | 17 +++++++++++++++++ .../app/serviceofferings/serviceofferings.js | 17 +++++++++++++++++ tools/ngui/static/js/app/storage/storage.js | 17 +++++++++++++++++ .../static/js/app/storage/storage.tpl.html | 18 ++++++++++++++++++ .../ngui/static/js/app/templates/templates.js | 17 +++++++++++++++++ tools/ngui/static/js/common/dictionary.js | 17 +++++++++++++++++ .../static/js/common/directives/confirm.js | 17 +++++++++++++++++ .../js/common/directives/edit-in-place.js | 17 +++++++++++++++++ .../common/directives/edit-in-place.tpl.html | 18 ++++++++++++++++++ .../ngui/static/js/common/directives/label.js | 17 +++++++++++++++++ .../static/js/common/directives/modal-form.js | 17 +++++++++++++++++ .../js/common/directives/modal-form.tpl.html | 18 ++++++++++++++++++ .../static/js/common/resources/accounts.js | 17 +++++++++++++++++ .../js/common/resources/configurations.js | 17 +++++++++++++++++ .../js/common/resources/diskofferings.js | 17 +++++++++++++++++ .../ngui/static/js/common/resources/domains.js | 17 +++++++++++++++++ .../ngui/static/js/common/resources/events.js | 17 +++++++++++++++++ .../static/js/common/resources/networks.js | 17 +++++++++++++++++ .../static/js/common/resources/projects.js | 17 +++++++++++++++++ .../js/common/resources/serviceofferings.js | 17 +++++++++++++++++ .../static/js/common/resources/snapshots.js | 17 +++++++++++++++++ .../static/js/common/resources/templates.js | 17 +++++++++++++++++ tools/ngui/static/js/common/resources/users.js | 17 +++++++++++++++++ .../js/common/resources/virtualmachines.js | 17 +++++++++++++++++ .../ngui/static/js/common/resources/volumes.js | 17 +++++++++++++++++ tools/ngui/static/js/common/resources/zones.js | 17 +++++++++++++++++ .../static/js/common/services/breadcrumbs.js | 17 +++++++++++++++++ .../js/common/services/helperfunctions.js | 17 +++++++++++++++++ .../static/js/common/services/notifications.js | 17 +++++++++++++++++ .../static/js/common/services/requester.js | 16 ++++++++++++++++ 42 files changed, 721 insertions(+) diff --git a/tools/ngui/static/css/app.css b/tools/ngui/static/css/app.css index 352d90964f5..1f34a51b2b1 100644 --- a/tools/ngui/static/css/app.css +++ b/tools/ngui/static/css/app.css @@ -1,3 +1,21 @@ +/* +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you 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. +*/ body { padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */ } diff --git a/tools/ngui/static/js/app/accounts/accounts.js b/tools/ngui/static/js/app/accounts/accounts.js index 408f2548d2f..eae5070a604 100644 --- a/tools/ngui/static/js/app/accounts/accounts.js +++ b/tools/ngui/static/js/app/accounts/accounts.js @@ -1,3 +1,20 @@ +// Licensed to the Apache Software Foundation (ASF) under one +// or more contributor license agreements. See the NOTICE file +// distributed with this work for additional information +// regarding copyright ownership. The ASF licenses this file +// to you 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. + angular.module('accounts', ['resources.accounts', 'resources.domains', 'services.breadcrumbs']). config(['$routeProvider', function($routeProvider){ $routeProvider. diff --git a/tools/ngui/static/js/app/accounts/accounts.tpl.html b/tools/ngui/static/js/app/accounts/accounts.tpl.html index 281aa666c6f..ba685b9dae9 100644 --- a/tools/ngui/static/js/app/accounts/accounts.tpl.html +++ b/tools/ngui/static/js/app/accounts/accounts.tpl.html @@ -1,3 +1,21 @@ +
diff --git a/tools/ngui/static/js/app/app.js b/tools/ngui/static/js/app/app.js index fb83c1a7c45..7836ad1aa24 100644 --- a/tools/ngui/static/js/app/app.js +++ b/tools/ngui/static/js/app/app.js @@ -1,3 +1,20 @@ +// Licensed to the Apache Software Foundation (ASF) under one +// or more contributor license agreements. See the NOTICE file +// distributed with this work for additional information +// regarding copyright ownership. The ASF licenses this file +// to you 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. + angular.module('cloudstack', [ 'ui.bootstrap', 'instances', diff --git a/tools/ngui/static/js/app/domains/domains.js b/tools/ngui/static/js/app/domains/domains.js index 8f5977c0209..7afbb6c5e49 100644 --- a/tools/ngui/static/js/app/domains/domains.js +++ b/tools/ngui/static/js/app/domains/domains.js @@ -1,3 +1,20 @@ +// Licensed to the Apache Software Foundation (ASF) under one +// or more contributor license agreements. See the NOTICE file +// distributed with this work for additional information +// regarding copyright ownership. The ASF licenses this file +// to you 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. + angular.module('domains', ['resources.domains', 'services.breadcrumbs']). config(['$routeProvider', function($routeProvider){ $routeProvider. diff --git a/tools/ngui/static/js/app/events/events.js b/tools/ngui/static/js/app/events/events.js index 9e26789bcc0..8815f99214d 100644 --- a/tools/ngui/static/js/app/events/events.js +++ b/tools/ngui/static/js/app/events/events.js @@ -1,3 +1,20 @@ +// Licensed to the Apache Software Foundation (ASF) under one +// or more contributor license agreements. See the NOTICE file +// distributed with this work for additional information +// regarding copyright ownership. The ASF licenses this file +// to you 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. + angular.module('events', ['resources.events', 'services.breadcrumbs']). config(['$routeProvider', function($routeProvider){ $routeProvider. diff --git a/tools/ngui/static/js/app/globalsettings/globalsettings.js b/tools/ngui/static/js/app/globalsettings/globalsettings.js index b1fc57497b5..857878a4018 100644 --- a/tools/ngui/static/js/app/globalsettings/globalsettings.js +++ b/tools/ngui/static/js/app/globalsettings/globalsettings.js @@ -1,3 +1,20 @@ +// Licensed to the Apache Software Foundation (ASF) under one +// or more contributor license agreements. See the NOTICE file +// distributed with this work for additional information +// regarding copyright ownership. The ASF licenses this file +// to you 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. + angular.module('globalsettings', ['resources.configurations', 'services.breadcrumbs', 'services.notifications']). config(['$routeProvider', function($routeProvider){ $routeProvider. diff --git a/tools/ngui/static/js/app/globalsettings/globalsettings.tpl.html b/tools/ngui/static/js/app/globalsettings/globalsettings.tpl.html index 9b95ea6c3e0..0cd6f752a59 100644 --- a/tools/ngui/static/js/app/globalsettings/globalsettings.tpl.html +++ b/tools/ngui/static/js/app/globalsettings/globalsettings.tpl.html @@ -1,3 +1,21 @@ +
diff --git a/tools/ngui/static/js/app/instances/instance-details.tpl.html b/tools/ngui/static/js/app/instances/instance-details.tpl.html index 4726dee90e7..dacd63afdf5 100644 --- a/tools/ngui/static/js/app/instances/instance-details.tpl.html +++ b/tools/ngui/static/js/app/instances/instance-details.tpl.html @@ -1,3 +1,21 @@ + diff --git a/tools/ngui/static/js/app/instances/instances.js b/tools/ngui/static/js/app/instances/instances.js index c658c648e44..76ff34bda2e 100644 --- a/tools/ngui/static/js/app/instances/instances.js +++ b/tools/ngui/static/js/app/instances/instances.js @@ -1,3 +1,20 @@ +// Licensed to the Apache Software Foundation (ASF) under one +// or more contributor license agreements. See the NOTICE file +// distributed with this work for additional information +// regarding copyright ownership. The ASF licenses this file +// to you 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. + angular.module("instances", ['resources.virtualmachines', 'services.breadcrumbs', 'services.notifications']). config(['$routeProvider', function($routeProvider){ $routeProvider. diff --git a/tools/ngui/static/js/app/instances/instances.tpl.html b/tools/ngui/static/js/app/instances/instances.tpl.html index 98155fa8008..1ed1c349070 100644 --- a/tools/ngui/static/js/app/instances/instances.tpl.html +++ b/tools/ngui/static/js/app/instances/instances.tpl.html @@ -1,3 +1,21 @@ +
{{attribute}}