Changeset 8599 for trunk/MagicSoft/Mars/datacenter/db
- Timestamp:
- 06/23/07 19:15:28 (18 years ago)
- Location:
- trunk/MagicSoft/Mars/datacenter/db
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/datacenter/db/index.html
r8421 r8599 44 44 <li><A HREF="sources.php">Sources - list of sources</A> (possibility to ex/include test- and off-sources)</li> 45 45 <li><A HREF="statussbs.php">Sequence Build Status</A>: querying only the information from the table SequenceBuildStatus </li> 46 <li><A HREF="builddatasets.php">Build Datasets</A>: webtool to build datasets for the automatic analysis 47 (for more information mail to: <a href='mailto:datacenter@astro.uni-wuerzburg.de'>datacenter@a...</a>)</li> 48 </li> 46 49 </ul> 47 50 <p> … … 53 56 <li><A HREF="showplots.php">All plots of one sequence</A>: click through all calib, signal and star plot of one sequence</li> 54 57 <li><A HREF="showplots-ds.php">All plots of one dataset</A>: click through all sequences of one dataset (all plots of calib, signal and star can be viewed)</li> 58 <li><A HREF="showplots-seq.php">All plots of one source / sequence range</A>: similar to the previous one, but the sequences are not given by a dataset, but by choosing a source and/or a sequence range. </li> 55 59 </ul> 56 60 <p> -
trunk/MagicSoft/Mars/datacenter/db/plotinclude.php
r8464 r8599 158 158 } 159 159 160 //functions for showplots .php and showplots2.php160 //functions for showplots*.php 161 161 function gettypename($type2) 162 162 { … … 186 186 } 187 187 188 function PrintType2Pulldown($type2) 189 { 190 $types=array("calib", "signal", "star"); 191 printf("<select name='type2'>\n"); 192 foreach($types as $t => $typename) 193 if ($type2==$typename) 194 printf("<option value='%s' selected>%s </option>\n", $type2, $type2); 195 else 196 printf("<option value='%s'>%s </option>\n", $typename, $typename); 197 print("</select>\n"); 198 } 199 188 200 ?>
Note:
See TracChangeset
for help on using the changeset viewer.