- Timestamp:
- 12/17/07 17:07:22 (17 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r8791 r8792 18 18 19 19 -*-*- END OF LINE -*-*- 20 21 2007/12/17 Daniela Dorner 22 23 * datacenter/db/culminating.php: 24 - fixed bug (, was missing in call of PrintSubmittedQuery) 25 26 * datacenter/db/statussbs.php: 27 - fixed bug (link Sequ was wrong, removed fExcludedFDAKEY) 28 29 * datacenter/db/sequinfo-aio.php: 30 - change in link to runs: before all runs in the range between 31 fSequenceFirst and fSequenceLast were included in the link, now 32 only the runs belonging to the sequence are displayed 33 34 20 35 21 36 2007/12/14 Daniela Dorner -
trunk/MagicSoft/Mars/datacenter/db/culminating.php
r8180 r8792 235 235 mysql_close($db_id); 236 236 237 PrintSubmittedQuery($query0, $html, $db "old"); 238 } 239 237 PrintSubmittedQuery($query0, $html, $db, "old"); 238 } 240 239 include ("include.php"); 241 240 include ("db.php"); -
trunk/MagicSoft/Mars/datacenter/db/sequinfo-aio.php
r8768 r8792 48 48 else 49 49 { 50 $query0 .= " CONCAT('<A&ws;HREF=\"runinfo-aio.php?', 'fRunStart=On', '&fZenithDistance=On', '&fRunMin=', Sequences.fSequenceFirst, '&fMeanTriggerRate=On', '&fTest=On', '&fRunTypeName=On', '&fRunMax=', fSequenceLast, '&fNumEvents=On', '&fSourceName=On&', 'fExcludedFDAKEY=1', '&fSequenceFirst=On', '&fRawFileAvail=On', '&fCCFileAvail=On', '&fCaCoFileAvail=On', '&fNumResults=500\">', Sequences.fSequenceFirst, '</A>') "; 50 //old version using fRunMin, fRunMax 51 //$query0 .= " CONCAT('<A&ws;HREF=\"runinfo-aio.php?', 'fRunStart=On', '&fZenithDistance=On', '&fRunMin=', Sequences.fSequenceFirst, '&fMeanTriggerRate=On', '&fTest=On', '&fRunTypeName=On', '&fRunMax=', fSequenceLast, '&fNumEvents=On', '&fSourceName=On&', 'fExcludedFDAKEY=1', '&fSequenceFirst=On', '&fRawFileAvail=On', '&fCCFileAvail=On', '&fCaCoFileAvail=On', '&fNumResults=500\">', Sequences.fSequenceFirst, '</A>') "; 52 //new version using fSequenceNo 53 $query0 .= " CONCAT('<A&ws;HREF=\"runinfo-aio.php?', 'fRunStart=On', '&fZenithDistance=On', '&fSequenceNo=', Sequences.fSequenceFirst, '&fMeanTriggerRate=On', '&fTest=On', '&fRunTypeName=On', '&fNumEvents=On', '&fSourceName=On&', 'fExcludedFDAKEY=1', '&fSequenceFirst=On', '&fRawFileAvail=On', '&fCCFileAvail=On', '&fCaCoFileAvail=On', '&fNumResults=500\">', Sequences.fSequenceFirst, '</A>') "; 51 54 $query0 .= " as " . $alias["fSequenceFirst"]; 52 55 if (!empty($_GET["fLinks"])) -
trunk/MagicSoft/Mars/datacenter/db/statussbs.php
r8180 r8792 27 27 { 28 28 $query0 .= " CONCAT( fDate , ': <A&ws;HREF=\"index.php?', 'fRunStart=On', '&fZenithDistance=On', '&fMeanTriggerRate=On', '&fRunTypeName=On', '&fNumEvents=On', '&fSourceName=On&', 'fExcludedFDAKEY=1', '&fSequenceFirst=On', '&fStartDate=', fDate, '&fStopDate=', fDate, '&fNumResults=500\">Runs</A> ' , "; 29 $query0 .= " ' <A&ws;HREF=\"queryseq.php?', 'fRunStart=On', '&fZenithDistanceMin=On', '&fNumEvents=On', '&fSourceName=On&', ' fExcludedFDAKEY=1', '&fStartDate=', fDate, '&fStopDate=', fDate, '&fNumResults=500\">Sequ</A> ') ";29 $query0 .= " ' <A&ws;HREF=\"queryseq.php?', 'fRunStart=On', '&fZenithDistanceMin=On', '&fNumEvents=On', '&fSourceName=On&', '&fStartDate=', fDate, '&fStopDate=', fDate, '&fNumResults=500\">Sequ</A> ') "; 30 30 } 31 31 $query0 .= " as 'Date' ";
Note:
See TracChangeset
for help on using the changeset viewer.