Changeset 7621 for trunk/MagicSoft
- Timestamp:
- 03/21/06 04:53:46 (19 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r7620 r7621 26 26 * datacenter/db/ganymed.php: 27 27 - added zd angle range and observation period 28 29 * datacenter/db/sequencE.php: 30 - added rel. ontime 28 31 29 32 -
trunk/MagicSoft/Mars/datacenter/db/sequence.php
r7578 r7621 31 31 $query0 .= " fPSF, fRatio, fMuonRate, ";//43,44,45 32 32 $query0 .= " fMuonNumber, fEffOnTime, fDataRate, ";//46,47,48 33 $query0 .= " fMaxHumidity, fMeanNumberIslands, fInhomogeneity, ";//49,50,5134 $query0 .= " CONCAT('<a href=\"http://www.astro.uni-wuerzburg.de/datacenter/callisto/' , LEFT(LPAD(CONCAT(Sequences.fSequenceFirst, '.'), 9,'0'),4), '/', LPAD(CONCAT(Sequences.fSequenceFirst, '/'), 9,'0'), 'callisto', LPAD(CONCAT(Sequences.fSequenceFirst , '.html'), 13,'0') , '\">cal-log</A>') as 'CalLink', ";//5 235 $query0 .= " CONCAT('<a href=\"http://www.astro.uni-wuerzburg.de/datacenter/star/' , LEFT(LPAD(CONCAT(Sequences.fSequenceFirst, '.'), 9,'0'),4), '/', LPAD(CONCAT(Sequences.fSequenceFirst, '/'), 9,'0'), 'star', LPAD(CONCAT(Sequences.fSequenceFirst , '.html'), 13,'0') , '\">star-log</A>') as 'StarLink', ";//5 336 $query0 .= " CONCAT('<a href=\"http://www.astro.uni-wuerzburg.de/datacenter/sequences/' , LEFT(LPAD(CONCAT(Sequences.fSequenceFirst, '.'), 9,'0'),4), '/sequence', LPAD(CONCAT(Sequences.fSequenceFirst , '.txt'), 12,'0') , '\">', 'sequ-file</a>') as 'SequLink' ";//5 433 $query0 .= " fMaxHumidity, fMeanNumberIslands, fInhomogeneity, fEffOnTime/fRunTime, ";//49,50,51,52 34 $query0 .= " CONCAT('<a href=\"http://www.astro.uni-wuerzburg.de/datacenter/callisto/' , LEFT(LPAD(CONCAT(Sequences.fSequenceFirst, '.'), 9,'0'),4), '/', LPAD(CONCAT(Sequences.fSequenceFirst, '/'), 9,'0'), 'callisto', LPAD(CONCAT(Sequences.fSequenceFirst , '.html'), 13,'0') , '\">cal-log</A>') as 'CalLink', ";//53 35 $query0 .= " CONCAT('<a href=\"http://www.astro.uni-wuerzburg.de/datacenter/star/' , LEFT(LPAD(CONCAT(Sequences.fSequenceFirst, '.'), 9,'0'),4), '/', LPAD(CONCAT(Sequences.fSequenceFirst, '/'), 9,'0'), 'star', LPAD(CONCAT(Sequences.fSequenceFirst , '.html'), 13,'0') , '\">star-log</A>') as 'StarLink', ";//54 36 $query0 .= " CONCAT('<a href=\"http://www.astro.uni-wuerzburg.de/datacenter/sequences/' , LEFT(LPAD(CONCAT(Sequences.fSequenceFirst, '.'), 9,'0'),4), '/sequence', LPAD(CONCAT(Sequences.fSequenceFirst , '.txt'), 12,'0') , '\">', 'sequ-file</a>') as 'SequLink' ";//55 37 37 38 38 $query0 .= " FROM Sequences "; … … 279 279 $meannumislands=mysql_result($result0, $i, 50); 280 280 $inhom=mysql_result($result0, $i, 51); 281 $callink=mysql_result($result0, $i, 52); 282 $starlink=mysql_result($result0, $i, 53); 283 $sequlink=mysql_result($result0, $i, 54); 281 $relontime=mysql_result($result0, $i, 52); 282 $callink=mysql_result($result0, $i, 53); 283 $starlink=mysql_result($result0, $i, 54); 284 $sequlink=mysql_result($result0, $i, 55); 284 285 285 286 printf("<tr><td>"); … … 456 457 printf(" <table BORDER=\"1\">"); 457 458 printf(" <tr BGCOLOR='#C0C0C0'>"); 458 printf(" <th colspan=\" 8\">star</th>\n");459 printf(" <th colspan=\"9\">star</th>\n"); 459 460 printf(" </tr><tr BGCOLOR='#D0D0D0' ALIGN='center'>"); 460 461 printf(" <td># islands</td>\n"); … … 466 467 printf(" <td>psf</td>\n"); 467 468 printf(" <td>inhom</td>\n"); 469 printf(" <td>rel. ontime</td>\n"); 468 470 printf(" <tr BGCOLOR='#E0E0E0' ALIGN='right'>"); 469 471 printf(" <td> %s </td>\n", $meannumislands); … … 475 477 printf(" <td> %smm </td>\n", $psf); 476 478 printf(" <td> %s </td>\n", $inhom); 479 printf(" <td> %s </td>\n", $relontime); 477 480 printf(" </tr>"); 478 481 printf(" </table>");
Note:
See TracChangeset
for help on using the changeset viewer.