2011-05-30 Junichi Satoh <junichi@rworks.jp>
* operation/agentes/datos_agente.php: Replaced format_data with modules_format_data. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4386 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
34e89a3d94
commit
5c9bb32da8
|
@ -1,3 +1,8 @@
|
||||||
|
2011-05-30 Junichi Satoh <junichi@rworks.jp>
|
||||||
|
|
||||||
|
* operation/agentes/datos_agente.php: Replaced format_data with
|
||||||
|
modules_format_data.
|
||||||
|
|
||||||
2011-05-26 Vanessa Gil <vanessa.gil@artica.es>
|
2011-05-26 Vanessa Gil <vanessa.gil@artica.es>
|
||||||
|
|
||||||
* godmode/agentes/module_manager_editor.php: Removed unit var.
|
* godmode/agentes/module_manager_editor.php: Removed unit var.
|
||||||
|
|
|
@ -70,7 +70,7 @@ if ($moduletype_name == "log4x") {
|
||||||
$columns = array(
|
$columns = array(
|
||||||
|
|
||||||
"Timestamp" => array("utimestamp", "modules_format_timestamp", "align" => "center" ),
|
"Timestamp" => array("utimestamp", "modules_format_timestamp", "align" => "center" ),
|
||||||
"Sev" => array("severity", "format_data", "align" => "center", "width" => "70px"),
|
"Sev" => array("severity", "modules_format_data", "align" => "center", "width" => "70px"),
|
||||||
"Message" => array("message", "modules_format_verbatim", "align" => "left", "width" => "45%"),
|
"Message" => array("message", "modules_format_verbatim", "align" => "left", "width" => "45%"),
|
||||||
"StackTrace" => array("stacktrace", "modules_format_verbatim", "align" => "left", "width" => "50%")
|
"StackTrace" => array("stacktrace", "modules_format_verbatim", "align" => "left", "width" => "50%")
|
||||||
);
|
);
|
||||||
|
@ -80,7 +80,7 @@ if ($moduletype_name == "log4x") {
|
||||||
|
|
||||||
$columns = array(
|
$columns = array(
|
||||||
"Timestamp" => array("utimestamp", "modules_format_timestamp", "align" => "center"),
|
"Timestamp" => array("utimestamp", "modules_format_timestamp", "align" => "center"),
|
||||||
"Data" => array("datos", "format_data", "align" => "center"),
|
"Data" => array("datos", "modules_format_data", "align" => "center"),
|
||||||
"Time" => array("utimestamp", "modules_format_time", "align" => "center")
|
"Time" => array("utimestamp", "modules_format_time", "align" => "center")
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
|
@ -88,7 +88,7 @@ if ($moduletype_name == "log4x") {
|
||||||
|
|
||||||
$columns = array(
|
$columns = array(
|
||||||
"Timestamp" => array("utimestamp", "modules_format_timestamp", "align" => "center"),
|
"Timestamp" => array("utimestamp", "modules_format_timestamp", "align" => "center"),
|
||||||
"Data" => array("datos", "format_data", "align" => "center"),
|
"Data" => array("datos", "modules_format_data", "align" => "center"),
|
||||||
"Time" => array("utimestamp", "modules_format_time", "align" => "center")
|
"Time" => array("utimestamp", "modules_format_time", "align" => "center")
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue