You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tez.apache.org by rb...@apache.org on 2014/12/01 14:22:21 UTC

tez git commit: TEZ-1709. Bunch of files in tez-ui missing Apache license header (Sreenath Somarajapuram via Rajesh Balamohan)

Repository: tez
Updated Branches:
  refs/heads/TEZ-8 f6b5b8900 -> 1a2c5f883


TEZ-1709. Bunch of files in tez-ui missing Apache license header (Sreenath Somarajapuram via Rajesh Balamohan)


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

Branch: refs/heads/TEZ-8
Commit: 1a2c5f88354a88cc21589d88d6f3fed875894b73
Parents: f6b5b89
Author: Rajesh Balamohan <rb...@hortonworks.com>
Authored: Mon Dec 1 18:52:12 2014 +0530
Committer: Rajesh Balamohan <rb...@hortonworks.com>
Committed: Mon Dec 1 18:52:12 2014 +0530

----------------------------------------------------------------------
 .../webapp/app/scripts/views/swimlane_view.js     | 18 ++++++++++++++++++
 tez-ui/src/main/webapp/app/styles/swimlanes.css   | 18 ++++++++++++++++++
 .../components/extended-table/extable.hbs         | 18 ++++++++++++++++++
 .../components/extended-table/filter-cell.hbs     | 18 ++++++++++++++++++
 .../extended-table/filter-container.hbs           | 18 ++++++++++++++++++
 .../components/extended-table/filter-row.hbs      | 18 ++++++++++++++++++
 tez-ui/src/main/webapp/app/templates/error_.hbs   | 18 ++++++++++++++++++
 7 files changed, 126 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tez/blob/1a2c5f88/tez-ui/src/main/webapp/app/scripts/views/swimlane_view.js
----------------------------------------------------------------------
diff --git a/tez-ui/src/main/webapp/app/scripts/views/swimlane_view.js b/tez-ui/src/main/webapp/app/scripts/views/swimlane_view.js
index 9420e18..058466f 100644
--- a/tez-ui/src/main/webapp/app/scripts/views/swimlane_view.js
+++ b/tez-ui/src/main/webapp/app/scripts/views/swimlane_view.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.
+ */
+
 App.SwimlanesView = Ember.View.extend({
 
   didInsertElement: function() {

http://git-wip-us.apache.org/repos/asf/tez/blob/1a2c5f88/tez-ui/src/main/webapp/app/styles/swimlanes.css
----------------------------------------------------------------------
diff --git a/tez-ui/src/main/webapp/app/styles/swimlanes.css b/tez-ui/src/main/webapp/app/styles/swimlanes.css
index ad8a1d0..269b1ae 100644
--- a/tez-ui/src/main/webapp/app/styles/swimlanes.css
+++ b/tez-ui/src/main/webapp/app/styles/swimlanes.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.
+ */
+
 .svg {
   shape-rendering: crispEdges;
 }

http://git-wip-us.apache.org/repos/asf/tez/blob/1a2c5f88/tez-ui/src/main/webapp/app/templates/components/extended-table/extable.hbs
----------------------------------------------------------------------
diff --git a/tez-ui/src/main/webapp/app/templates/components/extended-table/extable.hbs b/tez-ui/src/main/webapp/app/templates/components/extended-table/extable.hbs
index 482642e..6f58aed 100644
--- a/tez-ui/src/main/webapp/app/templates/components/extended-table/extable.hbs
+++ b/tez-ui/src/main/webapp/app/templates/components/extended-table/extable.hbs
@@ -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.
+}}
+
 {{#if controller.hasHeader}}
   {{view Ember.Table.HeaderTableContainer}}
 {{/if}}

http://git-wip-us.apache.org/repos/asf/tez/blob/1a2c5f88/tez-ui/src/main/webapp/app/templates/components/extended-table/filter-cell.hbs
----------------------------------------------------------------------
diff --git a/tez-ui/src/main/webapp/app/templates/components/extended-table/filter-cell.hbs b/tez-ui/src/main/webapp/app/templates/components/extended-table/filter-cell.hbs
index f0ec7bb..2e0773e 100644
--- a/tez-ui/src/main/webapp/app/templates/components/extended-table/filter-cell.hbs
+++ b/tez-ui/src/main/webapp/app/templates/components/extended-table/filter-cell.hbs
@@ -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.
+}}
+
 <div class="ember-table-content-container" style='cursor: auto;'>
   <span class="ember-table-content" style='white-space: nowrap; cursor: auto;'>
     {{view view.inputFieldView}}

http://git-wip-us.apache.org/repos/asf/tez/blob/1a2c5f88/tez-ui/src/main/webapp/app/templates/components/extended-table/filter-container.hbs
----------------------------------------------------------------------
diff --git a/tez-ui/src/main/webapp/app/templates/components/extended-table/filter-container.hbs b/tez-ui/src/main/webapp/app/templates/components/extended-table/filter-container.hbs
index b5e73d9..6a05936 100644
--- a/tez-ui/src/main/webapp/app/templates/components/extended-table/filter-container.hbs
+++ b/tez-ui/src/main/webapp/app/templates/components/extended-table/filter-container.hbs
@@ -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.
+}}
+
 <div class="ember-table-table-fixed-wrapper">
   {{#if controller.numFixedColumns}}
     {{view App.ExTable.FilterBlock classNames="ember-table-left-table-block"

http://git-wip-us.apache.org/repos/asf/tez/blob/1a2c5f88/tez-ui/src/main/webapp/app/templates/components/extended-table/filter-row.hbs
----------------------------------------------------------------------
diff --git a/tez-ui/src/main/webapp/app/templates/components/extended-table/filter-row.hbs b/tez-ui/src/main/webapp/app/templates/components/extended-table/filter-row.hbs
index 453b76e..8647a31 100644
--- a/tez-ui/src/main/webapp/app/templates/components/extended-table/filter-row.hbs
+++ b/tez-ui/src/main/webapp/app/templates/components/extended-table/filter-row.hbs
@@ -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.
+}}
+
 {{view Ember.MultiItemViewCollectionView
   contentBinding="view.content"
   itemViewClassField="filterCellViewClass"

http://git-wip-us.apache.org/repos/asf/tez/blob/1a2c5f88/tez-ui/src/main/webapp/app/templates/error_.hbs
----------------------------------------------------------------------
diff --git a/tez-ui/src/main/webapp/app/templates/error_.hbs b/tez-ui/src/main/webapp/app/templates/error_.hbs
index 0eb6661..31fe3e3 100644
--- a/tez-ui/src/main/webapp/app/templates/error_.hbs
+++ b/tez-ui/src/main/webapp/app/templates/error_.hbs
@@ -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.
+}}
+
 <div>An error occurred while loading {{err.target}}</div>
 <div>Error was {{err.statusText}}</div>
 <div>details:<br/>{{err.responseText}}</div>