Ignore:
Timestamp:
02/28/06 20:23:38 (19 years ago)
Author:
Daniela Dorner
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/datacenter/db/dbstatus.php

    r7527 r7546  
    222222
    223223        if (empty($_GET["fAllFilesAvailStatus"]))
    224             $_GET["fAllFilesAvailStatus"]="4";
     224            $_GET["fAllFilesAvailStatus"]="7";
    225225
    226226        if (empty($_GET["fCallisto"]))
     
    228228
    229229        if (empty($_GET["fCallistoStatus"]))
    230             $_GET["fCallistoStatus"]="4";
     230            $_GET["fCallistoStatus"]="7";
    231231
    232232        if (empty($_GET["fFillCallisto"]))
     
    240240
    241241        if (empty($_GET["fStarStatus"]))
    242             $_GET["fStarStatus"]="4";
     242            $_GET["fStarStatus"]="7";
    243243
    244244        if (empty($_GET["fFillStar"]))
     
    249249    }
    250250
    251     function PrintForm($_GET, $db)
     251    function PrintForm($_GET, $host, $user, $pw, $db)
    252252    {
    253253        printf("<center>\n");
     
    272272        printf(" <table>\n");
    273273        printf("  <tr><td>\n");
    274         PrintPullDown($db, "Source",      "fSourceName",      "fSourceKEY", "Source Name");
     274        PrintPullDown($host, $user, $pw, $db, "Source",      "fSourceName",      "fSourceKEY", "Source Name");
    275275        printf("  </td><td>\n");
    276276
     
    285285
    286286        if (empty($_GET["fStartDate"]))
    287             $timemin = GetMin("fRunStart", "Sequences", $db);
     287            $timemin = GetMin("fRunStart", "Sequences", $host, $user, $pw, $db);
    288288        else
    289289            $timemin = $_GET["fStartDate"];
    290290
    291291        if (empty($_GET["fStopDate"]))
    292             $timemax = GetMax("fRunStart", "Sequences", $db);
     292            $timemax = GetMax("fRunStart", "Sequences", $host, $user, $pw, $db);
    293293        else
    294294            $timemax = $_GET["fStopDate"];
     
    298298
    299299        if (empty($_GET["fRunMin"]))
    300             $min = GetMin("fSequenceFirst", "Sequences", $db);
     300            $min = GetMin("fSequenceFirst", "Sequences", $host, $user, $pw, $db);
    301301        else
    302302            $min = $_GET["fRunMin"];
    303303
    304304        if (empty($_GET["fRunMax"]))
    305             $max = GetMax("fSequenceFirst", "Sequences", $db);
     305            $max = GetMax("fSequenceFirst", "Sequences", $host, $user, $pw, $db);
    306306        else
    307307            $max = $_GET["fRunMax"];
     
    318318
    319319        printf("<input class='Width' type='submit' value='Query Table'>&nbsp;&nbsp;&nbsp;\n");
    320         printf("<input class='Width' type='button' value='Reset' onClick='self.location.href=\"sequinfo.php\"'>&nbsp;&nbsp;&nbsp;\n");
     320        printf("<input class='Width' type='button' value='Reset' onClick='self.location.href=\"dbstatus.php\"'>&nbsp;&nbsp;&nbsp;\n");
    321321        if (strchr($_SERVER["REQUEST_URI"], '?')!=FALSE)
    322322            printf("<input class='Width' type='button' value='Get .txt' onClick='self.location.href=\"%s&fSendTxt=1\"'>&nbsp;&nbsp;&nbsp;\n", $_SERVER["REQUEST_URI"]);
     
    331331    }
    332332
    333     function PrintPage($html, $db, $needs)
    334     {
    335         $db_id = mysql_connect("hercules.astro.uni-wuerzburg.de", "MAGIC", "d99swMT!");
     333    function PrintPage($html, $host, $user, $pw, $db, $needs)
     334    {
     335        $db_id = mysql_connect($host, $user, $pw);
    336336        if ($db_id==FALSE)
    337337        {
     
    375375    include ("include.php");
    376376    include ("db.php");
     377    include ("magicdefs.php");
    377378
    378379    ini_set("display_errors", "On");
     
    384385        header("Content-Disposition: attachment; filename=query-result.txt");
    385386
    386         PrintPage("0", $db);
     387        PrintPage("0", $host, $user, $pw, $db);
    387388    }
    388389    else
     
    394395        InitGet($_GET);
    395396        if (empty($_GET["fPrintTable"]))
    396             PrintForm($_GET, $db);
     397            PrintForm($_GET, $host, $user, $pw, $db);
    397398
    398399        if ($environment==0)
     
    401402        {
    402403            if (empty($_GET["fPrintTable"]))
    403                 PrintPage("1", $db, $needs);
     404                PrintPage("1", $host, $user, $pw, $db, $needs);
    404405            else
    405                 PrintPage("2", $db, $needs);
     406                PrintPage("2", $host, $user, $pw, $db, $needs);
    406407        }
    407408
Note: See TracChangeset for help on using the changeset viewer.