fluentd-ui 1.0.0.alpha.1 → 1.0.0.alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fluentd-ui might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/ChangeLog.md +5 -0
- data/Gemfile.lock +2 -2
- data/app/javascript/packs/application.js +5 -0
- data/app/views/fluentd/errors.html.haml +1 -1
- data/app/views/fluentd/show.html.haml +1 -1
- data/app/views/misc/information.html.haml +1 -1
- data/config/locales/translation_en.yml +1 -0
- data/config/locales/translation_ja.yml +1 -0
- data/lib/fluentd-ui/version.rb +1 -1
- data/package.json +1 -0
- data/yarn.lock +4 -0
- metadata +27 -27
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d72809f1d9f4e9c2ec00cb5cfc89c21151d278fc47c9b60caa3bc8746532e281
|
4
|
+
data.tar.gz: 60222c373826c90c8cce959bcad61f6bcf2f893b94c5ff4f82d5e591ac85d84e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d1ced5aaa01552d4520490efdd02bf9cd977e686e1034791f69eb8b4c4bfc1ae694ee387ca21e5d77e9e1b9fdc2ca529a2b8a0774f13086a007e75b481485e1c
|
7
|
+
data.tar.gz: 50fdfc479a24f2f967e26c90eb631a2b62fcdb0d6f6a54a001652493a04b1b41a61900c4c6fcde4994457dbe2c0b6827f689c4972e2282d18278c7e2fc5d38a4
|
data/ChangeLog.md
CHANGED
@@ -1,3 +1,8 @@
|
|
1
|
+
## Release 1.0.0-alpha.2 - 2018/05/24
|
2
|
+
|
3
|
+
* [fixed] Update HTML classes [#234](https://github.com/fluent/fluentd-ui/pull/234)
|
4
|
+
* Use rails-ujs npm package
|
5
|
+
|
1
6
|
## Release 1.0.0-alpha.1 - 2018/05/22
|
2
7
|
|
3
8
|
* [maintenance] Use Rails 5.2.0 [#223](https://github.com/fluent/fluentd-ui/pull/223)
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
fluentd-ui (1.0.0.alpha.
|
4
|
+
fluentd-ui (1.0.0.alpha.2)
|
5
5
|
addressable
|
6
6
|
bootsnap (>= 1.1.0)
|
7
7
|
bundler
|
@@ -120,7 +120,7 @@ GEM
|
|
120
120
|
factory_bot (~> 4.8.2)
|
121
121
|
railties (>= 3.0.0)
|
122
122
|
ffi (1.9.23)
|
123
|
-
fluentd (1.2.
|
123
|
+
fluentd (1.2.1)
|
124
124
|
cool.io (>= 1.4.5, < 2.0.0)
|
125
125
|
dig_rb (~> 1.0.0)
|
126
126
|
http_parser.rb (>= 0.5.1, < 0.7.0)
|
@@ -14,6 +14,11 @@ import jQuery from 'jquery/dist/jquery'
|
|
14
14
|
window.$ = jQuery
|
15
15
|
window.jQuery = jQuery
|
16
16
|
|
17
|
+
import Rails from 'rails-ujs/lib/assets/compiled/rails-ujs.js'
|
18
|
+
|
19
|
+
window.Rails = Rails
|
20
|
+
Rails.start()
|
21
|
+
|
17
22
|
import 'popper.js/dist/popper'
|
18
23
|
import 'bootstrap/dist/js/bootstrap'
|
19
24
|
import 'datatables.net/js/jquery.dataTables'
|
@@ -17,7 +17,7 @@
|
|
17
17
|
= link_to icon("fa-play") << t("fluentd.common.start"), start_daemon_agent_path(@fluentd), method: :put, class: "btn #{@fluentd.agent.running? ? "disabled btn-outline-dark" : "btn-primary"}"
|
18
18
|
= link_to icon("fa-pause") << t("fluentd.common.stop"), stop_daemon_agent_path(@fluentd), method: :put, class: "btn #{@fluentd.agent.running? ? "btn-danger" : "disabled btn-outline-dark"}"
|
19
19
|
= link_to icon("fa-refresh") << t("fluentd.common.restart"), restart_daemon_agent_path(@fluentd), method: :put, class: "btn #{@fluentd.agent.running? ? "btn-warning" : "disabled btn-outline-dark"}"
|
20
|
-
= link_to icon("fa-refresh") << t("fluentd.common.reload"), reload_daemon_agent_path(@fluentd), method: :put, class: "btn #{@fluentd.agent.running? ? "btn-info" : "disabled btn-
|
20
|
+
= link_to icon("fa-refresh") << t("fluentd.common.reload"), reload_daemon_agent_path(@fluentd), method: :put, class: "btn #{@fluentd.agent.running? ? "btn-info" : "disabled btn-outline-dark"}"
|
21
21
|
.col-xl-6.col-sm-6
|
22
22
|
.card.card-default
|
23
23
|
.card-header
|
data/lib/fluentd-ui/version.rb
CHANGED
data/package.json
CHANGED
data/yarn.lock
CHANGED
@@ -4741,6 +4741,10 @@ querystringify@^2.0.0:
|
|
4741
4741
|
version "2.0.0"
|
4742
4742
|
resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.0.0.tgz#fa3ed6e68eb15159457c89b37bc6472833195755"
|
4743
4743
|
|
4744
|
+
rails-ujs@^5.2.0:
|
4745
|
+
version "5.2.0"
|
4746
|
+
resolved "https://registry.yarnpkg.com/rails-ujs/-/rails-ujs-5.2.0.tgz#d93f7a969a226c0ae67044172955be8c1cdf49fc"
|
4747
|
+
|
4744
4748
|
randomatic@^3.0.0:
|
4745
4749
|
version "3.0.0"
|
4746
4750
|
resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-3.0.0.tgz#d35490030eb4f7578de292ce6dfb04a91a128923"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluentd-ui
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.alpha.
|
4
|
+
version: 1.0.0.alpha.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Masahiro Nakagawa
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2018-05-
|
12
|
+
date: 2018-05-24 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: fluentd
|
@@ -538,7 +538,7 @@ files:
|
|
538
538
|
- public/404.html
|
539
539
|
- public/422.html
|
540
540
|
- public/500.html
|
541
|
-
- public/assets/.sprockets-manifest-
|
541
|
+
- public/assets/.sprockets-manifest-8ea9bd6b345c819e44a7d505e705cea2.json
|
542
542
|
- public/assets/application-db8ee881ff43fff5b8f3a6c96c92c2c62428cc6340162b5fde8d0cbf80c03d2f.css
|
543
543
|
- public/assets/application-db8ee881ff43fff5b8f3a6c96c92c2c62428cc6340162b5fde8d0cbf80c03d2f.css.gz
|
544
544
|
- public/assets/fontawesome-webfont-2adefcbc041e7d18fcf2d417879dc5a09997aa64d675b7a3c4b6ce33da13f3fe.woff2
|
@@ -553,34 +553,34 @@ files:
|
|
553
553
|
- public/fluentd-logo-right-text.png
|
554
554
|
- public/fluentd-logo.png
|
555
555
|
- public/fluentd.png
|
556
|
-
- public/packs/application-
|
557
|
-
- public/packs/application-
|
558
|
-
- public/packs/application-
|
556
|
+
- public/packs/application-0a960d8478c31362d6cf.js
|
557
|
+
- public/packs/application-0a960d8478c31362d6cf.js.gz
|
558
|
+
- public/packs/application-0a960d8478c31362d6cf.js.map
|
559
559
|
- public/packs/application-d41d8cd98f00b204e9800998ecf8427e.css
|
560
560
|
- public/packs/application-d41d8cd98f00b204e9800998ecf8427e.css.map
|
561
|
-
- public/packs/codemirror-
|
562
|
-
- public/packs/codemirror-
|
563
|
-
- public/packs/codemirror-
|
564
|
-
- public/packs/fluent_log-
|
565
|
-
- public/packs/fluent_log-
|
566
|
-
- public/packs/fluent_log-
|
567
|
-
- public/packs/in_tail_format-
|
568
|
-
- public/packs/in_tail_format-
|
569
|
-
- public/packs/in_tail_format-
|
561
|
+
- public/packs/codemirror-7b7e1846421826d14cba.js
|
562
|
+
- public/packs/codemirror-7b7e1846421826d14cba.js.gz
|
563
|
+
- public/packs/codemirror-7b7e1846421826d14cba.js.map
|
564
|
+
- public/packs/fluent_log-f3ad65d97a8f5a15d7f6.js
|
565
|
+
- public/packs/fluent_log-f3ad65d97a8f5a15d7f6.js.gz
|
566
|
+
- public/packs/fluent_log-f3ad65d97a8f5a15d7f6.js.map
|
567
|
+
- public/packs/in_tail_format-24a400db3d9f857ff7fa.js
|
568
|
+
- public/packs/in_tail_format-24a400db3d9f857ff7fa.js.gz
|
569
|
+
- public/packs/in_tail_format-24a400db3d9f857ff7fa.js.map
|
570
570
|
- public/packs/manifest.json
|
571
571
|
- public/packs/manifest.json.gz
|
572
|
-
- public/packs/nested_settings-
|
573
|
-
- public/packs/nested_settings-
|
574
|
-
- public/packs/nested_settings-
|
575
|
-
- public/packs/notification-
|
576
|
-
- public/packs/notification-
|
577
|
-
- public/packs/notification-
|
578
|
-
- public/packs/settings-
|
579
|
-
- public/packs/settings-
|
580
|
-
- public/packs/settings-
|
581
|
-
- public/packs/treeview-
|
582
|
-
- public/packs/treeview-
|
583
|
-
- public/packs/treeview-
|
572
|
+
- public/packs/nested_settings-a0dc4cec84ff260791d3.js
|
573
|
+
- public/packs/nested_settings-a0dc4cec84ff260791d3.js.gz
|
574
|
+
- public/packs/nested_settings-a0dc4cec84ff260791d3.js.map
|
575
|
+
- public/packs/notification-3c646676cdc325a572e7.js
|
576
|
+
- public/packs/notification-3c646676cdc325a572e7.js.gz
|
577
|
+
- public/packs/notification-3c646676cdc325a572e7.js.map
|
578
|
+
- public/packs/settings-946f4f42d0fcedc6c517.js
|
579
|
+
- public/packs/settings-946f4f42d0fcedc6c517.js.gz
|
580
|
+
- public/packs/settings-946f4f42d0fcedc6c517.js.map
|
581
|
+
- public/packs/treeview-451493aeb185e9834dc9.js
|
582
|
+
- public/packs/treeview-451493aeb185e9834dc9.js.gz
|
583
|
+
- public/packs/treeview-451493aeb185e9834dc9.js.map
|
584
584
|
- public/robots.txt
|
585
585
|
- public/td-logo.png
|
586
586
|
- spec/controllers/application_controller_spec.rb
|