forgeos_cms 1.9.4 → 1.9.5.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (105) hide show
  1. data/Gemfile +2 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.textile +3 -1
  4. data/app/assets/javascripts/forgeos/admin/functions.js +2 -0
  5. data/app/assets/javascripts/forgeos/admin/functions/forgeos_cms/all.js +1 -0
  6. data/app/assets/javascripts/forgeos/admin/functions/forgeos_cms/carousels.js +4 -4
  7. data/app/assets/javascripts/forgeos/admin/inits.js +2 -0
  8. data/app/assets/javascripts/forgeos/admin/inits/forgeos_cms/all.js +1 -0
  9. data/app/assets/javascripts/forgeos/admin/inits/forgeos_cms/carousels.js +5 -1
  10. data/app/assets/stylesheets/forgeos/admin/forgeos_cms/_blocks.css.sass +12 -10
  11. data/app/assets/stylesheets/forgeos/jstree/themes/association_page/style.css.sass +4 -4
  12. data/app/assets/stylesheets/forgeos/jstree/themes/block_category/style.css.sass +4 -4
  13. data/app/assets/stylesheets/forgeos/jstree/themes/menu-tree/style.css.sass +10 -7
  14. data/app/assets/stylesheets/forgeos/jstree/themes/page_category/style.css.sass +4 -4
  15. data/app/controllers/admin/actualities_controller.rb +15 -5
  16. data/app/controllers/admin/import_controller.rb +2 -2
  17. data/app/controllers/admin/menus_controller.rb +13 -2
  18. data/app/controllers/admin/newsletters_controller.rb +8 -5
  19. data/app/controllers/admin/pages_controller.rb +6 -2
  20. data/app/controllers/admin/static_content_blocks_controller.rb +6 -2
  21. data/app/controllers/admin/widgets_controller.rb +7 -4
  22. data/app/helpers/admin/base_helper.rb +5 -5
  23. data/app/models/block.rb +1 -1
  24. data/app/models/page_sweeper.rb +1 -1
  25. data/app/views/admin/actualities/_form.html.haml +2 -2
  26. data/app/views/admin/actualities/activate.js.erb +1 -0
  27. data/app/views/admin/actualities/destroy.js.erb +1 -0
  28. data/app/views/admin/actualities/index.json.erb +3 -6
  29. data/app/views/admin/carousels/_form.html.haml +2 -2
  30. data/app/views/admin/categories/_block.html.haml +1 -0
  31. data/app/views/admin/menus/_form.html.haml +1 -1
  32. data/app/views/admin/menus/_form_menu_links.html.haml +2 -0
  33. data/app/views/admin/menus/activate.js.erb +1 -0
  34. data/app/views/admin/menus/destroy.js.erb +1 -0
  35. data/app/views/admin/menus/index.json.erb +4 -6
  36. data/app/views/admin/newsletters/_form.html.haml +1 -1
  37. data/app/views/admin/newsletters/destroy.js.erb +1 -0
  38. data/app/views/admin/newsletters/index.json.erb +1 -3
  39. data/app/views/admin/pages/_form.html.haml +1 -1
  40. data/app/views/admin/pages/_page_url.html.haml +1 -0
  41. data/app/views/admin/pages/_seo.html.haml +1 -2
  42. data/app/views/admin/pages/destroy.js.erb +1 -0
  43. data/app/views/admin/pages/index.json.erb +3 -5
  44. data/app/views/admin/static_content_blocks/_form.html.haml +1 -1
  45. data/app/views/admin/static_content_blocks/destroy.js.erb +1 -0
  46. data/app/views/admin/static_content_blocks/index.json.erb +3 -6
  47. data/app/views/admin/widget_actualities/_form.html.haml +1 -1
  48. data/app/views/admin/widget_faqs/_form.html.haml +1 -1
  49. data/app/views/admin/widgets/destroy.js.erb +1 -0
  50. data/app/views/admin/widgets/index.json.erb +2 -4
  51. data/config/forgeos_admin_menu.yml +13 -0
  52. data/config/locales/activerecord/en.yml +0 -1
  53. data/config/locales/activerecord/fr.yml +0 -1
  54. data/config/locales/admin/page/fr.yml +5 -5
  55. data/config/routes.rb +5 -2
  56. data/lib/forgeos/cms.rb +0 -1
  57. data/lib/forgeos/cms/engine.rb +4 -1
  58. data/lib/forgeos/cms/version.rb +5 -0
  59. data/lib/forgeos_cms.rb +0 -2
  60. data/test/dummy/Rakefile +7 -0
  61. data/test/dummy/app/assets/javascripts/application.js +9 -0
  62. data/test/dummy/app/assets/stylesheets/application.css +7 -0
  63. data/test/dummy/app/controllers/application_controller.rb +3 -0
  64. data/test/dummy/app/helpers/application_helper.rb +2 -0
  65. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  66. data/test/dummy/config.ru +4 -0
  67. data/test/dummy/config/application.rb +42 -0
  68. data/test/dummy/config/boot.rb +10 -0
  69. data/test/dummy/config/database.yml +25 -0
  70. data/test/dummy/config/environment.rb +5 -0
  71. data/test/dummy/config/environments/development.rb +27 -0
  72. data/test/dummy/config/environments/production.rb +51 -0
  73. data/test/dummy/config/environments/test.rb +39 -0
  74. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  75. data/test/dummy/config/initializers/inflections.rb +10 -0
  76. data/test/dummy/config/initializers/mime_types.rb +5 -0
  77. data/test/dummy/config/initializers/secret_token.rb +7 -0
  78. data/test/dummy/config/initializers/session_store.rb +8 -0
  79. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  80. data/test/dummy/config/locales/en.yml +5 -0
  81. data/test/dummy/config/routes.rb +58 -0
  82. data/test/dummy/public/404.html +26 -0
  83. data/test/dummy/public/422.html +26 -0
  84. data/test/dummy/public/500.html +26 -0
  85. data/test/dummy/public/favicon.ico +0 -0
  86. data/test/dummy/script/rails +6 -0
  87. data/test/forgeos_cms_test.rb +7 -0
  88. data/test/test_helper.rb +10 -0
  89. metadata +337 -307
  90. data/app/controllers/actualities_controller.rb +0 -11
  91. data/app/controllers/admin/base_controller.rb +0 -11
  92. data/app/controllers/forgeos/application_controller.rb +0 -38
  93. data/app/controllers/newsletters_controller.rb +0 -11
  94. data/app/controllers/pages_controller.rb +0 -24
  95. data/app/controllers/search_controller.rb +0 -7
  96. data/app/helpers/application_helper.rb +0 -43
  97. data/app/helpers/menu_helper.rb +0 -46
  98. data/app/helpers/routes_helper.rb +0 -19
  99. data/app/views/actualities/rss.rxml +0 -20
  100. data/app/views/admin/carousels/_attachments_popups.html.haml +0 -43
  101. data/app/views/pages/_linked_pages.html.haml +0 -4
  102. data/app/views/pages/_page.html.haml +0 -15
  103. data/app/views/pages/show.html.haml +0 -9
  104. data/app/views/search/index.html.haml +0 -8
  105. data/lib/forgeos/admin_menu.rb +0 -14
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/422.html -->
21
+ <div class="dialog">
22
+ <h1>The change you wanted was rejected.</h1>
23
+ <p>Maybe you tried to change something you didn't have access to.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ <p>We've been notified about this issue and we'll take a look at it shortly.</p>
24
+ </div>
25
+ </body>
26
+ </html>
File without changes
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class ForgeosCmsTest < ActiveSupport::TestCase
4
+ test "truth" do
5
+ assert_kind_of Module, ForgeosCms
6
+ end
7
+ end
@@ -0,0 +1,10 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
5
+ require "rails/test_help"
6
+
7
+ Rails.backtrace_cleaner.remove_silencers!
8
+
9
+ # Load support files
10
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
metadata CHANGED
@@ -1,392 +1,422 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: forgeos_cms
3
- version: !ruby/object:Gem::Version
4
- hash: 59
5
- prerelease:
6
- segments:
7
- - 1
8
- - 9
9
- - 4
10
- version: 1.9.4
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.9.5.rc1
5
+ prerelease: 6
11
6
  platform: ruby
