2012-12-03 Juan Manuel Ramon <juanmanuel.ramon@artica.es>

* pandoradb_data.sql
	 pandoradb.data.postgreSQL.sql
	 pandoradb.data.oracle.sql: Added meta_num_elements token in tconfig
	 to support metaconsole views with a lot of elements.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7222 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
juanmanuelr 2012-12-03 14:47:27 +00:00
parent eb90c6b7e6
commit d657f0fd0e
4 changed files with 12 additions and 2 deletions

View File

@ -1,3 +1,10 @@
2012-12-03 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
* pandoradb_data.sql
pandoradb.data.postgreSQL.sql
pandoradb.data.oracle.sql: Added meta_num_elements token in tconfig
to support metaconsole views with a lot of elements.
2012-12-03 Juan Manuel Ramon <juanmanuel.ramon@artica.es> 2012-12-03 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
* include/functions_reporting.php: Added agent statistics for * include/functions_reporting.php: Added agent statistics for

View File

@ -105,6 +105,7 @@ INSERT INTO tconfig (token, value) VALUES ('enable_pass_history', 0);
INSERT INTO tconfig (token, value) VALUES ('compare_pass', 3); INSERT INTO tconfig (token, value) VALUES ('compare_pass', 3);
INSERT INTO tconfig (token, value) VALUES ('meta_style', 'meta_pandora'); INSERT INTO tconfig (token, value) VALUES ('meta_style', 'meta_pandora');
INSERT INTO tconfig (token, value) VALUES ('enable_refr', 0); INSERT INTO tconfig (token, value) VALUES ('enable_refr', 0);
INSERT INTO tconfig (token, value) VALUES ('meta_num_elements', 100);
COMMIT; COMMIT;
END;; END;;

View File

@ -100,7 +100,8 @@ INSERT INTO "tconfig" ("token", "value") VALUES
('enable_pass_history', 0), ('enable_pass_history', 0),
('compare_pass', 3), ('compare_pass', 3),
('meta_style', 'meta_pandora'), ('meta_style', 'meta_pandora'),
('enable_refr', '0'); ('enable_refr', '0'),
('meta_num_elements', 100);
COMMIT WORK; COMMIT WORK;

View File

@ -99,7 +99,8 @@ INSERT INTO `tconfig` (`token`, `value`) VALUES
('enable_pass_history', 0), ('enable_pass_history', 0),
('compare_pass', 3), ('compare_pass', 3),
('meta_style', 'meta_pandora'), ('meta_style', 'meta_pandora'),
('enable_refr', 0); ('enable_refr', 0),
('meta_num_elements', 100);
UNLOCK TABLES; UNLOCK TABLES;