Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(143)

Side by Side Diff: chrome_release_test_status/war/stability.jsp

Issue 2831022: The following java and jsp files will collect the Chrome release testing stat... Base URL: svn://svn.chromium.org/chrome/trunk/tools/
Patch Set: Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome_release_test_status/war/registerfeature-query.jsp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <%@ page contentType="text/html;charset=UTF-8" language="java" %>
2 <%@ page import="java.util.List" %>
3 <%@ page import="javax.jdo.PersistenceManager" %>
4 <%@ page import="com.google.appengine.api.users.User" %>
5 <%@ page import="com.google.appengine.api.users.UserService" %>
6 <%@ page import="com.google.appengine.api.users.UserServiceFactory" %>
7 <%@ page import="mydemo.BuildInfo" %>
8 <%@ page import="mydemo.TestStatus" %>
9 <%@ page import="mydemo.RegisterFeature" %>
10 <%@ page import="mydemo.PMF" %>
11
12 <html>
13 <Head>
14 <style>
15 body
16 {
17 background-color:#d0e4fe;
18 font-family: tims, cursive, serif;
19 }
20
21 .mytable {
22 border: 1px solid #CCC;
23 font-size: 20px;
24
25 }
26
27 .fitrow {
28 background-color:#F4F4F4;
29 height:20px;
30 }
31
32 </style>
33 <style>
34
35
36 ul#list-nav li {
37 display:inline;
38 }
39
40 ul#list-nav li a {
41 text-decoration:none;
42 padding:5px 5px 5px 5px;
43 background:9966ff;
44 color:#eee;
45 float:left;
46 text-align:center;
47 border-left:1px solid #fff;
48 }
49
50 ul#list-nav li a:hover {
51 background:9999ff;
52 color:#000
53 }
54
55
56 </style>
57 <script>
58 var selected_val1 = 0;
59 function addRow(selected_val) {
60
61 var frame_name =document.getElementById("12");
62 frame_name.src="http://crash/stackview?product=Chrome&version=" + selected_val;
63 //var s = "/TestingStatus-query.jsp?buildn=" + selected_val ;
64 // window.location= s;
65
66 }
67
68 </script>
69
70
71
72
73 </head>
74 <BODY style="background:CCCCFF;font-family:BOOK ANTIQUA">
75 <H2 align=center><font color="background:9900CC"> Chrome Release testing dashboa rd </font></h2>
76
77 <table align=center width="1000">
78 <tr>
79 <td>
80 <ul id="list-nav" id="mainnav" >
81 <li><a href="registerfeature.jsp"> Register new feature </a>
82 <li><a href="calendar.jsp">Calendar</a></li>
83
84 <li><a href="SubmitStatus-Windows.jsp"> Submit Status </a></li>
85 <li><a href="TestingStatus-query.jsp"> View Status </a></li>
86 <li><a href="Release-blockers.jsp"> Release blockers </a></li>
87 <li><a href="benchmarks.jsp"> Benckmark results</a></li>
88 <li><a href="cl_notes.jsp"> CL notes </a></li>
89 <li><a href="stability.jsp"> Stability</a></li>
90 </ul>
91 </td>
92 </tr>
93 </table>
94
95 <%
96 PersistenceManager pm1 = PMF.get().getPersistenceManager();
97 String query1 = "select from " + BuildInfo.class.getName();
98 List<BuildInfo> build_val = (List<BuildInfo>) pm1.newQuery(query1).execute() ;
99 %>
100
101
102 <form id='mainForm1' action="" method="post">
103
104 <table align=center style=" width:50%; height:50%"><tr><td align=center>Pick a build: <select name="buildn" id="buildn" onChange="addRow(this.options[selecte dIndex].text);">
105 <option value="Pick a build" selected>Pick a build
106 <% for (BuildInfo g : build_val) { %>
107 <option value=<%= g.getBuildNumber() %>><%= g.getBuildNumber() %>
108 <% } %>
109 </select>
110
111 </td></tr>
112 <tr><td style=" height:100%; width:100%;"><iframe id="12" scrolling="auto" style ="border:1px solid green; width:100%; height:100%;" />
113 </tr></td></table>
114 </form>
115
116
117
118
119
120 </body>
121 </html>
OLDNEW
« no previous file with comments | « chrome_release_test_status/war/registerfeature-query.jsp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698