mokio 0.0.5 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG +24 -1
- data/app/assets/stylesheets/backend/icons.css.scss +6 -0
- data/app/datatables/commons_datatable.rb +1 -1
- data/app/helpers/mokio/backend/common_helper.rb +1 -1
- data/app/views/mokio/layout/header.html.slim +1 -1
- data/lib/mokio/frontend_helpers/menu_helper.rb +2 -2
- data/lib/mokio/version.rb +1 -1
- metadata +38 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2fb750d5108ef7534ebd2dcfb19961ef0dfdb48a
|
4
|
+
data.tar.gz: 7400730e89ba35584e9822a1a929c49b2ffc789b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 40eea7d2849cbe23427d3cb35e6482a02d122ddc7f2015602aafd41282aaf15859f19f5fb6378d63740381afa6c3541d20df7a200572843232e5089779f60b3c
|
7
|
+
data.tar.gz: 22ae3daf75bb14ed965be75e409103c95e57378f995aee35c010ccaf5de026d2187075484fcc6a79f65b56cc513883e755da6173a100b9050dfef35ea37b8922
|
data/CHANGELOG
CHANGED
@@ -21,6 +21,7 @@ Mokio (dev "Kolibroryfer") 25.04.2014 v0.0.1
|
|
21
21
|
Mokio (dev "Kolibroryfer") 7.05.2014 v0.0.2
|
22
22
|
|
23
23
|
1. Added users usage with Devise gem
|
24
|
+
|
24
25
|
~ We chose Devise gem for user auth, as its use is well known to Rails developers
|
25
26
|
|
26
27
|
2. Solved problems with "new" action in Menus
|
@@ -108,4 +109,26 @@ Mokio (dev "Tree Pipit") 12.08.2014 v0.0.4
|
|
108
109
|
|
109
110
|
1.3 IsNotAMokioContentError exception
|
110
111
|
|
111
|
-
1.4 IsNotAMokioMenuError exception
|
112
|
+
1.4 IsNotAMokioMenuError exception
|
113
|
+
|
114
|
+
Mokio 07.10.2014 v0.0.5
|
115
|
+
1. Add configurable mechanizm to extend standard Mokio views (check spec/dummy/config/views.yml)
|
116
|
+
2. Easy way to add your own buttons in index views (main buttons and action buttons)
|
117
|
+
3. Add languages management
|
118
|
+
4. Add Mokio Logger
|
119
|
+
5. More code cleanups
|
120
|
+
6. Fixed handling solr configuration and content searching
|
121
|
+
7. Show link to menu in form
|
122
|
+
8. Fixed password update function
|
123
|
+
9. Fixed "Your site" href
|
124
|
+
10. Better generation of menu slug
|
125
|
+
11. Add / change translations
|
126
|
+
12. More flexible menu helpers
|
127
|
+
13. More bug fixes
|
128
|
+
14. More code cleanups
|
129
|
+
|
130
|
+
|
131
|
+
|
132
|
+
Mokio 07.10.2014 v0.0.6
|
133
|
+
1. Update summary, description in mokio.gemspec
|
134
|
+
2. Update changelog
|
@@ -148,6 +148,8 @@
|
|
148
148
|
|
149
149
|
.icon {height: 16px; width:16px;}
|
150
150
|
|
151
|
+
|
152
|
+
|
151
153
|
/*Font face icons*/
|
152
154
|
[class^="brocco-icon-"], [class*=" brocco-icon-"],[class^="cut-icon-"], [class*=" cut-icon-"],[class^="entypo-icon-"], [class*=" entypo-icon-"],[class^="icomoon-icon-"], [class*=" icomoon-icon-"],[class^="minia-icon-"], [class*=" minia-icon-"],[class^="iconic-icon-"], [class*=" iconic-icon-"],[class^="meteo-icon-"], [class*=" meteo-icon-"],[class^="silk-icon-"], [class*=" silk-icon-"],[class^="typ-icon-"], [class*=" typ-icon-"], [class^="wpzoom-"], [class*=" wpzoom-"], [class^="eco-"], [class*=" eco-"], [class^="wpzoom-"]:before, [class*=" wpzoom-"]:before, [class^="eco-"]:before, [class*=" eco-"]:before {
|
153
155
|
vertical-align: middle;
|
@@ -156,6 +158,10 @@
|
|
156
158
|
margin-left:5px;
|
157
159
|
}
|
158
160
|
|
161
|
+
.black {
|
162
|
+
color: black !important;
|
163
|
+
}
|
164
|
+
|
159
165
|
/* IcoMoon premium icons set */
|
160
166
|
[class^="icomoon-icon-"]:before, [class*=" icomoon-icon-"]:before {
|
161
167
|
font-family: 'icomoon';
|
@@ -61,7 +61,7 @@ private
|
|
61
61
|
html += @view.controller.render_additional_action_buttons row
|
62
62
|
html += table_controls_edit_btn( edit_url(@obj_class, row), true ) if row.editable
|
63
63
|
html += table_controls_copy_btn( copy_url(@obj_class, row) ) if row_cloneable? row
|
64
|
-
html += table_controls_delete_btn( obj_url(@obj_class, row)
|
64
|
+
html += table_controls_delete_btn( obj_url(@obj_class, row)) if row.deletable
|
65
65
|
html
|
66
66
|
end
|
67
67
|
|
@@ -57,7 +57,7 @@ module Mokio
|
|
57
57
|
end
|
58
58
|
end
|
59
59
|
|
60
|
-
def table_controls_delete_btn(link, confirm = bt("confirm")
|
60
|
+
def table_controls_delete_btn(link, confirm = bt("confirm"))
|
61
61
|
content_tag :a, :rel => "nofollow", :href => link, :data => { :method => "delete", :confirm => confirm, :hasqtip => true }, :class => "tip", :title => bt("delete") do
|
62
62
|
tag :span, :class => "icon12 icomoon-icon-remove"
|
63
63
|
end
|
@@ -170,7 +170,7 @@ module Mokio
|
|
170
170
|
# ==== Attributes
|
171
171
|
#
|
172
172
|
# * +menu+ - Mokio::Menu object
|
173
|
-
# * +limit+ - Limit
|
173
|
+
# * +limit+ - Limit static_modules count
|
174
174
|
#
|
175
175
|
# ==== Exceptions
|
176
176
|
#
|
@@ -189,7 +189,7 @@ module Mokio
|
|
189
189
|
# ==== Attributes
|
190
190
|
#
|
191
191
|
# * +menu+ - Mokio::Menu object
|
192
|
-
# * +limit+ - Limit
|
192
|
+
# * +limit+ - Limit static_modules count
|
193
193
|
#
|
194
194
|
# ==== Exceptions
|
195
195
|
#
|
data/lib/mokio/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mokio
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- versoft
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-10-
|
11
|
+
date: 2014-10-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -668,16 +668,22 @@ dependencies:
|
|
668
668
|
name: slim-rails
|
669
669
|
requirement: !ruby/object:Gem::Requirement
|
670
670
|
requirements:
|
671
|
+
- - "~>"
|
672
|
+
- !ruby/object:Gem::Version
|
673
|
+
version: '2.1'
|
671
674
|
- - ">="
|
672
675
|
- !ruby/object:Gem::Version
|
673
|
-
version:
|
676
|
+
version: 2.1.5
|
674
677
|
type: :runtime
|
675
678
|
prerelease: false
|
676
679
|
version_requirements: !ruby/object:Gem::Requirement
|
677
680
|
requirements:
|
681
|
+
- - "~>"
|
682
|
+
- !ruby/object:Gem::Version
|
683
|
+
version: '2.1'
|
678
684
|
- - ">="
|
679
685
|
- !ruby/object:Gem::Version
|
680
|
-
version:
|
686
|
+
version: 2.1.5
|
681
687
|
- !ruby/object:Gem::Dependency
|
682
688
|
name: rspec
|
683
689
|
requirement: !ruby/object:Gem::Requirement
|
@@ -738,7 +744,28 @@ dependencies:
|
|
738
744
|
- - ">="
|
739
745
|
- !ruby/object:Gem::Version
|
740
746
|
version: 4.4.1
|
741
|
-
description:
|
747
|
+
description: |2
|
748
|
+
Mokio is a Content Management System that allows creation of
|
749
|
+
sophisticated websites. It consists maily of administration panel for your
|
750
|
+
desired website.
|
751
|
+
It provides the following types of content: Article (piece of text with
|
752
|
+
pictures, lists, links, etc.), Picture Gallery (easily managed article with
|
753
|
+
a number of photos - thumbs and edition provided), Movie Gallery
|
754
|
+
(article with links to Dailymotion, Vimeo and Youtube movies - thumbs
|
755
|
+
and edition provided), Contact Page with Google map and contact form.
|
756
|
+
|
757
|
+
Apart from content it is possible to manage menu structure of your
|
758
|
+
website for each language and defined position (part of the screen).
|
759
|
+
|
760
|
+
If this is not enough for what you need, you can also include pieces of
|
761
|
+
HTML code that should be shared by some (or all) subpages - called
|
762
|
+
HTML Blocks. You can define on which part of the page, these blocks
|
763
|
+
should be displayed.
|
764
|
+
Mokio provides also administration panel for javascripts, languages
|
765
|
+
and backend users.
|
766
|
+
|
767
|
+
Beside Mokio itself, there are various gems dedicated for Mokio, that
|
768
|
+
extends its core functionality.
|
742
769
|
email:
|
743
770
|
- info@mokio.org
|
744
771
|
executables: []
|
@@ -3421,7 +3448,8 @@ files:
|
|
3421
3448
|
- spec/spec_helper.rb
|
3422
3449
|
- spec/test_helper.rb
|
3423
3450
|
homepage: http://www.mokio.org
|
3424
|
-
licenses:
|
3451
|
+
licenses:
|
3452
|
+
- AGPL-3.0
|
3425
3453
|
metadata: {}
|
3426
3454
|
post_install_message:
|
3427
3455
|
rdoc_options: []
|
@@ -3442,7 +3470,10 @@ rubyforge_project:
|
|
3442
3470
|
rubygems_version: 2.4.2
|
3443
3471
|
signing_key:
|
3444
3472
|
specification_version: 4
|
3445
|
-
summary: Mokio
|
3473
|
+
summary: Mokio is a Content Management System that allows creation of sophisticated
|
3474
|
+
websites. Provides administration panel for adding content to your site, desiging
|
3475
|
+
menu structure and managing any kind of element that you wish to include on your
|
3476
|
+
site.
|
3446
3477
|
test_files:
|
3447
3478
|
- spec/helpers/backend/menus_helper_spec.rb
|
3448
3479
|
- spec/helpers/backend/common_helper_spec.rb
|