/dev/adei-asec

To get this branch, use:
bzr branch http://darksoft.org/webbzr/dev/adei-asec

« back to all changes in this revision

Viewing changes to setups/test/config.php

  • Committer: Suren A. Chilingaryan
  • Date: 2014-01-25 16:38:03 UTC
  • Revision ID: csa@dside.dyndns.org-20140125163803-mhmpyk4dpzz7qabw
Detach setups

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?php
2
 
$TITLE = "";
3
 
$MODULES = array("config", "slowcontrol", "alarms", "graph", "wiki");
4
 
 
5
 
 
6
 
$EXPORT_FORMATS = array (
7
 
        "csv" => array(
8
 
            'title' => "CSV",
9
 
        ),
10
 
        "xls" => array(
11
 
            'title' => "Excel",
12
 
            'handler' => "EXCEL",
13
 
        )
14
 
);
15
 
 
16
 
 
17
 
$READER_DB_TOSKA = array(
18
 
        "test_zeus" => array(
19
 
            "title" => _("ZEUS Test Server"),
20
 
            "reader" => "ZEUSController",
21
 
            "driver" => "odbc",
22
 
            "sqldrv" => "mssql",
23
 
            "subdrv" => "FreeTDS",
24
 
//          "host" => "192.168.26.202",
25
 
//          "port" => 10387,
26
 
            "host" => "ipepdvzeus.ka.fzk.de",
27
 
            "port" => 1433,
28
 
            "user" => "zeus",
29
 
            "password" => 'zeus',
30
 
            "database" => array("cfp_test"),
31
 
            "timeout" => 1500000,       // us, should be pretty big to receive updated values
32
 
            "ping" => true,             // host and port should be specified
33
 
//          "control_host" => "192.168.26.202",
34
 
            "control_host" => "ipepdvzeus.ka.fzk.de",
35
 
            "control_port" => 12345
36
 
        )
37
 
);
38
 
 
39
 
if (is_array($READER_DB)) $READER_DB = array_merge($READER_DB_TOSKA, $READER_DB);
40
 
else $READER_DB = $READER_DB_TOSKA;
41
 
 
42
 
$OPTIONS["test_zeus"] = array(
43
 
            "optimize_empty_cache" => true,
44
 
            "ignore_invalid_data" => true,
45
 
//          "timestamp_channels" => true,
46
 
            "min_resolution" => 3600
47
 
);
48
 
 
49
 
 
50
 
// Enable in release
51
 
#    $SOURCE_KEEP_WINDOW = true;
52
 
 
53
 
?>
 
 
b'\\ No newline at end of file'