Changeset 28688
- Timestamp:
- Jul 19, 2010, 11:06:08 AM (16 years ago)
- Location:
- trunk/ippMonitor
- Files:
-
- 3 added
- 6 edited
-
Makefile.in (modified) (2 diffs)
-
raw/columns_in_db.php (modified) (2 diffs)
-
raw/getimage.php (modified) (1 diff)
-
raw/ipp.css (modified) (11 diffs)
-
raw/ipp.php (modified) (1 diff)
-
raw/ipp.science.dat (modified) (1 diff)
-
raw/noimage.png (added)
-
raw/warpProcessedExp.php (added)
-
raw/warpProcessedExp_Images.php (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippMonitor/Makefile.in
r28654 r28688 62 62 $(DESTWWW)/plotHistogram.php \ 63 63 $(DESTWWW)/columns_in_db.php \ 64 $(DESTWWW)/cleanTmpDirectory.php 64 $(DESTWWW)/cleanTmpDirectory.php \ 65 $(DESTWWW)/warpProcessedExp_Images.php \ 66 $(DESTWWW)/warpProcessedExp.php 65 67 66 68 DEFSRC = \ … … 211 213 $(DESTWWW)/up.png \ 212 214 $(DESTWWW)/up_sel.png \ 213 $(DESTWWW)/missing.png 215 $(DESTWWW)/missing.png \ 216 $(DESTWWW)/noimage.png 214 217 215 218 DESTLINK = $(DESTWWW)/index.php -
trunk/ippMonitor/raw/columns_in_db.php
r28669 r28688 131 131 $values = array(); 132 132 while ($qry->fetchInto($row)) { 133 #print "[".$row[0]."]<br>\n";133 // print "[".$row[0]."]<br>\n"; 134 134 foreach ($row as $index => $value) { 135 135 if ($index == 0) { … … 138 138 } 139 139 } 140 #print count($values)."<br>\n";140 // print count($values)."<br>\n"; 141 141 asort($values); 142 #print count($values)."<br>\n";142 // print count($values)."<br>\n"; 143 143 foreach ($values as $index => $value) { 144 #echo " ".$count." => ".$value."<br>"; 145 $line .= "<option value=\"$value\">$count => $value</option>\n"; 144 // echo " ".$count." => ".$value."<br>"; 145 // $line .= "<option value=\"$value\">$count => $value</option>\n"; 146 $line .= "<option value=\"$value\">$value</option>\n"; 146 147 $count++; 147 148 } -
trunk/ippMonitor/raw/getimage.php
r28654 r28688 36 36 } 37 37 38 #$basename may contain filename@filerule38 // $basename may contain filename@filerule 39 39 $basename = $_GET[name]; 40 if ($basename == "noimage.noimage") { 41 $file = fopen ("noimage.png", "r");//$MISSING? 42 if ($file && !$debug) { 43 # do I need to use image/jpg? can I modify this to image/png, etc, based on the type? 44 header ('Content-Type: image/jpg'); 45 fpassthru ($file); 46 } 47 exit (); 48 } 40 49 $filerule = $_GET[rule]; 41 50 $camera = $_GET[camera]; -
trunk/ippMonitor/raw/ipp.css
r18193 r28688 5 5 */ 6 6 7 body { bgcolor: #a0d0e0; background-color: #a0d0e0; padding: 5px; margin: 5px } 8 9 a:link, a:visited, a:active { text-decoration: underline; font-weight: bold; color: #ff0000 } 10 11 a.button { text-decoration: none; font-weight: bold; color: #000000; background: #0080c0} 12 a.menutop { text-decoration: none; font-weight: bold; color: #ffffff} 13 a.menutops { text-decoration: none; font-weight: bold; color: #80f0ff} 14 a.menuext { text-decoration: none; font-weight: bold; color: #ffffff} 15 a.menulink { text-decoration: none; font-weight: normal; color: #000000} 16 a.menuselect { text-decoration: none; font-weight: normal; color: #0000ff} 17 a.piclink { text-decoration: none; font-weight: normal; color: #0080c0} 18 19 td.menutop { text-align: left; background: #0080c0; font-size: small; color: #ffffff; padding: 2px; } 20 td.menutops { text-align: left; background: #0080c0; font-size: small; color: #000000; padding: 2px; } 21 td.menuext { text-align: left; background: #303070; font-size: small; color: #ffffff; padding: 2px; } 22 td.menulink { text-align: left; background: #d0d0ff; font-size: small; color: #000000; padding: 2px; font-weight: normal; text-indent: 0px; } 23 td.menuselect { text-align: left; background: #d0d0ff; font-size: small; color: #ff0000; padding: 2px; font-weight: normal; text-indent: 0px; } 24 td.menuline { text-align: left; background: #d0d0ff; font-size: small; color: #000000; padding: 2px; font-weight: normal; text-indent: 0px; } 25 26 td.picture { text-align: left; background: #00ffff; font-size: small; color: #ff0000; padding: 0px; text-indent: 2px; font-weight: normal; } 27 td.piclink { text-align: left; background: #0080c0; font-size: small; color: #ff0000; padding: 0px; text-indent: 0px; font-weight: normal; } 28 29 table.page { border: 0px solid #0080c0; background: #a0d0e0; padding: 0px} 30 31 td.title { background-color: #ff0000; padding: 5px; font-size: x-large; text-align: left; vertical-align: top} 7 body { 8 background-color: #a0d0e0; 9 padding: 5px; 10 margin: 5px 11 } 12 13 a:link, a:visited, a:active { 14 text-decoration: underline; 15 font-weight: bold; 16 color: #ff0000 17 } 18 19 a.button { 20 text-decoration: none; 21 font-weight: bold; 22 color: #000000; 23 background: #0080c0 24 } 25 a.menutop { 26 text-decoration: none; 27 font-weight: bold; 28 color: #ffffff 29 } 30 a.menutops { 31 text-decoration: none; 32 font-weight: bold; 33 color: #80f0ff 34 } 35 a.menuext { 36 text-decoration: none; 37 font-weight: bold; 38 color: #ffffff 39 } 40 a.menulink { 41 text-decoration: none; 42 font-weight: normal; 43 color: #000000 44 } 45 a.menuselect { 46 text-decoration: none; 47 font-weight: normal; 48 color: #0000ff 49 } 50 a.piclink { 51 text-decoration: none; 52 font-weight: normal; 53 color: #0080c0 54 } 55 56 td.menutop { 57 text-align: left; 58 background: #0080c0; 59 font-size: small; 60 color: #ffffff; 61 padding: 2px; 62 } 63 td.menutops { 64 text-align: left; 65 background: #0080c0; 66 font-size: small; 67 color: #000000; 68 padding: 2px; 69 } 70 td.menuext { 71 text-align: left; 72 background: #303070; 73 font-size: small; 74 color: #ffffff; 75 padding: 2px; 76 } 77 td.menulink { 78 text-align: left; 79 background: #d0d0ff; 80 font-size: small; 81 color: #000000; 82 padding: 2px; 83 font-weight: normal; 84 text-indent: 0px; 85 } 86 td.menuselect { 87 text-align: left; 88 background: #d0d0ff; 89 font-size: small; 90 color: #ff0000; 91 padding: 2px; 92 font-weight: normal; 93 text-indent: 0px; 94 } 95 td.menuline { 96 text-align: left; 97 background: #d0d0ff; 98 font-size: small; 99 color: #000000; 100 padding: 2px; 101 font-weight: normal; 102 text-indent: 0px; 103 } 104 105 td.picture { 106 text-align: left; 107 background: #00ffff; 108 font-size: small; 109 color: #ff0000; 110 padding: 0px; 111 text-indent: 2px; 112 font-weight: normal; 113 } 114 td.piclink { 115 text-align: left; 116 background: #0080c0; 117 font-size: small; 118 color: #ff0000; 119 padding: 0px; 120 text-indent: 0px; 121 font-weight: normal; 122 } 123 124 table.page { 125 border: 0px solid #0080c0; 126 background: #a0d0e0; 127 padding: 0px 128 } 129 130 td.title { 131 background-color: #ff0000; 132 padding: 5px; 133 font-size: x-large; 134 text-align: left; 135 vertical-align: top 136 } 32 137 33 138 td.body { 34 139 text-align: left; 35 font-size: normal;140 font-size: small; 36 141 font-weight: normal; 37 142 vertical-align: top; … … 42 147 } 43 148 44 table.menu { text-align: left; 45 font-size: small; 46 font-weight: normal; 47 background: #ff0000; 48 border: 3px solid #0080c0; 49 padding: 0px; 50 } 51 52 table.select { text-align: left; 53 font-size: small; 54 font-weight: normal; 55 background: #0080c0; 56 border: 1px solid #0080c0; 57 padding: 0px; 149 table.menu { 150 text-align: left; 151 font-size: small; 152 font-weight: normal; 153 background: #ff0000; 154 border: 3px solid #0080c0; 155 padding: 0px; 156 } 157 158 table.select { 159 text-align: left; 160 font-size: small; 161 font-weight: normal; 162 background: #0080c0; 163 border: 1px solid #0080c0; 164 padding: 0px; 58 165 } 59 166 60 167 td.select { 61 text-align: left;62 font-size: normal;63 font-weight: bold;64 vertical-align: top;65 color: #ffffff;66 background: #0080c0;67 background-color: #0080c0;68 border: 2px solid #0080c0;69 padding: 2px;168 text-align: left; 169 font-size: small; 170 font-weight: bold; 171 vertical-align: top; 172 color: #ffffff; 173 background: #0080c0; 174 background-color: #0080c0; 175 border: 2px solid #0080c0; 176 padding: 2px; 70 177 } 71 178 72 179 th.select { 73 180 text-align: left; 74 font-size: normal;181 font-size: small; 75 182 font-weight: bold; 76 183 vertical-align: top; … … 92 199 td.list { 93 200 text-align: left; 94 font-size: normal;201 font-size: small; 95 202 font-weight: normal; 96 203 vertical-align: top; … … 103 210 td.list_off { 104 211 text-align: left; 105 font-size: normal;212 font-size: small; 106 213 font-weight: normal; 107 214 vertical-align: top; … … 114 221 td.list_drop { 115 222 text-align: left; 116 font-size: normal;223 font-size: small; 117 224 font-weight: normal; 118 225 vertical-align: top; … … 125 232 td.list_run { 126 233 text-align: left; 127 font-size: normal;234 font-size: small; 128 235 font-weight: normal; 129 236 vertical-align: top; … … 136 243 td.det_off { 137 244 text-align: left; 138 font-size: normal;245 font-size: small; 139 246 font-weight: normal; 140 247 vertical-align: top; … … 147 254 td.det_drop { 148 255 text-align: left; 149 font-size: normal;256 font-size: small; 150 257 font-weight: normal; 151 258 vertical-align: top; … … 158 265 td.det_add { 159 266 text-align: left; 160 font-size: normal;267 font-size: small; 161 268 font-weight: normal; 162 269 vertical-align: top; … … 169 276 th.list { 170 277 text-align: left; 171 font-size: normal;278 font-size: small; 172 279 font-weight: bold; 173 280 vertical-align: top; … … 178 285 } 179 286 287 td.ul2x2 { 288 text-align: right; 289 vertical-align: bottom; 290 padding: 0px; 291 text-indent: 0px; 292 } 293 td.ur2x2 { 294 text-align: left; 295 vertical-align: bottom; 296 padding: 0px; 297 text-indent: 0px; 298 } 299 td.ll2x2 { 300 text-align: right; 301 vertical-align: top; 302 padding: 0px; 303 text-indent: 0px; 304 } 305 td.lr2x2 { 306 text-align: left; 307 vertical-align: top; 308 padding: 0px; 309 text-indent: 0px; 310 } -
trunk/ippMonitor/raw/ipp.php
r28616 r28688 273 273 } 274 274 275 function head ($title) { 276 echo "<head>\n"; 277 echo " <title> $title </title>\n"; 278 /* JavaScript code */ 279 echo " <script type=\"text/javascript\">\n"; 280 echo " function changeCell(cellId, newContent){\n"; 281 echo " document.getElementById(cellId).innerHTML=newContent;\n"; 282 echo " }\n"; 283 echo " </script>\n"; 284 echo "</head>\n\n"; 285 } 286 275 287 function menu ($source, $title, $sheet, $append, $project) { 276 288 277 echo "<html><head><title> $title </title></head>\n\n"; 289 echo "<html>\n"; 290 head($title); 278 291 echo "<link rel=\"STYLESHEET\" HREF=\"$sheet\">\n"; 279 292 echo "<body>\n"; -
trunk/ippMonitor/raw/ipp.science.dat
r28654 r28688 33 33 menulink | menuselect | link | Warp Summary | warpSummary.php 34 34 menulink | menuselect | link | Warp Stage Exp | warpStageExp.php 35 menulink | menuselect | link | Warp Processed Exp | warpProcessedExp.php 36 menulink | menuselect | link | Warp Processed Exp w/ Skycell Images | warpProcessedExp_Images.php 35 37 menulink | menuselect | link | Warp Stage Skyfiles | warpStageSkyfiles.php 36 38 menulink | menuselect | link | Warp Skyfile Inputs | warpStageSkyfileInputs.php
Note:
See TracChangeset
for help on using the changeset viewer.
