Changeset 9500 for trunk/MagicSoft
- Timestamp:
- 08/21/09 13:50:48 (15 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r9499 r9500 24 24 - added functions needed for mcinfo.php 25 25 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 26 31 27 32 -
trunk/MagicSoft/Mars/NEWS
r9498 r9500 106 106 management, more comfortable sequence selection, 'get data set' 107 107 button and other small features 108 109 * added limit for cloudiness for sequences in the tab 'Limits' 108 110 109 111 ;automation: -
trunk/MagicSoft/Mars/datacenter/db/magicdefs.php
r9498 r9500 62 62 "fMaxHumLimit" => "fMaxHumidity", 63 63 "fRelTimeMaxLimit" => "fEffOnTime/fRunTime", 64 "fCloudinessLimit" => "fAvgCloudiness", 64 65 ); 65 66 … … 355 356 "fIMCLimit" => "IMC", 356 357 "fMaxHumLimit" => "Humidity", 358 "fCloudinessLimit" => "Cloudiness", 357 359 "fZdMinLimit" => "ZdMin", 358 360 "fZdMaxLimit" => "ZdMax", -
trunk/MagicSoft/Mars/datacenter/db/menu.php
r9499 r9500 1342 1342 $_GET["fMaxHumLimit2"]=""; 1343 1343 1344 if (empty($_GET["fCloudinessLimit1"])) 1345 $_GET["fCloudinessLimit1"]="40"; 1346 1347 if (empty($_GET["fCloudinessLimit2"])) 1348 $_GET["fCloudinessLimit2"]="50"; 1349 1344 1350 //values that differ for different data 1345 1351 if (empty($_GET["fPSFLimitMean"])) -
trunk/MagicSoft/Mars/datacenter/db/sequinfo-aio.php
r9498 r9500 280 280 } 281 281 282 function InitGet( $_GET)282 function InitGet() 283 283 { 284 284 // Find out whether it is the first call to the php script … … 324 324 $_GET["fOnlySum"]=$first?"Off":""; 325 325 326 InitFindOffData($ _GET, $first);326 InitFindOffData($first); 327 327 } 328 328 … … 436 436 $environment = sizeof($_GET); 437 437 438 InitGet( $_GET);438 InitGet(); 439 439 if (empty($_GET["fPrintTable"])) 440 440 PrintForm($_GET, $host, $user, $pw, $db, $limitsmean, $limitsmin, $limitsmax, $alias);
Note:
See TracChangeset
for help on using the changeset viewer.