Changeset 9500 for trunk


Ignore:
Timestamp:
08/21/09 13:50:48 (15 years ago)
Author:
Daniela Dorner
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r9499 r9500  
    2424     - added functions needed for mcinfo.php
    2525
     26   * datacenter/db/menu.php, datacenter/db/magicdefs.php:
     27     - added limit for cloudiness
     28
     29   * datacenter/db/sequinfo-aio.php:
     30     - removed $_GET from some functions
    2631
    2732
  • trunk/MagicSoft/Mars/NEWS

    r9498 r9500  
    106106     management, more comfortable sequence selection, 'get data set'
    107107     button and other small features
     108
     109   * added limit for cloudiness for sequences in the tab 'Limits'
    108110
    109111 ;automation:
  • trunk/MagicSoft/Mars/datacenter/db/magicdefs.php

    r9498 r9500  
    6262     "fMaxHumLimit"      => "fMaxHumidity",
    6363     "fRelTimeMaxLimit"  => "fEffOnTime/fRunTime",
     64     "fCloudinessLimit"  => "fAvgCloudiness",
    6465    );
    6566
     
    355356     "fIMCLimit"                        => "IMC",
    356357     "fMaxHumLimit"                     => "Humidity",
     358     "fCloudinessLimit"                 => "Cloudiness",
    357359     "fZdMinLimit"                      => "ZdMin",
    358360     "fZdMaxLimit"                      => "ZdMax",
  • trunk/MagicSoft/Mars/datacenter/db/menu.php

    r9499 r9500  
    13421342        $_GET["fMaxHumLimit2"]="";
    13431343
     1344    if (empty($_GET["fCloudinessLimit1"]))
     1345        $_GET["fCloudinessLimit1"]="40";
     1346
     1347    if (empty($_GET["fCloudinessLimit2"]))
     1348        $_GET["fCloudinessLimit2"]="50";
     1349
    13441350    //values that differ for different data
    13451351    if (empty($_GET["fPSFLimitMean"]))
  • trunk/MagicSoft/Mars/datacenter/db/sequinfo-aio.php

    r9498 r9500  
    280280    }
    281281
    282     function InitGet($_GET)
     282    function InitGet()
    283283    {
    284284        // Find out whether it is the first call to the php script
     
    324324            $_GET["fOnlySum"]=$first?"Off":"";
    325325
    326         InitFindOffData($_GET, $first);
     326        InitFindOffData($first);
    327327    }
    328328
     
    436436        $environment = sizeof($_GET);
    437437
    438         InitGet($_GET);
     438        InitGet();
    439439        if (empty($_GET["fPrintTable"]))
    440440            PrintForm($_GET, $host, $user, $pw, $db, $limitsmean, $limitsmin, $limitsmax, $alias);
Note: See TracChangeset for help on using the changeset viewer.