Changeset 6240
- Timestamp:
- 08/21/08 17:46:56 (5 months ago)
- Location:
- trunk/centreon/www/include/monitoring
- Files:
-
- 4 modified
-
engine/makeXMLForOneHost.php (modified) (2 diffs)
-
engine/makeXMLForOneService.php (modified) (2 diffs)
-
status/status-ndo/templates/popupForHost.xsl (modified) (1 diff)
-
status/status-ndo/templates/popupForService.xsl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/centreon/www/include/monitoring/engine/makeXMLForOneHost.php
r6237 r6240 20 20 $buffer = ''; 21 21 22 include_once ("@CENTREON_ETC@/centreon.conf.php");23 include_once ($centreon_path . "www/class/other.class.php");24 include_once ($centreon_path . "www/DBconnect.php");25 include_once ($centreon_path . "www/DBNDOConnect.php");26 include_once ($centreon_path . "www/include/common/common-Func-ACL.php");27 include_once ($centreon_path . "www/include/common/common-Func.php");22 include_once "@CENTREON_ETC@/centreon.conf.php"; 23 include_once $centreon_path . "www/class/other.class.php"; 24 include_once $centreon_path . "www/DBconnect.php"; 25 include_once $centreon_path . "www/DBNDOConnect.php"; 26 include_once $centreon_path . "www/include/common/common-Func-ACL.php"; 27 include_once $centreon_path . "www/include/common/common-Func.php"; 28 28 29 29 $ndo_base_prefix = getNDOPrefix(); … … 37 37 } else 38 38 get_error('need session identifiant !'); 39 40 /*41 * Get Acl Group list42 */43 44 $grouplist = getGroupListofUser($pearDB);45 $groupnumber = count($grouplist);46 39 47 40 (isset($_GET["host_id"]) && !check_injection($_GET["host_id"])) ? $host_id = htmlentities($_GET["host_id"]) : $host_id = "0"; -
trunk/centreon/www/include/monitoring/engine/makeXMLForOneService.php
r6237 r6240 20 20 $buffer = ''; 21 21 22 include_once ("@CENTREON_ETC@/centreon.conf.php");23 include_once ($centreon_path . "www/class/other.class.php");24 include_once ($centreon_path . "www/DBconnect.php");25 include_once ($centreon_path . "www/DBNDOConnect.php");26 include_once ($centreon_path . "www/include/common/common-Func-ACL.php");27 include_once ($centreon_path . "www/include/common/common-Func.php");22 include_once "/etc/cen/centreon.conf.php"; 23 include_once $centreon_path . "www/class/other.class.php"; 24 include_once $centreon_path . "www/DBconnect.php"; 25 include_once $centreon_path . "www/DBNDOConnect.php"; 26 include_once $centreon_path . "www/include/common/common-Func-ACL.php"; 27 include_once $centreon_path . "www/include/common/common-Func.php"; 28 28 29 29 $ndo_base_prefix = getNDOPrefix(); … … 39 39 get_error('need session identifiant !'); 40 40 41 /*42 * Get Acl Group list43 */44 45 $grouplist = getGroupListofUser($pearDB);46 $groupnumber = count($grouplist);47 48 41 (isset($_GET["svc_id"]) && !check_injection($_GET["svc_id"])) ? $svc_id = htmlentities($_GET["svc_id"]) : $svc_id = "0"; 49 42 (isset($_GET["enable"]) && !check_injection($_GET["enable"])) ? $enable = htmlentities($_GET["enable"]) : $enable = "enable"; -
trunk/centreon/www/include/monitoring/status/status-ndo/templates/popupForHost.xsl
r6238 r6240 2 2 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> 3 3 <xsl:template match="//reponse"> 4 <table >4 <table style="padding:5px;margin:5px;"> 5 5 <tr class="ListHeaderPopup"> 6 6 <td class="ColPopup"><xsl:value-of select="hostname"/></td> -
trunk/centreon/www/include/monitoring/status/status-ndo/templates/popupForService.xsl
r6238 r6240 2 2 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> 3 3 <xsl:template match="//reponse"> 4 <table >4 <table style="padding:5px;margin:5px;"> 5 5 <tr class="ListHeaderPopup"> 6 6 <td class="ColPopup"><xsl:value-of select="hostname"/></td>
