You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tez.apache.org by sr...@apache.org on 2016/02/18 20:09:44 UTC

tez git commit: TEZ-3127. Tez UI 2: Release audit is failing (sree)

Repository: tez
Updated Branches:
  refs/heads/TEZ-2980 478a5349d -> 6ae1ba74f


TEZ-3127. Tez UI 2: Release audit is failing (sree)


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

Branch: refs/heads/TEZ-2980
Commit: 6ae1ba74f59bfb612470442514f78a68d7e10b19
Parents: 478a534
Author: Sreenath Somarajapuram <sr...@apache.org>
Authored: Fri Feb 19 00:36:04 2016 +0530
Committer: Sreenath Somarajapuram <sr...@apache.org>
Committed: Fri Feb 19 00:36:04 2016 +0530

----------------------------------------------------------------------
 TEZ-2980-CHANGES.txt                              |  1 +
 pom.xml                                           |  1 +
 tez-ui2/pom.xml                                   |  8 ++++++--
 .../main/webapp/app/templates/dag/graphical.hbs   | 18 ++++++++++++++++++
 tez-ui2/src/main/webapp/config/configs.env        | 18 ++++++++++++++++++
 tez-ui2/src/main/webapp/public/crossdomain.xml    | 15 ---------------
 tez-ui2/src/main/webapp/public/robots.txt         |  3 ---
 7 files changed, 44 insertions(+), 20 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tez/blob/6ae1ba74/TEZ-2980-CHANGES.txt
----------------------------------------------------------------------
diff --git a/TEZ-2980-CHANGES.txt b/TEZ-2980-CHANGES.txt
index 949dcb6..d09ebc3 100644
--- a/TEZ-2980-CHANGES.txt
+++ b/TEZ-2980-CHANGES.txt
@@ -38,3 +38,4 @@ ALL CHANGES:
   TEZ-3088. Tez UI 2: Licenses of all the packages used by Tez Ui must be documented
   TEZ-2916. Tez UI 2: Show counts of running tasks on the DAG visualization page
   TEZ-3125. Tez UI 2: All auto-refresh pages refresh multiple times shortly after application complete
+  TEZ-3127. Tez UI 2: Release audit is failing

http://git-wip-us.apache.org/repos/asf/tez/blob/6ae1ba74/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 26abc24..058ee79 100644
--- a/pom.xml
+++ b/pom.xml
@@ -800,6 +800,7 @@
           <configuration>
             <excludes>
               <exclude>CHANGES.txt</exclude>
+              <exclude>TEZ-2980-CHANGES.txt</exclude>
               <exclude>**/LICENSE*</exclude>
               <!-- IDE files -->
               <exclude>.idea/**</exclude>

http://git-wip-us.apache.org/repos/asf/tez/blob/6ae1ba74/tez-ui2/pom.xml
----------------------------------------------------------------------
diff --git a/tez-ui2/pom.xml b/tez-ui2/pom.xml
index 8dbea41..695cacb 100644
--- a/tez-ui2/pom.xml
+++ b/tez-ui2/pom.xml
@@ -46,19 +46,23 @@
             <exclude>src/main/webapp/node/**/*</exclude>
             <exclude>src/main/webapp/node_modules/**/*</exclude>
             <exclude>src/main/webapp/bower_components/**/*</exclude>
-            <exclude>src/main/webapp/.tmp/</exclude>
+            <exclude>src/main/webapp/.tmp/**/*</exclude>
             <exclude>src/main/webapp/dist/**/*</exclude>
+            <exclude>src/main/webapp/tmp/**/*</exclude>
             <exclude>src/main/webapp/.bowerrc</exclude>
             <exclude>src/main/webapp/.editorconfig</exclude>
             <exclude>src/main/webapp/.ember-cli</exclude>
             <exclude>src/main/webapp/.gitignore</exclude>
             <exclude>src/main/webapp/.jshintrc</exclude>
+            <exclude>src/main/webapp/tests/.jshintrc</exclude>
+            <exclude>src/main/webapp/blueprints/.jshintrc</exclude>
             <exclude>src/main/webapp/.travis.yml</exclude>
             <exclude>src/main/webapp/.watchmanconfig</exclude>
             <exclude>src/main/webapp/bower.json</exclude>
             <exclude>src/main/webapp/ember-cli-build.js</exclude>
             <exclude>src/main/webapp/package.json</exclude>
-            <exclude>src/main/webapp/testem.js</exclude>
+            <exclude>src/main/webapp/testem.json</exclude>
+            <exclude>src/main/webapp/public/assets/images/*</exclude>
           </excludes>
         </configuration>
       </plugin>

http://git-wip-us.apache.org/repos/asf/tez/blob/6ae1ba74/tez-ui2/src/main/webapp/app/templates/dag/graphical.hbs
----------------------------------------------------------------------
diff --git a/tez-ui2/src/main/webapp/app/templates/dag/graphical.hbs b/tez-ui2/src/main/webapp/app/templates/dag/graphical.hbs
index fcb7e86..1b4e110 100644
--- a/tez-ui2/src/main/webapp/app/templates/dag/graphical.hbs
+++ b/tez-ui2/src/main/webapp/app/templates/dag/graphical.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 loaded}}
   <br/>
   <div id="graphical-view-component-container">

http://git-wip-us.apache.org/repos/asf/tez/blob/6ae1ba74/tez-ui2/src/main/webapp/config/configs.env
----------------------------------------------------------------------
diff --git a/tez-ui2/src/main/webapp/config/configs.env b/tez-ui2/src/main/webapp/config/configs.env
index a0d2198..56c5e22 100644
--- a/tez-ui2/src/main/webapp/config/configs.env
+++ b/tez-ui2/src/main/webapp/config/configs.env
@@ -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.
+ */
+
 ENV = {
   hosts: {
     /*

http://git-wip-us.apache.org/repos/asf/tez/blob/6ae1ba74/tez-ui2/src/main/webapp/public/crossdomain.xml
----------------------------------------------------------------------
diff --git a/tez-ui2/src/main/webapp/public/crossdomain.xml b/tez-ui2/src/main/webapp/public/crossdomain.xml
deleted file mode 100644
index 0c16a7a..0000000
--- a/tez-ui2/src/main/webapp/public/crossdomain.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0"?>
-<!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd">
-<cross-domain-policy>
-  <!-- Read this: www.adobe.com/devnet/articles/crossdomain_policy_file_spec.html -->
-
-  <!-- Most restrictive policy: -->
-  <site-control permitted-cross-domain-policies="none"/>
-
-  <!-- Least restrictive policy: -->
-  <!--
-  <site-control permitted-cross-domain-policies="all"/>
-  <allow-access-from domain="*" to-ports="*" secure="false"/>
-  <allow-http-request-headers-from domain="*" headers="*" secure="false"/>
-  -->
-</cross-domain-policy>

http://git-wip-us.apache.org/repos/asf/tez/blob/6ae1ba74/tez-ui2/src/main/webapp/public/robots.txt
----------------------------------------------------------------------
diff --git a/tez-ui2/src/main/webapp/public/robots.txt b/tez-ui2/src/main/webapp/public/robots.txt
deleted file mode 100644
index f591645..0000000
--- a/tez-ui2/src/main/webapp/public/robots.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# http://www.robotstxt.org
-User-agent: *
-Disallow: