rest-ftp-daemon 0.424.2 → 0.424.3

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b7e975d417576100041ffbdaf11a22f811a1e585
4
- data.tar.gz: 27cb0f4e9a738589e1dd6b3cf957d1e5d8239970
3
+ metadata.gz: 9480cfd13b9f090b1489a853b4c75fca72584032
4
+ data.tar.gz: 1d5609890a874c6b8004058fbc0d29a504352cb0
5
5
  SHA512:
6
- metadata.gz: 62d898e7c52b0f89a0cf204c47503c98ddae8b210b8ea8a5cfd24f27ebb7d7940f0a0296b5a5299ffbc7bec3ef176e43c95c8128e8fb6167eb1e3b99969d7d6d
7
- data.tar.gz: e02ef0697b640053766319bf917d974cd648baf64f6b50558a1b89f1c275671c31031502db460e1274d6c93ee4b682d289db5a28389ea44c183d60e6e23889c1
6
+ metadata.gz: 09b7e9a5c3c89d81385f47b1b90a469cde743a84d416e1ec7b3ed6d3289564a9dcef8713a2b49af960f0d22b4473f7a2aa2e9638cad12f5ee6d24fa24327116a
7
+ data.tar.gz: 2183569a5b06e7e89475f4f4b509fd1566827ccab7997cc85ccfd4067b79639783cdd83c1f76076962ee3c0e031f6bee151fa3a846d54d0cab441c71beb527a2
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rest-ftp-daemon (0.424.2)
4
+ rest-ftp-daemon (0.424.3)
5
5
  activesupport (~> 4.2)
6
6
  api-auth
7
7
  aws-sdk-resources (~> 2)
@@ -4,7 +4,7 @@ module RestFtpDaemon
4
4
  def dashboard_feature name, enabled, message_on = "enabled", message_of = "disabled"
5
5
  # Build classes
6
6
  class_status = enabled ? 'enabled' : 'disabled'
7
- classes = "btn btn-default feature-#{class_status}"
7
+ classes = "btn btn-default feature-#{class_status} disabled"
8
8
 
9
9
  # Build title
10
10
  title_status = enabled ? message_on : message_of
@@ -139,12 +139,31 @@ body {
139
139
  border-top: 1px solid #e7e7e7;
140
140
  }
141
141
  .footer-signature {
142
- /*border: 1px solid blue;*/
143
142
  margin-top: 12px;
144
143
  }
145
144
 
146
145
  .footer-indicators {
147
- /*border: 1px solid blue;*/
148
146
  margin-top: 5px;
149
- /*margin-bottom: 2px;*/
150
147
  }
148
+
149
+
150
+
151
+
152
+
153
+
154
+
155
+ .indicators .btn {
156
+ cursor: pointer;
157
+ opacity: 1;
158
+ filter: alpha(opacity=100);
159
+ }
160
+
161
+ .transfer-type {
162
+ width: 30px;
163
+ }
164
+
165
+
166
+
167
+
168
+
169
+
@@ -17,26 +17,26 @@
17
17
  %a{href: MOUNT_SWAGGER_UI, target: TARGET_BLANK} API Documentation
18
18
 
19
19
 
20
- .footer-indicators.pull-right
20
+ .footer-indicators.indicators.pull-right
21
21
 
22
22
  .btn-group.btn-group-sm
23
- .btn.btn-default.btn-info Host
24
- .btn.btn-default= Conf.host
23
+ .btn.btn-default.btn-info.disabled Host
24
+ .btn.btn-default.disabled= Conf.host
25
25
 
26
26
  .btn-group.btn-group-sm
27
- .btn.btn-default.btn-info Features
27
+ .btn.btn-default.btn-info.disabled Features
28
28
  = dashboard_feature :reload, Conf[:allow_reload], "ACTIVE (config is hot-reloadable)", "changes at startup only"
29
29
  = dashboard_feature :newrelic, Conf.feature?(:newrelic), "ACTIVE (license found)", "disabled"
30
30
  = dashboard_feature :rollbar, Conf.feature?(:rollbar), "ACTIVE (token found)", "disabled"
31
31
 