12
- authors:
7
+ authors:
13
8
  - Cyril LEPAGNOT
14
9
  - Jean Charles Lefrancois
10
+ - Cécile Veneziani
15
11
  autorequire:
16
12
  bindir: bin
17
13
  cert_chain: []
18
-
19
- date: 2011-08-05 00:00:00 +02:00
20
- default_executable:
21
- dependencies:
22
- - !ruby/object:Gem::Dependency
14
+ date: 2011-10-25 00:00:00.000000000Z
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
23
17
  name: forgeos_core
24
- prerelease: false
25
- requirement: &id001 !ruby/object:Gem::Requirement
18
+ requirement: &14960160 !ruby/object:Gem::Requirement
26
19
  none: false
27
- requirements:
28
- - - ">="
29
- - !ruby/object:Gem::Version
30
- hash: 59
31
- segments:
32
- - 1
33
- - 9
34
- - 4
35
- version: 1.9.4
20
+ requirements:
21
+ - - ! '>='
22
+ - !ruby/object:Gem::Version
23
+ version: 1.9.5.rc2
36
24
  type: :runtime
37
- version_requirements: *id001
38
- - !ruby/object:Gem::Dependency
39
- name: acts_as_commentable
40
25
  prerelease: false
41
- requirement: &id002 !ruby/object:Gem::Requirement
26
+ version_requirements: *14960160
27
+ - !ruby/object:Gem::Dependency
28
+ name: acts_as_commentable
29
+ requirement: &14959540 !ruby/object:Gem::Requirement
42
30
  none: false
43
- requirements:
44
- - - ">="
45
- - !ruby/object:Gem::Version
46
- hash: 5
47
- segments:
48
- - 3
49
- - 0
50
- - 1
31
+ requirements:
32
+ - - ! '>='
33
+ - !ruby/object:Gem::Version
51
34
  version: 3.0.1
52
35
  type: :runtime
53
- version_requirements: *id002
36
+ prerelease: false
37
+ version_requirements: *14959540
54
38
  description: Forgeos Cms provide pages, blocks and other cms features
55
39
  email: dev@webpulser.com
56
40
  executables: []
57
-
58
41
  extensions: []
59
-
60
42
  extra_rdoc_files: []
61
-
62
- files:
63
- - app/views/actualities/rss.rxml
64
- - app/views/layouts/application.html.haml
65
- - app/views/layouts/admin/_menu.html.haml
66
- - app/views/pages/show.html.haml
67
- - app/views/pages/_page.html.haml
68
- - app/views/pages/_linked_pages.html.haml
69
- - app/views/admin/actualities/index.json.erb
70
- - app/views/admin/actualities/_form.html.haml
71
- - app/views/admin/actualities/_tabs.html.haml
72
- - app/views/admin/actualities/new.html.haml
73
- - app/views/admin/actualities/index.html.haml
74
- - app/views/admin/actualities/edit.html.haml
75
- - app/views/admin/dashboard/index.html.haml
76
- - app/views/admin/static_content_blocks/index.json.erb
77
- - app/views/admin/static_content_blocks/_form.html.haml
78
- - app/views/admin/static_content_blocks/new.html.haml
79
- - app/views/admin/static_content_blocks/show.html.haml
80
- - app/views/admin/static_content_blocks/index.html.haml
81
- - app/views/admin/static_content_blocks/edit.html.haml
82
- - app/views/admin/widget_actualities/_form.html.haml
83
- - app/views/admin/widget_actualities/_item.html.haml
84
- - app/views/admin/widget_actualities/new.html.haml
85
- - app/views/admin/widget_actualities/show.html.haml
86
- - app/views/admin/widget_actualities/_form_item.html.haml
87
- - app/views/admin/widget_actualities/edit.html.haml
88
- - app/views/admin/menu_links/_show.html.haml
89
- - app/views/admin/statistics/index.html.haml
90
- - app/views/admin/newsletters/index.json.erb
91
- - app/views/admin/newsletters/_form.html.haml
92
- - app/views/admin/newsletters/_tabs.html.haml
93
- - app/views/admin/newsletters/new.html.haml
94
- - app/views/admin/newsletters/index.html.haml
95
- - app/views/admin/newsletters/edit.html.haml
96
- - app/views/admin/menus/index.json.erb
97
- - app/views/admin/menus/_form.html.haml
98
- - app/views/admin/menus/_tabs.html.haml
99
- - app/views/admin/menus/_types_popups.html.haml
100
- - app/views/admin/menus/new.html.haml
101
- - app/views/admin/menus/show.html.haml
102
- - app/views/admin/menus/index.html.haml
103
- - app/views/admin/menus/_form_menu_links.html.haml
104
- - app/views/admin/menus/_empty_menu_link.html.haml
105
- - app/views/admin/menus/edit.html.haml
106
- - app/views/admin/menus/_lang_switcher.html.haml
107
- - app/views/admin/pages/index.json.erb
108
- - app/views/admin/pages/_form.html.haml
109
- - app/views/admin/pages/_tabs.html.haml
110
- - app/views/admin/pages/_tabs_show.html.haml
111
- - app/views/admin/pages/_general.html.haml
112
- - app/views/admin/pages/new.html.haml
113
- - app/views/admin/pages/show.html.haml
114
- - app/views/admin/pages/index.html.haml
115
- - app/views/admin/pages/_seo.html.haml
116
- - app/views/admin/pages/_block_popup.html.haml
117
- - app/views/admin/pages/_codes.html.haml
118
- - app/views/admin/pages/_blocks.html.haml
119
- - app/views/admin/pages/edit.html.haml
120
- - app/views/admin/widgets/index.json.erb
121
- - app/views/admin/widgets/_tabs.html.haml
122
- - app/views/admin/widgets/index.html.haml
123
- - app/views/admin/categories/_list_blocks.html.haml
124
- - app/views/admin/categories/_page.html.haml
125
- - app/views/admin/categories/_list_pages.html.haml
126
- - app/views/admin/categories/_block.html.haml
127
- - app/views/admin/blocks/_tabs.html.haml
128
- - app/views/admin/blocks/_associated_pages.html.haml
129
- - app/views/admin/carousels/_form.html.haml
130
- - app/views/admin/carousels/_item.html.haml
131
- - app/views/admin/carousels/new.html.haml
132
- - app/views/admin/carousels/show.html.haml
133
- - app/views/admin/carousels/_attachments_popups.html.haml
134
- - app/views/admin/carousels/_form_item.html.haml
135
- - app/views/admin/carousels/edit.html.haml
136
- - app/views/admin/users/_tabs.html.haml
137
- - app/views/admin/widget_faqs/_form.html.haml
138
- - app/views/admin/widget_faqs/new.html.haml
139
- - app/views/admin/widget_faqs/edit.html.haml
140
- - app/views/search/index.html.haml
141
- - app/models/category_link.rb
142
- - app/models/newsletter.rb
143
- - app/models/block_category.rb
144
- - app/models/widget.rb
145
- - app/models/external_link.rb
146
- - app/models/menu.rb
147
- - app/models/page_link.rb
148
- - app/models/widget_actuality.rb
149
- - app/models/faq.rb
150
- - app/models/static_content_category.rb
151
- - app/models/widget_faq.rb
152
- - app/models/page_category.rb
153
- - app/models/page.rb
154
- - app/models/link_page.rb
155
- - app/models/page_col.rb
156
- - app/models/actuality.rb
157
- - app/models/menu_category.rb
158
- - app/models/block.rb
159
- - app/models/comment.rb
160
- - app/models/menu_link.rb
161
- - app/models/widget_category.rb
162
- - app/models/carousel.rb
163
- - app/models/static_content_block.rb
164
- - app/models/carousel_item.rb
165
- - app/models/page_sweeper.rb
166
- - app/helpers/menu_helper.rb
167
- - app/helpers/routes_helper.rb
168
- - app/helpers/admin/base_helper.rb
169
- - app/helpers/application_helper.rb
170
- - app/controllers/newsletters_controller.rb
171
- - app/controllers/forgeos/application_controller.rb
172
- - app/controllers/pages_controller.rb
173
- - app/controllers/search_controller.rb
174
- - app/controllers/actualities_controller.rb
175
- - app/controllers/admin/menus_controller.rb
176
- - app/controllers/admin/newsletters_controller.rb
177
- - app/controllers/admin/base_controller.rb
178
- - app/controllers/admin/widgets_controller.rb
179
- - app/controllers/admin/pages_controller.rb
180
- - app/controllers/admin/carousels_controller.rb
181
- - app/controllers/admin/actualities_controller.rb
43
+ files:
182
44
  - app/controllers/admin/widget_actualities_controller.rb
183
- - app/controllers/admin/static_content_blocks_controller.rb
45
+ - app/controllers/admin/carousels_controller.rb
184
46
  - app/controllers/admin/widget_faqs_controller.rb
185
47
  - app/controllers/admin/import_controller.rb
48
+ - app/controllers/admin/widgets_controller.rb
49
+ - app/controllers/admin/actualities_controller.rb
50
+ - app/controllers/admin/menus_controller.rb
51
+ - app/controllers/admin/static_content_blocks_controller.rb
52
+ - app/controllers/admin/pages_controller.rb
186
53
  - app/controllers/admin/statistics_controller.rb
187
- - app/assets/images/forgeos/jstree/themes/menu-tree/context.gif
188
- - app/assets/images/forgeos/jstree/themes/menu-tree/check-unchecked.png
189
- - app/assets/images/forgeos/jstree/themes/menu-tree/fminus.gif
190
- - app/assets/images/forgeos/jstree/themes/menu-tree/create.png
191
- - app/assets/images/forgeos/jstree/themes/menu-tree/fminus_rtl.gif
192
- - app/assets/images/forgeos/jstree/themes/menu-tree/dot.gif
193
- - app/assets/images/forgeos/jstree/themes/menu-tree/lastli_rtl.gif
194
- - app/assets/images/forgeos/jstree/themes/menu-tree/drag-drop.png
195
- - app/assets/images/forgeos/jstree/themes/menu-tree/remove.png
196
- - app/assets/images/forgeos/jstree/themes/menu-tree/bubble-quantity-products.png
197
- - app/assets/images/forgeos/jstree/themes/menu-tree/fplus_rtl.gif
198
- - app/assets/images/forgeos/jstree/themes/menu-tree/big-drag-and-drop.png
199
- - app/assets/images/forgeos/jstree/themes/menu-tree/dark-blue-minus.png
200
- - app/assets/images/forgeos/jstree/themes/menu-tree/lastli.gif
201
- - app/assets/images/forgeos/jstree/themes/menu-tree/fplus.gif
202
- - app/assets/images/forgeos/jstree/themes/menu-tree/li.gif
203
- - app/assets/images/forgeos/jstree/themes/menu-tree/rename.png
204
- - app/assets/images/forgeos/jstree/themes/menu-tree/throbber.gif
205
- - app/assets/images/forgeos/jstree/themes/menu-tree/f.png
206
- - app/assets/images/forgeos/jstree/themes/menu-tree/dark-blue-plus.png
207
- - app/assets/images/forgeos/jstree/themes/menu-tree/folder.png
208
- - app/assets/images/forgeos/jstree/themes/menu-tree/check-checked.png
209
- - app/assets/images/forgeos/jstree/themes/block_category/context.gif
210
- - app/assets/images/forgeos/jstree/themes/block_category/fminus.gif
211
- - app/assets/images/forgeos/jstree/themes/block_category/create.png
212
- - app/assets/images/forgeos/jstree/themes/block_category/fminus_rtl.gif
213
- - app/assets/images/forgeos/jstree/themes/block_category/dot.gif
214
- - app/assets/images/forgeos/jstree/themes/block_category/lastli_rtl.gif
215
- - app/assets/images/forgeos/jstree/themes/block_category/remove.png
216
- - app/assets/images/forgeos/jstree/themes/block_category/bubble-quantity-products.png
217
- - app/assets/images/forgeos/jstree/themes/block_category/fplus_rtl.gif
218
- - app/assets/images/forgeos/jstree/themes/block_category/lastli.gif
219
- - app/assets/images/forgeos/jstree/themes/block_category/fplus.gif
54
+ - app/controllers/admin/newsletters_controller.rb
55
+ - app/assets/javascripts/forgeos/admin/functions/forgeos_cms/menus.js
56
+ - app/assets/javascripts/forgeos/admin/functions/forgeos_cms/overlay.js
57
+ - app/assets/javascripts/forgeos/admin/functions/forgeos_cms/all.js
58
+ - app/assets/javascripts/forgeos/admin/functions/forgeos_cms/carousels.js
59
+ - app/assets/javascripts/forgeos/admin/functions/forgeos_cms/trees.js
60
+ - app/assets/javascripts/forgeos/admin/functions/forgeos_cms/widget_actualities.js
61
+ - app/assets/javascripts/forgeos/admin/inits.js
62
+ - app/assets/javascripts/forgeos/admin/functions.js
63
+ - app/assets/javascripts/forgeos/admin/inits/forgeos_cms/menus.js
64
+ - app/assets/javascripts/forgeos/admin/inits/forgeos_cms/all.js
65
+ - app/assets/javascripts/forgeos/admin/inits/forgeos_cms/carousels.js
66
+ - app/assets/javascripts/forgeos/admin/inits/forgeos_cms/overlays.js
67
+ - app/assets/javascripts/forgeos/admin/inits/forgeos_cms/trees.js
68
+ - app/assets/javascripts/forgeos/admin/inits/forgeos_cms/widget_actualities.js
69
+ - app/assets/javascripts/forgeos/admin/inits/forgeos_cms/widget_faq.js
220
70
  - app/assets/images/forgeos/jstree/themes/block_category/brown-minus.png
221
71
  - app/assets/images/forgeos/jstree/themes/block_category/li.gif
222
- - app/assets/images/forgeos/jstree/themes/block_category/rename.png
223
72
  - app/assets/images/forgeos/jstree/themes/block_category/throbber.gif
73
+ - app/assets/images/forgeos/jstree/themes/block_category/bubble-quantity-products.png
224
74
  - app/assets/images/forgeos/jstree/themes/block_category/f.png
225
75
  - app/assets/images/forgeos/jstree/themes/block_category/brown-plus.png
226
- - app/assets/images/forgeos/jstree/themes/association_page/context.gif
227
- - app/assets/images/forgeos/jstree/themes/association_page/check-unchecked.png
228
- - app/assets/images/forgeos/jstree/themes/association_page/fminus.gif
229
- - app/assets/images/forgeos/jstree/themes/association_page/create.png
230
- - app/assets/images/forgeos/jstree/themes/association_page/fminus_rtl.gif
231
- - app/assets/images/forgeos/jstree/themes/association_page/dot.gif
232
- - app/assets/images/forgeos/jstree/themes/association_page/lastli_rtl.gif
233
- - app/assets/images/forgeos/jstree/themes/association_page/remove.png
234
- - app/assets/images/forgeos/jstree/themes/association_page/bubble-quantity-products.png
235
- - app/assets/images/forgeos/jstree/themes/association_page/fplus_rtl.gif
236
- - app/assets/images/forgeos/jstree/themes/association_page/dark-blue-minus.png
237
- - app/assets/images/forgeos/jstree/themes/association_page/lastli.gif
238
- - app/assets/images/forgeos/jstree/themes/association_page/fplus.gif
76
+ - app/assets/images/forgeos/jstree/themes/block_category/dot.gif
77
+ - app/assets/images/forgeos/jstree/themes/block_category/fplus.gif
78
+ - app/assets/images/forgeos/jstree/themes/block_category/lastli.gif
79
+ - app/assets/images/forgeos/jstree/themes/block_category/fminus_rtl.gif
80
+ - app/assets/images/forgeos/jstree/themes/block_category/remove.png
81
+ - app/assets/images/forgeos/jstree/themes/block_category/create.png
82
+ - app/assets/images/forgeos/jstree/themes/block_category/fminus.gif
83
+ - app/assets/images/forgeos/jstree/themes/block_category/lastli_rtl.gif
84
+ - app/assets/images/forgeos/jstree/themes/block_category/rename.png
85
+ - app/assets/images/forgeos/jstree/themes/block_category/context.gif
86
+ - app/assets/images/forgeos/jstree/themes/block_category/fplus_rtl.gif
87
+ - app/assets/images/forgeos/jstree/themes/association_page/check-checked.png
239
88
  - app/assets/images/forgeos/jstree/themes/association_page/li.gif
240
- - app/assets/images/forgeos/jstree/themes/association_page/rename.png
241
89
  - app/assets/images/forgeos/jstree/themes/association_page/throbber.gif
90
+ - app/assets/images/forgeos/jstree/themes/association_page/bubble-quantity-products.png
242
91
  - app/assets/images/forgeos/jstree/themes/association_page/f.png
243
- - app/assets/images/forgeos/jstree/themes/association_page/dark-blue-plus.png
244
92
  - app/assets/images/forgeos/jstree/themes/association_page/folder.png
245
- - app/assets/images/forgeos/jstree/themes/association_page/check-checked.png
246
- - app/assets/images/forgeos/jstree/themes/page_category/context.gif
247
- - app/assets/images/forgeos/jstree/themes/page_category/fminus.gif
248
- - app/assets/images/forgeos/jstree/themes/page_category/create.png
249
- - app/assets/images/forgeos/jstree/themes/page_category/fminus_rtl.gif
250
- - app/assets/images/forgeos/jstree/themes/page_category/dot.gif
251
- - app/assets/images/forgeos/jstree/themes/page_category/lastli_rtl.gif
252
- - app/assets/images/forgeos/jstree/themes/page_category/remove.png
253
- - app/assets/images/forgeos/jstree/themes/page_category/bubble-quantity-products.png
254
- - app/assets/images/forgeos/jstree/themes/page_category/fplus_rtl.gif
255
- - app/assets/images/forgeos/jstree/themes/page_category/lastli.gif
256
- - app/assets/images/forgeos/jstree/themes/page_category/fplus.gif
93
+ - app/assets/images/forgeos/jstree/themes/association_page/dark-blue-plus.png
94
+ - app/assets/images/forgeos/jstree/themes/association_page/dot.gif
95
+ - app/assets/images/forgeos/jstree/themes/association_page/fplus.gif
96
+ - app/assets/images/forgeos/jstree/themes/association_page/lastli.gif
97
+ - app/assets/images/forgeos/jstree/themes/association_page/fminus_rtl.gif
98
+ - app/assets/images/forgeos/jstree/themes/association_page/remove.png
99
+ - app/assets/images/forgeos/jstree/themes/association_page/dark-blue-minus.png
100
+ - app/assets/images/forgeos/jstree/themes/association_page/create.png
101
+ - app/assets/images/forgeos/jstree/themes/association_page/check-unchecked.png
102
+ - app/assets/images/forgeos/jstree/themes/association_page/fminus.gif
103
+ - app/assets/images/forgeos/jstree/themes/association_page/lastli_rtl.gif
104
+ - app/assets/images/forgeos/jstree/themes/association_page/rename.png
105
+ - app/assets/images/forgeos/jstree/themes/association_page/context.gif
106
+ - app/assets/images/forgeos/jstree/themes/association_page/fplus_rtl.gif
107
+ - app/assets/images/forgeos/jstree/themes/menu-tree/check-checked.png
108
+ - app/assets/images/forgeos/jstree/themes/menu-tree/li.gif
109
+ - app/assets/images/forgeos/jstree/themes/menu-tree/throbber.gif
110
+ - app/assets/images/forgeos/jstree/themes/menu-tree/bubble-quantity-products.png
111
+ - app/assets/images/forgeos/jstree/themes/menu-tree/f.png
112
+ - app/assets/images/forgeos/jstree/themes/menu-tree/folder.png
113
+ - app/assets/images/forgeos/jstree/themes/menu-tree/drag-drop.png
114
+ - app/assets/images/forgeos/jstree/themes/menu-tree/dark-blue-plus.png
115
+ - app/assets/images/forgeos/jstree/themes/menu-tree/big-drag-and-drop.png
116
+ - app/assets/images/forgeos/jstree/themes/menu-tree/dot.gif
117
+ - app/assets/images/forgeos/jstree/themes/menu-tree/fplus.gif
118
+ - app/assets/images/forgeos/jstree/themes/menu-tree/lastli.gif
119
+ - app/assets/images/forgeos/jstree/themes/menu-tree/fminus_rtl.gif
120
+ - app/assets/images/forgeos/jstree/themes/menu-tree/remove.png
121
+ - app/assets/images/forgeos/jstree/themes/menu-tree/dark-blue-minus.png
122
+ - app/assets/images/forgeos/jstree/themes/menu-tree/create.png
123
+ - app/assets/images/forgeos/jstree/themes/menu-tree/check-unchecked.png
124
+ - app/assets/images/forgeos/jstree/themes/menu-tree/fminus.gif
125
+ - app/assets/images/forgeos/jstree/themes/menu-tree/lastli_rtl.gif
126
+ - app/assets/images/forgeos/jstree/themes/menu-tree/rename.png
127
+ - app/assets/images/forgeos/jstree/themes/menu-tree/context.gif
128
+ - app/assets/images/forgeos/jstree/themes/menu-tree/fplus_rtl.gif
257
129
  - app/assets/images/forgeos/jstree/themes/page_category/brown-minus.png
258
130
  - app/assets/images/forgeos/jstree/themes/page_category/li.gif
259
- - app/assets/images/forgeos/jstree/themes/page_category/rename.png
260
131
  - app/assets/images/forgeos/jstree/themes/page_category/throbber.gif
132
+ - app/assets/images/forgeos/jstree/themes/page_category/bubble-quantity-products.png
261
133
  - app/assets/images/forgeos/jstree/themes/page_category/f.png
262
134
  - app/assets/images/forgeos/jstree/themes/page_category/brown-plus.png
135
+ - app/assets/images/forgeos/jstree/themes/page_category/dot.gif
136
+ - app/assets/images/forgeos/jstree/themes/page_category/fplus.gif
137
+ - app/assets/images/forgeos/jstree/themes/page_category/lastli.gif
138
+ - app/assets/images/forgeos/jstree/themes/page_category/fminus_rtl.gif
139
+ - app/assets/images/forgeos/jstree/themes/page_category/remove.png
140
+ - app/assets/images/forgeos/jstree/themes/page_category/create.png
141
+ - app/assets/images/forgeos/jstree/themes/page_category/fminus.gif
142
+ - app/assets/images/forgeos/jstree/themes/page_category/lastli_rtl.gif
143
+ - app/assets/images/forgeos/jstree/themes/page_category/rename.png
144
+ - app/assets/images/forgeos/jstree/themes/page_category/context.gif
145
+ - app/assets/images/forgeos/jstree/themes/page_category/fplus_rtl.gif
263
146
  - app/assets/images/forgeos/admin/favicon.gif
264
- - app/assets/stylesheets/forgeos/jstree/themes/menu-tree/style.css.sass
265
147
  - app/assets/stylesheets/forgeos/jstree/themes/block_category/style.css.sass
266
148
  - app/assets/stylesheets/forgeos/jstree/themes/association_page/style.css.sass
149
+ - app/assets/stylesheets/forgeos/jstree/themes/menu-tree/style.css.sass
267
150
  - app/assets/stylesheets/forgeos/jstree/themes/page_category/style.css.sass
268
- - app/assets/stylesheets/forgeos/admin/forgeos_cms/_blocks.css.sass
269
- - app/assets/stylesheets/forgeos/admin/forgeos_cms/_all.css.sass
270
151
  - app/assets/stylesheets/forgeos/admin/base.css.sass
271
- - app/assets/javascripts/forgeos/admin/functions/forgeos_cms/trees.js
272
- - app/assets/javascripts/forgeos/admin/functions/forgeos_cms/menus.js
273
- - app/assets/javascripts/forgeos/admin/functions/forgeos_cms/carousels.js
274
- - app/assets/javascripts/forgeos/admin/functions/forgeos_cms/widget_actualities.js
275
- - app/assets/javascripts/forgeos/admin/functions/forgeos_cms/overlay.js
276
- - app/assets/javascripts/forgeos/admin/inits/forgeos_cms/widget_faq.js
277
- - app/assets/javascripts/forgeos/admin/inits/forgeos_cms/trees.js
278
- - app/assets/javascripts/forgeos/admin/inits/forgeos_cms/menus.js
279
- - app/assets/javascripts/forgeos/admin/inits/forgeos_cms/carousels.js
280
- - app/assets/javascripts/forgeos/admin/inits/forgeos_cms/overlays.js
281
- - app/assets/javascripts/forgeos/admin/inits/forgeos_cms/widget_actualities.js
282
- - lib/forgeos/cms/engine.rb
152
+ - app/assets/stylesheets/forgeos/admin/forgeos_cms/_all.css.sass
153
+ - app/assets/stylesheets/forgeos/admin/forgeos_cms/_blocks.css.sass
154
+ - app/models/menu_link.rb
155
+ - app/models/static_content_block.rb
156
+ - app/models/widget_faq.rb
157
+ - app/models/faq.rb
158
+ - app/models/widget_category.rb
159
+ - app/models/category_link.rb
160
+ - app/models/static_content_category.rb
161
+ - app/models/widget.rb
162
+ - app/models/page_link.rb
163
+ - app/models/link_page.rb
164
+ - app/models/external_link.rb
165
+ - app/models/widget_actuality.rb
166
+ - app/models/block_category.rb
167
+ - app/models/page.rb
168
+ - app/models/page_sweeper.rb
169
+ - app/models/newsletter.rb
170
+ - app/models/comment.rb
171
+ - app/models/carousel_item.rb
172
+ - app/models/block.rb
173
+ - app/models/actuality.rb
174
+ - app/models/page_col.rb
175
+ - app/models/menu.rb
176
+ - app/models/menu_category.rb
177
+ - app/models/carousel.rb
178
+ - app/models/page_category.rb
179
+ - app/helpers/admin/base_helper.rb
180
+ - app/views/admin/users/_tabs.html.haml
181
+ - app/views/admin/static_content_blocks/new.html.haml
182
+ - app/views/admin/static_content_blocks/_form.html.haml
183
+ - app/views/admin/static_content_blocks/show.html.haml
184
+ - app/views/admin/static_content_blocks/index.html.haml
185
+ - app/views/admin/static_content_blocks/destroy.js.erb
186
+ - app/views/admin/static_content_blocks/index.json.erb
187
+ - app/views/admin/static_content_blocks/edit.html.haml
188
+ - app/views/admin/widget_faqs/new.html.haml
189
+ - app/views/admin/widget_faqs/_form.html.haml
190
+ - app/views/admin/widget_faqs/edit.html.haml
191
+ - app/views/admin/widget_actualities/new.html.haml
192
+ - app/views/admin/widget_actualities/_form.html.haml
193
+ - app/views/admin/widget_actualities/show.html.haml
194
+ - app/views/admin/widget_actualities/_item.html.haml
195
+ - app/views/admin/widget_actualities/_form_item.html.haml
196
+ - app/views/admin/widget_actualities/edit.html.haml
197
+ - app/views/admin/menus/_empty_menu_link.html.haml
198
+ - app/views/admin/menus/_form_menu_links.html.haml
199
+ - app/views/admin/menus/new.html.haml
200
+ - app/views/admin/menus/_types_popups.html.haml
201
+ - app/views/admin/menus/_form.html.haml
202
+ - app/views/admin/menus/show.html.haml
203
+ - app/views/admin/menus/index.html.haml
204
+ - app/views/admin/menus/_tabs.html.haml
205
+ - app/views/admin/menus/destroy.js.erb
206
+ - app/views/admin/menus/index.json.erb
207
+ - app/views/admin/menus/activate.js.erb
208
+ - app/views/admin/menus/edit.html.haml
209
+ - app/views/admin/menus/_lang_switcher.html.haml
210
+ - app/views/admin/widgets/index.html.haml
211
+ - app/views/admin/widgets/_tabs.html.haml
212
+ - app/views/admin/widgets/destroy.js.erb
213
+ - app/views/admin/widgets/index.json.erb
214
+ - app/views/admin/carousels/new.html.haml
215
+ - app/views/admin/carousels/_form.html.haml
216
+ - app/views/admin/carousels/show.html.haml
217
+ - app/views/admin/carousels/_item.html.haml
218
+ - app/views/admin/carousels/_form_item.html.haml
219
+ - app/views/admin/carousels/edit.html.haml
220
+ - app/views/admin/blocks/_tabs.html.haml
221
+ - app/views/admin/blocks/_associated_pages.html.haml
222
+ - app/views/admin/statistics/index.html.haml
223
+ - app/views/admin/menu_links/_show.html.haml
224
+ - app/views/admin/newsletters/new.html.haml
225
+ - app/views/admin/newsletters/_form.html.haml
226
+ - app/views/admin/newsletters/index.html.haml
227
+ - app/views/admin/newsletters/_tabs.html.haml
228
+ - app/views/admin/newsletters/destroy.js.erb
229
+ - app/views/admin/newsletters/index.json.erb
230
+ - app/views/admin/newsletters/edit.html.haml
231
+ - app/views/admin/dashboard/index.html.haml
232
+ - app/views/admin/categories/_block.html.haml
233
+ - app/views/admin/categories/_list_blocks.html.haml
234
+ - app/views/admin/categories/_list_pages.html.haml
235
+ - app/views/admin/categories/_page.html.haml
236
+ - app/views/admin/actualities/new.html.haml
237
+ - app/views/admin/actualities/_form.html.haml
238
+ - app/views/admin/actualities/index.html.haml
239
+ - app/views/admin/actualities/_tabs.html.haml
240
+ - app/views/admin/actualities/destroy.js.erb
241
+ - app/views/admin/actualities/index.json.erb
242
+ - app/views/admin/actualities/activate.js.erb
243
+ - app/views/admin/actualities/edit.html.haml
244
+ - app/views/admin/pages/_general.html.haml
245
+ - app/views/admin/pages/_block_popup.html.haml
246
+ - app/views/admin/pages/new.html.haml
247
+ - app/views/admin/pages/_tabs_show.html.haml
248
+ - app/views/admin/pages/_form.html.haml
249
+ - app/views/admin/pages/show.html.haml
250
+ - app/views/admin/pages/index.html.haml
251
+ - app/views/admin/pages/_tabs.html.haml
252
+ - app/views/admin/pages/destroy.js.erb
253
+ - app/views/admin/pages/index.json.erb
254
+ - app/views/admin/pages/edit.html.haml
255
+ - app/views/admin/pages/_seo.html.haml
256
+ - app/views/admin/pages/_page_url.html.haml
257
+ - app/views/admin/pages/_codes.html.haml
258
+ - app/views/admin/pages/_blocks.html.haml
259
+ - app/views/layouts/admin/_menu.html.haml
260
+ - app/views/layouts/application.html.haml
283
261
  - lib/forgeos/cms/statistics.rb
284
- - lib/forgeos/admin_menu.rb
262
+ - lib/forgeos/cms/engine.rb
263
+ - lib/forgeos/cms/version.rb
285
264
  - lib/forgeos/cms.rb
286
- - lib/forgeos_cms.rb
287
265
  - lib/tasks/upgrade.rake
288
266
  - lib/tasks/install.rake
289
- - config/locales/common/en.yml
290
- - config/locales/common/fr.yml
267
+ - lib/forgeos_cms.rb
268
+ - config/locales/activerecord/en.yml
269
+ - config/locales/activerecord/fr.yml
270
+ - config/locales/admin/static_content_block/en.yml
271
+ - config/locales/admin/static_content_block/fr.yml
272
+ - config/locales/admin/actuality/en.yml
273
+ - config/locales/admin/actuality/fr.yml
274
+ - config/locales/admin/section/en.yml
275
+ - config/locales/admin/section/fr.yml
276
+ - config/locales/admin/page/en.yml
277
+ - config/locales/admin/page/fr.yml
278
+ - config/locales/admin/widget/en.yml
279
+ - config/locales/admin/widget/fr.yml
291
280
  - config/locales/admin/block/en.yml
292
281
  - config/locales/admin/block/fr.yml
293
- - config/locales/admin/menu/en.yml
294
- - config/locales/admin/menu/fr.yml
295
282
  - config/locales/admin/widget_faq/en.yml
296
283
  - config/locales/admin/widget_faq/fr.yml
297
284
  - config/locales/admin/widget_actuality/en.yml
298
285
  - config/locales/admin/widget_actuality/fr.yml
299
- - config/locales/admin/actuality/en.yml
300
- - config/locales/admin/actuality/fr.yml
301
- - config/locales/admin/page/en.yml
302
- - config/locales/admin/page/fr.yml
286
+ - config/locales/admin/menu/en.yml
287
+ - config/locales/admin/menu/fr.yml
303
288
  - config/locales/admin/carousel/en.yml
304
289
  - config/locales/admin/carousel/fr.yml
305
- - config/locales/admin/section/en.yml
306
- - config/locales/admin/section/fr.yml
307
- - config/locales/admin/widget/en.yml
308
- - config/locales/admin/widget/fr.yml
309
290
  - config/locales/admin/newsletter/en.yml
310
291
  - config/locales/admin/newsletter/fr.yml
311
- - config/locales/admin/static_content_block/en.yml
312
- - config/locales/admin/static_content_block/fr.yml
313
- - config/locales/activerecord/en.yml
314
- - config/locales/activerecord/fr.yml
292
+ - config/locales/common/en.yml
293
+ - config/locales/common/fr.yml
294
+ - config/forgeos_admin_menu.yml
315
295
  - config/routes.rb
316
- - db/fixtures/pages.yml
317
- - db/fixtures/menus.yml
318
296
  - db/fixtures/page_translations.yml
297
+ - db/fixtures/menus.yml
298
+ - db/fixtures/pages.yml
319
299
  - db/fixtures/menu_link_translations.yml
320
- - db/fixtures/menu_links.yml
321
300
  - db/fixtures/people.yml
322
- - db/migrate/20091009134510_create_blocks_pages.rb
323
- - db/migrate/20091208113460_create_block_translations.rb
324
- - db/migrate/20091009134729_create_pages.rb
325
- - db/migrate/20100203125804_remove_translated_columns_to_actualities.rb
326
- - db/migrate/20091009134405_create_actualities.rb
301
+ - db/fixtures/menu_links.yml
302
+ - db/migrate/20091208170256_remove_translations_to_page.rb
327
303
  - db/migrate/20101015095242_update_actualities.rb
328
- - db/migrate/20100413134832_add_index_on_menu_links.rb
329
- - db/migrate/20091208113461_create_menu_link_translations.rb
304
+ - db/migrate/20100407093551_create_table_translation_for_page_cols.rb
305
+ - db/migrate/20091009134518_create_carousel_items.rb
330
306
  - db/migrate/20101216155044_create_newsletter.rb
331
- - db/migrate/20091208170257_remove_translations_to_block.rb
332
- - db/migrate/20100203102914_add_carousel_item_translations.rb
333
- - db/migrate/20091027153116_create_menus.rb
307
+ - db/migrate/20100405095844_create_page_cols_table.rb
308
+ - db/migrate/20091009134510_create_blocks_pages.rb
309
+ - db/migrate/20110310092311_add_indexes_to_menu.rb
310
+ - db/migrate/20100405101416_create_blocks_page_cols.rb
334
311
  - db/migrate/20100526163534_add_popup_to_menu_link.rb
312
+ - db/migrate/20091208170257_remove_translations_to_block.rb
313
+ - db/migrate/20100203125804_remove_translated_columns_to_actualities.rb
314
+ - db/migrate/20091009134405_create_actualities.rb
335
315
  - db/migrate/20100203102853_add_actuality_translations.rb
336
- - db/migrate/20091009134736_create_pages_links.rb
337
- - db/migrate/20091208113459_create_page_translations.rb
338
- - db/migrate/20110310092311_add_indexes_to_menu.rb
339
- - db/migrate/20110408133955_add_summary_to_menu_link_translations.rb
340
- - db/migrate/20091208170256_remove_translations_to_page.rb
341
- - db/migrate/20091009134518_create_carousel_items.rb
342
316
  - db/migrate/20091027153659_create_menu_links.rb
