From 307fd3189817440fae5cd544c34605fbb2a8add0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20=C3=81ngel?= Date: Wed, 24 Oct 2018 09:05:42 +0200 Subject: [PATCH 1/3] Added wz-config-viewer directive --- public/directives/index.js | 1 + .../wz-config-viewer/wz-config-viewer.html | 53 +++++++++++++++++++ .../wz-config-viewer/wz-config-viewer.js | 39 ++++++++++++++ 3 files changed, 93 insertions(+) create mode 100644 public/directives/wz-config-viewer/wz-config-viewer.html create mode 100644 public/directives/wz-config-viewer/wz-config-viewer.js diff --git a/public/directives/index.js b/public/directives/index.js index 78d66ac26c..91d9f92c5c 100644 --- a/public/directives/index.js +++ b/public/directives/index.js @@ -18,3 +18,4 @@ import './wz-welcome-card/wz-welcome-card'; import './wz-no-config/wz-no-config'; import './wz-config-item/wz-config-item'; import './wz-config-item/wz-config-item.less'; +import './wz-config-viewer/wz-config-viewer'; \ No newline at end of file diff --git a/public/directives/wz-config-viewer/wz-config-viewer.html b/public/directives/wz-config-viewer/wz-config-viewer.html new file mode 100644 index 0000000000..68026add18 --- /dev/null +++ b/public/directives/wz-config-viewer/wz-config-viewer.html @@ -0,0 +1,53 @@ +
+ + + +
+
+ JSON viewer +
+ View this configuration in raw JSON format +
+
+ + JSON +  ·  + XML +
+ + + +
+
+
+ +
+
+ + + + + +
+
+ XML viewer +
+ View this configuration in raw XML format +
+
+ + JSON +  ·  + XML +
+ + + +
+
{{ xmlcontent }}
+
+ +
+
+ +
\ No newline at end of file diff --git a/public/directives/wz-config-viewer/wz-config-viewer.js b/public/directives/wz-config-viewer/wz-config-viewer.js new file mode 100644 index 0000000000..6dcd5d3ad0 --- /dev/null +++ b/public/directives/wz-config-viewer/wz-config-viewer.js @@ -0,0 +1,39 @@ +/* + * Wazuh app - Wazuh config viewer directive + * Copyright (C) 2018 Wazuh, Inc. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * Find more information about this on the LICENSE file. + */ + +import template from './wz-config-viewer.html'; +import { uiModules } from 'ui/modules'; + +const app = uiModules.get('app/wazuh', []); + +class WzConfigViewer { + constructor() { + this.restrict = 'E'; + this.scope = { + getjson: '&', + getxml: '&', + jsoncontent: '=jsoncontent', + xmlcontent: '=xmlcontent' + }; + this.replace = true; + this.template = template; + } + + link(scope, elm, attrs) { + scope.callgetjson = () => { + scope.getjson(); + }; + scope.callgetxml = () => scope.getxml(); + } +} + +app.directive('wzConfigViewer', () => new WzConfigViewer()); From fc0a1a6057db12feec15e1b3166959b2045b8735 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20=C3=81ngel?= Date: Wed, 24 Oct 2018 09:06:07 +0200 Subject: [PATCH 2/3] Replaced JSON/XML viewers by wz-config-viewer directive --- .../active-response/active-response.html | 52 +------------------ .../agents-active-response.html | 52 +------------------ .../active-response/commands.html | 52 +------------------ .../configuration/agentless/agentless.html | 52 +------------------ .../configuration/alerts/email-alerts.html | 52 +------------------ .../configuration/alerts/general-alerts.html | 52 +------------------ .../configuration/alerts/labels.html | 52 +------------------ .../configuration/alerts/reports.html | 52 +------------------ .../configuration/alerts/syslog.html | 52 +------------------ .../configuration/amazon-s3/amazon-s3.foot | 52 +------------------ .../configuration/cis-cat/cis-cat.foot | 52 +------------------ .../client-buffer/client-buffer.html | 52 +------------------ .../configuration/client/client.html | 52 +------------------ .../configuration/cluster/cluster.html | 52 +------------------ .../database-output/database-output.html | 52 +------------------ .../global-configuration/global.html | 52 +------------------ .../global-configuration/remote.html | 52 +------------------ .../integrations/integrations.html | 52 +------------------ .../integrity-monitoring.foot | 52 +------------------ .../configuration/inventory/inventory.html | 52 +------------------ .../log-collection/localfile.html | 52 +------------------ .../configuration/log-collection/socket.html | 52 +------------------ .../configuration/open-scap/open-scap.foot | 52 +------------------ .../configuration/osquery/osquery.html | 52 +------------------ .../policy-monitoring/policy-monitoring.foot | 52 +------------------ .../registration-service.html | 52 +------------------ .../configuration/ruleset/ruleset.foot | 52 +------------------ .../vulnerabilities/vulnerabilities.foot | 52 +------------------ .../wazuh-commands/wazuh-commands.html | 52 +------------------ 29 files changed, 29 insertions(+), 1479 deletions(-) diff --git a/public/templates/management/configuration/active-response/active-response.html b/public/templates/management/configuration/active-response/active-response.html index 58851d31f9..f5aa0b9f00 100644 --- a/public/templates/management/configuration/active-response/active-response.html +++ b/public/templates/management/configuration/active-response/active-response.html @@ -92,57 +92,7 @@ - - - -
-
- JSON viewer -
- View this configuration in raw JSON format -
-
- - JSON -  ·  - XML -
- - - -
-
-
- -
-
- - - - - -
-
- XML viewer -
- View this configuration in raw XML format -
-
- - JSON -  ·  - XML -
- - - -
-
{{ XMLContent }}
-
- -
-
- + diff --git a/public/templates/management/configuration/active-response/agents-active-response.html b/public/templates/management/configuration/active-response/agents-active-response.html index 3ec5d523fc..f6a0c12d92 100644 --- a/public/templates/management/configuration/active-response/agents-active-response.html +++ b/public/templates/management/configuration/active-response/agents-active-response.html @@ -60,57 +60,7 @@ - - - -
-
- JSON viewer -
- View this configuration in raw JSON format -
-
- - JSON -  ·  - XML -
- - - -
-
-
- -
-
- - - - - -
-
- XML viewer -
- View this configuration in raw XML format -
-
- - JSON -  ·  - XML -
- - - -
-
{{ XMLContent }}
-
- -
-
- + diff --git a/public/templates/management/configuration/active-response/commands.html b/public/templates/management/configuration/active-response/commands.html index 0774e93fe1..c85b6c8056 100644 --- a/public/templates/management/configuration/active-response/commands.html +++ b/public/templates/management/configuration/active-response/commands.html @@ -79,57 +79,7 @@ - - - -
-
- JSON viewer -
- View this configuration in raw JSON format -
-
- - JSON -  ·  - XML -
- - - -
-
-
- -
-
- - - - - -
-
- XML viewer -
- View this configuration in raw XML format -
-
- - JSON -  ·  - XML -
- - - -
-
{{ XMLContent }}
-
- -
-
- + diff --git a/public/templates/management/configuration/agentless/agentless.html b/public/templates/management/configuration/agentless/agentless.html index 6fc47dfb56..4555d53f63 100644 --- a/public/templates/management/configuration/agentless/agentless.html +++ b/public/templates/management/configuration/agentless/agentless.html @@ -92,57 +92,7 @@ - - - -
-
- JSON viewer -
- View this configuration in raw JSON format -
-
- - JSON -  ·  - XML -
- - - -
-
-
- -
-
- - - - - -
-
- XML viewer -
- View this configuration in raw XML format -
-
- - JSON -  ·  - XML -
- - - -
-
{{ XMLContent }}
-
- -
-
- + diff --git a/public/templates/management/configuration/alerts/email-alerts.html b/public/templates/management/configuration/alerts/email-alerts.html index 75b117edda..ade7a26183 100644 --- a/public/templates/management/configuration/alerts/email-alerts.html +++ b/public/templates/management/configuration/alerts/email-alerts.html @@ -90,57 +90,7 @@ - - - -
-
- JSON viewer -
- View this configuration in raw JSON format -
-
- - JSON -  ·  - XML -
- - - -
-
-
- -
-
- - - - - -
-
- XML viewer -
- View this configuration in raw XML format -
-
- - JSON -  ·  - XML -
- - - -
-
{{ XMLContent }}
-
- -
-
- + diff --git a/public/templates/management/configuration/alerts/general-alerts.html b/public/templates/management/configuration/alerts/general-alerts.html index 1af1d03f3a..5a45e95eeb 100644 --- a/public/templates/management/configuration/alerts/general-alerts.html +++ b/public/templates/management/configuration/alerts/general-alerts.html @@ -54,57 +54,7 @@ - - - -
-
- JSON viewer -
- View this configuration in raw JSON format -
-
- - JSON -  ·  - XML -
- - - -
-
-
- -
-
- - - - - -
-
- XML viewer -
- View this configuration in raw XML format -
-
- - JSON -  ·  - XML -
- - - -
-
{{ XMLContent }}
-
- -
-
- + diff --git a/public/templates/management/configuration/alerts/labels.html b/public/templates/management/configuration/alerts/labels.html index f443e56a52..6f19386ccd 100644 --- a/public/templates/management/configuration/alerts/labels.html +++ b/public/templates/management/configuration/alerts/labels.html @@ -54,57 +54,7 @@ - - - -
-
- JSON viewer -
- View this configuration in raw JSON format -
-
- - JSON -  ·  - XML -
- - - -
-
-
- -
-
- - - - - -
-
- XML viewer -
- View this configuration in raw XML format -
-
- - JSON -  ·  - XML -
- - - -
-
{{ XMLContent }}
-
- -
-
- + diff --git a/public/templates/management/configuration/alerts/reports.html b/public/templates/management/configuration/alerts/reports.html index 2d362ecd9d..1871f49ebc 100644 --- a/public/templates/management/configuration/alerts/reports.html +++ b/public/templates/management/configuration/alerts/reports.html @@ -101,57 +101,7 @@ - - - -
-
- JSON viewer -
- View this configuration in raw JSON format -
-
- - JSON -  ·  - XML -
- - - -
-
-
- -
-
- - - - - -
-
- XML viewer -
- View this configuration in raw XML format -
-
- - JSON -  ·  - XML -
- - - -
-
{{ XMLContent }}
-
- -
-
- + diff --git a/public/templates/management/configuration/alerts/syslog.html b/public/templates/management/configuration/alerts/syslog.html index ba590b22aa..4cecb21005 100644 --- a/public/templates/management/configuration/alerts/syslog.html +++ b/public/templates/management/configuration/alerts/syslog.html @@ -66,57 +66,7 @@ - - - -
-
- JSON viewer -
- View this configuration in raw JSON format -
-
- - JSON -  ·  - XML -
- - - -
-
-
- -
-
- - - - - -
-
- XML viewer -
- View this configuration in raw XML format -
-
- - JSON -  ·  - XML -
- - - -
-
{{ XMLContent }}
-
- -
-
- + diff --git a/public/templates/management/configuration/amazon-s3/amazon-s3.foot b/public/templates/management/configuration/amazon-s3/amazon-s3.foot index 1d9458f153..ee5366c4b7 100644 --- a/public/templates/management/configuration/amazon-s3/amazon-s3.foot +++ b/public/templates/management/configuration/amazon-s3/amazon-s3.foot @@ -1,54 +1,4 @@ - - - -
-
- JSON viewer -
- View this configuration in raw JSON format -
-
- - JSON -  ·  - XML -
- - - -
-
-
- -
-
- - - - - -
-
- XML viewer -
- View this configuration in raw XML format -
-
- - JSON -  ·  - XML -
- - - -
-
{{ XMLContent }}
-
- -
-
- + diff --git a/public/templates/management/configuration/cis-cat/cis-cat.foot b/public/templates/management/configuration/cis-cat/cis-cat.foot index 25061d70a9..f50cd93b27 100644 --- a/public/templates/management/configuration/cis-cat/cis-cat.foot +++ b/public/templates/management/configuration/cis-cat/cis-cat.foot @@ -1,54 +1,4 @@ - - - -
-
- JSON viewer -
- View this configuration in raw JSON format -
-
- - JSON -  ·  - XML -
- - - -
-
-
- -
-
- - - - - -
-
- XML viewer -
- View this configuration in raw XML format -
-
- - JSON -  ·  - XML -
- - - -
-
{{ XMLContent }}
-
- -
-
- + diff --git a/public/templates/management/configuration/client-buffer/client-buffer.html b/public/templates/management/configuration/client-buffer/client-buffer.html index 09a54377af..c2ab247707 100644 --- a/public/templates/management/configuration/client-buffer/client-buffer.html +++ b/public/templates/management/configuration/client-buffer/client-buffer.html @@ -72,57 +72,7 @@ - - - -
-
- JSON viewer -
- View this configuration in raw JSON format -
-
- - JSON -  ·  - XML -
- - - -
-
-
- -
-
- - - - - -
-
- XML viewer -
- View this configuration in raw XML format -
-
- - JSON -  ·  - XML -
- - - -
-
{{ XMLContent }}
-
- -
-
- + diff --git a/public/templates/management/configuration/client/client.html b/public/templates/management/configuration/client/client.html index 6fab0c2de9..342e84c52e 100644 --- a/public/templates/management/configuration/client/client.html +++ b/public/templates/management/configuration/client/client.html @@ -107,57 +107,7 @@ - - - -
-
- JSON viewer -
- View this configuration in raw JSON format -
-
- - JSON -  ·  - XML -
- - - -
-
-
- -
-
- - - - - -
-
- XML viewer -
- View this configuration in raw XML format -
-
- - JSON -  ·  - XML -
- - - -
-
{{ XMLContent }}
-
- -
-
- + diff --git a/public/templates/management/configuration/cluster/cluster.html b/public/templates/management/configuration/cluster/cluster.html index 8a6350e199..b29d2dd9f0 100644 --- a/public/templates/management/configuration/cluster/cluster.html +++ b/public/templates/management/configuration/cluster/cluster.html @@ -89,57 +89,7 @@ - - - -
-
- JSON viewer -
- View this configuration in raw JSON format -
-
- - JSON -  ·  - XML -
- - - -
-
-
- -
-
- - - - - -
-
- XML viewer -
- View this configuration in raw XML format -
-
- - JSON -  ·  - XML -
- - - -
-
{{ XMLContent }}
-
- -
-
- + diff --git a/public/templates/management/configuration/database-output/database-output.html b/public/templates/management/configuration/database-output/database-output.html index d023465f6e..03ebc459ea 100644 --- a/public/templates/management/configuration/database-output/database-output.html +++ b/public/templates/management/configuration/database-output/database-output.html @@ -67,57 +67,7 @@ - - - -
-
- JSON viewer -
- View this configuration in raw JSON format -
-
- - JSON -  ·  - XML -
- - - -
-
-
- -
-
- - - - - -
-
- XML viewer -
- View this configuration in raw XML format -
-
- - JSON -  ·  - XML -
- - - -
-
{{ XMLContent }}
-
- -
-
- + diff --git a/public/templates/management/configuration/global-configuration/global.html b/public/templates/management/configuration/global-configuration/global.html index 28accec1a6..89377a2e1d 100644 --- a/public/templates/management/configuration/global-configuration/global.html +++ b/public/templates/management/configuration/global-configuration/global.html @@ -192,57 +192,7 @@ - - - -
-
- JSON viewer -
- View this configuration in raw JSON format -
-
- - JSON -  ·  - XML -
- - - -
-
-
- -
-
- - - - - -
-
- XML viewer -
- View this configuration in raw XML format -
-
- - JSON -  ·  - XML -
- - - -
-
{{ XMLContent }}
-
- -
-
- + diff --git a/public/templates/management/configuration/global-configuration/remote.html b/public/templates/management/configuration/global-configuration/remote.html index 668418df58..826ae7be76 100644 --- a/public/templates/management/configuration/global-configuration/remote.html +++ b/public/templates/management/configuration/global-configuration/remote.html @@ -76,57 +76,7 @@ - - - -
-
- JSON viewer -
- View this configuration in raw JSON format -
-
- - JSON -  ·  - XML -
- - - -
-
-
- -
-
- - - - - -
-
- XML viewer -
- View this configuration in raw XML format -
-
- - JSON -  ·  - XML -
- - - -
-
{{ XMLContent }}
-
- -
-
- + diff --git a/public/templates/management/configuration/integrations/integrations.html b/public/templates/management/configuration/integrations/integrations.html index 0992099a12..f21921a09d 100644 --- a/public/templates/management/configuration/integrations/integrations.html +++ b/public/templates/management/configuration/integrations/integrations.html @@ -147,57 +147,7 @@ - - - -
-
- JSON viewer -
- View this configuration in raw JSON format -
-
- - JSON -  ·  - XML -
- - - -
-
-
- -
-
- - - - - -
-
- XML viewer -
- View this configuration in raw XML format -
-
- - JSON -  ·  - XML -
- - - -
-
{{ XMLContent }}
-
- -
-
- + diff --git a/public/templates/management/configuration/integrity-monitoring/integrity-monitoring.foot b/public/templates/management/configuration/integrity-monitoring/integrity-monitoring.foot index 94ce6e8754..786b0f5656 100644 --- a/public/templates/management/configuration/integrity-monitoring/integrity-monitoring.foot +++ b/public/templates/management/configuration/integrity-monitoring/integrity-monitoring.foot @@ -1,54 +1,4 @@ - - - -
-
- JSON viewer -
- View this configuration in raw JSON format -
-
- - JSON -  ·  - XML -
- - - -
-
-
- -
-
- - - - - -
-
- XML viewer -
- View this configuration in raw XML format -
-
- - JSON -  ·  - XML -
- - - -
-
{{ XMLContent }}
-
- -
-
- + diff --git a/public/templates/management/configuration/inventory/inventory.html b/public/templates/management/configuration/inventory/inventory.html index 3025d14ab8..2208169f3d 100644 --- a/public/templates/management/configuration/inventory/inventory.html +++ b/public/templates/management/configuration/inventory/inventory.html @@ -116,57 +116,7 @@ - - - -
-
- JSON viewer -
- View this configuration in raw JSON format -
-
- - JSON -  ·  - XML -
- - - -
-
-
- -
-
- - - - - -
-
- XML viewer -
- View this configuration in raw XML format -
-
- - JSON -  ·  - XML -
- - - -
-
{{ XMLContent }}
-
- -
-
- + diff --git a/public/templates/management/configuration/log-collection/localfile.html b/public/templates/management/configuration/log-collection/localfile.html index 984479d6ee..63a7576d7c 100644 --- a/public/templates/management/configuration/log-collection/localfile.html +++ b/public/templates/management/configuration/log-collection/localfile.html @@ -101,57 +101,7 @@ - - - -
-
- JSON viewer -
- View this configuration in raw JSON format -
-
- - JSON -  ·  - XML -
- - - -
-
-
- -
-
- - - - - -
-
- XML viewer -
- View this configuration in raw XML format -
-
- - JSON -  ·  - XML -
- - - -
-
{{ XMLContent }}
-
- -
-
- + diff --git a/public/templates/management/configuration/log-collection/socket.html b/public/templates/management/configuration/log-collection/socket.html index 175ef42bc5..402c674c3f 100644 --- a/public/templates/management/configuration/log-collection/socket.html +++ b/public/templates/management/configuration/log-collection/socket.html @@ -75,57 +75,7 @@ - - - -
-
- JSON viewer -
- View this configuration in raw JSON format -
-
- - JSON -  ·  - XML -
- - - -
-
-
- -
-
- - - - - -
-
- XML viewer -
- View this configuration in raw XML format -
-
- - JSON -  ·  - XML -
- - - -
-
{{ XMLContent }}
-
- -
-
- + diff --git a/public/templates/management/configuration/open-scap/open-scap.foot b/public/templates/management/configuration/open-scap/open-scap.foot index 9f3a3dd8c0..f54ddb5681 100644 --- a/public/templates/management/configuration/open-scap/open-scap.foot +++ b/public/templates/management/configuration/open-scap/open-scap.foot @@ -1,54 +1,4 @@ - - - -
-
- JSON viewer -
- View this configuration in raw JSON format -
-
- - JSON -  ·  - XML -
- - - -
-
-
- -
-
- - - - - -
-
- XML viewer -
- View this configuration in raw XML format -
-
- - JSON -  ·  - XML -
- - - -
-
{{ XMLContent }}
-
- -
-
- + diff --git a/public/templates/management/configuration/osquery/osquery.html b/public/templates/management/configuration/osquery/osquery.html index c66ab8a9ea..1c37e1ac67 100644 --- a/public/templates/management/configuration/osquery/osquery.html +++ b/public/templates/management/configuration/osquery/osquery.html @@ -111,57 +111,7 @@ - - - -
-
- JSON viewer -
- View this configuration in raw JSON format -
-
- - JSON -  ·  - XML -
- - - -
-
-
- -
-
- - - - - -
-
- XML viewer -
- View this configuration in raw XML format -
-
- - JSON -  ·  - XML -
- - - -
-
{{ XMLContent }}
-
- -
-
- + diff --git a/public/templates/management/configuration/policy-monitoring/policy-monitoring.foot b/public/templates/management/configuration/policy-monitoring/policy-monitoring.foot index 1f9a91abdb..0ffc1abe76 100644 --- a/public/templates/management/configuration/policy-monitoring/policy-monitoring.foot +++ b/public/templates/management/configuration/policy-monitoring/policy-monitoring.foot @@ -1,54 +1,4 @@ - - - -
-
- JSON viewer -
- View this configuration in raw JSON format -
-
- - JSON -  ·  - XML -
- - - -
-
-
- -
-
- - - - - -
-
- XML viewer -
- View this configuration in raw XML format -
-
- - JSON -  ·  - XML -
- - - -
-
{{ XMLContent }}
-
- -
-
- + diff --git a/public/templates/management/configuration/registration-service/registration-service.html b/public/templates/management/configuration/registration-service/registration-service.html index 84cdc66673..5dc1f33408 100644 --- a/public/templates/management/configuration/registration-service/registration-service.html +++ b/public/templates/management/configuration/registration-service/registration-service.html @@ -123,57 +123,7 @@ - - - -
-
- JSON viewer -
- View this configuration in raw JSON format -
-
- - JSON -  ·  - XML -
- - - -
-
-
- -
-
- - - - - -
-
- XML viewer -
- View this configuration in raw XML format -
-
- - JSON -  ·  - XML -
- - - -
-
{{ XMLContent }}
-
- -
-
- + diff --git a/public/templates/management/configuration/ruleset/ruleset.foot b/public/templates/management/configuration/ruleset/ruleset.foot index 41c7813571..ae459a0caf 100644 --- a/public/templates/management/configuration/ruleset/ruleset.foot +++ b/public/templates/management/configuration/ruleset/ruleset.foot @@ -1,54 +1,4 @@ - - - -
-
- JSON viewer -
- View this configuration in raw JSON format -
-
- - JSON -  ·  - XML -
- - - -
-
-
- -
-
- - - - - -
-
- XML viewer -
- View this configuration in raw XML format -
-
- - JSON -  ·  - XML -
- - - -
-
{{ XMLContent }}
-
- -
-
- + diff --git a/public/templates/management/configuration/vulnerabilities/vulnerabilities.foot b/public/templates/management/configuration/vulnerabilities/vulnerabilities.foot index 2f8fae3215..0926a1b7ce 100644 --- a/public/templates/management/configuration/vulnerabilities/vulnerabilities.foot +++ b/public/templates/management/configuration/vulnerabilities/vulnerabilities.foot @@ -1,54 +1,4 @@ - - - -
-
- JSON viewer -
- View this configuration in raw JSON format -
-
- - JSON -  ·  - XML -
- - - -
-
-
- -
-
- - - - - -
-
- XML viewer -
- View this configuration in raw XML format -
-
- - JSON -  ·  - XML -
- - - -
-
{{ XMLContent }}
-
- -
-
- + diff --git a/public/templates/management/configuration/wazuh-commands/wazuh-commands.html b/public/templates/management/configuration/wazuh-commands/wazuh-commands.html index b63abe1d03..dfafc4d0c0 100644 --- a/public/templates/management/configuration/wazuh-commands/wazuh-commands.html +++ b/public/templates/management/configuration/wazuh-commands/wazuh-commands.html @@ -119,57 +119,7 @@ - - - -
-
- JSON viewer -
- View this configuration in raw JSON format -
-
- - JSON -  ·  - XML -
- - - -
-
-
- -
-
- - - - - -
-
- XML viewer -
- View this configuration in raw XML format -
-
- - JSON -  ·  - XML -
- - - -
-
{{ XMLContent }}
-
- -
-
- + From f95e9e1c521d0dae3ff177bb995fdc4ba2ea641a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20=C3=81ngel?= Date: Wed, 24 Oct 2018 10:43:05 +0200 Subject: [PATCH 3/3] Updated CHANGELOG --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2893fd614f..5b2ce585d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,7 @@ All notable changes to the Wazuh app project will be documented in this file. - Redesigned the _Overview > Amazon AWS_ tab, using more meaningful visualizations for a better overall view of your agents' status ([#903](https://github.com/wazuh/wazuh-kibana-app/pull/903)). - Redesigned the _Overview/Agents > Vulnerabilities_ tab, using more meaningful visualizations for a better overall view of your agents' status ([#954](https://github.com/wazuh/wazuh-kibana-app/pull/954)). - Now everytime the user enters the _Settings_ tab, the API connection will be automatically checked ([#971](https://github.com/wazuh/wazuh-kibana-app/pull/971)). +- Added a new Angular.js directive named `wz-config-viewer` for viewing JSON/XML content ([]()). ### Changed