Parent Directory
|
Revision Log
new template file: gw.template for gateway tests
1 <!DOCTYPE html 2 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 3 SYSTEM "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 4 5 <!-- 6 ################################################################################ 7 # WeBWorK Online Homework Delivery System 8 # Copyright © 2000-2003 The WeBWorK Project, http://openwebwork.sf.net/ 9 # $CVSHeader: webwork2/conf/templates/ur.template,v 1.29.2.2 2004/07/26 15:11:16 gage Exp $ 10 # 11 # This program is free software; you can redistribute it and/or modify it under 12 # the terms of either: (a) the GNU General Public License as published by the 13 # Free Software Foundation; either version 2, or (at your option) any later 14 # version, or (b) the "Artistic License" which comes with this package. 15 # 16 # This program is distributed in the hope that it will be useful, but WITHOUT 17 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 18 # FOR A PARTICULAR PURPOSE. See either the GNU General Public License or the 19 # Artistic License for more details. 20 ################################################################################ 21 --> 22 23 <html xmlns="http://www.w3.org/1999/xhtml" lang="en-US"> 24 <head> 25 <title><!--#path style="text" text=" : " textonly="1"--></title> 26 <!--#head--> 27 <style type="text/css"> 28 29 /********************/ 30 /* template classes */ 31 /********************/ 32 33 body { margin: 0px; } 34 35 /* left table cell, contains logo and menus */ 36 td.LeftPanel { background-color: #003366; color: white; white-space: nowrap; width: 1em; } 37 td.LeftPanel a:link, 38 td.LeftPanel a:visited { color: #FF9933; } 39 40 div.Logo { } 41 div.Links { font-size: small; } 42 div.Siblings { font-size: small; } 43 div.Options { font-size: small; } 44 45 /* top table cell, contains login message and path */ 46 td.TopPanel { background-color: #003366; color: white; height: 1; } 47 td.TopPanel a:link, 48 td.TopPanel a:visited { color: #FF9933; } 49 50 51 *.LoginStatus { text-align: right; font-size: small; position:absolute; right: 0; } 52 td.Timestamp { text-align: left; font-size: small; font-style: italic; } 53 54 *.Path { } 55 56 /* main content panel, contains body */ 57 td.ContentPanel { background-color: white; color: black; } 58 td.ContentPanel a:link, 59 td.ContentPanel a:visited { color: blue; } 60 td.ContentPanel a:active { color: red; } 61 62 /* contains info */ 63 td.InfoPanel { background-color: #DDDDDD; color: black; width: 15% } 64 td.InfoPanel a:link, 65 td.InfoPanel a:visited { color: blue; } 66 td.InfoPanel a:active { color: red; } 67 68 div.Info { } 69 div.Nav { } 70 div.Title { font-size: 16pt; } 71 div.SubmitError { color: red; font-style: italic; } 72 div.Message { font-style: italic; } 73 div.Body { } 74 div.Warnings { } 75 76 /* background colors for success and failure messages */ 77 div.ResultsWithoutError { background-color: #66ff99 } /* light green */ 78 div.ResultsWithError { background-color: #ffcccc } /* light red */ 79 80 /* text colors for published and unpublished sets */ 81 font.Published { font-style: normal; font-weight: bold; color: #000000; } /* black */ 82 font.Unpublished { font-style: italic; font-weight: normal; color: #aaaaaa; } /* light grey */ 83 84 /* text colors for Auditing, Current, and Dropped students */ 85 div.Audit { font-style: normal; color: black; } 86 div.Enrolled { font-weight: bold; color: black; } 87 div.Drop { font-style: italic; color: grey; } 88 89 /*******************/ 90 /* general classes */ 91 /*******************/ 92 93 p.emphasis { font-style:italic; } 94 95 /************************/ 96 /* new standard classes */ 97 /************************/ 98 99 /* tables used for laying out form fields shouldn't have a border */ 100 table.FormLayout { border: 0; } 101 table.FormLayout tr { vertical-align: top; } 102 table.FormLayout th.LeftHeader { text-align: right; white-space: nowrap; } 103 table.FormLayout tr.ButtonRow { text-align: left; } 104 table.FormLayout tr.ButtonRowCenter { text-align: center; } 105 106 /* for problems which are rendered by themselves, e.g., by Set Maker */ 107 div.RenderSolo { background-color: #E0E0E0; color: black; } 108 109 /* minimal style for lists of links (generated by the links escape) */ 110 ul.LinksMenu { list-style: none; margin-left: 0; padding-left: 0; } 111 ul.LinksMenu ul { list-style: none; margin-left: 0.5em; padding-left: 0; } 112 113 /*************************/ 114 /* WeBWorK::HTML widgets */ 115 /*************************/ 116 117 /* WeBWorK::HTML::ScrollingRecordList */ 118 div.ScrollingRecordList { padding: 1em; white-space: nowrap; border: thin solid gray; } 119 div.ScrollingRecordList select.ScrollingRecordList { width: 99%; } 120 121 /*************************************************************************/ 122 /* classes used in Problem.pm (replace these with new standard classes?) */ 123 /*************************************************************************/ 124 125 table.attemptResults { 126 border-style: outset; 127 border-width: 1px; 128 margin: 0px 10pt; 129 border-spacing: 1px; 130 } 131 table.attemptResults td, 132 table.attemptResults th { 133 border-style: inset; 134 border-width: 1px; 135 text-align: center; 136 width: 15ex; 137 background-color: #DDDDDD; 138 } 139 div.problemHeader { float: left; } 140 div.problem { clear: both; background-color: #E0E0E0; color: black; } 141 .parsehilight { background-color:yellow; } 142 143 </style> 144 145 <style type="text/css"> 146 /******************/ 147 /* gateway styles */ 148 /******************/ 149 150 div.gwMessage { background-color:#dddddd; color: black; } 151 div.gwTiming { background-color:#ddddff; color: black; } 152 div.gwWarning { background-color:#ffffdd; color: black; } 153 154 span.resultsWithError { background-color: #ffcccc; color: black; } 155 span.resultsWithoutError { background-color: #66ff99; color: black; } 156 div.gwCorrect { background-color: #66ff99; color: black; } 157 div.gwIncorrect { background-color: #ff9999; color: black; } 158 159 div.gwProblem { 160 clear: both; 161 background-color: #E0E0E0; 162 color: black; 163 padding: 3px; 164 border: solid black 1px; 165 } 166 div.gwSoln { 167 /* background-color: #e0e0ff; */ 168 background-color: transparent; 169 color: black; 170 /* padding: 2px; */ 171 /* border: dashed black 1px; */ 172 } 173 div.gwSoln b { color: navy; } 174 175 p.gwPreview { 176 font-size: smaller; 177 text-align: right; 178 margin-top: 0px; 179 margin-bottom: 0px; 180 } 181 182 table.gwAttemptResults { 183 border-width: 0px; 184 } 185 table.gwAttemptResults td.label { 186 font-weight: bold; 187 background-color: transparent; 188 color: navy; 189 } 190 table.gwAttemptResults td.output { 191 padding: 2px; 192 border: solid black 1px; 193 background-color: #eeeeee; 194 } 195 196 </style> 197 <script language="javascript" type="text/javascript"> 198 function jumpTo(ref) { 199 if ( ref ) { 200 if ( navigator.appName == "Netscape" && 201 parseFloat(navigator.appVersion) < 5 ) { 202 var xpos = document.anchors[ref].x; 203 var ypos = document.anchors[ref].y; 204 } else { 205 var xpos = document.anchors[ref].offsetLeft; 206 var ypos = document.anchors[ref].offsetTop; 207 } 208 if ( window.scrollTo == null ) { // cover for anyone 209 window.scroll(xpos,ypos); // lacking js1.2 210 } else { 211 window.scrollTo(xpos,ypos); 212 } 213 } 214 return false; // prevent link from being followed 215 } 216 </script> 217 </head> 218 <body> 219 <table width="100%" cellpadding="10" cellspacing="0" border="0"> 220 <tr valign="top"> 221 <!-- removed left sidebar --> 222 <!--#if can="info"--> 223 <td class="TopPanel" colspan="2"> 224 <!--#else--> 225 <td class="TopPanel" > 226 <!--#endif--> 227 <div style="position:relative; width:100%;"> 228 <!--#if can="path"--> 229 <span class="Path"> 230 <!--#path style="text" image="/webwork2_files/images/right_arrow.png" text=" > "--> 231 </span> 232 <!--#endif--> 233 234 <!--#if loggedin="1"--> 235 <!--#if can="loginstatus"--> 236 237 <span class="LoginStatus"> 238 239 <!--#loginstatus--> 240 </span> 241 <!--#endif--> 242 <!--#endif--> 243 </div> 244 </td> 245 </tr> 246 <tr valign="top"> 247 <!--#if warnings="1"--> 248 <td class="ContentPanelError" bgcolor="#ffcccc"> 249 <!--#else--> 250 <td class="ContentPanel" bgcolor="#ffffff"> 251 <!--#endif--> 252 <!-- removed nav button to go up --> 253 <!--#if can="title"--> 254 <div class="Title"> 255 <!--#title--> 256 </div> 257 <!--#endif--> 258 <!--#if can="message"--> 259 <div class="Message"> 260 <!--#message--> 261 </div> 262 <!--#endif--> 263 264 <!--#if can="submiterror"--> 265 <div class="SubmitError"> 266 <!--#submiterror--> 267 </div> 268 <!--#endif--> 269 <!--#if can="body"--> 270 <div class="Body"> 271 <!--#body--> 272 </div> 273 <!--#endif--> 274 <!--#if warnings="1"--> 275 <hr> 276 <div class="Warnings"> 277 <!--#warnings--> 278 </div> 279 <!--#endif--> 280 <!--#if can="message"--> 281 <div class="Message"> 282 <!--#message--> 283 </div> 284 <!--#endif--> 285 </td> 286 <!--#if can="info"--> 287 <td class="InfoPanel"> 288 <div class="Info"> 289 <!--#info--> 290 </div> 291 </td> 292 <!--#endif--> 293 </tr> 294 <tr> 295 <td class = "Timestamp", colspan=3> 296 Updated: <!--#timestamp--> 297 </td> 298 </tr> 299 </table> 300 </body> 301 </html>
| aubreyja at gmail dot com | ViewVC Help |
| Powered by ViewVC 1.0.9 |