lolita 3.4.2 → 3.4.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +36 -36
- data/Gemfile +29 -29
- data/README.md +147 -147
- data/Rakefile +6 -6
- data/app/assets/javascripts/lolita/application.js +6 -6
- data/app/assets/javascripts/lolita/tab.js +100 -100
- data/app/assets/stylesheets/lolita/PIE-custom.htc +87 -87
- data/app/assets/stylesheets/lolita/PIE.htc +81 -81
- data/app/assets/stylesheets/lolita/application.css +6 -6
- data/app/assets/stylesheets/lolita/default.css.erb +169 -169
- data/app/assets/stylesheets/lolita/jquery-ui-1.8.16.lolita.css.erb +567 -567
- data/app/assets/stylesheets/lolita/style.css.erb +553 -553
- data/app/helpers/components/lolita/configuration/list_component.rb +10 -10
- data/app/helpers/components/lolita/configuration_component.rb +20 -20
- data/app/views/components/lolita/configuration/column/_first.html.haml +1 -1
- data/app/views/components/lolita/configuration/column/header/_first.html.haml +1 -1
- data/app/views/components/lolita/configuration/column/header/_sort.html.haml +6 -6
- data/app/views/components/lolita/configuration/columns/header/_display.html.haml +5 -5
- data/app/views/components/lolita/configuration/field/array/checkbox/_display.html.haml +7 -7
- data/app/views/components/lolita/configuration/field/string/text/_display.html.haml +7 -7
- data/app/views/components/lolita/configuration/search/_display.html.haml +2 -2
- data/app/views/components/lolita/configuration/tab/_display.html.haml +3 -3
- data/app/views/components/lolita/configuration/tabs/_form.html.haml +6 -6
- data/app/views/kaminari/lolita/_first_page.html.erb +11 -11
- data/app/views/kaminari/lolita/_gap.html.erb +8 -8
- data/app/views/kaminari/lolita/_last_page.html.erb +11 -11
- data/app/views/kaminari/lolita/_next_page.html.erb +11 -11
- data/app/views/kaminari/lolita/_page.html.erb +12 -12
- data/app/views/kaminari/lolita/_paginator.html.erb +23 -23
- data/app/views/kaminari/lolita/_prev_page.html.erb +11 -11
- data/app/views/lolita/info/index.html.erb +232 -232
- data/author +1 -1
- data/config/routes.rb +6 -6
- data/lib/generators/lolita/install_generator.rb +19 -19
- data/lib/generators/lolita/uninstall_generator.rb +70 -70
- data/lib/generators/templates/lolita.rb +13 -13
- data/lib/lolita.rb +140 -140
- data/lib/lolita/adapter/abstract_adapter.rb +15 -15
- data/lib/lolita/adapter/active_record.rb +227 -227
- data/lib/lolita/adapter/common_helper.rb +221 -221
- data/lib/lolita/adapter/field_helper.rb +18 -18
- data/lib/lolita/adapter/mongoid.rb +241 -241
- data/lib/lolita/components/base.rb +11 -11
- data/lib/lolita/configuration.rb +60 -60
- data/lib/lolita/configuration/column.rb +181 -181
- data/lib/lolita/configuration/field/big_decimal.rb +12 -12
- data/lib/lolita/configuration/field/boolean.rb +12 -12
- data/lib/lolita/configuration/field/date.rb +12 -12
- data/lib/lolita/configuration/field/hidden.rb +12 -12
- data/lib/lolita/configuration/field/integer.rb +11 -11
- data/lib/lolita/configuration/field/string.rb +16 -16
- data/lib/lolita/configuration/field/time.rb +13 -13
- data/lib/lolita/configuration/field_set.rb +25 -25
- data/lib/lolita/configuration/filter.rb +116 -116
- data/lib/lolita/configuration/list.rb +200 -200
- data/lib/lolita/configuration/search.rb +104 -104
- data/lib/lolita/controllers/component_helpers.rb +156 -156
- data/lib/lolita/controllers/internal_helpers.rb +71 -71
- data/lib/lolita/controllers/url_helpers.rb +7 -7
- data/lib/lolita/dbi/base.rb +56 -56
- data/lib/lolita/hooks/named_hook.rb +125 -125
- data/lib/lolita/lazy_loader.rb +54 -54
- data/lib/lolita/navigation/tree.rb +132 -132
- data/lib/lolita/rails/engine.rb +23 -23
- data/lib/lolita/rails/routes.rb +129 -129
- data/lib/lolita/ruby_ext/accessors.rb +26 -26
- data/lib/lolita/search/simple.rb +75 -75
- data/lib/lolita/support/formatter.rb +62 -62
- data/lib/lolita/support/formatter/rails.rb +56 -56
- data/lib/lolita/system_configuration/base.rb +178 -178
- data/lib/lolita/test/matchers.rb +77 -77
- data/lib/lolita/version.rb +30 -30
- data/lib/tasks/tinymce-assets.rake +6 -6
- data/lolita.gemspec +34 -34
- data/spec/adapter/common_helper_spec.rb +95 -95
- data/spec/adapter_helper.rb +42 -42
- data/spec/builder_spec.rb +120 -120
- data/spec/configuration/base_spec.rb +22 -22
- data/spec/configuration/field_spec.rb +118 -118
- data/spec/configuration/filter_spec.rb +131 -131
- data/spec/configuration/tab_spec.rb +187 -187
- data/spec/configuration/tabs_spec.rb +120 -120
- data/spec/generators/lolita/install_generator_spec.rb +54 -54
- data/spec/generators/lolita/uninstall_generator_spec.rb +48 -48
- data/spec/orm/mongoid.rb +12 -12
- data/spec/rails_app/app/controllers/application_controller.rb +3 -3
- data/spec/rails_app/app/helpers/application_helper.rb +3 -3
- data/spec/rails_app/app/mongoid/address.rb +7 -7
- data/spec/rails_app/app/mongoid/category.rb +18 -18
- data/spec/rails_app/app/mongoid/comment.rb +5 -5
- data/spec/rails_app/app/mongoid/post.rb +30 -30
- data/spec/rails_app/app/mongoid/preference.rb +5 -5
- data/spec/rails_app/app/mongoid/profile.rb +13 -13
- data/spec/rails_app/app/mongoid/tag.rb +3 -3
- data/spec/rails_app/app/views/components/lolita/configuration/list/_body_cell.html.erb +1 -1
- data/spec/rails_app/config/application.rb +33 -33
- data/spec/rails_app/config/boot.rb +7 -7
- data/spec/rails_app/config/environment.rb +5 -5
- data/spec/rails_app/config/environments/development.rb +23 -23
- data/spec/rails_app/config/environments/production.rb +37 -37
- data/spec/rails_app/config/environments/test.rb +37 -37
- data/spec/rails_app/config/initializers/backtrace_silencers.rb +7 -7
- data/spec/rails_app/config/initializers/inflections.rb +2 -2
- data/spec/rails_app/config/initializers/secret_token.rb +1 -1
- data/spec/rails_app/config/routes.rb +2 -2
- data/spec/rails_app/lib/lolita/configuration/field/my_custom_collection.rb +13 -13
- data/spec/rails_app/public/javascripts/jquery-1.5.1.min.js +15 -15
- data/spec/rails_app/public/javascripts/lolita/main.js +6 -6
- data/spec/rails_app/public/javascripts/modernizr-1.7.min.js +1 -1
- data/spec/rails_app/public/javascripts/rails.js +137 -137
- data/spec/rails_app/public/javascripts/tinymce/langs/en.js +221 -221
- data/spec/rails_app/public/javascripts/tinymce/license.txt +504 -504
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/about.htm +52 -52
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/anchor.htm +26 -26
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/charmap.htm +51 -51
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/color_picker.htm +74 -74
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/editor_template_src.js +1328 -1328
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/image.htm +80 -80
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/about.js +73 -73
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/anchor.js +42 -42
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/charmap.js +354 -354
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/color_picker.js +329 -329
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/image.js +247 -247
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/link.js +153 -153
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/source_editor.js +56 -56
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/langs/en.js +68 -68
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/langs/en_dlg.js +53 -53
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/link.htm +57 -57
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/shortcuts.htm +47 -47
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit/content.css +66 -66
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit/dialog.css +117 -117
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit/ui.css +988 -988
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/source_editor.htm +25 -25
- data/spec/rails_app/public/javascripts/tinymce/tiny_mce_popup.js +4 -4
- data/spec/rails_app/public/stylesheets/lolita/default.css +169 -169
- data/spec/rails_app/public/stylesheets/lolita/style.css +214 -214
- data/spec/spec_helper.rb +51 -51
- data/vendor/assets/javascripts/application_vendor_lolita.js +4 -4
- data/vendor/assets/javascripts/jquery-numeric.js +279 -279
- data/vendor/assets/javascripts/modernizr_1_7_min.js +1 -1
- data/vendor/assets/javascripts/tinymce/themes/advanced/skins/cirkuit/content.css +66 -66
- data/vendor/assets/javascripts/tinymce/themes/advanced/skins/cirkuit/dialog.css +117 -117
- data/vendor/assets/javascripts/tinymce/themes/advanced/skins/cirkuit/ui.css +988 -988
- data/vendor/assets/stylesheets/jquery-ui-1.8.16.custom.css +567 -567
- metadata +4 -3
@@ -1,27 +1,27 @@
|
|
1
|
-
class Object
|
2
|
-
# Works similar as <code>attr_accessor</code> only reader method is changed
|
3
|
-
# to allow to set value (used for Lolita blocks in different classes).
|
4
|
-
# ====Example
|
5
|
-
# class Klass
|
6
|
-
# lolita_accessor :my_method
|
7
|
-
# end
|
8
|
-
# k=Klass.new
|
9
|
-
# k.my_method("it's me")
|
10
|
-
# puts k.my_method #=> it's me
|
11
|
-
def lolita_accessor *methods
|
12
|
-
if [Class,Module].include?(self.class)
|
13
|
-
methods.each do |method|
|
14
|
-
class_eval <<-ACCESSORS,__FILE__,__LINE__+1
|
15
|
-
def #{method}(value=nil)
|
16
|
-
@#{method}=value if value
|
17
|
-
@#{method}
|
18
|
-
end
|
19
|
-
|
20
|
-
def #{method}=(value)
|
21
|
-
@#{method}=value
|
22
|
-
end
|
23
|
-
ACCESSORS
|
24
|
-
end
|
25
|
-
end
|
26
|
-
end
|
1
|
+
class Object
|
2
|
+
# Works similar as <code>attr_accessor</code> only reader method is changed
|
3
|
+
# to allow to set value (used for Lolita blocks in different classes).
|
4
|
+
# ====Example
|
5
|
+
# class Klass
|
6
|
+
# lolita_accessor :my_method
|
7
|
+
# end
|
8
|
+
# k=Klass.new
|
9
|
+
# k.my_method("it's me")
|
10
|
+
# puts k.my_method #=> it's me
|
11
|
+
def lolita_accessor *methods
|
12
|
+
if [Class,Module].include?(self.class)
|
13
|
+
methods.each do |method|
|
14
|
+
class_eval <<-ACCESSORS,__FILE__,__LINE__+1
|
15
|
+
def #{method}(value=nil)
|
16
|
+
@#{method}=value if value
|
17
|
+
@#{method}
|
18
|
+
end
|
19
|
+
|
20
|
+
def #{method}=(value)
|
21
|
+
@#{method}=value
|
22
|
+
end
|
23
|
+
ACCESSORS
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
27
|
end
|
data/lib/lolita/search/simple.rb
CHANGED
@@ -1,75 +1,75 @@
|
|
1
|
-
module Lolita
|
2
|
-
module Search
|
3
|
-
|
4
|
-
# Default search class for Lolita::Search. Lolita::Configuration::Search uses this by default.
|
5
|
-
# It accepts method name as constructor argument, when none is given it call Lolita::DBI#search.
|
6
|
-
class Simple
|
7
|
-
|
8
|
-
# Method in model used to run a search.
|
9
|
-
attr_accessor :search_method
|
10
|
-
attr_reader :dbi
|
11
|
-
|
12
|
-
# Accepts search method as optional argument
|
13
|
-
def initialize(dbi, *args)
|
14
|
-
@dbi = dbi
|
15
|
-
@options = args.extract_options!
|
16
|
-
@search_method = args[0]
|
17
|
-
end
|
18
|
-
|
19
|
-
# Require dbi (Lolita::DBI instance), query (String) and request and dbi as optional argument.
|
20
|
-
# Also you can pass options.
|
21
|
-
# ====Example
|
22
|
-
# search.run("query",:fields => [:name])
|
23
|
-
# # this will search only in :name field
|
24
|
-
# search.run("query",nil, Lolita::DBI::Base.create(Category))
|
25
|
-
# # this will use Category dbi for search
|
26
|
-
# When there is search method defined, it uses that otherwise run default search.
|
27
|
-
def run(query,*args)
|
28
|
-
with_query(query,*args) do
|
29
|
-
if self.search_method
|
30
|
-
run_custom_search
|
31
|
-
else
|
32
|
-
run_default_search
|
33
|
-
end
|
34
|
-
end
|
35
|
-
end
|
36
|
-
|
37
|
-
private
|
38
|
-
|
39
|
-
def with_query(query,*args)
|
40
|
-
begin
|
41
|
-
options = args.extract_options!
|
42
|
-
@old_dbi = self.dbi
|
43
|
-
@old_options = @options
|
44
|
-
@options = options if options.any?
|
45
|
-
@dbi = args[1] if args[1]
|
46
|
-
@query = query
|
47
|
-
@request = args[0]
|
48
|
-
yield
|
49
|
-
ensure
|
50
|
-
@dbi = @old_dbi
|
51
|
-
@options = @old_options
|
52
|
-
@query,@request = nil,nil
|
53
|
-
end
|
54
|
-
end
|
55
|
-
|
56
|
-
def run_custom_search
|
57
|
-
search_method_arity = @dbi.klass.method(self.search_method).arity
|
58
|
-
args = [@query,@request,@options]
|
59
|
-
if search_method_arity < 0
|
60
|
-
@dbi.klass.send(self.search_method.to_sym,@query,@request,@options)
|
61
|
-
elsif search_method_arity == 0
|
62
|
-
raise ArgumentError, "#{@dbi.klass.to_s} method #{search_method} must accept at least 1 argument."
|
63
|
-
else
|
64
|
-
arity_limit = search_method_arity > args.size ? args.size : search_method_arity
|
65
|
-
@dbi.klass.send(self.search_method.to_sym,*(args.slice(0..(arity_limit-1))))
|
66
|
-
end
|
67
|
-
end
|
68
|
-
|
69
|
-
def run_default_search
|
70
|
-
@dbi.search(@query,@options || {})
|
71
|
-
end
|
72
|
-
end
|
73
|
-
|
74
|
-
end
|
75
|
-
end
|
1
|
+
module Lolita
|
2
|
+
module Search
|
3
|
+
|
4
|
+
# Default search class for Lolita::Search. Lolita::Configuration::Search uses this by default.
|
5
|
+
# It accepts method name as constructor argument, when none is given it call Lolita::DBI#search.
|
6
|
+
class Simple
|
7
|
+
|
8
|
+
# Method in model used to run a search.
|
9
|
+
attr_accessor :search_method
|
10
|
+
attr_reader :dbi
|
11
|
+
|
12
|
+
# Accepts search method as optional argument
|
13
|
+
def initialize(dbi, *args)
|
14
|
+
@dbi = dbi
|
15
|
+
@options = args.extract_options!
|
16
|
+
@search_method = args[0]
|
17
|
+
end
|
18
|
+
|
19
|
+
# Require dbi (Lolita::DBI instance), query (String) and request and dbi as optional argument.
|
20
|
+
# Also you can pass options.
|
21
|
+
# ====Example
|
22
|
+
# search.run("query",:fields => [:name])
|
23
|
+
# # this will search only in :name field
|
24
|
+
# search.run("query",nil, Lolita::DBI::Base.create(Category))
|
25
|
+
# # this will use Category dbi for search
|
26
|
+
# When there is search method defined, it uses that otherwise run default search.
|
27
|
+
def run(query,*args)
|
28
|
+
with_query(query,*args) do
|
29
|
+
if self.search_method
|
30
|
+
run_custom_search
|
31
|
+
else
|
32
|
+
run_default_search
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
private
|
38
|
+
|
39
|
+
def with_query(query,*args)
|
40
|
+
begin
|
41
|
+
options = args.extract_options!
|
42
|
+
@old_dbi = self.dbi
|
43
|
+
@old_options = @options
|
44
|
+
@options = options if options.any?
|
45
|
+
@dbi = args[1] if args[1]
|
46
|
+
@query = query
|
47
|
+
@request = args[0]
|
48
|
+
yield
|
49
|
+
ensure
|
50
|
+
@dbi = @old_dbi
|
51
|
+
@options = @old_options
|
52
|
+
@query,@request = nil,nil
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
def run_custom_search
|
57
|
+
search_method_arity = @dbi.klass.method(self.search_method).arity
|
58
|
+
args = [@query,@request,@options]
|
59
|
+
if search_method_arity < 0
|
60
|
+
@dbi.klass.send(self.search_method.to_sym,@query,@request,@options)
|
61
|
+
elsif search_method_arity == 0
|
62
|
+
raise ArgumentError, "#{@dbi.klass.to_s} method #{search_method} must accept at least 1 argument."
|
63
|
+
else
|
64
|
+
arity_limit = search_method_arity > args.size ? args.size : search_method_arity
|
65
|
+
@dbi.klass.send(self.search_method.to_sym,*(args.slice(0..(arity_limit-1))))
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
def run_default_search
|
70
|
+
@dbi.search(@query,@options || {})
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
end
|
75
|
+
end
|
@@ -1,63 +1,63 @@
|
|
1
|
-
module Lolita
|
2
|
-
module Support
|
3
|
-
# Containes different kind of formaters.
|
4
|
-
# Change output format of different input types.
|
5
|
-
# To define, pass block, or String.
|
6
|
-
# ====Exmaple
|
7
|
-
# Lolita::Support::Formatter.new do |value|
|
8
|
-
# value.to_i**2
|
9
|
-
# end
|
10
|
-
# # or as String
|
11
|
-
# Lolita::Support::Formatter.new("%U")
|
12
|
-
# To format any value with defined formater call #with
|
13
|
-
# ====Example
|
14
|
-
# # Previous examples may be called like this
|
15
|
-
# formatter.with(1)
|
16
|
-
# formatter.with(Date.today)
|
17
|
-
class Formatter
|
18
|
-
|
19
|
-
def initialize(format=nil,&block)
|
20
|
-
@format=format
|
21
|
-
@block=block if block_given?
|
22
|
-
end
|
23
|
-
|
24
|
-
def format
|
25
|
-
@format
|
26
|
-
end
|
27
|
-
|
28
|
-
def block
|
29
|
-
@block
|
30
|
-
end
|
31
|
-
|
32
|
-
def with(value,*optional_values)
|
33
|
-
if @block
|
34
|
-
@block.call(value,*optional_values)
|
35
|
-
elsif @format
|
36
|
-
use_format_for(value,*optional_values)
|
37
|
-
else
|
38
|
-
use_default_format(value,*optional_values)
|
39
|
-
end
|
40
|
-
end
|
41
|
-
|
42
|
-
private
|
43
|
-
|
44
|
-
def use_default_format(value,*optional_values)
|
45
|
-
value
|
46
|
-
end
|
47
|
-
|
48
|
-
def use_format_for(value, *optional_values)
|
49
|
-
if value.respond_to?(:format)
|
50
|
-
call_block(value,*optional_values)
|
51
|
-
else
|
52
|
-
@format ? (@format % value) : value
|
53
|
-
end
|
54
|
-
end
|
55
|
-
|
56
|
-
def call_block(value,*optional_values)
|
57
|
-
value.send(:format,value,*optional_values)
|
58
|
-
end
|
59
|
-
|
60
|
-
end
|
61
|
-
|
62
|
-
end
|
1
|
+
module Lolita
|
2
|
+
module Support
|
3
|
+
# Containes different kind of formaters.
|
4
|
+
# Change output format of different input types.
|
5
|
+
# To define, pass block, or String.
|
6
|
+
# ====Exmaple
|
7
|
+
# Lolita::Support::Formatter.new do |value|
|
8
|
+
# value.to_i**2
|
9
|
+
# end
|
10
|
+
# # or as String
|
11
|
+
# Lolita::Support::Formatter.new("%U")
|
12
|
+
# To format any value with defined formater call #with
|
13
|
+
# ====Example
|
14
|
+
# # Previous examples may be called like this
|
15
|
+
# formatter.with(1)
|
16
|
+
# formatter.with(Date.today)
|
17
|
+
class Formatter
|
18
|
+
|
19
|
+
def initialize(format=nil,&block)
|
20
|
+
@format=format
|
21
|
+
@block=block if block_given?
|
22
|
+
end
|
23
|
+
|
24
|
+
def format
|
25
|
+
@format
|
26
|
+
end
|
27
|
+
|
28
|
+
def block
|
29
|
+
@block
|
30
|
+
end
|
31
|
+
|
32
|
+
def with(value,*optional_values)
|
33
|
+
if @block
|
34
|
+
@block.call(value,*optional_values)
|
35
|
+
elsif @format
|
36
|
+
use_format_for(value,*optional_values)
|
37
|
+
else
|
38
|
+
use_default_format(value,*optional_values)
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
private
|
43
|
+
|
44
|
+
def use_default_format(value,*optional_values)
|
45
|
+
value
|
46
|
+
end
|
47
|
+
|
48
|
+
def use_format_for(value, *optional_values)
|
49
|
+
if value.respond_to?(:format)
|
50
|
+
call_block(value,*optional_values)
|
51
|
+
else
|
52
|
+
@format ? (@format % value) : value
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
def call_block(value,*optional_values)
|
57
|
+
value.send(:format,value,*optional_values)
|
58
|
+
end
|
59
|
+
|
60
|
+
end
|
61
|
+
|
62
|
+
end
|
63
63
|
end
|
@@ -1,57 +1,57 @@
|
|
1
|
-
module Lolita
|
2
|
-
module Support
|
3
|
-
class Formatter
|
4
|
-
|
5
|
-
# Formater for work with rails, it localize Date and Time.
|
6
|
-
# Also
|
7
|
-
class Rails < Lolita::Support::Formatter
|
8
|
-
|
9
|
-
|
10
|
-
private
|
11
|
-
|
12
|
-
def use_format_for(value,*optional_values)
|
13
|
-
if @format && (value.is_a?(Time) || value.is_a?(Date))
|
14
|
-
localize_time_with_format(value,*optional_values)
|
15
|
-
else
|
16
|
-
use_default_format(value,*optional_values)
|
17
|
-
end
|
18
|
-
end
|
19
|
-
|
20
|
-
def localize_time_with_format(value,*optional_values)
|
21
|
-
if defined?(::I18n)
|
22
|
-
::I18n.localize(value, :format => @format)
|
23
|
-
else
|
24
|
-
use_default_format(value,*optional_values)
|
25
|
-
end
|
26
|
-
end
|
27
|
-
|
28
|
-
def use_default_format(value,*optional_values)
|
29
|
-
if value
|
30
|
-
if value.is_a?(String)
|
31
|
-
@format ? (@format % value) : value
|
32
|
-
elsif value.is_a?(Numeric)
|
33
|
-
@format ? (@format % value) : value
|
34
|
-
elsif value.is_a?(Date)
|
35
|
-
if defined?(::I18n)
|
36
|
-
::I18n.localize(value, :format => :long)
|
37
|
-
else
|
38
|
-
value.strftime("%Y/%m%/%d")
|
39
|
-
end
|
40
|
-
elsif value.is_a?(Time)
|
41
|
-
if defined?(::I18n)
|
42
|
-
::I18n.localize(value, :format => :long)
|
43
|
-
else
|
44
|
-
value.strftime("%Y/%m/%d %H:%M:%S")
|
45
|
-
end
|
46
|
-
else
|
47
|
-
value.to_s
|
48
|
-
end
|
49
|
-
else
|
50
|
-
""
|
51
|
-
end
|
52
|
-
end
|
53
|
-
end
|
54
|
-
|
55
|
-
end
|
56
|
-
end
|
1
|
+
module Lolita
|
2
|
+
module Support
|
3
|
+
class Formatter
|
4
|
+
|
5
|
+
# Formater for work with rails, it localize Date and Time.
|
6
|
+
# Also
|
7
|
+
class Rails < Lolita::Support::Formatter
|
8
|
+
|
9
|
+
|
10
|
+
private
|
11
|
+
|
12
|
+
def use_format_for(value,*optional_values)
|
13
|
+
if @format && (value.is_a?(Time) || value.is_a?(Date))
|
14
|
+
localize_time_with_format(value,*optional_values)
|
15
|
+
else
|
16
|
+
use_default_format(value,*optional_values)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
def localize_time_with_format(value,*optional_values)
|
21
|
+
if defined?(::I18n)
|
22
|
+
::I18n.localize(value, :format => @format)
|
23
|
+
else
|
24
|
+
use_default_format(value,*optional_values)
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
def use_default_format(value,*optional_values)
|
29
|
+
if value
|
30
|
+
if value.is_a?(String)
|
31
|
+
@format ? (@format % value) : value
|
32
|
+
elsif value.is_a?(Numeric)
|
33
|
+
@format ? (@format % value) : value
|
34
|
+
elsif value.is_a?(Date)
|
35
|
+
if defined?(::I18n)
|
36
|
+
::I18n.localize(value, :format => :long)
|
37
|
+
else
|
38
|
+
value.strftime("%Y/%m%/%d")
|
39
|
+
end
|
40
|
+
elsif value.is_a?(Time)
|
41
|
+
if defined?(::I18n)
|
42
|
+
::I18n.localize(value, :format => :long)
|
43
|
+
else
|
44
|
+
value.strftime("%Y/%m/%d %H:%M:%S")
|
45
|
+
end
|
46
|
+
else
|
47
|
+
value.to_s
|
48
|
+
end
|
49
|
+
else
|
50
|
+
""
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
end
|
56
|
+
end
|
57
57
|
end
|
@@ -1,178 +1,178 @@
|
|
1
|
-
module Lolita
|
2
|
-
module SystemConfiguration
|
3
|
-
class Base
|
4
|
-
attr_reader :scope, :modules, :routes, :controllers,:resources
|
5
|
-
attr_accessor :mappings,:default_route,:user_classes,:authentication,:authorization
|
6
|
-
attr_writer :default_locale, :ability_class, :policy_class
|
7
|
-
|
8
|
-
def initialize(scope)
|
9
|
-
@scope=scope
|
10
|
-
@mappings={}
|
11
|
-
@resources={}
|
12
|
-
@default_module=nil
|
13
|
-
@user_classes=[]
|
14
|
-
@modules=[]
|
15
|
-
@routes={}
|
16
|
-
@controllers={}
|
17
|
-
end
|
18
|
-
|
19
|
-
def application &block
|
20
|
-
@application ||= Lolita::SystemConfiguration::Application.new
|
21
|
-
if block_given?
|
22
|
-
yield @application
|
23
|
-
end
|
24
|
-
@application
|
25
|
-
end
|
26
|
-
|
27
|
-
def navigation
|
28
|
-
unless Lolita::Navigation::Tree[:"left_side_navigation"]
|
29
|
-
tree = Lolita::Navigation::Tree.new(:"left_side_navigation")
|
30
|
-
Lolita::Navigation::Tree.remember(tree)
|
31
|
-
end
|
32
|
-
Lolita::Navigation::Tree[:"left_side_navigation"]
|
33
|
-
end
|
34
|
-
|
35
|
-
# ability class for CanCan
|
36
|
-
def ability_class
|
37
|
-
@ability_class || (::Ability rescue nil) || raise("No ability class found.")
|
38
|
-
end
|
39
|
-
|
40
|
-
# policy class for Pundit
|
41
|
-
def policy_class
|
42
|
-
@policy_class || (::LolitaPolicy rescue nil) || raise("No policy class found.")
|
43
|
-
end
|
44
|
-
|
45
|
-
def locales=(value)
|
46
|
-
unless value.is_a?(Array)
|
47
|
-
@locales=[value]
|
48
|
-
else
|
49
|
-
@locales=value
|
50
|
-
end
|
51
|
-
end
|
52
|
-
|
53
|
-
def locales
|
54
|
-
@locales || []
|
55
|
-
end
|
56
|
-
|
57
|
-
def locale()
|
58
|
-
@locale || default_locale
|
59
|
-
end
|
60
|
-
|
61
|
-
def locale=given_locale
|
62
|
-
@locale=if locales.include?(given_locale.to_s.to_sym)
|
63
|
-
given_locale.to_s.to_sym
|
64
|
-
else
|
65
|
-
Lolita.default_locale
|
66
|
-
end
|
67
|
-
if defined?(::I18n)
|
68
|
-
::I18n.locale = @locale
|
69
|
-
end
|
70
|
-
@locale
|
71
|
-
end
|
72
|
-
# Return default locale. First looks for defined default locale for Lolita, when not found than
|
73
|
-
# take first of defined #locales for Lolita, if there no defined locales for Lolita, than
|
74
|
-
# look for I18n and take default locale from there or if there is no I18n than take :en
|
75
|
-
def default_locale
|
76
|
-
@default_locale || self.locales.first || (defined?(::I18n) ? ::I18n.default_locale : :en)
|
77
|
-
end
|
78
|
-
# Call (with #call) to route klass
|
79
|
-
# And return all names of routes that are needed for resource.
|
80
|
-
# When with #add_module routes are defined like
|
81
|
-
# Lolita.add_module MyModule, :route=>:my_module
|
82
|
-
# then this will be passed to the method that creates routes, but
|
83
|
-
# when Proc is passed to <i>:route</i> then this Proc should return
|
84
|
-
# name of route or nil.
|
85
|
-
# These names then are used for methods like <em>lolita_[route_name]_route</em>
|
86
|
-
# that should be required somewhere in you module.
|
87
|
-
def conditional_routes(klass=nil)
|
88
|
-
@routes.map{|name,route|
|
89
|
-
if route.first
|
90
|
-
if route.last.respond_to?(:call)
|
91
|
-
route.last.call(klass)
|
92
|
-
else
|
93
|
-
route.last
|
94
|
-
end
|
95
|
-
end
|
96
|
-
}.compact
|
97
|
-
end
|
98
|
-
|
99
|
-
# Find all routes that is needed for defined classes
|
100
|
-
# And return only one for each different route.
|
101
|
-
def common_routes(klasses)
|
102
|
-
@routes.map{|name,route|
|
103
|
-
unless route.first
|
104
|
-
klasses.map{|klass| route.last.respond_to?(:call) ? route.last.call(klass) : route.last}
|
105
|
-
end
|
106
|
-
}.flatten.compact.uniq
|
107
|
-
end
|
108
|
-
|
109
|
-
# Include module in Lolita, don't know why i need this
|
110
|
-
def use(module_name)
|
111
|
-
Lolita.send(:include,module_name)
|
112
|
-
end
|
113
|
-
|
114
|
-
def add_mapping(resource,options={})
|
115
|
-
mapping = Lolita::Mapping.new(resource, options)
|
116
|
-
self.mappings[mapping.name] = mapping
|
117
|
-
mapping
|
118
|
-
end
|
119
|
-
|
120
|
-
# Add new module to Lolita
|
121
|
-
# Accpted options
|
122
|
-
# * <tt>controller</tt> - not in use
|
123
|
-
# * <tt>nested</tt> - is route stands itsefl or is used in combination with resource
|
124
|
-
# * <tt>route</tt> - Symbol of route name or lambad, that return route name based on resource.
|
125
|
-
# Route name is used to call method lolita_[route_name] in Mapper class, and that should draw route.
|
126
|
-
# * <tt>:name</tt> - name of module, underscored symbol. Used to draw default route, by default always
|
127
|
-
# lolita_rest is called, but if route with resource name is found, than by default this route will be drawn.
|
128
|
-
# Like lolita_for :posts, can go to different controller than rest and do other things.
|
129
|
-
# * <tt>:path</tt> - some file that will be included. Deprecated will be removed
|
130
|
-
# ====Example
|
131
|
-
# Lolita.add_module Lolita::Posts, :route=>:post, :name=>:post
|
132
|
-
# lolita_for :posts #=> create url whatever is defined in lolita_post method, and goes to :controller=>"lolita/posts"
|
133
|
-
# Lolita.add_module Lolita::FileUpload, :route=>lambda{|resource| resource.lolita.tabs.by_type(:file) ? :file_upload : nil}
|
134
|
-
# lolita_for :users #=> creat default rest urls and also call method lolita_file_upload if user lolita define :file tab.
|
135
|
-
# To add route for public interface that goes to added module, than use
|
136
|
-
# Lolita.add_module Post, :name=>:posts
|
137
|
-
# And then when in routes.rb will be defined lolita_for(:posts) it will call method <i>lolita_posts_route</i>
|
138
|
-
# and that method should define resource.
|
139
|
-
# ====Example
|
140
|
-
# # require this in your gem or lib
|
141
|
-
# module ActionDispatch::Routing
|
142
|
-
# class Mapper
|
143
|
-
# protected
|
144
|
-
# def lolita_posts_route mapping, controllers
|
145
|
-
# resources mapping.plural,:only=>[:index,:new,:create],
|
146
|
-
# :controller=>controllers[:posts],:module=>mapping.module
|
147
|
-
# end
|
148
|
-
# end
|
149
|
-
# end
|
150
|
-
# You open Mapper class and add your method that call #resources or #match or other method that define route
|
151
|
-
# For common route for all lolita resources your method should look like this
|
152
|
-
# ====Example
|
153
|
-
# def lolita_files_route
|
154
|
-
# mapping=Lolita.add_mapping(:files,:class_name=>"Lolita::Multimedia::File",:module=>"file_upload")
|
155
|
-
# scope :module=>mapping.module do
|
156
|
-
# resources mapping.name
|
157
|
-
# end
|
158
|
-
# end
|
159
|
-
def add_module module_container, options={}
|
160
|
-
raise ArgumentError, "Can't add module without module container!" unless module_container
|
161
|
-
options.assert_valid_keys(:controller,:route,:model,:path,:name,:nested)
|
162
|
-
name=options[:name]||module_container.to_s.to_sym
|
163
|
-
self.modules<<module_container
|
164
|
-
|
165
|
-
if options.has_key?(:route)
|
166
|
-
self.routes[name]=[options.has_key?(:nested) ? options[:nested] : true,options[:route]]
|
167
|
-
end
|
168
|
-
self.controllers[name]=options[:controller] if options.has_key?(:controller)
|
169
|
-
|
170
|
-
if options[:path]
|
171
|
-
require File.join(options[:path],name.to_s)
|
172
|
-
end
|
173
|
-
|
174
|
-
end
|
175
|
-
|
176
|
-
end
|
177
|
-
end
|
178
|
-
end
|
1
|
+
module Lolita
|
2
|
+
module SystemConfiguration
|
3
|
+
class Base
|
4
|
+
attr_reader :scope, :modules, :routes, :controllers,:resources
|
5
|
+
attr_accessor :mappings,:default_route,:user_classes,:authentication,:authorization
|
6
|
+
attr_writer :default_locale, :ability_class, :policy_class
|
7
|
+
|
8
|
+
def initialize(scope)
|
9
|
+
@scope=scope
|
10
|
+
@mappings={}
|
11
|
+
@resources={}
|
12
|
+
@default_module=nil
|
13
|
+
@user_classes=[]
|
14
|
+
@modules=[]
|
15
|
+
@routes={}
|
16
|
+
@controllers={}
|
17
|
+
end
|
18
|
+
|
19
|
+
def application &block
|
20
|
+
@application ||= Lolita::SystemConfiguration::Application.new
|
21
|
+
if block_given?
|
22
|
+
yield @application
|
23
|
+
end
|
24
|
+
@application
|
25
|
+
end
|
26
|
+
|
27
|
+
def navigation
|
28
|
+
unless Lolita::Navigation::Tree[:"left_side_navigation"]
|
29
|
+
tree = Lolita::Navigation::Tree.new(:"left_side_navigation")
|
30
|
+
Lolita::Navigation::Tree.remember(tree)
|
31
|
+
end
|
32
|
+
Lolita::Navigation::Tree[:"left_side_navigation"]
|
33
|
+
end
|
34
|
+
|
35
|
+
# ability class for CanCan
|
36
|
+
def ability_class
|
37
|
+
@ability_class || (::Ability rescue nil) || raise("No ability class found.")
|
38
|
+
end
|
39
|
+
|
40
|
+
# policy class for Pundit
|
41
|
+
def policy_class
|
42
|
+
@policy_class || (::LolitaPolicy rescue nil) || raise("No policy class found.")
|
43
|
+
end
|
44
|
+
|
45
|
+
def locales=(value)
|
46
|
+
unless value.is_a?(Array)
|
47
|
+
@locales=[value]
|
48
|
+
else
|
49
|
+
@locales=value
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
def locales
|
54
|
+
@locales || []
|
55
|
+
end
|
56
|
+
|
57
|
+
def locale()
|
58
|
+
@locale || default_locale
|
59
|
+
end
|
60
|
+
|
61
|
+
def locale=given_locale
|
62
|
+
@locale=if locales.include?(given_locale.to_s.to_sym)
|
63
|
+
given_locale.to_s.to_sym
|
64
|
+
else
|
65
|
+
Lolita.default_locale
|
66
|
+
end
|
67
|
+
if defined?(::I18n)
|
68
|
+
::I18n.locale = @locale
|
69
|
+
end
|
70
|
+
@locale
|
71
|
+
end
|
72
|
+
# Return default locale. First looks for defined default locale for Lolita, when not found than
|
73
|
+
# take first of defined #locales for Lolita, if there no defined locales for Lolita, than
|
74
|
+
# look for I18n and take default locale from there or if there is no I18n than take :en
|
75
|
+
def default_locale
|
76
|
+
@default_locale || self.locales.first || (defined?(::I18n) ? ::I18n.default_locale : :en)
|
77
|
+
end
|
78
|
+
# Call (with #call) to route klass
|
79
|
+
# And return all names of routes that are needed for resource.
|
80
|
+
# When with #add_module routes are defined like
|
81
|
+
# Lolita.add_module MyModule, :route=>:my_module
|
82
|
+
# then this will be passed to the method that creates routes, but
|
83
|
+
# when Proc is passed to <i>:route</i> then this Proc should return
|
84
|
+
# name of route or nil.
|
85
|
+
# These names then are used for methods like <em>lolita_[route_name]_route</em>
|
86
|
+
# that should be required somewhere in you module.
|
87
|
+
def conditional_routes(klass=nil)
|
88
|
+
@routes.map{|name,route|
|
89
|
+
if route.first
|
90
|
+
if route.last.respond_to?(:call)
|
91
|
+
route.last.call(klass)
|
92
|
+
else
|
93
|
+
route.last
|
94
|
+
end
|
95
|
+
end
|
96
|
+
}.compact
|
97
|
+
end
|
98
|
+
|
99
|
+
# Find all routes that is needed for defined classes
|
100
|
+
# And return only one for each different route.
|
101
|
+
def common_routes(klasses)
|
102
|
+
@routes.map{|name,route|
|
103
|
+
unless route.first
|
104
|
+
klasses.map{|klass| route.last.respond_to?(:call) ? route.last.call(klass) : route.last}
|
105
|
+
end
|
106
|
+
}.flatten.compact.uniq
|
107
|
+
end
|
108
|
+
|
109
|
+
# Include module in Lolita, don't know why i need this
|
110
|
+
def use(module_name)
|
111
|
+
Lolita.send(:include,module_name)
|
112
|
+
end
|
113
|
+
|
114
|
+
def add_mapping(resource,options={})
|
115
|
+
mapping = Lolita::Mapping.new(resource, options)
|
116
|
+
self.mappings[mapping.name] = mapping
|
117
|
+
mapping
|
118
|
+
end
|
119
|
+
|
120
|
+
# Add new module to Lolita
|
121
|
+
# Accpted options
|
122
|
+
# * <tt>controller</tt> - not in use
|
123
|
+
# * <tt>nested</tt> - is route stands itsefl or is used in combination with resource
|
124
|
+
# * <tt>route</tt> - Symbol of route name or lambad, that return route name based on resource.
|
125
|
+
# Route name is used to call method lolita_[route_name] in Mapper class, and that should draw route.
|
126
|
+
# * <tt>:name</tt> - name of module, underscored symbol. Used to draw default route, by default always
|
127
|
+
# lolita_rest is called, but if route with resource name is found, than by default this route will be drawn.
|
128
|
+
# Like lolita_for :posts, can go to different controller than rest and do other things.
|
129
|
+
# * <tt>:path</tt> - some file that will be included. Deprecated will be removed
|
130
|
+
# ====Example
|
131
|
+
# Lolita.add_module Lolita::Posts, :route=>:post, :name=>:post
|
132
|
+
# lolita_for :posts #=> create url whatever is defined in lolita_post method, and goes to :controller=>"lolita/posts"
|
133
|
+
# Lolita.add_module Lolita::FileUpload, :route=>lambda{|resource| resource.lolita.tabs.by_type(:file) ? :file_upload : nil}
|
134
|
+
# lolita_for :users #=> creat default rest urls and also call method lolita_file_upload if user lolita define :file tab.
|
135
|
+
# To add route for public interface that goes to added module, than use
|
136
|
+
# Lolita.add_module Post, :name=>:posts
|
137
|
+
# And then when in routes.rb will be defined lolita_for(:posts) it will call method <i>lolita_posts_route</i>
|
138
|
+
# and that method should define resource.
|
139
|
+
# ====Example
|
140
|
+
# # require this in your gem or lib
|
141
|
+
# module ActionDispatch::Routing
|
142
|
+
# class Mapper
|
143
|
+
# protected
|
144
|
+
# def lolita_posts_route mapping, controllers
|
145
|
+
# resources mapping.plural,:only=>[:index,:new,:create],
|
146
|
+
# :controller=>controllers[:posts],:module=>mapping.module
|
147
|
+
# end
|
148
|
+
# end
|
149
|
+
# end
|
150
|
+
# You open Mapper class and add your method that call #resources or #match or other method that define route
|
151
|
+
# For common route for all lolita resources your method should look like this
|
152
|
+
# ====Example
|
153
|
+
# def lolita_files_route
|
154
|
+
# mapping=Lolita.add_mapping(:files,:class_name=>"Lolita::Multimedia::File",:module=>"file_upload")
|
155
|
+
# scope :module=>mapping.module do
|
156
|
+
# resources mapping.name
|
157
|
+
# end
|
158
|
+
# end
|
159
|
+
def add_module module_container, options={}
|
160
|
+
raise ArgumentError, "Can't add module without module container!" unless module_container
|
161
|
+
options.assert_valid_keys(:controller,:route,:model,:path,:name,:nested)
|
162
|
+
name=options[:name]||module_container.to_s.to_sym
|
163
|
+
self.modules<<module_container
|
164
|
+
|
165
|
+
if options.has_key?(:route)
|
166
|
+
self.routes[name]=[options.has_key?(:nested) ? options[:nested] : true,options[:route]]
|
167
|
+
end
|
168
|
+
self.controllers[name]=options[:controller] if options.has_key?(:controller)
|
169
|
+
|
170
|
+
if options[:path]
|
171
|
+
require File.join(options[:path],name.to_s)
|
172
|
+
end
|
173
|
+
|
174
|
+
end
|
175
|
+
|
176
|
+
end
|
177
|
+
end
|
178
|
+
end
|