2011-07-07 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
* pandoradb_data.sql pandoradb.data.postgreSQL.sql pandoradb.data.oracle.sql: Default skin applied to all groups by default. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4517 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
76dcb56e61
commit
1d019c4668
|
@ -1,3 +1,10 @@
|
||||||
|
2011-07-07 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
||||||
|
|
||||||
|
* pandoradb_data.sql
|
||||||
|
pandoradb.data.postgreSQL.sql
|
||||||
|
pandoradb.data.oracle.sql: Default skin applied to all groups
|
||||||
|
by default.
|
||||||
|
|
||||||
2011-07-06 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
2011-07-06 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
||||||
|
|
||||||
* include/styles/pandora.css
|
* include/styles/pandora.css
|
||||||
|
|
|
@ -129,14 +129,14 @@ END;;
|
||||||
--
|
--
|
||||||
BEGIN
|
BEGIN
|
||||||
LOCK TABLE tgrupo IN EXCLUSIVE MODE;
|
LOCK TABLE tgrupo IN EXCLUSIVE MODE;
|
||||||
INSERT INTO tgrupo (id_grupo, nombre, icon, parent, propagate, disabled, custom_id, id_skin) VALUES (2,'Servers','server_database',0,0,0,'',0);
|
INSERT INTO tgrupo (id_grupo, nombre, icon, parent, propagate, disabled, custom_id, id_skin) VALUES (2,'Servers','server_database',0,0,0,'',1);
|
||||||
INSERT INTO tgrupo (id_grupo, nombre, icon, parent, propagate, disabled, custom_id, id_skin) VALUES (4,'Firewalls','firewall',0,0,0,'',0);
|
INSERT INTO tgrupo (id_grupo, nombre, icon, parent, propagate, disabled, custom_id, id_skin) VALUES (4,'Firewalls','firewall',0,0,0,'',1);
|
||||||
INSERT INTO tgrupo (id_grupo, nombre, icon, parent, propagate, disabled, custom_id, id_skin) VALUES (8,'Databases','database_gear',0,0,0,'',0);
|
INSERT INTO tgrupo (id_grupo, nombre, icon, parent, propagate, disabled, custom_id, id_skin) VALUES (8,'Databases','database_gear',0,0,0,'',1);
|
||||||
INSERT INTO tgrupo (id_grupo, nombre, icon, parent, propagate, disabled, custom_id, id_skin) VALUES (9,'Network','transmit',0,0,0,'',0);
|
INSERT INTO tgrupo (id_grupo, nombre, icon, parent, propagate, disabled, custom_id, id_skin) VALUES (9,'Network','transmit',0,0,0,'',1);
|
||||||
INSERT INTO tgrupo (id_grupo, nombre, icon, parent, propagate, disabled, custom_id, id_skin) VALUES (10,'Unknown','world',0,0,0,'',0);
|
INSERT INTO tgrupo (id_grupo, nombre, icon, parent, propagate, disabled, custom_id, id_skin) VALUES (10,'Unknown','world',0,0,0,'',1);
|
||||||
INSERT INTO tgrupo (id_grupo, nombre, icon, parent, propagate, disabled, custom_id, id_skin) VALUES (11,'Workstations','computer',0,0,0,'',0);
|
INSERT INTO tgrupo (id_grupo, nombre, icon, parent, propagate, disabled, custom_id, id_skin) VALUES (11,'Workstations','computer',0,0,0,'',1);
|
||||||
INSERT INTO tgrupo (id_grupo, nombre, icon, parent, propagate, disabled, custom_id, id_skin) VALUES (12,'Applications','applications',0,0,0,'',0);
|
INSERT INTO tgrupo (id_grupo, nombre, icon, parent, propagate, disabled, custom_id, id_skin) VALUES (12,'Applications','applications',0,0,0,'',1);
|
||||||
INSERT INTO tgrupo (id_grupo, nombre, icon, parent, propagate, disabled, custom_id, id_skin) VALUES (13,'Web','world',0,0,0,'',0);
|
INSERT INTO tgrupo (id_grupo, nombre, icon, parent, propagate, disabled, custom_id, id_skin) VALUES (13,'Web','world',0,0,0,'',1);
|
||||||
COMMIT;
|
COMMIT;
|
||||||
END;;
|
END;;
|
||||||
|
|
||||||
|
|
|
@ -111,16 +111,16 @@ SELECT setval('tconfig_os_id_os_seq', (SELECT (SELECT MAX(id_os) FROM tconfig_os
|
||||||
--
|
--
|
||||||
BEGIN WORK;
|
BEGIN WORK;
|
||||||
LOCK TABLE "tgrupo";
|
LOCK TABLE "tgrupo";
|
||||||
INSERT INTO "tgrupo" ("id_grupo", "nombre", "icon", "parent", "propagate", "disabled", "custom_id")
|
INSERT INTO "tgrupo" ("id_grupo", "nombre", "icon", "parent", "propagate", "disabled", "custom_id", "id_skin")
|
||||||
VALUES
|
VALUES
|
||||||
(2,'Servers','server_database',0,0,0,'',0),
|
(2,'Servers','server_database',0,0,0,'',1),
|
||||||
(4,'Firewalls','firewall',0,0,0,'',0),
|
(4,'Firewalls','firewall',0,0,0,'',1),
|
||||||
(8,'Databases','database_gear',0,0,0,'',0),
|
(8,'Databases','database_gear',0,0,0,'',1),
|
||||||
(9,'Network','transmit',0,0,0,'',0),
|
(9,'Network','transmit',0,0,0,'',1),
|
||||||
(10,'Unknown','world',0,0,0,'',0),
|
(10,'Unknown','world',0,0,0,'',1),
|
||||||
(11,'Workstations','computer',0,0,0,'',0),
|
(11,'Workstations','computer',0,0,0,'',1),
|
||||||
(12,'Applications','applications',0,0,0,'',0),
|
(12,'Applications','applications',0,0,0,'',1),
|
||||||
(13,'Web','world',0,0,0,'',0);
|
(13,'Web','world',0,0,0,'',1);
|
||||||
COMMIT WORK;
|
COMMIT WORK;
|
||||||
SELECT setval('tgrupo_id_grupo_seq', (SELECT (SELECT MAX(id_grupo) FROM tgrupo)));
|
SELECT setval('tgrupo_id_grupo_seq', (SELECT (SELECT MAX(id_grupo) FROM tgrupo)));
|
||||||
|
|
||||||
|
|
|
@ -111,14 +111,14 @@ UNLOCK TABLES;
|
||||||
|
|
||||||
LOCK TABLES `tgrupo` WRITE;
|
LOCK TABLES `tgrupo` WRITE;
|
||||||
INSERT INTO `tgrupo` VALUES
|
INSERT INTO `tgrupo` VALUES
|
||||||
(2,'Servers','server_database',0,0,0,'',0),
|
(2,'Servers','server_database',0,0,0,'',1),
|
||||||
(4,'Firewalls','firewall',0,0,0,'',0),
|
(4,'Firewalls','firewall',0,0,0,'',1),
|
||||||
(8,'Databases','database_gear',0,0,0,'',0),
|
(8,'Databases','database_gear',0,0,0,'',1),
|
||||||
(9,'Network','transmit',0,0,0,'',0),
|
(9,'Network','transmit',0,0,0,'',1),
|
||||||
(10,'Unknown','world',0,0,0,'',0),
|
(10,'Unknown','world',0,0,0,'',1),
|
||||||
(11,'Workstations','computer',0,0,0,'',0),
|
(11,'Workstations','computer',0,0,0,'',1),
|
||||||
(12,'Applications','applications',0,0,0,'',0),
|
(12,'Applications','applications',0,0,0,'',1),
|
||||||
(13,'Web','world',0,0,0,'',0);
|
(13,'Web','world',0,0,0,'',1);
|
||||||
UNLOCK TABLES;
|
UNLOCK TABLES;
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue