summaryrefslogtreecommitdiff
path: root/src/main/webapp/WEB-INF/jsp/show_plan_release.jsp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/webapp/WEB-INF/jsp/show_plan_release.jsp')
-rw-r--r--src/main/webapp/WEB-INF/jsp/show_plan_release.jsp119
1 files changed, 0 insertions, 119 deletions
diff --git a/src/main/webapp/WEB-INF/jsp/show_plan_release.jsp b/src/main/webapp/WEB-INF/jsp/show_plan_release.jsp
deleted file mode 100644
index 9a312e9..0000000
--- a/src/main/webapp/WEB-INF/jsp/show_plan_release.jsp
+++ /dev/null
@@ -1,119 +0,0 @@
-<%--
- ~ Copyright (c) 2017 Google Inc. All Rights Reserved.
- ~
- ~ Licensed 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.
- --%>
-<%@ page contentType='text/html;charset=UTF-8' language='java' %>
-<%@ taglib prefix='fn' uri='http://java.sun.com/jsp/jstl/functions' %>
-<%@ taglib prefix='c' uri='http://java.sun.com/jsp/jstl/core'%>
-
-<html>
- <%@ include file="header.jsp" %>
- <link rel='stylesheet' href='/css/show_plan_release.css'>
- <link rel='stylesheet' href='/css/plan_runs.css'>
- <link rel='stylesheet' href='/css/search_header.css'>
- <script src='https://www.gstatic.com/external_hosted/moment/min/moment-with-locales.min.js'></script>
- <script src='js/time.js'></script>
- <script src='js/plan_runs.js'></script>
- <script src='js/search_header.js'></script>
- <script type='text/javascript'>
- var search;
- $(document).ready(function() {
- // disable buttons on load
- if (!${hasNewer}) {
- $('#newer-button').toggleClass('disabled');
- }
- if (!${hasOlder}) {
- $('#older-button').toggleClass('disabled');
- }
-
- $('#newer-button').click(prev);
- $('#older-button').click(next);
- search = $('#filter-bar').createSearchHeader('Plan: ', '${plan}', refresh);
- search.addFilter('Branch', 'branch', {
- corpus: ${branches}
- }, ${branch});
- search.addFilter('Device', 'device', {
- corpus: ${devices}
- }, ${device});
- search.addFilter('Device Build ID', 'deviceBuildId', {}, ${deviceBuildId});
- search.addFilter('Test Build ID', 'testBuildId', {}, ${testBuildId});
- search.addFilter('Host', 'hostname', {}, ${hostname});
- search.addFilter('Passing Count', 'passing', {
- validate: 'inequality',
- width: 's2'
- }, ${passing});
- search.addFilter('Non-Passing Count', 'nonpassing', {
- validate: 'inequality',
- width: 's2'
- }, ${nonpassing});
- search.addRunTypeCheckboxes(${showPresubmit}, ${showPostsubmit});
- search.display();
- $('#release-container').showPlanRuns(${planRuns});
- });
-
- // view older data
- function next() {
- if($(this).hasClass('disabled')) return;
- var endTime = ${startTime};
- var link = '${pageContext.request.contextPath}' +
- '/show_plan_release?plan=${plan}&endTime=' + endTime +
- search.args();
- if (${unfiltered}) {
- link += '&unfiltered=';
- }
- window.open(link,'_self');
- }
-
- // view newer data
- function prev() {
- if($(this).hasClass('disabled')) return;
- var startTime = ${endTime};
- var link = '${pageContext.request.contextPath}' +
- '/show_plan_release?plan=${plan}&startTime=' + startTime +
- search.args();
- if (${unfiltered}) {
- link += '&unfiltered=';
- }
- window.open(link,'_self');
- }
-
- // refresh the page to see the runs matching the specified filter
- function refresh() {
- var link = '${pageContext.request.contextPath}' +
- '/show_plan_release?plan=${plan}' + search.args();
- if (${unfiltered}) {
- link += '&unfiltered=';
- }
- window.open(link,'_self');
- }
- </script>
-
- <body>
- <div class='wide container'>
- <div id='filter-bar'></div>
- <div class='row' id='release-container'></div>
- <div id='newer-wrapper' class='page-button-wrapper fixed-action-btn'>
- <a id='newer-button' class='btn-floating btn red waves-effect'>
- <i class='large material-icons'>keyboard_arrow_left</i>
- </a>
- </div>
- <div id='older-wrapper' class='page-button-wrapper fixed-action-btn'>
- <a id='older-button' class='btn-floating btn red waves-effect'>
- <i class='large material-icons'>keyboard_arrow_right</i>
- </a>
- </div>
- </div>
- <%@ include file="footer.jsp" %>
- </body>
-</html>