Changeset 8599 for trunk


Ignore:
Timestamp:
06/23/07 19:15:28 (17 years ago)
Author:
Daniela Dorner
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r8592 r8599  
    1818
    1919                                                 -*-*- END OF LINE -*-*-
     20
     21 2007/06/23 Daniela Dorner
     22
     23   * datacenter/db/index.html:
     24     - added link to showplots-seq.php
     25     - added link to builddatasets.php
     26
     27   * datacenter/db/showplots-seq.php:
     28     - added (analog to shoeplots-ds, but instead of dataset number a
     29       sequence range and/or a source name can be chosen)
     30
     31   * datacenter/db/plotinclude.php:
     32     - added function to print pull-down menu for type in showplots*.php
     33
     34   * datacenter/db/showplots.php:
     35     - moved getting of plotname out of if-clauses
     36
     37   * datacenter/db/showplots-ds.php:
     38     - added check if datasetfile is existing
     39
     40   * datacenter/db/showplots-ds.php, datacenter/db/showplots.php:
     41     - added comments
     42     - added home-button
     43     - added reset-button
     44     - changed choosing of type from input field to pull-down menu and
     45       implemented function for this pulldown
     46
     47
    2048
    2149 2007/06/22 Thomas Bretz
  • trunk/MagicSoft/Mars/datacenter/db/index.html

    r8421 r8599  
    4444<li><A HREF="sources.php">Sources - list of sources</A> (possibility to ex/include test- and off-sources)</li>
    4545<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>
    4649</ul>
    4750<p>
     
    5356<li><A HREF="showplots.php">All plots of one sequence</A>: click through all calib, signal and star plot of one sequence</li>
    5457<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>
    5559</ul>
    5660<p>
  • trunk/MagicSoft/Mars/datacenter/db/plotinclude.php

    r8464 r8599  
    158158}
    159159
    160 //functions for showplots.php and showplots2.php
     160//functions for showplots*.php
    161161function gettypename($type2)
    162162{
     
    186186}
    187187
     188function 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
    188200?>
Note: See TracChangeset for help on using the changeset viewer.