chaltron 1.0.1 → 1.0.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.
- checksums.yaml +4 -4
- data/app/assets/javascripts/chaltron.js +5 -0
- data/app/assets/javascripts/chaltron/navbar.js.coffee +1 -1
- data/app/assets/stylesheets/chaltron/layout.scss +0 -8
- data/app/helpers/chaltron_helper.rb +3 -3
- data/app/views/chaltron/ldap/multi_create.html.erb +2 -2
- data/app/views/chaltron/ldap/search.html.erb +1 -1
- data/app/views/chaltron/users/_side_filters.html.erb +1 -1
- data/app/views/chaltron/users/index.html.erb +2 -2
- data/app/views/chaltron/users/self_edit.html.erb +1 -1
- data/app/views/chaltron/users/self_show.html.erb +1 -1
- data/app/views/chaltron/users/show.html.erb +4 -4
- data/config/chaltron_navigation.rb +2 -2
- data/lib/chaltron/version.rb +1 -1
- data/lib/generators/chaltron/templates/app/views/home/index.html.erb +68 -23
- data/lib/generators/chaltron/templates/app/views/layouts/_footer.html.erb +1 -1
- data/lib/generators/chaltron/templates/config/navigation.rb +3 -4
- metadata +2 -3
- data/lib/generators/chaltron/templates/app/views/home/_panel.html.erb +0 -23
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fe253c545a570d0c0ac2fd32428e8c3dca008533
|
4
|
+
data.tar.gz: 87028397cfd5cdc255ffb56caf9366e29fa25544
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d9a793bf210317cdb1f22296f01d09198b93ca2e3e2f3e758ea1c2f60d750409bf35467541f325c580691152526d283db11fd64f34369800e289df9e2b8d0bc3
|
7
|
+
data.tar.gz: 4a86568c2542143b584b4f60cd0ca4118f323d77bfd416846e58bc0c03ad499586181025f00dcd3785a6aac72a3a324642fe341d11e68ef35ac7a49661cf1af8
|
@@ -40,7 +40,7 @@ class NavbarBuilder
|
|
40
40
|
render_icon_a: (item) ->
|
41
41
|
el = jQuery(item)
|
42
42
|
if el.attr('icon')
|
43
|
-
el.html("<i class=\"
|
43
|
+
el.html("<i class=\"fas fa-#{el.attr('icon')}\"></i> #{el.text()}")
|
44
44
|
|
45
45
|
$(document).on 'turbolinks:load', ->
|
46
46
|
navbar = new NavbarBuilder
|
@@ -25,11 +25,11 @@ module ChaltronHelper
|
|
25
25
|
|
26
26
|
def back_link(opts = {})
|
27
27
|
klass = opts[:class] || 'btn btn-primary'
|
28
|
-
text = opts[:text]
|
29
|
-
ic = opts[:icon] || 'arrow-left'
|
28
|
+
text = opts[:text] || t('chaltron.common.back')
|
29
|
+
ic = opts[:icon] || 'arrow-left '
|
30
30
|
|
31
31
|
link_to :back, class: klass do
|
32
|
-
icon(ic, text)
|
32
|
+
icon(:fas, ic, text)
|
33
33
|
end
|
34
34
|
end
|
35
35
|
|
@@ -14,7 +14,7 @@
|
|
14
14
|
</div>
|
15
15
|
<hr>
|
16
16
|
<%= link_to users_path, class: 'btn btn-primary' do %>
|
17
|
-
<%= icon 'arrow-left', t('chaltron.common.back') %>
|
17
|
+
<%= icon :fas, 'arrow-left', t('chaltron.common.back') %>
|
18
18
|
<% end %>
|
19
19
|
</div>
|
20
20
|
|
@@ -24,7 +24,7 @@
|
|
24
24
|
<ul class='list-group list-group-flush'>
|
25
25
|
<% @created.each do |u| %>
|
26
26
|
<%= content_tag :li, class: 'list-group-item list-group-item-success' do %>
|
27
|
-
<%= icon :check, u.display_name %>
|
27
|
+
<%= icon :fas, :check, u.display_name %>
|
28
28
|
<% end %>
|
29
29
|
<% end %>
|
30
30
|
</ul>
|
@@ -14,7 +14,7 @@
|
|
14
14
|
<div class='col-sm-10'>
|
15
15
|
<%= submit_tag t('.submit_text'), class: 'btn btn-primary' %>
|
16
16
|
<%= link_to users_path, class: 'btn btn-link pull-right' do %>
|
17
|
-
<%= icon :times, t('chaltron.common.cancel') %>
|
17
|
+
<%= icon :fas, :times, t('chaltron.common.cancel') %>
|
18
18
|
<% end %>
|
19
19
|
</div>
|
20
20
|
</div>
|
@@ -9,7 +9,7 @@
|
|
9
9
|
<div class='dropdown pull-right'>
|
10
10
|
<%= content_tag :button, type: 'button', class: 'btn btn-primary dropdown-toggle',
|
11
11
|
data: {toggle: 'dropdown'}, aria: {expanded: false, haspopup: true}, id: 'new_user_button' do %>
|
12
|
-
<%= icon :plus, t('.new_user') %>
|
12
|
+
<%= icon :fas, :plus, t('.new_user') %>
|
13
13
|
<% end %>
|
14
14
|
|
15
15
|
<%= content_tag :div, class: 'dropdown-menu', aria: {labelledby: 'new_user_button'} do %>
|
@@ -19,7 +19,7 @@
|
|
19
19
|
</div>
|
20
20
|
<% else %>
|
21
21
|
<%= link_to new_user_path, class: 'btn btn-primary pull-right' do %>
|
22
|
-
<%= icon :plus, t('.new_local_user') %>
|
22
|
+
<%= icon :fas, :plus, t('.new_local_user') %>
|
23
23
|
<% end %>
|
24
24
|
<% end %>
|
25
25
|
|
@@ -20,7 +20,7 @@
|
|
20
20
|
<div class='col-sm-10'>
|
21
21
|
<%= f.submit t('.submit'), class: 'btn btn-primary' %>
|
22
22
|
<%= link_to self_show_users_path, class: 'btn btn-link pull-right' do %>
|
23
|
-
<%= icon :times, t('chaltron.common.cancel') %>
|
23
|
+
<%= icon :far, :times, t('chaltron.common.cancel') %>
|
24
24
|
<% end %>
|
25
25
|
</div>
|
26
26
|
</div>
|
@@ -60,17 +60,17 @@
|
|
60
60
|
|
61
61
|
<hr>
|
62
62
|
<%= link_to users_path, class: 'btn btn-primary' do %>
|
63
|
-
<%= icon 'arrow-left', t('chaltron.common.back') %>
|
63
|
+
<%= icon :fas, 'arrow-left', t('chaltron.common.back') %>
|
64
64
|
<% end %>
|
65
65
|
|
66
|
-
<div class='
|
66
|
+
<div class='float-right'>
|
67
67
|
<%= link_to edit_user_path(@user), class: 'btn btn-primary' do %>
|
68
|
-
<%= icon :edit, t('.edit') %>
|
68
|
+
<%= icon :fas, :edit, t('.edit') %>
|
69
69
|
<% end %>
|
70
70
|
<%= link_to @user, method: :delete, class: 'btn btn-danger',
|
71
71
|
disabled: current_user == @user,
|
72
72
|
data: { confirm: t('.destroy_confirm', user: @user.username) } do %>
|
73
|
-
<%= icon :trash, t('.destroy') %>
|
73
|
+
<%= icon :fas, :trash, t('.destroy') %>
|
74
74
|
<% end %>
|
75
75
|
</div>
|
76
76
|
</div>
|
@@ -16,10 +16,10 @@ SimpleNavigation::Configuration.run do |navigation|
|
|
16
16
|
link_html: { icon: 'user' },
|
17
17
|
highlights_on: /\/self_(show|edit|update)/
|
18
18
|
user.item :logout, 'Logout', destroy_user_session_path, method: :delete,
|
19
|
-
link_html: { icon: 'sign-out' }
|
19
|
+
link_html: { icon: 'sign-out-alt' }
|
20
20
|
end
|
21
21
|
else
|
22
|
-
primary.item :login, 'Login', new_user_session_path, link_html: { icon: 'sign-in' }
|
22
|
+
primary.item :login, 'Login', new_user_session_path, link_html: { icon: 'sign-in-alt' }
|
23
23
|
end
|
24
24
|
end
|
25
25
|
end
|
data/lib/chaltron/version.rb
CHANGED
@@ -6,23 +6,68 @@
|
|
6
6
|
</h1>
|
7
7
|
|
8
8
|
<div class='card-deck'>
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
9
|
+
<div class='card'>
|
10
|
+
<%= image_tag('700x300.gif', class: 'card-img-top') %>
|
11
|
+
<div class='card-body'>
|
12
|
+
<h5 class='card-title'>
|
13
|
+
<%= icon(:fas, :check) %>
|
14
|
+
Bootstrap v4
|
15
|
+
</h5>
|
16
|
+
<p class='card-text'>
|
17
|
+
Bootstrap rocks! And there are lots of good template ready to use, and free.
|
18
|
+
Just as this one ;-)
|
19
|
+
</p>
|
20
|
+
<%= link_to 'Learn more', 'http://getbootstrap.com', class: 'btn btn-primary' %>
|
21
|
+
</div>
|
22
|
+
<div class='card-footer'>
|
23
|
+
<small class='text-muted'>
|
24
|
+
<%= icon(:far, 'thumbs-o-up') %>
|
25
|
+
Bootstrap rocks!
|
26
|
+
</small>
|
27
|
+
</div>
|
28
|
+
</div>
|
29
|
+
|
30
|
+
<div class='card'>
|
31
|
+
<%= image_tag('700x300.gif', class: 'card-img-top') %>
|
32
|
+
<div class='card-body'>
|
33
|
+
<h5 class='card-title'>
|
34
|
+
<%= icon(:fab, :github) %>
|
35
|
+
Free & Open Source
|
36
|
+
</h5>
|
37
|
+
<p class='card-text'>
|
38
|
+
It's all free and open and much is still to do.
|
39
|
+
So pull request are very welcome
|
40
|
+
</p>
|
41
|
+
<%= link_to 'Fork me on GitHub', 'https://github.com/vicvega/chaltron', class: 'btn btn-primary' %>
|
42
|
+
</div>
|
43
|
+
<div class='card-footer'>
|
44
|
+
<small class='text-muted'>
|
45
|
+
<%= icon(:far, 'thumbs-o-up') %>
|
46
|
+
Open source rocks!
|
47
|
+
</small>
|
48
|
+
</div>
|
49
|
+
</div>
|
50
|
+
|
51
|
+
<div class='card'>
|
52
|
+
<%= image_tag('700x300.gif', class: 'card-img-top') %>
|
53
|
+
<div class='card-body'>
|
54
|
+
<h5 class='card-title'>
|
55
|
+
<%= icon(:fas, :compass) %>
|
56
|
+
Easy to use
|
57
|
+
</h5>
|
58
|
+
<p class='card-text'>
|
59
|
+
It's so easy to build up and running web applications in a few seconds.
|
60
|
+
Try by yourself
|
61
|
+
</p>
|
62
|
+
<%= link_to 'Have a look', 'https://github.com/vicvega/chaltron', class: 'btn btn-primary' %>
|
63
|
+
</div>
|
64
|
+
<div class='card-footer'>
|
65
|
+
<small class='text-muted'>
|
66
|
+
<%= icon(:far, 'thumbs-o-up') %>
|
67
|
+
Chaltron rocks!
|
68
|
+
</small>
|
69
|
+
</div>
|
70
|
+
</div>
|
26
71
|
</div>
|
27
72
|
|
28
73
|
</div>
|
@@ -36,24 +81,24 @@
|
|
36
81
|
</div>
|
37
82
|
<div class='col-md-5'>
|
38
83
|
<h2 class='pt-4'>
|
39
|
-
<%= icon('hand-
|
84
|
+
<%= icon(:far, 'hand-point-down') %>
|
40
85
|
Main features
|
41
86
|
</h2>
|
42
87
|
<p>Chaltron provides:</p>
|
43
88
|
<ul class='fa-ul'>
|
44
89
|
<li>
|
45
|
-
<%= icon('check-square', '', class: 'fa-li') %>
|
90
|
+
<%= icon(:far, 'check-square', '', class: 'fa-li') %>
|
46
91
|
Compatibility with
|
47
92
|
<strong><%= link_to 'Bootstrap v4', 'http://getbootstrap.com' %></strong> and
|
48
|
-
<strong><%= link_to 'Font Awesome
|
93
|
+
<strong><%= link_to 'Font Awesome v5', 'https://fontawesome.com' %></strong>
|
49
94
|
</li>
|
50
95
|
<li>
|
51
|
-
<%= icon('check-square', '', class: 'fa-li') %>
|
96
|
+
<%= icon(:far, 'check-square', '', class: 'fa-li') %>
|
52
97
|
Authentication (local and LDAP users) and authorization with
|
53
98
|
<strong><%= link_to 'devise', 'https://github.com/plataformatec/devise/' %></strong>
|
54
99
|
</li>
|
55
100
|
<li>
|
56
|
-
<%= icon('check-square', '', class: 'fa-li') %>
|
101
|
+
<%= icon(:far, 'check-square', '', class: 'fa-li') %>
|
57
102
|
<strong><%= link_to 'Datatables', 'https://datatables.net/' %></strong>
|
58
103
|
integration
|
59
104
|
</li>
|
@@ -72,7 +117,7 @@
|
|
72
117
|
<div class='row'%>
|
73
118
|
<div class='col-lg-12'>
|
74
119
|
<h2 class='pt-4'>
|
75
|
-
<%= icon('question-circle') %>
|
120
|
+
<%= icon(:far, 'question-circle') %>
|
76
121
|
FAQ
|
77
122
|
</h2>
|
78
123
|
</div>
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<nav class='navbar fixed-bottom navbar-dark bg-dark py-0'>
|
2
2
|
<%= content_tag :div, class: 'navbar-text' do %>
|
3
|
-
<%= icon(
|
3
|
+
<%= icon(:fab, :github) %>
|
4
4
|
Created with
|
5
5
|
<%= link_to 'chaltron', 'https://github.com/vicvega/chaltron', class: 'navbar-link' %>
|
6
6
|
<% end %>
|
@@ -54,14 +54,13 @@ SimpleNavigation::Configuration.run do |navigation|
|
|
54
54
|
# when the item should be highlighted, you can set a regexp which is matched
|
55
55
|
# against the current URI. You may also use a proc, or the symbol <tt>:subpath</tt>.
|
56
56
|
#
|
57
|
-
|
58
57
|
primary.item :news, 'Link 1', home_test1_path, link_html: { icon: 'bullhorn' }
|
59
|
-
primary.item :concerts, 'Link 2', home_test2_path, link_html: { icon: 'line
|
58
|
+
primary.item :concerts, 'Link 2', home_test2_path, link_html: { icon: 'chart-line' }
|
60
59
|
primary.item :video, 'Link 3', home_test3_path, link_html: { icon: 'book' }
|
61
|
-
primary.item :info, 'Submenu', '#', link_html: { icon: 'hand-
|
60
|
+
primary.item :info, 'Submenu', '#', link_html: { icon: 'hand-point-down' } do |info_nav|
|
62
61
|
info_nav.item :main_info_page, 'Link 4', home_test4_path, link_html: { icon: 'paw' }
|
63
62
|
info_nav.item :about_info_page, 'Link 5', home_test5_path, link_html: { icon: 'headphones' }
|
64
|
-
info_nav.item :contact_info_page, 'Link 6', home_test6_path, link_html: { icon: '
|
63
|
+
info_nav.item :contact_info_page, 'Link 6', home_test6_path, link_html: { icon: 'futbol' }
|
65
64
|
end
|
66
65
|
primary.item :user, 'Link7', home_test7_path, link_html: { icon: 'user' }
|
67
66
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: chaltron
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- vicvega
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-02-
|
11
|
+
date: 2018-02-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -468,7 +468,6 @@ files:
|
|
468
468
|
- lib/generators/chaltron/templates/app/models/ability.rb
|
469
469
|
- lib/generators/chaltron/templates/app/views/home/_carousel.html.erb
|
470
470
|
- lib/generators/chaltron/templates/app/views/home/_faq.html.erb
|
471
|
-
- lib/generators/chaltron/templates/app/views/home/_panel.html.erb
|
472
471
|
- lib/generators/chaltron/templates/app/views/home/index.html.erb
|
473
472
|
- lib/generators/chaltron/templates/app/views/home/test.html.erb
|
474
473
|
- lib/generators/chaltron/templates/app/views/layouts/_flash.html.erb
|
@@ -1,23 +0,0 @@
|
|
1
|
-
<%
|
2
|
-
body ||= 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Itaque, optio corporis quae nulla aspernatur in alias at numquam rerum ea excepturi expedita tenetur assumenda voluptatibus eveniet incidunt dicta nostrum quod?'
|
3
|
-
link ||= 'https://github.com/vicvega/chaltron'
|
4
|
-
link_text ||= 'Learn more'
|
5
|
-
%>
|
6
|
-
|
7
|
-
<div class='card'>
|
8
|
-
<%= image_tag('700x300.gif', class: 'card-img-top') %>
|
9
|
-
<div class='card-body'>
|
10
|
-
<h5 class='card-title'>
|
11
|
-
<%= icon(icon) %>
|
12
|
-
<%= title %>
|
13
|
-
</h5>
|
14
|
-
<p class='card-text'><%= raw body %> </p>
|
15
|
-
<%= link_to link_text, link, class: 'btn btn-primary' %>
|
16
|
-
</div>
|
17
|
-
<div class='card-footer'>
|
18
|
-
<small class='text-muted'>
|
19
|
-
<%= icon('thumbs-o-up') %>
|
20
|
-
<%= raw footer %>
|
21
|
-
</small>
|
22
|
-
</div>
|
23
|
-
</div>
|