lolita 3.1.10 → 3.1.11

Sign up to get free protection for your applications and to get access to all the features.
Files changed (239) hide show
  1. data/.document +5 -5
  2. data/.rspec +2 -2
  3. data/GUIDELINES.rdoc +24 -24
  4. data/Gemfile +26 -26
  5. data/History.rdoc +162 -154
  6. data/LICENSE.txt +22 -22
  7. data/README.rdoc +98 -98
  8. data/Rakefile +40 -40
  9. data/VERSION +1 -1
  10. data/app/controllers/lolita/info_controller.rb +41 -41
  11. data/app/controllers/lolita/rest_controller.rb +130 -130
  12. data/app/helpers/components/lolita/configuration/list_component.rb +10 -10
  13. data/app/helpers/lolita_helper.rb +11 -11
  14. data/app/views/components/lolita/configuration/column/_display.html.erb +4 -4
  15. data/app/views/components/lolita/configuration/column/_header.html.erb +7 -7
  16. data/app/views/components/lolita/configuration/column/_sort.html.erb +4 -4
  17. data/app/views/components/lolita/configuration/columns/_body.html.erb +4 -4
  18. data/app/views/components/lolita/configuration/columns/_display.html.erb +1 -1
  19. data/app/views/components/lolita/configuration/columns/_first.html.erb +2 -2
  20. data/app/views/components/lolita/configuration/columns/_first_column_header.html.erb +3 -3
  21. data/app/views/components/lolita/configuration/columns/_header.html.erb +8 -8
  22. data/app/views/components/lolita/configuration/columns/_last.html.erb +4 -4
  23. data/app/views/components/lolita/configuration/columns/_last_column_header.html.erb +2 -2
  24. data/app/views/components/lolita/configuration/columns/_row.html.erb +7 -7
  25. data/app/views/components/lolita/configuration/field/_display.html.erb +9 -9
  26. data/app/views/components/lolita/configuration/field/_label.html.erb +1 -1
  27. data/app/views/components/lolita/configuration/field/_object.html.erb +1 -1
  28. data/app/views/components/lolita/configuration/field/array/_display.html.erb +4 -4
  29. data/app/views/components/lolita/configuration/field/array/habtm/_display.html.erb +26 -26
  30. data/app/views/components/lolita/configuration/field/array/select/_display.html.erb +5 -5
  31. data/app/views/components/lolita/configuration/field/boolean/filter/_display.html.erb +1 -1
  32. data/app/views/components/lolita/configuration/field/date/_display.html.erb +1 -1
  33. data/app/views/components/lolita/configuration/field/date_time/date/_display.html.erb +1 -1
  34. data/app/views/components/lolita/configuration/field/integer/_display.html.erb +1 -1
  35. data/app/views/components/lolita/configuration/field/string/_display.html.erb +4 -4
  36. data/app/views/components/lolita/configuration/field/string/disabled/_display.html.erb +1 -1
  37. data/app/views/components/lolita/configuration/field/string/password/_display.html.erb +3 -3
  38. data/app/views/components/lolita/configuration/field/string/text/_display.html.erb +18 -18
  39. data/app/views/components/lolita/configuration/field_set/_display.html.erb +5 -5
  40. data/app/views/components/lolita/configuration/list/_display.html.erb +10 -10
  41. data/app/views/components/lolita/configuration/list/_filter.html.erb +7 -7
  42. data/app/views/components/lolita/configuration/list/_new_resource.html.erb +4 -4
  43. data/app/views/components/lolita/configuration/list/_title.html.erb +4 -4
  44. data/app/views/components/lolita/configuration/tab/_display.html.erb +17 -17
  45. data/app/views/components/lolita/configuration/tab/_fields.html.erb +6 -6
  46. data/app/views/components/lolita/configuration/tab/content/_display.html.erb +1 -1
  47. data/app/views/components/lolita/configuration/tab/default/_display.html.erb +8 -8
  48. data/app/views/components/lolita/configuration/tabs/_display.html.erb +10 -10
  49. data/app/views/components/lolita/navigation/_display.html.erb +2 -2
  50. data/app/views/components/lolita/navigation/_tree.html.erb +38 -38
  51. data/app/views/components/lolita/shared/_flash.html.erb +5 -5
  52. data/app/views/components/lolita/shared/_header.html.erb +8 -8
  53. data/app/views/components/lolita/shared/_right_sidebar.html.erb +13 -13
  54. data/app/views/layouts/lolita/application.html.erb +44 -44
  55. data/app/views/lolita/info/index.html.erb +232 -232
  56. data/app/views/lolita/rest/form.html.erb +1 -1
  57. data/app/views/lolita/rest/index.html.erb +1 -1
  58. data/author +1 -1
  59. data/config/locales/default/lv.yml +180 -180
  60. data/config/locales/en.yml +20 -20
  61. data/config/locales/lv.yml +20 -20
  62. data/config/routes.rb +3 -3
  63. data/db/seed.rb +1 -1
  64. data/features/create_page.feature +19 -19
  65. data/features/step_definitions/lolita_steps.rb +7 -7
  66. data/features/step_definitions/web_steps.rb +219 -219
  67. data/features/support/env.rb +73 -73
  68. data/features/support/paths.rb +35 -35
  69. data/lib/generators/helpers/file_helper.rb +22 -22
  70. data/lib/generators/lolita/assets_generator.rb +18 -18
  71. data/lib/generators/lolita/install_generator.rb +28 -28
  72. data/lib/generators/templates/lolita.rb +19 -19
  73. data/lib/lolita.rb +184 -184
  74. data/lib/lolita/adapter/abstract_adapter.rb +13 -13
  75. data/lib/lolita/adapter/active_record.rb +148 -148
  76. data/lib/lolita/adapter/mongoid.rb +127 -127
  77. data/lib/lolita/base_configuration.rb +165 -165
  78. data/lib/lolita/builder.rb +249 -249
  79. data/lib/lolita/configuration/base.rb +76 -76
  80. data/lib/lolita/configuration/column.rb +93 -94
  81. data/lib/lolita/configuration/columns.rb +66 -66
  82. data/lib/lolita/configuration/factory.rb +55 -55
  83. data/lib/lolita/configuration/field.rb +216 -216
  84. data/lib/lolita/configuration/field/array.rb +75 -75
  85. data/lib/lolita/configuration/field/big_decimal.rb +12 -12
  86. data/lib/lolita/configuration/field/boolean.rb +12 -12
  87. data/lib/lolita/configuration/field/date.rb +12 -12
  88. data/lib/lolita/configuration/field/date_time.rb +13 -13
  89. data/lib/lolita/configuration/field/integer.rb +12 -12
  90. data/lib/lolita/configuration/field/string.rb +13 -13
  91. data/lib/lolita/configuration/field/time.rb +13 -13
  92. data/lib/lolita/configuration/field_set.rb +25 -25
  93. data/lib/lolita/configuration/fields.rb +35 -35
  94. data/lib/lolita/configuration/filter.rb +108 -108
  95. data/lib/lolita/configuration/list.rb +104 -104
  96. data/lib/lolita/configuration/page.rb +125 -124
  97. data/lib/lolita/configuration/tab.rb +187 -187
  98. data/lib/lolita/configuration/tab/content.rb +21 -21
  99. data/lib/lolita/configuration/tab/default.rb +25 -25
  100. data/lib/lolita/configuration/tabs.rb +132 -132
  101. data/lib/lolita/controllers/component_helpers.rb +127 -127
  102. data/lib/lolita/controllers/internal_helpers.rb +109 -109
  103. data/lib/lolita/controllers/url_helpers.rb +111 -111
  104. data/lib/lolita/controllers/user_helpers.rb +32 -32
  105. data/lib/lolita/controllers/view_user_helpers.rb +12 -12
  106. data/lib/lolita/dbi/base.rb +50 -50
  107. data/lib/lolita/errors.rb +12 -12
  108. data/lib/lolita/hooks.rb +355 -355
  109. data/lib/lolita/hooks/named_hook.rb +125 -125
  110. data/lib/lolita/lazy_loader.rb +46 -46
  111. data/lib/lolita/mapping.rb +55 -55
  112. data/lib/lolita/modules.rb +6 -6
  113. data/lib/lolita/modules/rest.rb +10 -10
  114. data/lib/lolita/navigation/branch.rb +132 -132
  115. data/lib/lolita/navigation/tree.rb +116 -116
  116. data/lib/lolita/observed_array.rb +74 -74
  117. data/lib/lolita/rails.rb +20 -20
  118. data/lib/lolita/rails/all.rb +10 -10
  119. data/lib/lolita/rails/routes.rb +133 -133
  120. data/lib/lolita/ruby_ext/accessors.rb +26 -26
  121. data/lib/lolita/support/formatter.rb +62 -62
  122. data/lib/lolita/support/formatter/rails.rb +56 -56
  123. data/lib/lolita/test/matchers.rb +77 -77
  124. data/lolita.gemspec +2 -2
  125. data/public/javascripts/jquery-1.6.min.js +15 -15
  126. data/public/javascripts/jquery-ui-1.8.13.min.js +407 -407
  127. data/public/javascripts/lolita/main.js +39 -39
  128. data/public/javascripts/lolita/tab.js +41 -41
  129. data/public/javascripts/modernizr-1.7.min.js +1 -1
  130. data/public/javascripts/rails.js +137 -137
  131. data/public/javascripts/tinymce/langs/en.js +221 -221
  132. data/public/javascripts/tinymce/license.txt +504 -504
  133. data/public/javascripts/tinymce/themes/advanced/about.htm +52 -52
  134. data/public/javascripts/tinymce/themes/advanced/anchor.htm +26 -26
  135. data/public/javascripts/tinymce/themes/advanced/charmap.htm +51 -51
  136. data/public/javascripts/tinymce/themes/advanced/color_picker.htm +74 -74
  137. data/public/javascripts/tinymce/themes/advanced/editor_template_src.js +1328 -1328
  138. data/public/javascripts/tinymce/themes/advanced/image.htm +80 -80
  139. data/public/javascripts/tinymce/themes/advanced/js/about.js +73 -73
  140. data/public/javascripts/tinymce/themes/advanced/js/anchor.js +42 -42
  141. data/public/javascripts/tinymce/themes/advanced/js/charmap.js +354 -354
  142. data/public/javascripts/tinymce/themes/advanced/js/color_picker.js +329 -329
  143. data/public/javascripts/tinymce/themes/advanced/js/image.js +247 -247
  144. data/public/javascripts/tinymce/themes/advanced/js/link.js +153 -153
  145. data/public/javascripts/tinymce/themes/advanced/js/source_editor.js +56 -56
  146. data/public/javascripts/tinymce/themes/advanced/langs/en.js +68 -68
  147. data/public/javascripts/tinymce/themes/advanced/langs/en_dlg.js +53 -53
  148. data/public/javascripts/tinymce/themes/advanced/link.htm +57 -57
  149. data/public/javascripts/tinymce/themes/advanced/shortcuts.htm +47 -47
  150. data/public/javascripts/tinymce/themes/advanced/skins/cirkuit/content.css +66 -66
  151. data/public/javascripts/tinymce/themes/advanced/skins/cirkuit/dialog.css +117 -117
  152. data/public/javascripts/tinymce/themes/advanced/skins/cirkuit/ui.css +988 -988
  153. data/public/javascripts/tinymce/themes/advanced/source_editor.htm +25 -25
  154. data/public/javascripts/tinymce/tiny_mce_popup.js +4 -4
  155. data/public/javascripts/tinymce_config.js +15 -15
  156. data/public/stylesheets/lolita/default.css +169 -169
  157. data/public/stylesheets/lolita/style.css +253 -253
  158. data/spec/adapter_helper.rb +43 -43
  159. data/spec/builder_spec.rb +120 -120
  160. data/spec/configuration/base_spec.rb +44 -44
  161. data/spec/configuration/column_spec.rb +89 -89
  162. data/spec/configuration/columns_spec.rb +54 -54
  163. data/spec/configuration/field_set_spec.rb +12 -12
  164. data/spec/configuration/field_spec.rb +118 -118
  165. data/spec/configuration/filter_spec.rb +122 -122
  166. data/spec/configuration/list_spec.rb +76 -76
  167. data/spec/configuration/page_spec.rb +19 -19
  168. data/spec/configuration/tab_spec.rb +165 -165
  169. data/spec/configuration/tabs_spec.rb +106 -106
  170. data/spec/controllers/component_helpers_spec.rb +5 -5
  171. data/spec/controllers/internal_helpers_spec.rb +76 -76
  172. data/spec/controllers/lolita_rest_nested_resources_spec.rb +33 -33
  173. data/spec/controllers/lolita_rest_spec.rb +53 -53
  174. data/spec/dbi/base_spec.rb +44 -44
  175. data/spec/hooks_spec.rb +257 -257
  176. data/spec/lolita_spec.rb +13 -13
  177. data/spec/mapping_spec.rb +29 -29
  178. data/spec/navigation/branch_spec.rb +81 -81
  179. data/spec/navigation/tree_spec.rb +73 -73
  180. data/spec/orm/mongoid.rb +11 -11
  181. data/spec/rails_app/app/controllers/application_controller.rb +3 -3
  182. data/spec/rails_app/app/helpers/application_helper.rb +3 -3
  183. data/spec/rails_app/app/mongoid/address.rb +7 -7
  184. data/spec/rails_app/app/mongoid/category.rb +5 -5
  185. data/spec/rails_app/app/mongoid/comment.rb +5 -5
  186. data/spec/rails_app/app/mongoid/post.rb +18 -18
  187. data/spec/rails_app/app/mongoid/preference.rb +5 -5
  188. data/spec/rails_app/app/mongoid/profile.rb +13 -13
  189. data/spec/rails_app/app/mongoid/tag.rb +3 -3
  190. data/spec/rails_app/app/views/components/lolita/configuration/list/_body_cell.html.erb +1 -1
  191. data/spec/rails_app/config/application.rb +26 -26
  192. data/spec/rails_app/config/boot.rb +13 -13
  193. data/spec/rails_app/config/environment.rb +5 -5
  194. data/spec/rails_app/config/environments/development.rb +19 -19
  195. data/spec/rails_app/config/environments/production.rb +33 -33
  196. data/spec/rails_app/config/environments/test.rb +33 -33
  197. data/spec/rails_app/config/initializers/backtrace_silencers.rb +7 -7
  198. data/spec/rails_app/config/initializers/inflections.rb +2 -2
  199. data/spec/rails_app/config/initializers/secret_token.rb +1 -1
  200. data/spec/rails_app/config/routes.rb +2 -2
  201. data/spec/rails_app/lib/lolita/configuration/field/my_custom_collection.rb +13 -13
  202. data/spec/rails_app/public/javascripts/jquery-1.5.1.min.js +15 -15
  203. data/spec/rails_app/public/javascripts/lolita/main.js +6 -6
  204. data/spec/rails_app/public/javascripts/lolita/tab.js +40 -40
  205. data/spec/rails_app/public/javascripts/modernizr-1.7.min.js +1 -1
  206. data/spec/rails_app/public/javascripts/rails.js +137 -137
  207. data/spec/rails_app/public/javascripts/tinymce/langs/en.js +221 -221
  208. data/spec/rails_app/public/javascripts/tinymce/license.txt +504 -504
  209. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/about.htm +52 -52
  210. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/anchor.htm +26 -26
  211. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/charmap.htm +51 -51
  212. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/color_picker.htm +74 -74
  213. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/editor_template_src.js +1328 -1328
  214. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/image.htm +80 -80
  215. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/about.js +73 -73
  216. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/anchor.js +42 -42
  217. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/charmap.js +354 -354
  218. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/color_picker.js +329 -329
  219. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/image.js +247 -247
  220. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/link.js +153 -153
  221. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/source_editor.js +56 -56
  222. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/langs/en.js +68 -68
  223. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/langs/en_dlg.js +53 -53
  224. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/link.htm +57 -57
  225. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/shortcuts.htm +47 -47
  226. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit/content.css +66 -66
  227. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit/dialog.css +117 -117
  228. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit/ui.css +988 -988
  229. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/source_editor.htm +25 -25
  230. data/spec/rails_app/public/javascripts/tinymce/tiny_mce_popup.js +4 -4
  231. data/spec/rails_app/public/stylesheets/lolita/default.css +169 -169
  232. data/spec/rails_app/public/stylesheets/lolita/style.css +214 -214
  233. data/spec/routing/routes_spec.rb +15 -15
  234. data/spec/spec_helper.rb +46 -46
  235. data/spec/support/factories/category.rb +3 -3
  236. data/spec/support/factories/post.rb +4 -4
  237. data/spec/support/factories/tag.rb +2 -2
  238. data/spec/support/formatter_spec.rb +42 -42
  239. 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.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.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.