lolita 3.1.10 → 3.1.11
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +5 -5
- data/.rspec +2 -2
- data/GUIDELINES.rdoc +24 -24
- data/Gemfile +26 -26
- data/History.rdoc +162 -154
- data/LICENSE.txt +22 -22
- data/README.rdoc +98 -98
- data/Rakefile +40 -40
- data/VERSION +1 -1
- data/app/controllers/lolita/info_controller.rb +41 -41
- data/app/controllers/lolita/rest_controller.rb +130 -130
- data/app/helpers/components/lolita/configuration/list_component.rb +10 -10
- data/app/helpers/lolita_helper.rb +11 -11
- data/app/views/components/lolita/configuration/column/_display.html.erb +4 -4
- data/app/views/components/lolita/configuration/column/_header.html.erb +7 -7
- data/app/views/components/lolita/configuration/column/_sort.html.erb +4 -4
- data/app/views/components/lolita/configuration/columns/_body.html.erb +4 -4
- data/app/views/components/lolita/configuration/columns/_display.html.erb +1 -1
- data/app/views/components/lolita/configuration/columns/_first.html.erb +2 -2
- data/app/views/components/lolita/configuration/columns/_first_column_header.html.erb +3 -3
- data/app/views/components/lolita/configuration/columns/_header.html.erb +8 -8
- data/app/views/components/lolita/configuration/columns/_last.html.erb +4 -4
- data/app/views/components/lolita/configuration/columns/_last_column_header.html.erb +2 -2
- data/app/views/components/lolita/configuration/columns/_row.html.erb +7 -7
- data/app/views/components/lolita/configuration/field/_display.html.erb +9 -9
- data/app/views/components/lolita/configuration/field/_label.html.erb +1 -1
- data/app/views/components/lolita/configuration/field/_object.html.erb +1 -1
- data/app/views/components/lolita/configuration/field/array/_display.html.erb +4 -4
- data/app/views/components/lolita/configuration/field/array/habtm/_display.html.erb +26 -26
- data/app/views/components/lolita/configuration/field/array/select/_display.html.erb +5 -5
- data/app/views/components/lolita/configuration/field/boolean/filter/_display.html.erb +1 -1
- data/app/views/components/lolita/configuration/field/date/_display.html.erb +1 -1
- data/app/views/components/lolita/configuration/field/date_time/date/_display.html.erb +1 -1
- data/app/views/components/lolita/configuration/field/integer/_display.html.erb +1 -1
- data/app/views/components/lolita/configuration/field/string/_display.html.erb +4 -4
- data/app/views/components/lolita/configuration/field/string/disabled/_display.html.erb +1 -1
- data/app/views/components/lolita/configuration/field/string/password/_display.html.erb +3 -3
- data/app/views/components/lolita/configuration/field/string/text/_display.html.erb +18 -18
- data/app/views/components/lolita/configuration/field_set/_display.html.erb +5 -5
- data/app/views/components/lolita/configuration/list/_display.html.erb +10 -10
- data/app/views/components/lolita/configuration/list/_filter.html.erb +7 -7
- data/app/views/components/lolita/configuration/list/_new_resource.html.erb +4 -4
- data/app/views/components/lolita/configuration/list/_title.html.erb +4 -4
- data/app/views/components/lolita/configuration/tab/_display.html.erb +17 -17
- data/app/views/components/lolita/configuration/tab/_fields.html.erb +6 -6
- data/app/views/components/lolita/configuration/tab/content/_display.html.erb +1 -1
- data/app/views/components/lolita/configuration/tab/default/_display.html.erb +8 -8
- data/app/views/components/lolita/configuration/tabs/_display.html.erb +10 -10
- data/app/views/components/lolita/navigation/_display.html.erb +2 -2
- data/app/views/components/lolita/navigation/_tree.html.erb +38 -38
- data/app/views/components/lolita/shared/_flash.html.erb +5 -5
- data/app/views/components/lolita/shared/_header.html.erb +8 -8
- data/app/views/components/lolita/shared/_right_sidebar.html.erb +13 -13
- data/app/views/layouts/lolita/application.html.erb +44 -44
- data/app/views/lolita/info/index.html.erb +232 -232
- data/app/views/lolita/rest/form.html.erb +1 -1
- data/app/views/lolita/rest/index.html.erb +1 -1
- data/author +1 -1
- data/config/locales/default/lv.yml +180 -180
- data/config/locales/en.yml +20 -20
- data/config/locales/lv.yml +20 -20
- data/config/routes.rb +3 -3
- data/db/seed.rb +1 -1
- data/features/create_page.feature +19 -19
- data/features/step_definitions/lolita_steps.rb +7 -7
- data/features/step_definitions/web_steps.rb +219 -219
- data/features/support/env.rb +73 -73
- data/features/support/paths.rb +35 -35
- data/lib/generators/helpers/file_helper.rb +22 -22
- data/lib/generators/lolita/assets_generator.rb +18 -18
- data/lib/generators/lolita/install_generator.rb +28 -28
- data/lib/generators/templates/lolita.rb +19 -19
- data/lib/lolita.rb +184 -184
- data/lib/lolita/adapter/abstract_adapter.rb +13 -13
- data/lib/lolita/adapter/active_record.rb +148 -148
- data/lib/lolita/adapter/mongoid.rb +127 -127
- data/lib/lolita/base_configuration.rb +165 -165
- data/lib/lolita/builder.rb +249 -249
- data/lib/lolita/configuration/base.rb +76 -76
- data/lib/lolita/configuration/column.rb +93 -94
- data/lib/lolita/configuration/columns.rb +66 -66
- data/lib/lolita/configuration/factory.rb +55 -55
- data/lib/lolita/configuration/field.rb +216 -216
- data/lib/lolita/configuration/field/array.rb +75 -75
- 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/date_time.rb +13 -13
- data/lib/lolita/configuration/field/integer.rb +12 -12
- data/lib/lolita/configuration/field/string.rb +13 -13
- data/lib/lolita/configuration/field/time.rb +13 -13
- data/lib/lolita/configuration/field_set.rb +25 -25
- data/lib/lolita/configuration/fields.rb +35 -35
- data/lib/lolita/configuration/filter.rb +108 -108
- data/lib/lolita/configuration/list.rb +104 -104
- data/lib/lolita/configuration/page.rb +125 -124
- data/lib/lolita/configuration/tab.rb +187 -187
- data/lib/lolita/configuration/tab/content.rb +21 -21
- data/lib/lolita/configuration/tab/default.rb +25 -25
- data/lib/lolita/configuration/tabs.rb +132 -132
- data/lib/lolita/controllers/component_helpers.rb +127 -127
- data/lib/lolita/controllers/internal_helpers.rb +109 -109
- data/lib/lolita/controllers/url_helpers.rb +111 -111
- data/lib/lolita/controllers/user_helpers.rb +32 -32
- data/lib/lolita/controllers/view_user_helpers.rb +12 -12
- data/lib/lolita/dbi/base.rb +50 -50
- data/lib/lolita/errors.rb +12 -12
- data/lib/lolita/hooks.rb +355 -355
- data/lib/lolita/hooks/named_hook.rb +125 -125
- data/lib/lolita/lazy_loader.rb +46 -46
- data/lib/lolita/mapping.rb +55 -55
- data/lib/lolita/modules.rb +6 -6
- data/lib/lolita/modules/rest.rb +10 -10
- data/lib/lolita/navigation/branch.rb +132 -132
- data/lib/lolita/navigation/tree.rb +116 -116
- data/lib/lolita/observed_array.rb +74 -74
- data/lib/lolita/rails.rb +20 -20
- data/lib/lolita/rails/all.rb +10 -10
- data/lib/lolita/rails/routes.rb +133 -133
- data/lib/lolita/ruby_ext/accessors.rb +26 -26
- data/lib/lolita/support/formatter.rb +62 -62
- data/lib/lolita/support/formatter/rails.rb +56 -56
- data/lib/lolita/test/matchers.rb +77 -77
- data/lolita.gemspec +2 -2
- data/public/javascripts/jquery-1.6.min.js +15 -15
- data/public/javascripts/jquery-ui-1.8.13.min.js +407 -407
- data/public/javascripts/lolita/main.js +39 -39
- data/public/javascripts/lolita/tab.js +41 -41
- data/public/javascripts/modernizr-1.7.min.js +1 -1
- data/public/javascripts/rails.js +137 -137
- data/public/javascripts/tinymce/langs/en.js +221 -221
- data/public/javascripts/tinymce/license.txt +504 -504
- data/public/javascripts/tinymce/themes/advanced/about.htm +52 -52
- data/public/javascripts/tinymce/themes/advanced/anchor.htm +26 -26
- data/public/javascripts/tinymce/themes/advanced/charmap.htm +51 -51
- data/public/javascripts/tinymce/themes/advanced/color_picker.htm +74 -74
- data/public/javascripts/tinymce/themes/advanced/editor_template_src.js +1328 -1328
- data/public/javascripts/tinymce/themes/advanced/image.htm +80 -80
- data/public/javascripts/tinymce/themes/advanced/js/about.js +73 -73
- data/public/javascripts/tinymce/themes/advanced/js/anchor.js +42 -42
- data/public/javascripts/tinymce/themes/advanced/js/charmap.js +354 -354
- data/public/javascripts/tinymce/themes/advanced/js/color_picker.js +329 -329
- data/public/javascripts/tinymce/themes/advanced/js/image.js +247 -247
- data/public/javascripts/tinymce/themes/advanced/js/link.js +153 -153
- data/public/javascripts/tinymce/themes/advanced/js/source_editor.js +56 -56
- data/public/javascripts/tinymce/themes/advanced/langs/en.js +68 -68
- data/public/javascripts/tinymce/themes/advanced/langs/en_dlg.js +53 -53
- data/public/javascripts/tinymce/themes/advanced/link.htm +57 -57
- data/public/javascripts/tinymce/themes/advanced/shortcuts.htm +47 -47
- data/public/javascripts/tinymce/themes/advanced/skins/cirkuit/content.css +66 -66
- data/public/javascripts/tinymce/themes/advanced/skins/cirkuit/dialog.css +117 -117
- data/public/javascripts/tinymce/themes/advanced/skins/cirkuit/ui.css +988 -988
- data/public/javascripts/tinymce/themes/advanced/source_editor.htm +25 -25
- data/public/javascripts/tinymce/tiny_mce_popup.js +4 -4
- data/public/javascripts/tinymce_config.js +15 -15
- data/public/stylesheets/lolita/default.css +169 -169
- data/public/stylesheets/lolita/style.css +253 -253
- data/spec/adapter_helper.rb +43 -43
- data/spec/builder_spec.rb +120 -120
- data/spec/configuration/base_spec.rb +44 -44
- data/spec/configuration/column_spec.rb +89 -89
- data/spec/configuration/columns_spec.rb +54 -54
- data/spec/configuration/field_set_spec.rb +12 -12
- data/spec/configuration/field_spec.rb +118 -118
- data/spec/configuration/filter_spec.rb +122 -122
- data/spec/configuration/list_spec.rb +76 -76
- data/spec/configuration/page_spec.rb +19 -19
- data/spec/configuration/tab_spec.rb +165 -165
- data/spec/configuration/tabs_spec.rb +106 -106
- data/spec/controllers/component_helpers_spec.rb +5 -5
- data/spec/controllers/internal_helpers_spec.rb +76 -76
- data/spec/controllers/lolita_rest_nested_resources_spec.rb +33 -33
- data/spec/controllers/lolita_rest_spec.rb +53 -53
- data/spec/dbi/base_spec.rb +44 -44
- data/spec/hooks_spec.rb +257 -257
- data/spec/lolita_spec.rb +13 -13
- data/spec/mapping_spec.rb +29 -29
- data/spec/navigation/branch_spec.rb +81 -81
- data/spec/navigation/tree_spec.rb +73 -73
- data/spec/orm/mongoid.rb +11 -11
- 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 +5 -5
- data/spec/rails_app/app/mongoid/comment.rb +5 -5
- data/spec/rails_app/app/mongoid/post.rb +18 -18
- 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 +26 -26
- data/spec/rails_app/config/boot.rb +13 -13
- data/spec/rails_app/config/environment.rb +5 -5
- data/spec/rails_app/config/environments/development.rb +19 -19
- data/spec/rails_app/config/environments/production.rb +33 -33
- data/spec/rails_app/config/environments/test.rb +33 -33
- 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/lolita/tab.js +40 -40
- 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/routing/routes_spec.rb +15 -15
- data/spec/spec_helper.rb +46 -46
- data/spec/support/factories/category.rb +3 -3
- data/spec/support/factories/post.rb +4 -4
- data/spec/support/factories/tag.rb +2 -2
- data/spec/support/formatter_spec.rb +42 -42
- metadata +31 -31
data/.document
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
lib/**/*.rb
|
2
|
-
bin/*
|
3
|
-
-
|
4
|
-
features/**/*.feature
|
5
|
-
LICENSE.txt
|
1
|
+
lib/**/*.rb
|
2
|
+
bin/*
|
3
|
+
-
|
4
|
+
features/**/*.feature
|
5
|
+
LICENSE.txt
|
data/.rspec
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
--color
|
2
|
-
--format d
|
1
|
+
--color
|
2
|
+
--format d
|
data/GUIDELINES.rdoc
CHANGED
@@ -1,24 +1,24 @@
|
|
1
|
-
=Lolita developer guidline
|
2
|
-
|
3
|
-
This file is meant for developers only.
|
4
|
-
|
5
|
-
# Creating GEM for Lolita
|
6
|
-
|
7
|
-
When creating GEM, that include new module in one or more of lolita modules, use
|
8
|
-
Lolita.send(:include,YourModule) instead of reopening module.
|
9
|
-
|
10
|
-
# How to install
|
11
|
-
|
12
|
-
gem install lolita
|
13
|
-
|
14
|
-
cd your_project
|
15
|
-
|
16
|
-
rails g lolita:install
|
17
|
-
|
18
|
-
change your project initializers/lolita.rb
|
19
|
-
|
20
|
-
# For cucumber testing
|
21
|
-
gem install akephalos
|
22
|
-
bundle exec cucumber features
|
23
|
-
|
24
|
-
|
1
|
+
=Lolita developer guidline
|
2
|
+
|
3
|
+
This file is meant for developers only.
|
4
|
+
|
5
|
+
# Creating GEM for Lolita
|
6
|
+
|
7
|
+
When creating GEM, that include new module in one or more of lolita modules, use
|
8
|
+
Lolita.send(:include,YourModule) instead of reopening module.
|
9
|
+
|
10
|
+
# How to install
|
11
|
+
|
12
|
+
gem install lolita
|
13
|
+
|
14
|
+
cd your_project
|
15
|
+
|
16
|
+
rails g lolita:install
|
17
|
+
|
18
|
+
change your project initializers/lolita.rb
|
19
|
+
|
20
|
+
# For cucumber testing
|
21
|
+
gem install akephalos
|
22
|
+
bundle exec cucumber features
|
23
|
+
|
24
|
+
|
data/Gemfile
CHANGED
@@ -1,27 +1,27 @@
|
|
1
|
-
source "http://rubygems.org"
|
2
|
-
|
3
|
-
# Thing how to seperate gems for Rails Engine from those that are only for lolita
|
4
|
-
gem "rails", "~>3.0.7"
|
5
|
-
gem "kaminari", "~>0.12.4"
|
6
|
-
gem "abstract"
|
7
|
-
gem "builder", "~> 2.1.2" #cucumber asks for builder 3 but rails supports 2.1
|
8
|
-
|
9
|
-
group :mongoid do
|
10
|
-
gem "mongo", "~> 1.3.0"
|
11
|
-
gem "mongoid", "~> 2.0.0"
|
12
|
-
gem "bson_ext", "~> 1.3.0"
|
13
|
-
end
|
14
|
-
|
15
|
-
#gem 'cover_me', '>= 1.0.0.rc6', :group => :test
|
16
|
-
gem "jeweler", "~> 1.5.2", :group=>:development
|
17
|
-
group :test,:development do
|
18
|
-
gem "rspec", "~>2.6.0"
|
19
|
-
gem "rspec-rails","~>2.6.0"
|
20
|
-
gem "factory_girl"
|
21
|
-
gem 'ffaker'
|
22
|
-
gem "ruby-debug19"
|
23
|
-
gem "cucumber-rails"
|
24
|
-
gem "capybara"
|
25
|
-
gem "database_cleaner"
|
26
|
-
gem "akephalos"
|
1
|
+
source "http://rubygems.org"
|
2
|
+
|
3
|
+
# Thing how to seperate gems for Rails Engine from those that are only for lolita
|
4
|
+
gem "rails", "~>3.0.7"
|
5
|
+
gem "kaminari", "~>0.12.4"
|
6
|
+
gem "abstract"
|
7
|
+
gem "builder", "~> 2.1.2" #cucumber asks for builder 3 but rails supports 2.1
|
8
|
+
|
9
|
+
group :mongoid do
|
10
|
+
gem "mongo", "~> 1.3.0"
|
11
|
+
gem "mongoid", "~> 2.0.0"
|
12
|
+
gem "bson_ext", "~> 1.3.0"
|
13
|
+
end
|
14
|
+
|
15
|
+
#gem 'cover_me', '>= 1.0.0.rc6', :group => :test
|
16
|
+
gem "jeweler", "~> 1.5.2", :group=>:development
|
17
|
+
group :test,:development do
|
18
|
+
gem "rspec", "~>2.6.0"
|
19
|
+
gem "rspec-rails","~>2.6.0"
|
20
|
+
gem "factory_girl"
|
21
|
+
gem 'ffaker'
|
22
|
+
gem "ruby-debug19"
|
23
|
+
gem "cucumber-rails"
|
24
|
+
gem "capybara"
|
25
|
+
gem "database_cleaner"
|
26
|
+
gem "akephalos"
|
27
27
|
end
|
data/History.rdoc
CHANGED
@@ -1,154 +1,162 @@
|
|
1
|
-
=== Version 3.1.
|
2
|
-
*
|
3
|
-
*
|
4
|
-
|
5
|
-
=== Version 3.1.
|
6
|
-
*
|
7
|
-
*
|
8
|
-
|
9
|
-
=== Version 3.1.
|
10
|
-
*
|
11
|
-
*
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
*
|
16
|
-
|
17
|
-
=== Version 3.1.
|
18
|
-
* Enhancements
|
19
|
-
*
|
20
|
-
|
21
|
-
|
22
|
-
*
|
23
|
-
* Lolita
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
*
|
29
|
-
*
|
30
|
-
|
31
|
-
|
32
|
-
*
|
33
|
-
*
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
*
|
38
|
-
|
39
|
-
|
40
|
-
*
|
41
|
-
*
|
42
|
-
|
43
|
-
|
44
|
-
*
|
45
|
-
*
|
46
|
-
|
47
|
-
|
48
|
-
*
|
49
|
-
*
|
50
|
-
*
|
51
|
-
*
|
52
|
-
*
|
53
|
-
*
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
*
|
58
|
-
|
59
|
-
|
60
|
-
*
|
61
|
-
*
|
62
|
-
|
63
|
-
|
64
|
-
*
|
65
|
-
*
|
66
|
-
|
67
|
-
=== Version 3.1.
|
68
|
-
* Enhancements
|
69
|
-
*
|
70
|
-
*
|
71
|
-
|
72
|
-
|
73
|
-
* Hooks
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
* Hooks
|
78
|
-
*
|
79
|
-
*
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
*
|
87
|
-
*
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
*
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
*
|
96
|
-
*
|
97
|
-
*
|
98
|
-
|
99
|
-
*
|
100
|
-
|
101
|
-
*
|
102
|
-
*
|
103
|
-
*
|
104
|
-
*
|
105
|
-
*
|
106
|
-
|
107
|
-
|
108
|
-
*
|
109
|
-
*
|
110
|
-
|
111
|
-
|
112
|
-
*
|
113
|
-
*
|
114
|
-
*
|
115
|
-
|
116
|
-
|
117
|
-
*
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
*
|
122
|
-
* #
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
*
|
127
|
-
|
128
|
-
|
129
|
-
*
|
130
|
-
* #
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
*
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
*
|
140
|
-
*
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
*
|
149
|
-
*
|
150
|
-
*
|
151
|
-
|
152
|
-
===
|
153
|
-
|
154
|
-
|
1
|
+
=== Version 3.1.11 / 2011-07-15
|
2
|
+
* Enhancements
|
3
|
+
* By default columns are not sortable
|
4
|
+
|
5
|
+
=== Version 3.1.10 / 2011-07-06
|
6
|
+
* Enhancements
|
7
|
+
* File tabs can be more than one time
|
8
|
+
|
9
|
+
=== Version 3.1.9 / 2011-06-30
|
10
|
+
* Bug fixes
|
11
|
+
* Rails view helpers uses html options and options from field configuration
|
12
|
+
|
13
|
+
=== Version 3.1.8 / 2011-06-15
|
14
|
+
* Bug fixes
|
15
|
+
* Show layout on info page
|
16
|
+
|
17
|
+
=== Version 3.1.7 / 2011-06-10
|
18
|
+
* Enhancements
|
19
|
+
* Builder refactored. Now support conditions. (Arturs Meisters)
|
20
|
+
|
21
|
+
* Bug fixes
|
22
|
+
* Updated Kaminari to 0.12.4 - previous version has serious BUG (Arturs Meisters, Gatis Tomsons)
|
23
|
+
* Lolita messaging not used in RestController (Arturs Meisters)
|
24
|
+
|
25
|
+
=== Version 3.1.6 / 2011-05-19
|
26
|
+
* Enhancements
|
27
|
+
* Hooks run all callbacks from superclasses and included modules too. (Arturs Meisters)
|
28
|
+
* Column now can be configured with attributes, updated :formatter (Gatis Tomsons)
|
29
|
+
* Titles and labels now user localization (Arturs Meisters)
|
30
|
+
* Latvian translations added (Arturs Meisters)
|
31
|
+
* Lolita don't use flash messages anymore, now messages goes through reponse header. (Arturs Meisters)
|
32
|
+
* jQuery updated to v1.6
|
33
|
+
* jQuery UI added v1.8.13, by default in layout
|
34
|
+
* TinyMCE initialization/configuration script moved to separate file (Rolands Bondars)
|
35
|
+
|
36
|
+
* Bug fixes
|
37
|
+
* Restored TinyMCE 'util' folder, it is required for certain actions (Rolands Bondars)
|
38
|
+
|
39
|
+
=== Version 3.1.5 / 2011-04-20
|
40
|
+
* Changes
|
41
|
+
* Moved from WillPaginate to Kaminari (Gatis Tomsons, Arturs Meisters)
|
42
|
+
|
43
|
+
* Enhancements
|
44
|
+
* Lolita #before_setup and #after_setup hooks added (Arturs Meisters)
|
45
|
+
* Lolita #before_routes_load and #after_routes_load hooks added (Arturs Meisters)
|
46
|
+
* added Kaminari[https://github.com/amatsuda/kaminari] support to paginator (Gatis Tomsons)
|
47
|
+
|
48
|
+
* Bug fixes
|
49
|
+
* array field values lazy assigment removed (Arturs Meisters)
|
50
|
+
* tree fixed that can use mapping without InternalHelper (Arturs Meisters)
|
51
|
+
* tree now can detect if parent is active, when any of children is active (Arturs Meisters)
|
52
|
+
* order in list view works when model has default_scope (Gatis Tomsons)
|
53
|
+
* rest_controller now understands Rails date/date_time generated attributes (Gatis Tomsons)
|
54
|
+
|
55
|
+
=== Version 3.1.4 / 2011-04-19
|
56
|
+
* Enhancements
|
57
|
+
* #render_component improved, to support any class with build method as first argument (Arturs Meisters)
|
58
|
+
* list components refactore; columns and column components created (Arturs Meisters)
|
59
|
+
* documentation for Filters (Gatis Tomsons)
|
60
|
+
* sorting configuration for columns (Arturs Meisters)
|
61
|
+
* lolita:assets generator invoke :assets for all added modules (Arturs Meisters)
|
62
|
+
|
63
|
+
* Bug fixes
|
64
|
+
* paginator updated, to use WillPaginate only when it is accessable (Arturs Meisters)
|
65
|
+
* resource cheching for tree (Arturs Meisters)
|
66
|
+
|
67
|
+
=== Version 3.1.3 / 2011-04-15
|
68
|
+
* Enhancements
|
69
|
+
* Lolita::Navigation::Tree and Lolita::Navigation::Branch added (Arturs Meisters)
|
70
|
+
* Main navigation tree generate from resources (Arturs Meisters)
|
71
|
+
|
72
|
+
* Bug fixes
|
73
|
+
* Hooks #let_content fixed to change after first block. (Arturs Meisters)
|
74
|
+
|
75
|
+
=== Version 3.1.2 / 2011-04-14
|
76
|
+
* Enhancements
|
77
|
+
* Hooks for Lolita::RestController addeed (Arturs Meisters)
|
78
|
+
* Form save response splited in different methods for easy way to override (Arturs Meisters)
|
79
|
+
* Hooks for #render_components (Arturs Meisters)
|
80
|
+
* Hook #run return results from methods and blocks as one big string (Arturs Meisters)
|
81
|
+
* Hooks :run_scope inventend (Arturs Meisters)
|
82
|
+
|
83
|
+
* Bug fixes
|
84
|
+
* Migration detection fixed (Arturs Meisters)
|
85
|
+
* Hooks named fire methods fixed (Arturs Meisters)
|
86
|
+
* Bug fixes in hooks (Arturs Meisters)
|
87
|
+
* Builder bug fix, in production (Arturs Meisters)
|
88
|
+
|
89
|
+
=== Version 3.1.1 / 2011-04-13
|
90
|
+
* Enhancements
|
91
|
+
* Filters for list added (Gatis Tomsons)
|
92
|
+
|
93
|
+
=== Version 3.1.0 / 2011-04-12
|
94
|
+
* Enhancements
|
95
|
+
* Hooks added (Arturs Meisters)
|
96
|
+
* Builders updated to complete received names (Arturs Meisters)
|
97
|
+
* Fields renamed to related Ruby or ActiveSupport classes (Gatis Tomsons)
|
98
|
+
* Componente default naming changed to match related model/class structure (Gatis Tomsons)
|
99
|
+
* No need for <em>include Lolita::Configuration</em> and #lolita call for lolita_for
|
100
|
+
related class (Arturs Meisters)
|
101
|
+
* Automatic field type detection from ORM (Arturs Meisters)
|
102
|
+
* List filter introduced (Gatis Tomsons)
|
103
|
+
* Response for JSON (Gatis Tomsons)
|
104
|
+
* Configuration has locales, and Lolita using those to seperate project translation (Arturs Meisters)
|
105
|
+
* DateTime field formation for display only (Valdis Pornieks)
|
106
|
+
|
107
|
+
* Bug fixes
|
108
|
+
* Validation errors fixed (Janis Kesteris)
|
109
|
+
* MongoID adapter fixed to work with new mongoid (Valdis Pornieks)
|
110
|
+
* AR :order option fixed for find methods (Aivils Stoss)
|
111
|
+
* AR migration error fixed (Arturs Meisters)
|
112
|
+
* Redirect after destroy to index (Valdis Pornieks)
|
113
|
+
* Route and nested route bugs fixed (Arturs Meisters)
|
114
|
+
* Multiple textareas with tinyMCE (Valdis Pornieks)
|
115
|
+
* Resource path methods fixed (Arturs Meisters)
|
116
|
+
* #url_for fixed for lolita (Arturs Meisters, Gatis Tomsons)
|
117
|
+
* Layout fixed (Rolands Bondars)
|
118
|
+
|
119
|
+
=== Version 3.0.7 / 2011-03-29
|
120
|
+
* Enhancements
|
121
|
+
* Collection field updated (Arturs Meisters)
|
122
|
+
* #options_for_select added for collection field (Gatis Tomsons)
|
123
|
+
|
124
|
+
=== Version 3.0.6 / 2011-03-29
|
125
|
+
* Enhancements
|
126
|
+
* TinyMCE updated with new buttons (Janis Kesteris)
|
127
|
+
* #add_module changed to support nested routes (Arturs Meisters)
|
128
|
+
* Routes support nested resources (Arturs Meisters)
|
129
|
+
* Fields splited in classes based on type (Arturs Meisters)
|
130
|
+
* #render_component accept :format option (Arturs Meisters)
|
131
|
+
|
132
|
+
* Bug fixes
|
133
|
+
* Collection field collection priority fixed (Arturs Meisters)
|
134
|
+
* JQuery Ajax request updated, to support Rails CSRF fix. (Arturs Meisters)
|
135
|
+
|
136
|
+
=== Version 3.0.5 / 2011-03-23
|
137
|
+
* Enhacements
|
138
|
+
* #by_type for tabs added (Arturs Meisters)
|
139
|
+
* Test module invented and #be_routable matcher added (Arturs Meisters)
|
140
|
+
* Cucumber added for testing (Rolands Bondars)
|
141
|
+
|
142
|
+
* Bug fixes
|
143
|
+
* Small look fixes (Rolands Bondars)
|
144
|
+
* #content_for removed from tab components (Rolands Bondars)
|
145
|
+
|
146
|
+
=== Version 3.0.4 / 2011-03-17
|
147
|
+
* Enhancements
|
148
|
+
* Save button added (Rolands Bondars)
|
149
|
+
* Removed unnecessery stuff from TinyMCE (Rolands Bonadars)
|
150
|
+
* :content used as default type for tabs. (Arturs Meisters)
|
151
|
+
|
152
|
+
=== Version 3.0.3 / 2011-03-16
|
153
|
+
* Enhancements (Arturs Meisters)
|
154
|
+
* First version form 3.x series of Lolita
|
155
|
+
* Basic configuration classes
|
156
|
+
* Basic views
|
157
|
+
* Basic controller and views mechanism
|
158
|
+
* New look (Rolands Bondars)
|
159
|
+
|
160
|
+
=== Versions before 3.0.3
|
161
|
+
Lolita 3 is completely different from previous versions and don't have any compability or architecture same as
|
162
|
+
old versions.
|
data/LICENSE.txt
CHANGED
@@ -1,22 +1,22 @@
|
|
1
|
-
The MIT License
|
2
|
-
|
3
|
-
Copyright (c) 2011 ITHouse and Arturs Meisters
|
4
|
-
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
-
a copy of this software and associated documentation files (the
|
7
|
-
"Software"), to deal in the Software without restriction, including
|
8
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
-
permit persons to whom the Software is furnished to do so, subject to
|
11
|
-
the following conditions:
|
12
|
-
|
13
|
-
The above copyright notice and this permission notice shall be
|
14
|
-
included in all copies or substantial portions of the Software.
|
15
|
-
|
16
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
1
|
+
The MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2011 ITHouse and Arturs Meisters
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|