Links updated. Ticket #3997.

This commit is contained in:
Daniel Maya 2016-08-24 12:29:02 +02:00
parent 596fe02912
commit af0d5b868d
5 changed files with 22 additions and 14 deletions

View File

@ -52,6 +52,10 @@ ALTER TABLE tplanned_downtime_agents ADD COLUMN `manually_disabled` tinyint(1) D
-- Table `tlink` -- Table `tlink`
-- --------------------------------------------------------------------- -- ---------------------------------------------------------------------
UPDATE `tlink` SET `link` = 'http://library.pandorafms.com/' WHERE `name` = 'Module library'; UPDATE `tlink` SET `link` = 'http://library.pandorafms.com/' WHERE `name` = 'Module library';
UPDATE `tlink` SET `name` = 'Enterprise Edition' WHERE `id_link` = 0000000002;
UPDATE `tlink` SET `name` = 'Documentation', `link` = 'http://wiki.pandorafms.com/' WHERE `id_link` = 0000000001;
UPDATE `tlink` SET `link` = 'http://forums.pandorafms.com/index.php?board=22.0' WHERE `id_link` = 0000000004;
UPDATE `tlink` SET `link` = 'https://github.com/pandorafms/pandorafms/issues' WHERE `id_link` = 0000000003;
-- --------------------------------------------------------------------- -- ---------------------------------------------------------------------
-- Table `tevent_filter` -- Table `tevent_filter`

View File

@ -51,6 +51,10 @@ ALTER TABLE tplanned_downtime_agents ADD COLUMN manually_disabled NUMBER(5, 0) D
-- Table `tlink` -- Table `tlink`
-- --------------------------------------------------------------------- -- ---------------------------------------------------------------------
UPDATE tlink SET link = 'http://library.pandorafms.com/' WHERE name = 'Module library'; UPDATE tlink SET link = 'http://library.pandorafms.com/' WHERE name = 'Module library';
UPDATE tlink SET name = 'Enterprise Edition' WHERE id_link = 0000000002;
UPDATE tlink SET name = 'Documentation', link = 'http://wiki.pandorafms.com/' WHERE id_link = 0000000001;
UPDATE tlink SET link = 'http://forums.pandorafms.com/index.php?board=22.0' WHERE id_link = 0000000004;
UPDATE tlink SET link = 'https://github.com/pandorafms/pandorafms/issues' WHERE id_link = 0000000003;
-- --------------------------------------------------------------------- -- ---------------------------------------------------------------------
-- Table `tevent_filter` -- Table `tevent_filter`

View File

@ -237,10 +237,10 @@ LOCK TABLE tlink IN EXCLUSIVE MODE;
EXECUTE IMMEDIATE 'ALTER TRIGGER tlink_inc DISABLE'; EXECUTE IMMEDIATE 'ALTER TRIGGER tlink_inc DISABLE';
INSERT INTO tlink VALUES (1,'Pandora FMS Manual','http://wiki.pandorafms.com/?title=Pandora'); INSERT INTO tlink VALUES (1,'Documentation','http://wiki.pandorafms.com/');
INSERT INTO tlink VALUES (2,'Pandora FMS','http://pandorafms.com'); INSERT INTO tlink VALUES (2,'Enterprise Edition','http://pandorafms.com');
INSERT INTO tlink VALUES (3,'Report a bug','{https://sourceforge.net/tracker/?func=add&group_id=155200&atid=794852}'); INSERT INTO tlink VALUES (3,'Report a bug','{https://github.com/pandorafms/pandorafms/issues}');
INSERT INTO tlink VALUES (4,'Suggest new feature','http://sourceforge.net/tracker/?group_id=155200&atid=794855'); INSERT INTO tlink VALUES (4,'Suggest new feature','http://forums.pandorafms.com/index.php?board=22.0');
INSERT INTO tlink VALUES (5,'Module library','http://library.pandorafms.com/'); INSERT INTO tlink VALUES (5,'Module library','http://library.pandorafms.com/');
-- Update curr val of sequence -- Update curr val of sequence

View File

@ -204,11 +204,11 @@ COMMIT WORK;
-- --
BEGIN WORK; BEGIN WORK;
LOCK TABLE "tlink"; LOCK TABLE "tlink";
INSERT INTO "tlink" VALUES INSERT INTO "tlink" VALUES
(1,'Pandora FMS Manual','http://wiki.pandorafms.com/?title=Pandora'), (1,'Documentation','http://wiki.pandorafms.com/'),
(2,'Pandora FMS','http://pandorafms.com'), (2,'Enterprise Edition','http://pandorafms.com'),
(3,'Report a bug','https://sourceforge.net/tracker/?func=add&group_id=155200&atid=794852'), (3,'Report a bug','https://github.com/pandorafms/pandorafms/issues'),
(4,'Suggest new feature','http://sourceforge.net/tracker/?group_id=155200&atid=794855'), (4,'Suggest new feature','http://forums.pandorafms.com/index.php?board=22.0'),
(5,'Module library','http://library.pandorafms.com/'); (5,'Module library','http://library.pandorafms.com/');
COMMIT WORK; COMMIT WORK;
SELECT setval('tlink_id_link_seq', (SELECT (SELECT MAX(id_link) FROM tlink))); SELECT setval('tlink_id_link_seq', (SELECT (SELECT MAX(id_link) FROM tlink)));

View File

@ -194,11 +194,11 @@ UNLOCK TABLES;
LOCK TABLES `tlink` WRITE; LOCK TABLES `tlink` WRITE;
INSERT INTO `tlink` VALUES INSERT INTO `tlink` VALUES
(1,'Pandora FMS Manual','http://wiki.pandorafms.com/?title=Pandora'), (1,'Documentation','http://wiki.pandorafms.com/'),
(2,'Pandora FMS','http://pandorafms.com'), (2,'Enterprise Edition','http://pandorafms.com'),
(3,'Report a bug','https://sourceforge.net/tracker/?func=add&group_id=155200&atid=794852'), (3,'Report a bug','https://github.com/pandorafms/pandorafms/issues'),
(4,'Suggest new feature','http://sourceforge.net/tracker/?group_id=155200&atid=794855'), (4,'Suggest new feature','http://forums.pandorafms.com/index.php?board=22.0'),
(5,'Module library','http://library.pandorafms.com/'); (5,'Module library','http://library.pandorafms.com/');
UNLOCK TABLES; UNLOCK TABLES;