You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by ze...@apache.org on 2020/06/09 13:00:50 UTC

[incubator-streampipes] branch dev updated: Add missing licence headers

This is an automated email from the ASF dual-hosted git repository.

zehnder pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes.git


The following commit(s) were added to refs/heads/dev by this push:
     new d765393  Add missing licence headers
     new a6a466a  Merge branch 'dev' of github.com:apache/incubator-streampipes into dev
d765393 is described below

commit d7653939d24aadf3fafb51bb890c982aef50cb42
Author: Philipp Zehnder <ze...@fzi.de>
AuthorDate: Tue Jun 9 14:59:43 2020 +0200

    Add missing licence headers
---
 .../components/widgets/renderer/renderer.component.css  | 16 ++++++++++++++++
 .../components/widgets/renderer/renderer.component.html | 17 +++++++++++++++++
 .../widgets/renderer/renderer.component.spec.ts         | 17 +++++++++++++++++
 .../components/widgets/renderer/renderer.component.ts   | 17 +++++++++++++++++
 .../components/widgets/renderer/renderer_functions.ts   | 17 +++++++++++++++++
 5 files changed, 84 insertions(+)

diff --git a/ui/src/app/dashboard/components/widgets/renderer/renderer.component.css b/ui/src/app/dashboard/components/widgets/renderer/renderer.component.css
index e69de29..690bfd1 100644
--- a/ui/src/app/dashboard/components/widgets/renderer/renderer.component.css
+++ b/ui/src/app/dashboard/components/widgets/renderer/renderer.component.css
@@ -0,0 +1,16 @@
+/*
+ *   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.
+ */
\ No newline at end of file
diff --git a/ui/src/app/dashboard/components/widgets/renderer/renderer.component.html b/ui/src/app/dashboard/components/widgets/renderer/renderer.component.html
index 5ca9454..e189369 100644
--- a/ui/src/app/dashboard/components/widgets/renderer/renderer.component.html
+++ b/ui/src/app/dashboard/components/widgets/renderer/renderer.component.html
@@ -1 +1,18 @@
+<!--
+  ~   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.
+  -->
+
 <div style="float: left; width: 640; height: 480; border:1px solid black;" id="canvas"></div>
diff --git a/ui/src/app/dashboard/components/widgets/renderer/renderer.component.spec.ts b/ui/src/app/dashboard/components/widgets/renderer/renderer.component.spec.ts
index af23816..e8ee121 100644
--- a/ui/src/app/dashboard/components/widgets/renderer/renderer.component.spec.ts
+++ b/ui/src/app/dashboard/components/widgets/renderer/renderer.component.spec.ts
@@ -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.
+ */
+
 import { async, ComponentFixture, TestBed } from '@angular/core/testing';
 
 import { RendererComponent } from './renderer.component';
diff --git a/ui/src/app/dashboard/components/widgets/renderer/renderer.component.ts b/ui/src/app/dashboard/components/widgets/renderer/renderer.component.ts
index f187485..eaaf408 100644
--- a/ui/src/app/dashboard/components/widgets/renderer/renderer.component.ts
+++ b/ui/src/app/dashboard/components/widgets/renderer/renderer.component.ts
@@ -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.
+ */
+
 import { Component, OnInit } from '@angular/core';
 
 import {modify_bin,add_item,remove_item,create_item,intialize_default} from './renderer_functions'
diff --git a/ui/src/app/dashboard/components/widgets/renderer/renderer_functions.ts b/ui/src/app/dashboard/components/widgets/renderer/renderer_functions.ts
index f899051..61b33ce 100644
--- a/ui/src/app/dashboard/components/widgets/renderer/renderer_functions.ts
+++ b/ui/src/app/dashboard/components/widgets/renderer/renderer_functions.ts
@@ -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.
+ */
+
 export function modify_bin(data_body,name,depth,height,width){
     if(name != null){
         data_body.name = name