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:
parent
eb90c6b7e6
commit
d657f0fd0e
|
@ -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
|
||||||
|
|
|
@ -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;;
|
||||||
|
|
||||||
|
|
|
@ -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;
|
||||||
|
|
||||||
|
|
|
@ -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;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue