Changeset 7827 for trunk


Ignore:
Timestamp:
Apr 18, 2010, 2:00:42 PM (15 years ago)
Author:
janveeden
Message:

Gebruiker and beheerder view are now different. Beheerder view shows all info, gebruiker only a bit of info. Fixed typo in kmlHandler.php. Added a Math.random to calls to node_info.php to prevent unwanted caching.

Location:
trunk/src/map
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/map/inc/kmlHandler.php

    r7815 r7827  
    5959                                        $type = $data->value;
    6060                                       
    61                                 if($name == "hostname")
     61                                if($name == "hostName")
    6262                                        $hostname = $data->value;
    6363                                       
     
    6767                                if($name == "checkExecutionTime")
    6868                                        $checkExecutionTime = $data->value;
     69                                       
     70                                if($name == "lastCheck")
     71                                        $lastCheck = $data->value;
    6972                                       
    7073                                if($name == "currentState")
  • trunk/src/map/inc/node_info.php

    r7823 r7827  
    55{
    66        setcookie("view", $_GET['view']);
     7        header('P3P: CP="IDC DSP COR CURa ADMa OUR IND PHY ONL COM STA"');
    78        $view = $_GET['view'];
    89}
     
    5657                        $name = $marker['name'];
    5758                        $location = $marker['location'];
     59                        $status = $marker['status'];
     60                        $interfaces = $marker['interfaces'];
     61                        $masterIP = $marker['masterIP'];
     62                        $nodeType = $marker['nodeType'];
     63                        $type = $marker['type'];
     64                        $hostname = $marker['hostname'];
     65                        $hasBeenChecked = $marker['hasBeenChecked'];
     66                        $checkExecutionTime = $marker['checkExecutionTime'];
     67                        $currentState = $marker['currentState'];
     68                        $problemHasBeenAcknowledged = $marker['problemHasBeenAcknowledged'];
     69                       
     70                        $lastcheck = $marker['lastCheck'];
     71                        $lastcheck = date('d-m-Y H:i:s', (int)$lastcheck);
     72
    5873                }
    5974        }
     
    6479                echo <<<EOF
    6580                <div id='nodeinfo'>
    66                 {$name}<br/>
    67                 Locatie: {$location}
     81                <b>{$name}</b>
     82                        <div id="information">
     83                        <p>Locatie: {$location}
     84                        <p>Status: {$status}
     85                        <p>Inferfaces: {$interfaces}
     86                        <p>Master IP: {$masterIP}
     87                        <p>Node type: {$nodeType}
     88                        <p>Type: {$type}
     89                        <p>Hostname: {$hostname}
     90                        <p>Has been check: {$hasBeenChecked}
     91                        <p>Check execution time: {$checkExecutionTime}
     92                        <p>Current state: {$currentState}
     93                        <p>Problem has been acknowledged: {$problemHasBeenAcknowledged}
    6894                </div>
    6995                <div id="timestamp">
    70                         Laatste update: 15:42 <br/>
    71                         Do 25 maart
     96                        Laatste update: {$lastcheck}   
    7297                </div>
    7398EOF;
     
    77102                echo <<<EOF
    78103                <div id='nodeinfo'>
    79                 {$name}<br/>
    80                 Locatie: {$location}
     104                <b>{$name}</b>
     105                        <div id="information">
     106                        <p>Locatie: {$location}
     107                        <p>Status: {$status}
     108                        <p>Type: {$type}
     109                        <p>Hostname: {$hostname}
    81110                </div>
    82111                <div id="timestamp">
     
    93122        echo <<<EOF
    94123        <div id="nodeinfo">
    95                 <h1>Nodes:</h1>
    96                 <h2>
     124                <b>Nodes:</b><br/>
     125       
    97126                Lijst met nodes in deze cluster<br/>
    98127                <div id="clusterlist$selected" >
     
    105134
    106135        echo <<<EOF
    107                 </select><br/>
     136                </select>
    108137                </div>
    109                 </h2>
    110         </div>
    111         <div id="timestamp">
    112                 Laatste update: 15:42 <br/>
    113                 Do 25 maart
    114138        </div>
    115139EOF;
  • trunk/src/map/inc/nodemapWL.js

    r7826 r7827  
    100100                markerSelected = marker;
    101101                marker.setImage("../img/sleutelGroenSelected.png");//Path should be in config
    102                 loadXMLDoc("inc/node_info.php?type=single&name="+name+""); //Should also be in config   
     102                loadXMLDoc("inc/node_info.php?type=single&name="+name+"&a="+Math.random()); //Should also be in config 
    103103        }
    104104}
     
    114114                map.addOverlay(polygon);
    115115               
    116                 loadXMLDoc("inc/node_info.php?type=single&name="+name+"");//Path should be in config
     116                loadXMLDoc("inc/node_info.php?type=single&name="+name+"&a="+Math.random());//Path should be in config
    117117
    118118                /*
     
    221221        //end
    222222       
    223         loadXMLDoc("inc/node_info.php?type=cluster&markers="+a_php+"&sel=selected")
     223        loadXMLDoc("inc/node_info.php?type=cluster&markers="+a_php+"&sel=selected"+"&a="+Math.random())
    224224}
    225225
     
    356356function suggestMarkers(value)
    357357{
    358         loadSuggest("inc/suggestions.php?value="+value);
     358        loadSuggest("inc/suggestions.php?value="+value+"&a="+Math.random());
    359359}
    360360
     
    368368                {
    369369                        map.setCenter(markerArray[i].getLatLng(), 15);
    370                         loadXMLDoc("inc/node_info.php?type=single&name="+value+"")
     370                        loadXMLDoc("inc/node_info.php?type=single&name="+value+"&a="+Math.random())
    371371                }
    372372        }
  • trunk/src/map/style/stylesheet.css

    r7757 r7827  
    1818
    1919#infotop {
     20padding-top: 5px;
    2021border: 2px solid black;
    2122height: 243px;
    2223width: 100%;
     24font-size: 12px;
    2325}
    2426
     
    4648
    4749#infotop h1 {
    48 font-size: 15px;
     50font-size: 12px;
    4951margin-top: 5px;
    5052}
    5153
    5254#infotop h2 {
    53 font-size: 12px;
     55font-size: 10px;
    5456margin-top: 0px;
    5557}
    5658
    5759#nodeinfo {
    58 height: 205px;
     60height: 200px;
    5961margin-left: 5px;
     62}
     63
     64#information {
     65height: 100%;
     66overflow: auto;
    6067}
    6168
  • trunk/src/map/style/stylesheet2.css

    r7715 r7827  
    1212
    1313#infotop {
    14 height: 230px;
     14height: 245px;
     15}
     16
     17#clusterlist {
     18margin-top: 5px;
     19overflow: hidden;
     20height: 130px;
     21}
     22
     23#clusterlist select {
     24width: 100%;
     25height: 115px;
    1526}
    1627
Note: See TracChangeset for help on using the changeset viewer.