32
32
  .btn-group.btn-group-sm
33
- .btn.btn-default.btn-info IP
34
- .btn.btn-default= Facter.value(:ipaddress)
33
+ .btn.btn-default.btn-info.disabled IP
34
+ .btn.btn-default.disabled= Facter.value(:ipaddress)
35
35
 
36
36
  .btn-group.btn-group-sm
37
- .btn.btn-default.btn-info Cores
38
- .btn.btn-default= info_procs
37
+ .btn.btn-default.btn-info.disabled Cores
38
+ .btn.btn-default.disabled= info_procs
39
39
 
40
40
  .btn-group.btn-group-sm
41
- .btn.btn-default.btn-info Started
42
- .btn.btn-default= datetime_short(Conf.app_started)
41
+ .btn.btn-default.btn-info.disabled Started
42
+ .btn.btn-default.disabled= datetime_short(Conf.app_started)
@@ -15,24 +15,24 @@
15
15
  = "v#{Conf.app_ver} [#{Conf.app_env}]"
16
16
 
17
17
 
18
- .header-indicators.navbar-header.pull-right
18
+ .header-indicators.indicators.navbar-header.pull-right
19
19
 
20
- .btn-group.btn-group-sm
21
- .btn.btn-default.btn-warning Load
22
- .btn.btn-default= info_load.round(1)
20
+ .btn-group.btn-group-sm.disabled
21
+ .btn.btn-default.btn-warning.disabled Load
22
+ .btn.btn-default.disabled= info_load.round(1)
23
23
 
24
24
  .btn-group.btn-group-sm
25
- .btn.btn-default.btn-warning CPU
26
- .btn.btn-default= "#{info_norm} %"
25
+ .btn.btn-default.btn-warning.disabled CPU
26
+ .btn.btn-default.disabled= "#{info_norm} %"
27
27
 
28
28
  .btn-group.btn-group-sm
29
- .btn.btn-default.btn-warning Mem
30
- .btn.btn-default= format_bytes(mem.bytes, "B")
29
+ .btn.btn-default.btn-warning.disabled Mem
30
+ .btn.btn-default.disabled= format_bytes(mem.bytes, "B")
31
31
 
32
32
  .btn-group.btn-group-sm
33
- .btn.btn-default.btn-success Processed
34
- .btn.btn-default= info_processed.to_i
33
+ .btn.btn-default.btn-success.disabled Processed
34
+ .btn.btn-default.disabled= info_processed.to_i
35
35
 
36
36
  .btn-group.btn-group-sm
37
- .btn.btn-default.btn-success Transferred
38
- .btn.btn-default= format_bytes(info_trans, "B", 1)
37
+ .btn.btn-default.btn-success.disabled Transferred
38
+ .btn.btn-default.disabled= format_bytes(info_trans, "B", 1)
@@ -34,9 +34,7 @@
34
34
  %th pool
35
35
  %th queued
36
36
  %th label
37
- %th
38
37
  %th source
39
- %th
40
38
  %th target
41
39
  %th.error status
42
40
  %th{"min-width" => 120} detail
@@ -32,11 +32,13 @@
32
32
 
33
33
  %td= job.label
34
34
 
35
- %td.text-right= location_label job.source_uri
36
- %td= token_highlight job.source
35
+ %td
36
+ = location_label job.source_uri
37
+ = token_highlight job.source
37
38
 
38
- %td.text-right= location_label job.target_uri
39
- %td= token_highlight job.target
39
+ %td
40
+ = location_label job.target_uri
41
+ = token_highlight job.target
40
42
 
41
43
  %td
42
44
  %span.push-status
@@ -2,7 +2,7 @@
2
2
  Gem::Specification.new do |spec|
3
3
 
4
4
  # Project version
5
- spec.version = "0.424.2"
5
+ spec.version = "0.424.3"
6
6
 
7
7
  # Project description
8
8
  spec.name = "rest-ftp-daemon"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rest-ftp-daemon
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.424.2
4
+ version: 0.424.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bruno MEDICI
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-09-07 00:00:00.000000000 Z
11
+ date: 2016-09-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler