web47core 3.2.53 → 3.2.55
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 +4 -4
- data/app/views/cron_servers/index.html.haml +2 -2
- data/app/views/cron_tabs/edit.html.haml +7 -7
- data/app/views/cron_tabs/index.html.haml +1 -1
- data/app/views/icons/_recycle.html.erb +1 -0
- data/app/views/icons/_restore.html.erb +1 -0
- data/config/locales/en.yml +10 -0
- data/lib/app/models/concerns/archive_able.rb +7 -0
- data/lib/web47core/version.rb +1 -1
- metadata +3 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6a9b992b981d24413bc5d9159d830ce50bf87d080fd0bb0e17cfbbe871e6aed2
|
4
|
+
data.tar.gz: 56c7d8cc94dd0f1e4f55cebb18834bf4818e7bedfd25ad7eaae0f5ac26b36377
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 44b5502805eb0661484a2943f82cd96203a3365909a48d5ee2c8c3f26915212d711c650ca3ee967c630db3637327f828b5a053463c22b95a1ea77e39dc706223
|
7
|
+
data.tar.gz: 99d587aeb5b9e687a4558d21cc8815e95ac926d6f0b2d0df2991a77c27eb414ed9fe8b384d253bc11086989cfc5cfb5048776cd0bf22ece2fb6338cb0cbbe632
|
@@ -2,14 +2,14 @@
|
|
2
2
|
.card
|
3
3
|
.card-body
|
4
4
|
.table-responsive.text-nowrap
|
5
|
-
%table.table.
|
5
|
+
%table.table.border.table-hover.table-vcenter.datatable.card-table.no-wrap.responsive
|
6
6
|
%thead
|
7
7
|
%tr
|
8
8
|
%th Host
|
9
9
|
%th State
|
10
10
|
%th Last Check In
|
11
11
|
%th Actions
|
12
|
-
%tbody
|
12
|
+
%tbody
|
13
13
|
- Cron::Server.each do |server|
|
14
14
|
%tr
|
15
15
|
%td=[server.host_name, server.pid].join(':')
|
@@ -7,11 +7,11 @@
|
|
7
7
|
.card
|
8
8
|
.card-body
|
9
9
|
.container
|
10
|
-
.row
|
11
|
-
= html5_text_field(@cron_tab, :min
|
12
|
-
= html5_text_field(@cron_tab, :hour
|
13
|
-
= html5_text_field(@cron_tab, :mday
|
14
|
-
= html5_text_field(@cron_tab, :month
|
15
|
-
= html5_text_field(@cron_tab, :wday
|
16
|
-
= html5_checkbox(@cron_tab, :enabled
|
10
|
+
.row.row-cols-md-6.row-cols-lg-4.row-cols-xl-3.row-cols-sm-1.g-4
|
11
|
+
= html5_text_field(@cron_tab, :min)
|
12
|
+
= html5_text_field(@cron_tab, :hour)
|
13
|
+
= html5_text_field(@cron_tab, :mday)
|
14
|
+
= html5_text_field(@cron_tab, :month)
|
15
|
+
= html5_text_field(@cron_tab, :wday)
|
16
|
+
= html5_checkbox(@cron_tab, :enabled)
|
17
17
|
.card-footer= render 'common/form_actions', form_cancel_path: cron_tabs_path
|
@@ -0,0 +1 @@
|
|
1
|
+
<path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 17l-2 2l2 2" /><path d="M10 19h9a2 2 0 0 0 1.75 -2.75l-.55 -1" /><path d="M8.536 11l-.732 -2.732l-2.732 .732" /><path d="M7.804 8.268l-4.5 7.794a2 2 0 0 0 1.506 2.89l1.141 .024" /><path d="M15.464 11l2.732 .732l.732 -2.732" /><path d="M18.196 11.732l-4.5 -7.794a2 2 0 0 0 -3.256 -.14l-.591 .976" />
|
@@ -0,0 +1 @@
|
|
1
|
+
<path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M3.06 13a9 9 0 1 0 .49 -4.087" /><path d="M3 4.001v5h5" /><path d="M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" />
|
data/config/locales/en.yml
CHANGED
@@ -60,6 +60,8 @@ en:
|
|
60
60
|
start: player-play-outline
|
61
61
|
demote: thumb-down-outline
|
62
62
|
promote: thumb-up-outline
|
63
|
+
recycle: recycle
|
64
|
+
restore: restore
|
63
65
|
system_configurations:
|
64
66
|
show:
|
65
67
|
title: "%{name} System Configuration"
|
@@ -67,6 +69,14 @@ en:
|
|
67
69
|
value_header: Value
|
68
70
|
edit:
|
69
71
|
title: Edit %{name} System Configuration
|
72
|
+
cron_tabs:
|
73
|
+
index:
|
74
|
+
title: Cron Tabs
|
75
|
+
edit:
|
76
|
+
title: Edit Cron Tab %{name}
|
77
|
+
cron_servers:
|
78
|
+
index:
|
79
|
+
title: Cron Servers
|
70
80
|
cron:
|
71
81
|
edit:
|
72
82
|
title: Edit Cron Tab %{name}
|
@@ -23,6 +23,10 @@ module ArchiveAble
|
|
23
23
|
end
|
24
24
|
end
|
25
25
|
|
26
|
+
def restore_able?
|
27
|
+
archived?
|
28
|
+
end
|
29
|
+
|
26
30
|
# @abstract Display who archived this object
|
27
31
|
# @return String
|
28
32
|
def display_archived_by
|
@@ -50,6 +54,9 @@ module ArchiveAble
|
|
50
54
|
def unarchived?
|
51
55
|
!archived?
|
52
56
|
end
|
57
|
+
alias edit_able? unarchived?
|
58
|
+
alias destroy_able? unarchived?
|
59
|
+
alias delete_able? unarchived?
|
53
60
|
|
54
61
|
# @abstract Archive the object
|
55
62
|
# @param [Member|User] actor - the thing performing the action
|
data/lib/web47core/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: web47core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.2.
|
4
|
+
version: 3.2.55
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Schroeder
|
@@ -566,7 +566,9 @@ files:
|
|
566
566
|
- app/views/icons/_hourglass.html.erb
|
567
567
|
- app/views/icons/_player-play-filled.html.erb
|
568
568
|
- app/views/icons/_player-play-outline.html.erb
|
569
|
+
- app/views/icons/_recycle.html.erb
|
569
570
|
- app/views/icons/_repeat.html.erb
|
571
|
+
- app/views/icons/_restore.html.erb
|
570
572
|
- app/views/icons/_rotate.html.erb
|
571
573
|
- app/views/icons/_run.html.erb
|
572
574
|
- app/views/icons/_skull.html.erb
|