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

dpavlov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite-teamcity-bot.git


The following commit(s) were added to refs/heads/master by this push:
     new 698711c  Removing unused, added licenses
698711c is described below

commit 698711cde9aad155d2d1376121120785de33e97b
Author: Dmitriy Pavlov <dpav...@apache.org>
AuthorDate: Thu Feb 14 20:18:25 2019 +0300

    Removing unused, added licenses
---
 .../main/java/org/apache/ignite/ci/HelperConfig.java    | 17 -----------------
 ignite-tc-helper-web/src/main/webapp/js/common-1.6.js   | 16 ++++++++++++++++
 ignite-tc-helper-web/src/main/webapp/js/issues-1.0.js   | 16 ++++++++++++++++
 .../src/main/webapp/js/long_running-1.0.js              | 16 ++++++++++++++++
 ignite-tc-helper-web/src/main/webapp/js/prs-1.1.js      | 16 ++++++++++++++++
 .../src/main/webapp/js/testfails-2.1.js                 | 16 ++++++++++++++++
 6 files changed, 80 insertions(+), 17 deletions(-)

diff --git 
a/ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/HelperConfig.java 
b/ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/HelperConfig.java
index f828c57..579ffb9 100644
--- a/ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/HelperConfig.java
+++ b/ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/HelperConfig.java
@@ -154,23 +154,6 @@ public class HelperConfig {
     }
 
     /**
-     * Extract JIRA basic authorization token from properties.
-     *
-     * @param props Properties, where token is placed.
-     * @return Null or decoded auth token for Github.
-     */
-    @Nullable public static String prepareJiraHttpAuthToken(Properties props) {
-        String tok = props.getProperty(JIRA_AUTH_TOKEN);
-
-        if (isNullOrEmpty(tok))
-            return null;
-
-        tok = PasswordEncoder.decode(tok);
-
-        return tok;
-    }
-
-    /**
      * Extract TeamCity authorization token from properties.
      *
      * @param props Properties, where token is placed.
diff --git a/ignite-tc-helper-web/src/main/webapp/js/common-1.6.js 
b/ignite-tc-helper-web/src/main/webapp/js/common-1.6.js
index 3af11ab..a455b70 100644
--- a/ignite-tc-helper-web/src/main/webapp/js/common-1.6.js
+++ b/ignite-tc-helper-web/src/main/webapp/js/common-1.6.js
@@ -1,3 +1,19 @@
+/*
+ * 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.
+ */
 var more = "<button class='more white short'><i class='fas 
fa-caret-down'></i></button>";
 var less = "<button class='more white short'><i class='fas 
fa-caret-up'></i></button>";
 
diff --git a/ignite-tc-helper-web/src/main/webapp/js/issues-1.0.js 
b/ignite-tc-helper-web/src/main/webapp/js/issues-1.0.js
index 126e2ed..decbf50 100644
--- a/ignite-tc-helper-web/src/main/webapp/js/issues-1.0.js
+++ b/ignite-tc-helper-web/src/main/webapp/js/issues-1.0.js
@@ -1,3 +1,19 @@
+/*
+ * 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.
+ */
 //@param results - TestFailuresSummary
 //@param settings - Settings (JS class)
 function showIssues(result) {
diff --git a/ignite-tc-helper-web/src/main/webapp/js/long_running-1.0.js 
b/ignite-tc-helper-web/src/main/webapp/js/long_running-1.0.js
index 925fb02..2e88d1a 100644
--- a/ignite-tc-helper-web/src/main/webapp/js/long_running-1.0.js
+++ b/ignite-tc-helper-web/src/main/webapp/js/long_running-1.0.js
@@ -1,3 +1,19 @@
+/*
+ * 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.
+ */
 function showLongRunningTestsSummary(result) {
     var res = "<table>";
 
diff --git a/ignite-tc-helper-web/src/main/webapp/js/prs-1.1.js 
b/ignite-tc-helper-web/src/main/webapp/js/prs-1.1.js
index 1328764..1bb3c0f 100644
--- a/ignite-tc-helper-web/src/main/webapp/js/prs-1.1.js
+++ b/ignite-tc-helper-web/src/main/webapp/js/prs-1.1.js
@@ -1,3 +1,19 @@
+/*
+ * 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.
+ */
 function drawTable(srvId, element) {
     let tableId = "serverContributions-" + srvId;
 
diff --git a/ignite-tc-helper-web/src/main/webapp/js/testfails-2.1.js 
b/ignite-tc-helper-web/src/main/webapp/js/testfails-2.1.js
index 2950b2f..969b2c2 100644
--- a/ignite-tc-helper-web/src/main/webapp/js/testfails-2.1.js
+++ b/ignite-tc-helper-web/src/main/webapp/js/testfails-2.1.js
@@ -1,3 +1,19 @@
+/*
+ * 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.
+ */
 //loadData(); // should be defined by page
 //loadStatus element should be provided on page
 //triggerConfirm & triggerDialog element should be provided on page (may be 
hidden)

Reply via email to