2008-07-10 Evi Vanoost <vanooste@rcbi.rochester.edu>
* pandora_console/operation/agentes/estado_grupo.php: Fixed some extra spaces that made the URL look ugly * pandora_console/operation/agentes/status_monitor.php: Made a nested SQL query out of the flagging operation, much faster now. There is still a bug here that I was trying to fix. Everything is 0-ed on this page. I will find out why tomorrow * pandora_console/images/console/background: Added some backgrounds * pandora_server/pandora_server_installer: Some typos that made some things fail and fixed the wheel/root thing for debian/non-debian distro's git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@950 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
|
@ -1,3 +1,12 @@
|
|||
2008-07-10 Evi Vanoost <vanooste@rcbi.rochester.edu>
|
||||
|
||||
* pandora_console/operation/agentes/estado_grupo.php: Fixed some extra spaces that made the URL look ugly
|
||||
|
||||
* pandora_console/operation/agentes/status_monitor.php: Made a nested SQL query out of the flagging operation, much faster now.
|
||||
There is still a bug here that I was trying to fix. Everything is 0-ed on this page. I will find out why tomorrow
|
||||
|
||||
* pandora_console/images/console/background: Added some backgrounds
|
||||
|
||||
2008-07-10 Sancho Lerena <slerena@gmail.com>
|
||||
|
||||
* include/styles/pandora_red.css: Updated.
|
||||
|
|
After Width: | Height: | Size: 122 KiB |
After Width: | Height: | Size: 66 KiB |
After Width: | Height: | Size: 56 KiB |
After Width: | Height: | Size: 35 KiB |
After Width: | Height: | Size: 679 KiB |
After Width: | Height: | Size: 22 KiB |
After Width: | Height: | Size: 71 KiB |
|
@ -31,17 +31,11 @@ echo "<h2>".$lang_label["ag_title"]." > ".$lang_label["group_view"]."</h2>";
|
|||
|
||||
// Update network modules for this group
|
||||
// Check for Network FLAG change request
|
||||
// Made it a subquery, much faster on both the database and server side
|
||||
if (isset ($_GET["update_netgroup"])) {
|
||||
if (give_acl ($id_user, $_GET["update_netgroup"], "AW") == 1) {
|
||||
$sql = "SELECT * FROM tagente WHERE id_grupo = ".
|
||||
$_GET["update_netgroup"];
|
||||
$result = mysql_query ($sql);
|
||||
while ($row = mysql_fetch_array ($result)) {
|
||||
$id_agente = $row["id_agente"];
|
||||
$query2 ="UPDATE tagente_modulo SET flag=1
|
||||
WHERE id_agente = ".$id_agente;
|
||||
$res = mysql_query ($query2);
|
||||
}
|
||||
$sql = sprintf ("UPDATE tagente_modulo SET `flag` = '1' WHERE `id_agente` = ANY(SELECT id_agente FROM tagente WHERE `id_grupo` = '%d')",$_GET["update_netgroup"]);
|
||||
mysql_query ($sql);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -220,10 +220,7 @@ if ($counter > 0){
|
|||
echo "<a href='index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=".$data["id_agente"]."&id_agente_modulo=".$data[0]."&flag=1&tab=data&refr=60'>";
|
||||
echo "<img src='images/target.png'></a>";
|
||||
echo "</td><td class='$tdcolor'>";
|
||||
echo "<b><a href='index.php?sec=estado&
|
||||
sec2=operation/agentes/ver_agente&
|
||||
id_agente=".$data[5]."'>".
|
||||
strtoupper(substr($data[1],0,21))."</a></b>";
|
||||
echo "<b><a href='index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=".$data[5]."'>".strtoupper(substr($data[1],0,21))."</a></b>";
|
||||
echo "</td><td class='$tdcolor'>";
|
||||
echo "<img src='images/".show_icon_type($data[6])."' border=0></td>";
|
||||
echo "<td class='$tdcolor'>". substr($data[2],0,21). "</td>";
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
2008-07-10 Evi Vanoost <vanooste@rcbi.rochester.edu>
|
||||
|
||||
* pandora_server_installer: Some typos
|
||||
|
||||
2008-07-08 Sancho Lerena <slerena@gmail.com>
|
||||
|
||||
* pandora_server: An event is generated if a BAD XML is detected.
|
||||
|
|
|
@ -49,7 +49,7 @@ else
|
|||
chown -R pandora /home/pandora
|
||||
fi
|
||||
mkdir /var/log/pandora
|
||||
chown pandora:wheel /var/spool/pandora/data_in
|
||||
chown pandora:wheel /var/spool/pandora/data_in > /dev/null 2>&1 || chown pandora:root /var/spool/pandora/data_in
|
||||
chmod 770 /var/spool/pandora/data_in
|
||||
mkdir /etc/pandora
|
||||
if [ -e /etc/pandora/pandora_server.conf ]; then
|
||||
|
@ -93,7 +93,6 @@ else
|
|||
|
||||
mkdir /usr/share/pandora
|
||||
cp -R util /usr/share/pandora
|
||||
cp -R plugin /usr/share/pandora
|
||||
if [ -d /etc/cron.daily ]
|
||||
then
|
||||
echo "perl /usr/share/pandora/util/pandora_db /etc/pandora/pandora_server.conf" > /etc/cron.daily/pandora_purge_db
|
||||
|
|