343
- - db/migrate/20100929183346_change_answer_type.rb
344
- - db/migrate/20091009134503_create_blocks.rb
345
- - db/migrate/20100203125820_remove_translated_columns_to_carousel_items.rb
317
+ - db/migrate/20091208113461_create_menu_link_translations.rb
318
+ - db/migrate/20091027153116_create_menus.rb
319
+ - db/migrate/20091009134729_create_pages.rb
320
+ - db/migrate/20100413134832_add_index_on_menu_links.rb
346
321
  - db/migrate/20100501150819_add_code_to_pages.rb
347
322
  - db/migrate/20100511161012_create_faqs.rb
348
- - db/migrate/20100405095844_create_page_cols_table.rb
349
- - db/migrate/20100405101416_create_blocks_page_cols.rb
323
+ - db/migrate/20100203125820_remove_translated_columns_to_carousel_items.rb
324
+ - db/migrate/20091208113459_create_page_translations.rb
325
+ - db/migrate/20091208113460_create_block_translations.rb
326
+ - db/migrate/20100929183346_change_answer_type.rb
327
+ - db/migrate/20091009134736_create_pages_links.rb
328
+ - db/migrate/20110408133955_add_summary_to_menu_link_translations.rb
350
329
  - db/migrate/20091208170258_remove_translations_to_menu_link.rb
351
- - db/migrate/20100407093551_create_table_translation_for_page_cols.rb
330
+ - db/migrate/20100203102914_add_carousel_item_translations.rb
331
+ - db/migrate/20091009134503_create_blocks.rb
352
332
  - recipes/deploy.rb
353
333
  - README.textile
354
334
  - LICENSE
355
335
  - COPYING.LESSER
356
336
  - COPYING
357
- has_rdoc: true
337
+ - MIT-LICENSE
338
+ - Gemfile
339
+ - test/test_helper.rb
340
+ - test/dummy/script/rails
341
+ - test/dummy/app/controllers/application_controller.rb
342
+ - test/dummy/app/assets/javascripts/application.js
343
+ - test/dummy/app/assets/stylesheets/application.css
344
+ - test/dummy/app/helpers/application_helper.rb
345
+ - test/dummy/app/views/layouts/application.html.erb
346
+ - test/dummy/config/locales/en.yml
347
+ - test/dummy/config/boot.rb
348
+ - test/dummy/config/application.rb
349
+ - test/dummy/config/database.yml
350
+ - test/dummy/config/environment.rb
351
+ - test/dummy/config/routes.rb
352
+ - test/dummy/config/initializers/mime_types.rb
353
+ - test/dummy/config/initializers/inflections.rb
354
+ - test/dummy/config/initializers/backtrace_silencers.rb
355
+ - test/dummy/config/initializers/secret_token.rb
356
+ - test/dummy/config/initializers/wrap_parameters.rb
357
+ - test/dummy/config/initializers/session_store.rb
358
+ - test/dummy/config/environments/development.rb
359
+ - test/dummy/config/environments/production.rb
360
+ - test/dummy/config/environments/test.rb
361
+ - test/dummy/public/422.html
362
+ - test/dummy/public/404.html
363
+ - test/dummy/public/500.html
364
+ - test/dummy/public/favicon.ico
365
+ - test/dummy/Rakefile
366
+ - test/dummy/config.ru
367
+ - test/forgeos_cms_test.rb
358
368
  homepage: http://github.com/webpulser/forgeos_cms
359
369
  licenses: []
360
-
361
370
  post_install_message:
362
371
  rdoc_options: []
363
-
364
- require_paths:
372
+ require_paths:
365
373
  - lib
366
- required_ruby_version: !ruby/object:Gem::Requirement
374
+ required_ruby_version: !ruby/object:Gem::Requirement
367
375
  none: false
368
- requirements:
369
- - - ">="
370
- - !ruby/object:Gem::Version
371
- hash: 3
372
- segments:
373
- - 0
374
- version: "0"
375
- required_rubygems_version: !ruby/object:Gem::Requirement
376
+ requirements:
377
+ - - ! '>='
378
+ - !ruby/object:Gem::Version
379
+ version: '0'
380
+ required_rubygems_version: !ruby/object:Gem::Requirement
376
381
  none: false
377
- requirements:
378
- - - ">="
379
- - !ruby/object:Gem::Version
380
- hash: 3
381
- segments:
382
- - 0
383
- version: "0"
382
+ requirements:
383
+ - - ! '>'
384
+ - !ruby/object:Gem::Version
385
+ version: 1.3.1
384
386
  requirements: []
385
-
386
387
  rubyforge_project:
387
- rubygems_version: 1.6.2
388
+ rubygems_version: 1.8.6
388
389
  signing_key:
389
390
  specification_version: 3
390
391
  summary: Cms of Forgeos plugins suite
391
- test_files: []
392
-
392
+ test_files:
393
+ - test/test_helper.rb
394
+ - test/dummy/script/rails
395
+ - test/dummy/app/controllers/application_controller.rb
396
+ - test/dummy/app/assets/javascripts/application.js
397
+ - test/dummy/app/assets/stylesheets/application.css
398
+ - test/dummy/app/helpers/application_helper.rb
399
+ - test/dummy/app/views/layouts/application.html.erb
400
+ - test/dummy/config/locales/en.yml
401
+ - test/dummy/config/boot.rb
402
+ - test/dummy/config/application.rb
403
+ - test/dummy/config/database.yml
404
+ - test/dummy/config/environment.rb
405
+ - test/dummy/config/routes.rb
406
+ - test/dummy/config/initializers/mime_types.rb
407
+ - test/dummy/config/initializers/inflections.rb
408
+ - test/dummy/config/initializers/backtrace_silencers.rb
409
+ - test/dummy/config/initializers/secret_token.rb
410
+ - test/dummy/config/initializers/wrap_parameters.rb
411
+ - test/dummy/config/initializers/session_store.rb
412
+ - test/dummy/config/environments/development.rb
413
+ - test/dummy/config/environments/production.rb
414
+ - test/dummy/config/environments/test.rb
415
+ - test/dummy/public/422.html
416
+ - test/dummy/public/404.html
417
+ - test/dummy/public/500.html
418
+ - test/dummy/public/favicon.ico
419
+ - test/dummy/Rakefile
420
+ - test/dummy/config.ru
421
+ - test/forgeos_cms_test.rb
422
+ has_rdoc: