You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lens.apache.org by ra...@apache.org on 2018/02/06 05:46:53 UTC

[37/50] lens git commit: LENS-1481: Add License headers to .js files

LENS-1481: Add License headers to .js files


Project: http://git-wip-us.apache.org/repos/asf/lens/repo
Commit: http://git-wip-us.apache.org/repos/asf/lens/commit/c566bf61
Tree: http://git-wip-us.apache.org/repos/asf/lens/tree/c566bf61
Diff: http://git-wip-us.apache.org/repos/asf/lens/diff/c566bf61

Branch: refs/heads/master
Commit: c566bf61e009e6cdc4a2b71ed699680d7c20c323
Parents: 2772efb
Author: rajub <ra...@lazada.com>
Authored: Mon Nov 6 13:42:11 2017 +0800
Committer: rajub <ra...@lazada.com>
Committed: Mon Nov 6 13:42:11 2017 +0800

----------------------------------------------------------------------
 lens-ui/app/actions/SessionAction.js           | 18 ++++++++++++++++++
 lens-ui/app/adapters/SessionAdapter.js         | 18 ++++++++++++++++++
 lens-ui/app/components/SessionListComponent.js | 18 ++++++++++++++++++
 lens-ui/app/constants/SessionConstants.js      | 18 ++++++++++++++++++
 lens-ui/app/stores/SessionStore.js             | 18 ++++++++++++++++++
 5 files changed, 90 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lens/blob/c566bf61/lens-ui/app/actions/SessionAction.js
----------------------------------------------------------------------
diff --git a/lens-ui/app/actions/SessionAction.js b/lens-ui/app/actions/SessionAction.js
index c3d78f9..17eccd5 100644
--- a/lens-ui/app/actions/SessionAction.js
+++ b/lens-ui/app/actions/SessionAction.js
@@ -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.
+ */
 import AppDispatcher from "../dispatcher/AppDispatcher";
 import SessionConstants from "../constants/SessionConstants";
 import SessionAdapter from "../adapters/SessionAdapter";

http://git-wip-us.apache.org/repos/asf/lens/blob/c566bf61/lens-ui/app/adapters/SessionAdapter.js
----------------------------------------------------------------------
diff --git a/lens-ui/app/adapters/SessionAdapter.js b/lens-ui/app/adapters/SessionAdapter.js
index 8e4fe74..105ad8b 100644
--- a/lens-ui/app/adapters/SessionAdapter.js
+++ b/lens-ui/app/adapters/SessionAdapter.js
@@ -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.
+ */
 import BaseAdapter from "./BaseAdapter";
 import Config from 'config.json';
 

http://git-wip-us.apache.org/repos/asf/lens/blob/c566bf61/lens-ui/app/components/SessionListComponent.js
----------------------------------------------------------------------
diff --git a/lens-ui/app/components/SessionListComponent.js b/lens-ui/app/components/SessionListComponent.js
index a71281c..8e88174 100644
--- a/lens-ui/app/components/SessionListComponent.js
+++ b/lens-ui/app/components/SessionListComponent.js
@@ -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.
+ */
 import React from "react";
 import Session from "../stores/SessionStore";
 import SessionAction from "../actions/SessionAction";

http://git-wip-us.apache.org/repos/asf/lens/blob/c566bf61/lens-ui/app/constants/SessionConstants.js
----------------------------------------------------------------------
diff --git a/lens-ui/app/constants/SessionConstants.js b/lens-ui/app/constants/SessionConstants.js
index 3c31e5d..4088eed 100644
--- a/lens-ui/app/constants/SessionConstants.js
+++ b/lens-ui/app/constants/SessionConstants.js
@@ -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.
+ */
 import KeyMirror from 'keymirror';
 
 const SessionConstants = KeyMirror({

http://git-wip-us.apache.org/repos/asf/lens/blob/c566bf61/lens-ui/app/stores/SessionStore.js
----------------------------------------------------------------------
diff --git a/lens-ui/app/stores/SessionStore.js b/lens-ui/app/stores/SessionStore.js
index 3840720..359da4f 100644
--- a/lens-ui/app/stores/SessionStore.js
+++ b/lens-ui/app/stores/SessionStore.js
@@ -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.
+ */
 import assign from "object-assign";
 import SessionConstants from "../constants/SessionConstants";
 import AppDispatcher from "../dispatcher/AppDispatcher";