OLD | NEW |
(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 |
| 58 |
| 59 |
| 60 |
| 61 </head> |
| 62 |
| 63 <script> |
| 64 |
| 65 var DDSPEED = 10; |
| 66 var DDTIMER = 15; |
| 67 |
| 68 // main function to handle the mouse events // |
| 69 function ddMenu(id,d){ |
| 70 var h = document.getElementById(id + '-ddheader'); |
| 71 var c = document.getElementById(id + '-ddcontent'); |
| 72 clearInterval(c.timer); |
| 73 if(d == 1){ |
| 74 clearTimeout(h.timer); |
| 75 if(c.maxh && c.maxh <= c.offsetHeight){return} |
| 76 else if(!c.maxh){ |
| 77 c.style.display = 'block'; |
| 78 c.style.height = 'auto'; |
| 79 c.maxh = c.offsetHeight; |
| 80 c.style.height = '0px'; |
| 81 } |
| 82 c.timer = setInterval(function(){ddSlide(c,1)},DDTIMER); |
| 83 }else{ |
| 84 h.timer = setTimeout(function(){ddCollapse(c)},50); |
| 85 } |
| 86 } |
| 87 |
| 88 // collapse the menu // |
| 89 function ddCollapse(c){ |
| 90 c.timer = setInterval(function(){ddSlide(c,-1)},DDTIMER); |
| 91 } |
| 92 |
| 93 // cancel the collapse if a user rolls over the dropdown // |
| 94 function cancelHide(id){ |
| 95 var h = document.getElementById(id + '-ddheader'); |
| 96 var c = document.getElementById(id + '-ddcontent'); |
| 97 clearTimeout(h.timer); |
| 98 clearInterval(c.timer); |
| 99 if(c.offsetHeight < c.maxh){ |
| 100 c.timer = setInterval(function(){ddSlide(c,1)},DDTIMER); |
| 101 } |
| 102 } |
| 103 |
| 104 // incrementally expand/contract the dropdown and change the opacity // |
| 105 function ddSlide(c,d){ |
| 106 var currh = c.offsetHeight; |
| 107 var dist; |
| 108 if(d == 1){ |
| 109 dist = (Math.round((c.maxh - currh) / DDSPEED)); |
| 110 }else{ |
| 111 dist = (Math.round(currh / DDSPEED)); |
| 112 } |
| 113 if(dist <= 1 && d == 1){ |
| 114 dist = 1; |
| 115 } |
| 116 c.style.height = currh + (dist * d) + 'px'; |
| 117 c.style.opacity = currh / c.maxh; |
| 118 c.style.filter = 'alpha(opacity=' + (currh * 100 / c.maxh) + ')'; |
| 119 if((currh < 2 && d != 1) || (currh > (c.maxh - 2) && d == 1)){ |
| 120 clearInterval(c.timer); |
| 121 } |
| 122 } |
| 123 |
| 124 </script> |
| 125 |
| 126 <style> |
| 127 .menu{ |
| 128 width:717px; |
| 129 height:65px; |
| 130 |
| 131 } |
| 132 .links div{ |
| 133 float:left;} |
| 134 .dropdown { |
| 135 |
| 136 background:9966ff; |
| 137 color:#eee; |
| 138 border-left:1px solid #fff; |
| 139 font-family:BOOK ANTIQUA; |
| 140 font-size:14px; |
| 141 margin: 0; |
| 142 padding:0px;} |
| 143 |
| 144 .dropdown dt:hover { |
| 145 background:9999ff; |
| 146 } |
| 147 |
| 148 .dropdown dt { |
| 149 |
| 150 cursor:pointer;} |
| 151 .dropdown dd { |
| 152 position:absolute; |
| 153 overflow:hidden; |
| 154 display:none; |
| 155 background:9966ff; |
| 156 z-index:1000; |
| 157 opacity:.5; |
| 158 margin:0 0 0 20px; |
| 159 border-left:2px solid #620000; |
| 160 border-right:2px solid #620000} |
| 161 |
| 162 .dropdown ul { |
| 163 width:100px; |
| 164 list-style:none; |
| 165 margin:0; |
| 166 padding: 0; |
| 167 z-index:900;} |
| 168 .dropdown li { |
| 169 display:block; |
| 170 width: 100px; |
| 171 margin: 0; |
| 172 padding: 5px; |
| 173 border-bottom:2px solid #620000;} |
| 174 .dropdown li a{ |
| 175 float:none; |
| 176 width:auto; |
| 177 padding: 0; |
| 178 width:100px} |
| 179 |
| 180 .dropdown a:hover { |
| 181 color:#FFFF00;} |
| 182 |
| 183 a{ |
| 184 color:blue; |
| 185 font-family:BOOK ANTIQUA; |
| 186 font-size:15px; |
| 187 text-decoration: none; |
| 188 padding-left:23px; |
| 189 padding-right:23px; |
| 190 } |
| 191 a:hover { |
| 192 background:9999ff; |
| 193 color:#000 |
| 194 } |
| 195 </style> |
| 196 |
| 197 <body> |
| 198 <div align=center class="headerMembers"> |
| 199 <!-- menu starts here --> |
| 200 <div class="menu"> |
| 201 <div class="links"> |
| 202 <body> |
| 203 <H2 align=center><font color="background:9900CC"> Chrome Release testing dashboa
rd </font></h2> |
| 204 <div> |
| 205 <br> |
| 206 </div> |
| 207 <div> |
| 208 <dl class="dropdown"> |
| 209 <dt id="one-ddheader" onmouseover="ddMenu('one',1)" onmouseout="ddMenu
('one',-1)"><a>Register new feature</a></dt> |
| 210 <dd id="one-ddcontent" onmouseover="cancelHide('one')" onmouseout="ddM
enu('one',-1)"> |
| 211 <ul> |
| 212 <li><a href="registerfeature.jsp">Chrome</a></li> |
| 213 <li><a href="">Chrome Frame</a></li> |
| 214 </ul> |
| 215 </dd> |
| 216 </dl> |
| 217 </div> |
| 218 |
| 219 |
| 220 <div> |
| 221 <dl class="dropdown"> |
| 222 <dt id="two-ddheader" onmouseover="ddMenu('two',1)" onmouseout="ddMenu
('two',-1)"><a>Submit Status</a></dt> |
| 223 <dd id="two-ddcontent" onmouseover="cancelHide('two')" onmouseout="ddM
enu('two',-1)"> |
| 224 <ul> |
| 225 <li><a href="SubmitStatus-Windows.jsp">Windows</a></li> |
| 226 <li><a href="SubmitStatus-Mac.jsp">Mac</a></li> |
| 227 <li><a href="SubmitStatus-Linux.jsp">Linux</a></li> |
| 228 <li><a href="">Chrome Frame </a></li> |
| 229 </ul> |
| 230 </dd> |
| 231 </dl> |
| 232 </div> |
| 233 |
| 234 <div> |
| 235 <dl class="dropdown"> |
| 236 <dt id="three-ddheader" onmouseover="ddMenu('three',1)" onmouseout="dd
Menu('three',-1)"><a>View Status</a></dt> |
| 237 <dd id="three-ddcontent" onmouseover="cancelHide('three')" onmouseout=
"ddMenu('three',-1)"> |
| 238 <ul> |
| 239 <li><a href="TestingStatus-query.jsp">Windows</a></li> |
| 240 <li><a href="TestingStatus-query-Mac.jsp">Mac</a></li> |
| 241 <li><a href="TestingStatus-query-Linux.jsp">Linux</a></li> |
| 242 <li><a href="">Chrome Frame </a></li> |
| 243 </ul> |
| 244 </dd> |
| 245 </dl> |
| 246 </div> |
| 247 |
| 248 <div> |
| 249 <dl class="dropdown"> |
| 250 <dt id="four-ddheader" onmouseover="ddMenu('four',1)" onmouseout="ddMe
nu('four',-1)"><a>Release Blockers</a></dt> |
| 251 <dd id="four-ddcontent" onmouseover="cancelHide('four')" onmouseout="d
dMenu('four',-1)"> |
| 252 <ul> |
| 253 <li><a href="Release-blockers.jsp?channel=Dev">Dev</a></li> |
| 254 <li><a href="Release-blockers.jsp?channel=Beta">Beta</a></li> |
| 255 <li><a href="Release-blockers.jsp?channel=Stable">Stable</a></
li> |
| 256 <li><a href="">ChromeFrame-Dev</a></li> |
| 257 <li><a href="">ChromeFrame-Beta</a></li> |
| 258 </ul> |
| 259 </dd> |
| 260 </dl> |
| 261 </div> |
| 262 <div style="background:9966ff;border-left:1px solid #fff;"><a href="calendar.jsp
">Calendar</a></div> |
| 263 |
| 264 </body> |
| 265 </div> |
| 266 </div> |
| 267 </div> |
| 268 </html> |
| 269 |
| 270 <BODY style="background:CCCCFF;font-family:BOOK ANTIQUA"> |
| 271 |
| 272 |
| 273 <form id='mainForm1' action="" method="post"> |
| 274 |
| 275 <table align=center style=" width:50%; height:50%"><tr><td align=center> |
| 276 <tr><td style=" height:100%; width:100%;"><iframe id="show_blockers" src="http:/
/code.google.com/p/chromium/issues/list?can=2&q=ReleaseBlock-<%= request.getPara
meter("channel")%>" |
| 277 scrolling="auto" style="border:1px solid green; width:100%; height:100%;" /> |
| 278 </tr></td></table> |
| 279 </form> |
| 280 |
| 281 |
| 282 |
| 283 |
| 284 |
| 285 </body> |
| 286 </html> |
OLD | NEW |