2011-02-09 Miguel de Dios <miguel.dedios@artica.es>

* pandoradb.postgreSQL.sql: added first version of schema of Pandora DB for
	PostgreSQL.
	
	* extensions/resource_registration.php: added lost lines of my previous
	commit on this file. 



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3815 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2011-02-09 14:16:27 +00:00
parent b772c95f09
commit ad7273e4c5
3 changed files with 1070 additions and 3 deletions

View File

@ -1,3 +1,11 @@
2011-02-09 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.postgreSQL.sql: added first version of schema of Pandora DB for
PostgreSQL.
* extensions/resource_registration.php: added lost lines of my previous
commit on this file.
2011-02-09 Javier Lanz <javier.lanz@artica.es>
* include/functions_reportings.php: Added functionality to show only

View File

@ -113,6 +113,7 @@ function resource_registration_extension_main() {
$namespace = safe_input((string)$componentElement->namespace);
$wmi_user = safe_input((string)$componentElement->wmi_user);
$wmi_password = safe_input((string)$componentElement->wmi_password);
$post_process = safe_input((float)$componentElement->post_process);
$idComponent = false;
switch ((int)$componentElement->module_source) {
@ -170,7 +171,8 @@ function resource_registration_extension_main() {
'min_ff_event' => $ff_treshold,
'custom_string_1' => $custom_string_1,
'custom_string_2' => $custom_string_2,
'custom_string_3' => $custom_string_3));
'custom_string_3' => $custom_string_3,
'post_process' => $post_process));
if ((bool)$idComponent) {
$components[] = $idComponent;
}
@ -202,7 +204,8 @@ function resource_registration_extension_main() {
'min_ff_event' => $ff_treshold,
'custom_string_1' => $custom_string_1,
'custom_string_2' => $custom_string_2,
'custom_string_3' => $custom_string_3));
'custom_string_3' => $custom_string_3,
'post_process' => $post_process));
if ((bool)$idComponent) {
$components[] = $idComponent;
}
@ -236,7 +239,8 @@ function resource_registration_extension_main() {
'min_ff_event' => $ff_treshold,
'custom_string_1' => $custom_string_1,
'custom_string_2' => $custom_string_2,
'custom_string_3' => $custom_string_3));
'custom_string_3' => $custom_string_3,
'post_process' => $post_process));
if ((bool)$idComponent) {
$components[] = $idComponent;
}

File diff suppressed because it is too large Load Diff