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

Side by Side Diff: chrome_release_test_status/war/cl_notes.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/changelist.jsp ('k') | chrome_release_test_status/war/index.jsp » ('j') | 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
62 var s = "/TestingStatus-query.jsp?buildn=" + selected_val ;
63 window.location= s;
64
65 }
66
67 </script>
68
69
70
71
72 </head>
73 <BODY style="background:CCCCFF;font-family:BOOK ANTIQUA">
74 <H2 align=center><font color="background:9900CC"> Chrome Release testing dashboa rd </font></h2>
75
76 <table align=center width="1000">
77 <tr>
78 <td>
79 <ul id="list-nav" id="mainnav" >
80 <li><a href="registerfeature.jsp"> Register new feature </a>
81 <li><a href="calendar.jsp">Calendar</a></li>
82
83 <li><a href="SubmitStatus-Windows.jsp"> Submit Status </a></li>
84 <li><a href="TestingStatus-query.jsp"> View Status </a></li>
85 <li><a href="Release-blockers.jsp"> Release blockers </a></li>
86 <li><a href="benchmarks.jsp"> Benckmark results</a></li>
87 <li><a href="cl_notes.jsp"> CL notes </a></li>
88 <li><a href="stability.jsp"> Stability</a></li>
89 </ul>
90 </td>
91 </tr>
92 </table>
93
94 <%
95 PersistenceManager pm1 = PMF.get().getPersistenceManager();
96 String query1 = "select from " + BuildInfo.class.getName();
97 List<BuildInfo> build_val = (List<BuildInfo>) pm1.newQuery(query1).execute() ;
98 %>
99
100
101 <form id='mainForm1' action="" method="post">
102
103 <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);">
104 <option value="Pick a build" selected>Pick a build
105 <% for (BuildInfo g : build_val) { %>
106 <option value=<%= g.getBuildNumber() %>><%= g.getBuildNumber() %>
107 <% } %>
108 </select>
109 Pick a Channel:
110 <select name="channel" onChange="addRow(this.options[selectedIndex].text);">
111 <option value="Stable">Stable
112 <option value="Bets">Beta
113 <option value="Dev">Dev
114 </select>
115
116 </td></tr>
117 <tr><td style=" height:100%; width:100%;"><iframe id="12" scrolling="auto" src=" https://spreadsheets2.google.com/ccc?key=tEJIR5pXFoyFTmfy5yr82xQ&hl=en" style="b order:1px solid green; width:100%; height:100%;" />
118 </tr></td></table>
119 </form>
120
121
122
123
124
125 </body>
126 </html>
OLDNEW
« no previous file with comments | « chrome_release_test_status/war/changelist.jsp ('k') | chrome_release_test_status/war/index.jsp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698