lolita 3.1.9 → 3.1.10
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.
- data/.document +5 -5
- data/.rspec +2 -2
- data/GUIDELINES.rdoc +24 -24
- data/Gemfile +26 -26
- data/History.rdoc +154 -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 +94 -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 +124 -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,154 @@
|
|
|
1
|
-
=== Version 3.1.9 /
|
|
2
|
-
* Bug fixes
|
|
3
|
-
* Rails view helpers uses html options and options from field configuration
|
|
4
|
-
|
|
5
|
-
=== Version 3.1.8 / 2011-06-15
|
|
6
|
-
* Bug fixes
|
|
7
|
-
* Show layout on info page
|
|
8
|
-
|
|
9
|
-
=== Version 3.1.7 / 2011-06-10
|
|
10
|
-
* Enhancements
|
|
11
|
-
* Builder refactored. Now support conditions. (Arturs Meisters)
|
|
12
|
-
|
|
13
|
-
* Bug fixes
|
|
14
|
-
* Updated Kaminari to 0.12.4 - previous version has serious BUG (Arturs Meisters, Gatis Tomsons)
|
|
15
|
-
* Lolita messaging not used in RestController (Arturs Meisters)
|
|
16
|
-
|
|
17
|
-
=== Version 3.1.6 / 2011-05-19
|
|
18
|
-
* Enhancements
|
|
19
|
-
* Hooks run all callbacks from superclasses and included modules too. (Arturs Meisters)
|
|
20
|
-
* Column now can be configured with attributes, updated :formatter (Gatis Tomsons)
|
|
21
|
-
* Titles and labels now user localization (Arturs Meisters)
|
|
22
|
-
* Latvian translations added (Arturs Meisters)
|
|
23
|
-
* Lolita don't use flash messages anymore, now messages goes through reponse header. (Arturs Meisters)
|
|
24
|
-
* jQuery updated to v1.6
|
|
25
|
-
* jQuery UI added v1.8.13, by default in layout
|
|
26
|
-
* TinyMCE initialization/configuration script moved to separate file (Rolands Bondars)
|
|
27
|
-
|
|
28
|
-
* Bug fixes
|
|
29
|
-
* Restored TinyMCE 'util' folder, it is required for certain actions (Rolands Bondars)
|
|
30
|
-
|
|
31
|
-
=== Version 3.1.5 / 2011-04-20
|
|
32
|
-
* Changes
|
|
33
|
-
* Moved from WillPaginate to Kaminari (Gatis Tomsons, Arturs Meisters)
|
|
34
|
-
|
|
35
|
-
* Enhancements
|
|
36
|
-
* Lolita #before_setup and #after_setup hooks added (Arturs Meisters)
|
|
37
|
-
* Lolita #before_routes_load and #after_routes_load hooks added (Arturs Meisters)
|
|
38
|
-
* added Kaminari[https://github.com/amatsuda/kaminari] support to paginator (Gatis Tomsons)
|
|
39
|
-
|
|
40
|
-
* Bug fixes
|
|
41
|
-
* array field values lazy assigment removed (Arturs Meisters)
|
|
42
|
-
* tree fixed that can use mapping without InternalHelper (Arturs Meisters)
|
|
43
|
-
* tree now can detect if parent is active, when any of children is active (Arturs Meisters)
|
|
44
|
-
* order in list view works when model has default_scope (Gatis Tomsons)
|
|
45
|
-
* rest_controller now understands Rails date/date_time generated attributes (Gatis Tomsons)
|
|
46
|
-
|
|
47
|
-
=== Version 3.1.4 / 2011-04-19
|
|
48
|
-
* Enhancements
|
|
49
|
-
* #render_component improved, to support any class with build method as first argument (Arturs Meisters)
|
|
50
|
-
* list components refactore; columns and column components created (Arturs Meisters)
|
|
51
|
-
* documentation for Filters (Gatis Tomsons)
|
|
52
|
-
* sorting configuration for columns (Arturs Meisters)
|
|
53
|
-
* lolita:assets generator invoke :assets for all added modules (Arturs Meisters)
|
|
54
|
-
|
|
55
|
-
* Bug fixes
|
|
56
|
-
* paginator updated, to use WillPaginate only when it is accessable (Arturs Meisters)
|
|
57
|
-
* resource cheching for tree (Arturs Meisters)
|
|
58
|
-
|
|
59
|
-
=== Version 3.1.3 / 2011-04-15
|
|
60
|
-
* Enhancements
|
|
61
|
-
* Lolita::Navigation::Tree and Lolita::Navigation::Branch added (Arturs Meisters)
|
|
62
|
-
* Main navigation tree generate from resources (Arturs Meisters)
|
|
63
|
-
|
|
64
|
-
* Bug fixes
|
|
65
|
-
* Hooks #let_content fixed to change after first block. (Arturs Meisters)
|
|
66
|
-
|
|
67
|
-
=== Version 3.1.2 / 2011-04-14
|
|
68
|
-
* Enhancements
|
|
69
|
-
* Hooks for Lolita::RestController addeed (Arturs Meisters)
|
|
70
|
-
* Form save response splited in different methods for easy way to override (Arturs Meisters)
|
|
71
|
-
* Hooks for #render_components (Arturs Meisters)
|
|
72
|
-
* Hook #run return results from methods and blocks as one big string (Arturs Meisters)
|
|
73
|
-
* Hooks :run_scope inventend (Arturs Meisters)
|
|
74
|
-
|
|
75
|
-
* Bug fixes
|
|
76
|
-
* Migration detection fixed (Arturs Meisters)
|
|
77
|
-
* Hooks named fire methods fixed (Arturs Meisters)
|
|
78
|
-
* Bug fixes in hooks (Arturs Meisters)
|
|
79
|
-
* Builder bug fix, in production (Arturs Meisters)
|
|
80
|
-
|
|
81
|
-
=== Version 3.1.1 / 2011-04-13
|
|
82
|
-
* Enhancements
|
|
83
|
-
* Filters for list added (Gatis Tomsons)
|
|
84
|
-
|
|
85
|
-
=== Version 3.1.0 / 2011-04-12
|
|
86
|
-
* Enhancements
|
|
87
|
-
* Hooks added (Arturs Meisters)
|
|
88
|
-
* Builders updated to complete received names (Arturs Meisters)
|
|
89
|
-
* Fields renamed to related Ruby or ActiveSupport classes (Gatis Tomsons)
|
|
90
|
-
* Componente default naming changed to match related model/class structure (Gatis Tomsons)
|
|
91
|
-
* No need for <em>include Lolita::Configuration</em> and #lolita call for lolita_for
|
|
92
|
-
related class (Arturs Meisters)
|
|
93
|
-
* Automatic field type detection from ORM (Arturs Meisters)
|
|
94
|
-
* List filter introduced (Gatis Tomsons)
|
|
95
|
-
* Response for JSON (Gatis Tomsons)
|
|
96
|
-
* Configuration has locales, and Lolita using those to seperate project translation (Arturs Meisters)
|
|
97
|
-
* DateTime field formation for display only (Valdis Pornieks)
|
|
98
|
-
|
|
99
|
-
* Bug fixes
|
|
100
|
-
* Validation errors fixed (Janis Kesteris)
|
|
101
|
-
* MongoID adapter fixed to work with new mongoid (Valdis Pornieks)
|
|
102
|
-
* AR :order option fixed for find methods (Aivils Stoss)
|
|
103
|
-
* AR migration error fixed (Arturs Meisters)
|
|
104
|
-
* Redirect after destroy to index (Valdis Pornieks)
|
|
105
|
-
* Route and nested route bugs fixed (Arturs Meisters)
|
|
106
|
-
* Multiple textareas with tinyMCE (Valdis Pornieks)
|
|
107
|
-
* Resource path methods fixed (Arturs Meisters)
|
|
108
|
-
* #url_for fixed for lolita (Arturs Meisters, Gatis Tomsons)
|
|
109
|
-
* Layout fixed (Rolands Bondars)
|
|
110
|
-
|
|
111
|
-
=== Version 3.0.7 / 2011-03-29
|
|
112
|
-
* Enhancements
|
|
113
|
-
* Collection field updated (Arturs Meisters)
|
|
114
|
-
* #options_for_select added for collection field (Gatis Tomsons)
|
|
115
|
-
|
|
116
|
-
=== Version 3.0.6 / 2011-03-29
|
|
117
|
-
* Enhancements
|
|
118
|
-
* TinyMCE updated with new buttons (Janis Kesteris)
|
|
119
|
-
* #add_module changed to support nested routes (Arturs Meisters)
|
|
120
|
-
* Routes support nested resources (Arturs Meisters)
|
|
121
|
-
* Fields splited in classes based on type (Arturs Meisters)
|
|
122
|
-
* #render_component accept :format option (Arturs Meisters)
|
|
123
|
-
|
|
124
|
-
* Bug fixes
|
|
125
|
-
* Collection field collection priority fixed (Arturs Meisters)
|
|
126
|
-
* JQuery Ajax request updated, to support Rails CSRF fix. (Arturs Meisters)
|
|
127
|
-
|
|
128
|
-
=== Version 3.0.5 / 2011-03-23
|
|
129
|
-
* Enhacements
|
|
130
|
-
* #by_type for tabs added (Arturs Meisters)
|
|
131
|
-
* Test module invented and #be_routable matcher added (Arturs Meisters)
|
|
132
|
-
* Cucumber added for testing (Rolands Bondars)
|
|
133
|
-
|
|
134
|
-
* Bug fixes
|
|
135
|
-
* Small look fixes (Rolands Bondars)
|
|
136
|
-
* #content_for removed from tab components (Rolands Bondars)
|
|
137
|
-
|
|
138
|
-
=== Version 3.0.4 / 2011-03-17
|
|
139
|
-
* Enhancements
|
|
140
|
-
* Save button added (Rolands Bondars)
|
|
141
|
-
* Removed unnecessery stuff from TinyMCE (Rolands Bonadars)
|
|
142
|
-
* :content used as default type for tabs. (Arturs Meisters)
|
|
143
|
-
|
|
144
|
-
=== Version 3.0.3 / 2011-03-16
|
|
145
|
-
* Enhancements (Arturs Meisters)
|
|
146
|
-
* First version form 3.x series of Lolita
|
|
147
|
-
* Basic configuration classes
|
|
148
|
-
* Basic views
|
|
149
|
-
* Basic controller and views mechanism
|
|
150
|
-
* New look (Rolands Bondars)
|
|
151
|
-
|
|
152
|
-
=== Versions before 3.0.3
|
|
153
|
-
Lolita 3 is completely different from previous versions and don't have any compability or architecture same as
|
|
154
|
-
old versions.
|
|
1
|
+
=== Version 3.1.9 /
|
|
2
|
+
* Bug fixes
|
|
3
|
+
* Rails view helpers uses html options and options from field configuration
|
|
4
|
+
|
|
5
|
+
=== Version 3.1.8 / 2011-06-15
|
|
6
|
+
* Bug fixes
|
|
7
|
+
* Show layout on info page
|
|
8
|
+
|
|
9
|
+
=== Version 3.1.7 / 2011-06-10
|
|
10
|
+
* Enhancements
|
|
11
|
+
* Builder refactored. Now support conditions. (Arturs Meisters)
|
|
12
|
+
|
|
13
|
+
* Bug fixes
|
|
14
|
+
* Updated Kaminari to 0.12.4 - previous version has serious BUG (Arturs Meisters, Gatis Tomsons)
|
|
15
|
+
* Lolita messaging not used in RestController (Arturs Meisters)
|
|
16
|
+
|
|
17
|
+
=== Version 3.1.6 / 2011-05-19
|
|
18
|
+
* Enhancements
|
|
19
|
+
* Hooks run all callbacks from superclasses and included modules too. (Arturs Meisters)
|
|
20
|
+
* Column now can be configured with attributes, updated :formatter (Gatis Tomsons)
|
|
21
|
+
* Titles and labels now user localization (Arturs Meisters)
|
|
22
|
+
* Latvian translations added (Arturs Meisters)
|
|
23
|
+
* Lolita don't use flash messages anymore, now messages goes through reponse header. (Arturs Meisters)
|
|
24
|
+
* jQuery updated to v1.6
|
|
25
|
+
* jQuery UI added v1.8.13, by default in layout
|
|
26
|
+
* TinyMCE initialization/configuration script moved to separate file (Rolands Bondars)
|
|
27
|
+
|
|
28
|
+
* Bug fixes
|
|
29
|
+
* Restored TinyMCE 'util' folder, it is required for certain actions (Rolands Bondars)
|
|
30
|
+
|
|
31
|
+
=== Version 3.1.5 / 2011-04-20
|
|
32
|
+
* Changes
|
|
33
|
+
* Moved from WillPaginate to Kaminari (Gatis Tomsons, Arturs Meisters)
|
|
34
|
+
|
|
35
|
+
* Enhancements
|
|
36
|
+
* Lolita #before_setup and #after_setup hooks added (Arturs Meisters)
|
|
37
|
+
* Lolita #before_routes_load and #after_routes_load hooks added (Arturs Meisters)
|
|
38
|
+
* added Kaminari[https://github.com/amatsuda/kaminari] support to paginator (Gatis Tomsons)
|
|
39
|
+
|
|
40
|
+
* Bug fixes
|
|
41
|
+
* array field values lazy assigment removed (Arturs Meisters)
|
|
42
|
+
* tree fixed that can use mapping without InternalHelper (Arturs Meisters)
|
|
43
|
+
* tree now can detect if parent is active, when any of children is active (Arturs Meisters)
|
|
44
|
+
* order in list view works when model has default_scope (Gatis Tomsons)
|
|
45
|
+
* rest_controller now understands Rails date/date_time generated attributes (Gatis Tomsons)
|
|
46
|
+
|
|
47
|
+
=== Version 3.1.4 / 2011-04-19
|
|
48
|
+
* Enhancements
|
|
49
|
+
* #render_component improved, to support any class with build method as first argument (Arturs Meisters)
|
|
50
|
+
* list components refactore; columns and column components created (Arturs Meisters)
|
|
51
|
+
* documentation for Filters (Gatis Tomsons)
|
|
52
|
+
* sorting configuration for columns (Arturs Meisters)
|
|
53
|
+
* lolita:assets generator invoke :assets for all added modules (Arturs Meisters)
|
|
54
|
+
|
|
55
|
+
* Bug fixes
|
|
56
|
+
* paginator updated, to use WillPaginate only when it is accessable (Arturs Meisters)
|
|
57
|
+
* resource cheching for tree (Arturs Meisters)
|
|
58
|
+
|
|
59
|
+
=== Version 3.1.3 / 2011-04-15
|
|
60
|
+
* Enhancements
|
|
61
|
+
* Lolita::Navigation::Tree and Lolita::Navigation::Branch added (Arturs Meisters)
|
|
62
|
+
* Main navigation tree generate from resources (Arturs Meisters)
|
|
63
|
+
|
|
64
|
+
* Bug fixes
|
|
65
|
+
* Hooks #let_content fixed to change after first block. (Arturs Meisters)
|
|
66
|
+
|
|
67
|
+
=== Version 3.1.2 / 2011-04-14
|
|
68
|
+
* Enhancements
|
|
69
|
+
* Hooks for Lolita::RestController addeed (Arturs Meisters)
|
|
70
|
+
* Form save response splited in different methods for easy way to override (Arturs Meisters)
|
|
71
|
+
* Hooks for #render_components (Arturs Meisters)
|
|
72
|
+
* Hook #run return results from methods and blocks as one big string (Arturs Meisters)
|
|
73
|
+
* Hooks :run_scope inventend (Arturs Meisters)
|
|
74
|
+
|
|
75
|
+
* Bug fixes
|
|
76
|
+
* Migration detection fixed (Arturs Meisters)
|
|
77
|
+
* Hooks named fire methods fixed (Arturs Meisters)
|
|
78
|
+
* Bug fixes in hooks (Arturs Meisters)
|
|
79
|
+
* Builder bug fix, in production (Arturs Meisters)
|
|
80
|
+
|
|
81
|
+
=== Version 3.1.1 / 2011-04-13
|
|
82
|
+
* Enhancements
|
|
83
|
+
* Filters for list added (Gatis Tomsons)
|
|
84
|
+
|
|
85
|
+
=== Version 3.1.0 / 2011-04-12
|
|
86
|
+
* Enhancements
|
|
87
|
+
* Hooks added (Arturs Meisters)
|
|
88
|
+
* Builders updated to complete received names (Arturs Meisters)
|
|
89
|
+
* Fields renamed to related Ruby or ActiveSupport classes (Gatis Tomsons)
|
|
90
|
+
* Componente default naming changed to match related model/class structure (Gatis Tomsons)
|
|
91
|
+
* No need for <em>include Lolita::Configuration</em> and #lolita call for lolita_for
|
|
92
|
+
related class (Arturs Meisters)
|
|
93
|
+
* Automatic field type detection from ORM (Arturs Meisters)
|
|
94
|
+
* List filter introduced (Gatis Tomsons)
|
|
95
|
+
* Response for JSON (Gatis Tomsons)
|
|
96
|
+
* Configuration has locales, and Lolita using those to seperate project translation (Arturs Meisters)
|
|
97
|
+
* DateTime field formation for display only (Valdis Pornieks)
|
|
98
|
+
|
|
99
|
+
* Bug fixes
|
|
100
|
+
* Validation errors fixed (Janis Kesteris)
|
|
101
|
+
* MongoID adapter fixed to work with new mongoid (Valdis Pornieks)
|
|
102
|
+
* AR :order option fixed for find methods (Aivils Stoss)
|
|
103
|
+
* AR migration error fixed (Arturs Meisters)
|
|
104
|
+
* Redirect after destroy to index (Valdis Pornieks)
|
|
105
|
+
* Route and nested route bugs fixed (Arturs Meisters)
|
|
106
|
+
* Multiple textareas with tinyMCE (Valdis Pornieks)
|
|
107
|
+
* Resource path methods fixed (Arturs Meisters)
|
|
108
|
+
* #url_for fixed for lolita (Arturs Meisters, Gatis Tomsons)
|
|
109
|
+
* Layout fixed (Rolands Bondars)
|
|
110
|
+
|
|
111
|
+
=== Version 3.0.7 / 2011-03-29
|
|
112
|
+
* Enhancements
|
|
113
|
+
* Collection field updated (Arturs Meisters)
|
|
114
|
+
* #options_for_select added for collection field (Gatis Tomsons)
|
|
115
|
+
|
|
116
|
+
=== Version 3.0.6 / 2011-03-29
|
|
117
|
+
* Enhancements
|
|
118
|
+
* TinyMCE updated with new buttons (Janis Kesteris)
|
|
119
|
+
* #add_module changed to support nested routes (Arturs Meisters)
|
|
120
|
+
* Routes support nested resources (Arturs Meisters)
|
|
121
|
+
* Fields splited in classes based on type (Arturs Meisters)
|
|
122
|
+
* #render_component accept :format option (Arturs Meisters)
|
|
123
|
+
|
|
124
|
+
* Bug fixes
|
|
125
|
+
* Collection field collection priority fixed (Arturs Meisters)
|
|
126
|
+
* JQuery Ajax request updated, to support Rails CSRF fix. (Arturs Meisters)
|
|
127
|
+
|
|
128
|
+
=== Version 3.0.5 / 2011-03-23
|
|
129
|
+
* Enhacements
|
|
130
|
+
* #by_type for tabs added (Arturs Meisters)
|
|
131
|
+
* Test module invented and #be_routable matcher added (Arturs Meisters)
|
|
132
|
+
* Cucumber added for testing (Rolands Bondars)
|
|
133
|
+
|
|
134
|
+
* Bug fixes
|
|
135
|
+
* Small look fixes (Rolands Bondars)
|
|
136
|
+
* #content_for removed from tab components (Rolands Bondars)
|
|
137
|
+
|
|
138
|
+
=== Version 3.0.4 / 2011-03-17
|
|
139
|
+
* Enhancements
|
|
140
|
+
* Save button added (Rolands Bondars)
|
|
141
|
+
* Removed unnecessery stuff from TinyMCE (Rolands Bonadars)
|
|
142
|
+
* :content used as default type for tabs. (Arturs Meisters)
|
|
143
|
+
|
|
144
|
+
=== Version 3.0.3 / 2011-03-16
|
|
145
|
+
* Enhancements (Arturs Meisters)
|
|
146
|
+
* First version form 3.x series of Lolita
|
|
147
|
+
* Basic configuration classes
|
|
148
|
+
* Basic views
|
|
149
|
+
* Basic controller and views mechanism
|
|
150
|
+
* New look (Rolands Bondars)
|
|
151
|
+
|
|
152
|
+
=== Versions before 3.0.3
|
|
153
|
+
Lolita 3 is completely different from previous versions and don't have any compability or architecture same as
|
|
154
|
+
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.
|