contentator 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (101) hide show
  1. data/README.rdoc +2 -2
  2. data/Rakefile +26 -0
  3. data/VERSION +1 -0
  4. data/app/controllers/application_controller.rb +35 -0
  5. data/app/controllers/cms/admin/admin_controller.rb +3 -0
  6. data/app/controllers/cms/admin/file_attachments_controller.rb +53 -0
  7. data/app/controllers/cms/admin/page_content_blocks_controller.rb +77 -0
  8. data/app/controllers/cms/admin/pages_controller.rb +68 -0
  9. data/app/controllers/cms/content_controller.rb +25 -0
  10. data/app/helpers/application_helper.rb +29 -0
  11. data/app/helpers/cms/admin/pages_helper.rb +34 -0
  12. data/app/models/file_attachment.rb +4 -0
  13. data/app/models/page.rb +71 -0
  14. data/app/models/page_content_block.rb +10 -0
  15. data/app/views/cms/admin/_admin_toolbar.html.haml +10 -0
  16. data/app/views/cms/admin/file_attachments/_form.html.haml +17 -0
  17. data/app/views/cms/admin/page_content_blocks/_form.html.haml +23 -0
  18. data/app/views/cms/admin/pages/_form.html.haml +22 -0
  19. data/app/views/cms/admin/pages/edit.html.haml +10 -0
  20. data/app/views/cms/admin/pages/index.html.haml +13 -0
  21. data/app/views/cms/admin/pages/new.html.haml +7 -0
  22. data/app/views/cms/content/_file_attachment.html.haml +9 -0
  23. data/app/views/cms/content/_file_attachments_container.html.haml +16 -0
  24. data/app/views/cms/content/_page_content_block.html.haml +14 -0
  25. data/app/views/cms/content/_page_content_blocks_container.html.haml +15 -0
  26. data/app/views/cms/content/content.html.haml +4 -0
  27. data/app/views/cms/content/gallery.html.haml +4 -0
  28. data/app/views/cms/content/home.html.haml +4 -0
  29. data/app/views/layouts/application.html.haml +22 -0
  30. data/app/views/layouts/cms/admin/application.html.haml +44 -0
  31. data/config/boot.rb +110 -0
  32. data/config/environment.rb +54 -0
  33. data/config/environments/development.rb +17 -0
  34. data/config/environments/production.rb +28 -0
  35. data/config/environments/test.rb +28 -0
  36. data/config/geminstaller.local.yml +21 -0
  37. data/config/geminstaller.yml +22 -0
  38. data/config/initializers/backtrace_silencers.rb +7 -0
  39. data/config/initializers/inflections.rb +10 -0
  40. data/config/initializers/mime_types.rb +5 -0
  41. data/config/initializers/new_rails_defaults.rb +19 -0
  42. data/config/initializers/session_store.rb +15 -0
  43. data/config/locales/de.yml +49 -0
  44. data/config/locales/en.yml +49 -0
  45. data/config/routes.rb +13 -0
  46. data/contentator.gemspec +160 -0
  47. data/db/migrate/20091002165818_create_pages.rb +22 -0
  48. data/db/migrate/20091002211930_create_home_page.rb +10 -0
  49. data/db/migrate/20091007222703_create_page_content_blocks.rb +22 -0
  50. data/db/migrate/20091029204950_create_file_attachments.rb +17 -0
  51. data/lib/contentator.rb +2 -0
  52. data/lib/generators/content/content_generator.rb +118 -0
  53. data/lib/generators/content/templates/container.rb +16 -0
  54. data/lib/generators/content/templates/controller.rb +63 -0
  55. data/lib/generators/content/templates/factories.rb +6 -0
  56. data/lib/generators/content/templates/form.rb +12 -0
  57. data/lib/generators/content/templates/functional_test.rb +140 -0
  58. data/lib/generators/content/templates/item.rb +11 -0
  59. data/lib/generators/content/templates/migration.rb +17 -0
  60. data/lib/generators/content/templates/model.rb +5 -0
  61. data/lib/generators/content/templates/unit_test.rb +8 -0
  62. data/lib/generators/content/templates/view.rb +0 -0
  63. data/lib/template.rb +10 -0
  64. data/public/404.html +30 -0
  65. data/public/422.html +30 -0
  66. data/public/500.html +30 -0
  67. data/public/favicon.ico +0 -0
  68. data/public/images/admin_standard/content-header-bg.png +0 -0
  69. data/public/images/admin_standard/context-arrow.png +0 -0
  70. data/public/images/admin_standard/context-bg.png +0 -0
  71. data/public/images/admin_standard/crumb-bg-current.gif +0 -0
  72. data/public/images/admin_standard/crumb-bg.gif +0 -0
  73. data/public/images/admin_standard/crumb-divide-current.gif +0 -0
  74. data/public/images/admin_standard/crumb-divide.gif +0 -0
  75. data/public/images/admin_standard/drawer-end.png +0 -0
  76. data/public/images/admin_standard/drawer-middle.png +0 -0
  77. data/public/images/admin_standard/drawer-start.png +0 -0
  78. data/public/images/admin_standard/form-error.png +0 -0
  79. data/public/images/admin_standard/input-background.gif +0 -0
  80. data/public/images/admin_standard/shadow-bottom.png +0 -0
  81. data/public/images/admin_standard/shadow-right.png +0 -0
  82. data/public/images/admin_standard/subnavigation-bullet-1.png +0 -0
  83. data/public/images/admin_standard/subnavigation-bullet-2.png +0 -0
  84. data/public/images/admin_standard/tab-active-cap.png +0 -0
  85. data/public/images/admin_standard/tab-active.png +0 -0
  86. data/public/images/admin_standard/tab-inactive-cap.png +0 -0
  87. data/public/images/admin_standard/tab-inactive.png +0 -0
  88. data/public/images/blank.gif +0 -0
  89. data/public/images/icons/add.png +0 -0
  90. data/public/images/icons/cancel.png +0 -0
  91. data/public/images/icons/delete.png +0 -0
  92. data/public/images/icons/edit.png +0 -0
  93. data/public/images/icons/folder.png +0 -0
  94. data/public/images/icons/move.png +0 -0
  95. data/public/images/rails.png +0 -0
  96. data/public/robots.txt +5 -0
  97. data/public/stylesheets/admin_standard.css +877 -0
  98. data/public/stylesheets/application.css +33 -0
  99. data/rails_generators/contentator_files/contentator_files_generator.rb +127 -0
  100. data/rails_generators/contentator_files/templates/application.rb +5 -0
  101. metadata +111 -2
@@ -0,0 +1,33 @@
1
+ img, div {
2
+ border: 0;
3
+ }
4
+ body {
5
+ font-family: arial, sans-serif;
6
+ margin: 0;
7
+ padding: 0;
8
+ }
9
+
10
+ /* forms */
11
+ #page_content_blocks_container .form_container {
12
+ padding:10px;
13
+ height:500px;
14
+ width:400px;
15
+ }
16
+ #file_attachments_container .form_container {
17
+ padding:10px;
18
+ height:150px;
19
+ width:400px;
20
+ }
21
+ .form_container label, input {
22
+ display:block;
23
+ }
24
+ .form_container #cancel_button {
25
+ float: right;
26
+ }
27
+
28
+ .position_text_box {
29
+ display:inline;
30
+ width: 15px;
31
+ margin-right: 5px;
32
+ margin-top: -5px;
33
+ }
@@ -0,0 +1,127 @@
1
+ class ContentatorFilesGenerator < Rails::Generator::Base
2
+ def manifest
3
+ record do |m|
4
+ #copy all the cms files into the new project
5
+ m.file '../../../config/routes.rb', 'config/routes.rb', :collision => :force
6
+
7
+ m.directory('app/controllers/cms/admin')
8
+ m.directory('app/helpers/cms/admin')
9
+
10
+ m.file '../../../app/controllers/application_controller.rb', 'app/controllers/application_controller.rb', :collision => :force
11
+ m.file '../../../app/controllers/cms/content_controller.rb', 'app/controllers/cms/content_controller.rb'
12
+ m.file '../../../app/controllers/cms/admin/admin_controller.rb', 'app/controllers/cms/admin/admin_controller.rb'
13
+ m.file '../../../app/controllers/cms/admin/page_content_blocks_controller.rb', 'app/controllers/cms/admin/page_content_blocks_controller.rb'
14
+ m.file '../../../app/controllers/cms/admin/pages_controller.rb', 'app/controllers/cms/admin/pages_controller.rb'
15
+ m.file '../../../app/controllers/cms/admin/file_attachments_controller.rb', 'app/controllers/cms/admin/file_attachments_controller.rb'
16
+ m.file '../../../app/helpers/application_helper.rb', 'app/helpers/application_helper.rb', :collision => :force
17
+ m.file '../../../app/helpers/cms/admin/pages_helper.rb', 'app/helpers/cms/admin/pages_helper.rb'
18
+ m.file '../../../app/models/page.rb', 'app/models/page.rb'
19
+ m.file '../../../app/models/page_content_block.rb', 'app/models/page_content_block.rb'
20
+ m.file '../../../app/models/file_attachment.rb', 'app/models/file_attachment.rb'
21
+
22
+ m.directory('app/views/cms/content')
23
+ m.directory('app/views/cms/admin')
24
+ m.directory('app/views/cms/admin/page_content_blocks')
25
+ m.directory('app/views/cms/admin/pages')
26
+ m.directory('app/views/cms/admin/file_attachments')
27
+ m.directory('app/views/layouts/cms/admin')
28
+
29
+ m.file '../../../app/views/cms/admin/_admin_toolbar.html.haml', 'app/views/cms/admin/_admin_toolbar.html.haml'
30
+ m.file '../../../app/views/cms/admin/page_content_blocks/_form.html.haml', 'app/views/cms/admin/page_content_blocks/_form.html.haml'
31
+ m.file '../../../app/views/cms/admin/file_attachments/_form.html.haml', 'app/views/cms/admin/file_attachments/_form.html.haml'
32
+ m.file '../../../app/views/cms/admin/pages/_form.html.haml', 'app/views/cms/admin/pages/_form.html.haml'
33
+ m.file '../../../app/views/cms/admin/pages/edit.html.haml', 'app/views/cms/admin/pages/edit.html.haml'
34
+ m.file '../../../app/views/cms/admin/pages/index.html.haml', 'app/views/cms/admin/pages/index.html.haml'
35
+ m.file '../../../app/views/cms/admin/pages/new.html.haml', 'app/views/cms/admin/pages/new.html.haml'
36
+ m.file '../../../app/views/cms/content/_page_content_block.html.haml', 'app/views/cms/content/_page_content_block.html.haml'
37
+ m.file '../../../app/views/cms/content/_page_content_blocks_container.html.haml', 'app/views/cms/content/_page_content_blocks_container.html.haml'
38
+ m.file '../../../app/views/cms/content/content.html.haml', 'app/views/cms/content/content.html.haml'
39
+ m.file '../../../app/views/cms/content/home.html.haml', 'app/views/cms/content/home.html.haml'
40
+ m.file '../../../app/views/cms/content/gallery.html.haml', 'app/views/cms/content/gallery.html.haml'
41
+ m.file '../../../app/views/cms/content/_file_attachment.html.haml', 'app/views/cms/content/_file_attachment.html.haml'
42
+ m.file '../../../app/views/cms/content/_file_attachments_container.html.haml', 'app/views/cms/content/_file_attachments_container.html.haml'
43
+ m.file '../../../app/views/layouts/application.html.haml', 'app/views/layouts/application.html.haml'
44
+ m.file '../../../app/views/layouts/cms/admin/application.html.haml', 'app/views/layouts/cms/admin/application.html.haml'
45
+
46
+ m.directory('db/migrate')
47
+ m.file '../../../db/migrate/20091002165818_create_pages.rb', 'db/migrate/20091002165818_create_pages.rb'
48
+ m.file '../../../db/migrate/20091002211930_create_home_page.rb', 'db/migrate/20091002211930_create_home_page.rb'
49
+ m.file '../../../db/migrate/20091007222703_create_page_content_blocks.rb', 'db/migrate/20091007222703_create_page_content_blocks.rb'
50
+ m.file '../../../db/migrate/20091029204950_create_file_attachments.rb', 'db/migrate/20091029204950_create_file_attachments.rb'
51
+
52
+ m.directory('public/images/admin_standard')
53
+ m.directory('public/images/icons')
54
+
55
+ m.file '../../../public/images/admin_standard/content-header-bg.png', 'public/images/admin_standard/content-header-bg.png'
56
+ m.file '../../../public/images/admin_standard/context-arrow.png', 'public/images/admin_standard/context-arrow.png'
57
+ m.file '../../../public/images/admin_standard/context-bg.png', 'public/images/admin_standard/context-bg.png'
58
+ m.file '../../../public/images/admin_standard/crumb-bg-current.gif', 'public/images/admin_standard/crumb-bg-current.gif'
59
+ m.file '../../../public/images/admin_standard/crumb-bg.gif', 'public/images/admin_standard/crumb-bg.gif'
60
+ m.file '../../../public/images/admin_standard/crumb-divide-current.gif', 'public/images/admin_standard/crumb-divide-current.gif'
61
+ m.file '../../../public/images/admin_standard/crumb-divide.gif', 'public/images/admin_standard/crumb-divide.gif'
62
+ m.file '../../../public/images/admin_standard/drawer-end.png', 'public/images/admin_standard/drawer-end.png'
63
+ m.file '../../../public/images/admin_standard/drawer-middle.png', 'public/images/admin_standard/drawer-middle.png'
64
+ m.file '../../../public/images/admin_standard/drawer-start.png', 'public/images/admin_standard/drawer-start.png'
65
+ m.file '../../../public/images/admin_standard/form-error.png', 'public/images/admin_standard/form-error.png'
66
+ m.file '../../../public/images/admin_standard/input-background.gif', 'public/images/admin_standard/input-background.gif'
67
+ m.file '../../../public/images/admin_standard/shadow-bottom.png', 'public/images/admin_standard/shadow-bottom.png'
68
+ m.file '../../../public/images/admin_standard/shadow-right.png', 'public/images/admin_standard/shadow-right.png'
69
+ m.file '../../../public/images/admin_standard/subnavigation-bullet-1.png', 'public/images/admin_standard/subnavigation-bullet-1.png'
70
+ m.file '../../../public/images/admin_standard/subnavigation-bullet-2.png', 'public/images/admin_standard/subnavigation-bullet-2.png'
71
+ m.file '../../../public/images/admin_standard/tab-active-cap.png', 'public/images/admin_standard/tab-active-cap.png'
72
+ m.file '../../../public/images/admin_standard/tab-active.png', 'public/images/admin_standard/tab-active.png'
73
+ m.file '../../../public/images/admin_standard/tab-inactive-cap.png', 'public/images/admin_standard/tab-inactive-cap.png'
74
+ m.file '../../../public/images/admin_standard/tab-inactive.png', 'public/images/admin_standard/tab-inactive.png'
75
+
76
+ m.file '../../../public/images/icons/add.png', 'public/images/icons/add.png'
77
+ m.file '../../../public/images/icons/cancel.png', 'public/images/icons/cancel.png'
78
+ m.file '../../../public/images/icons/delete.png', 'public/images/icons/delete.png'
79
+ m.file '../../../public/images/icons/edit.png', 'public/images/icons/edit.png'
80
+ m.file '../../../public/images/icons/folder.png', 'public/images/icons/folder.png'
81
+ m.file '../../../public/images/icons/move.png', 'public/images/icons/move.png'
82
+
83
+ m.file '../../../public/stylesheets/admin_standard.css', 'public/stylesheets/admin_standard.css'
84
+ m.file '../../../public/stylesheets/application.css', 'public/stylesheets/application.css'
85
+
86
+ #refused to just copy the file for some reason.
87
+ m.template 'application.rb', 'public/javascripts/application.js', :collision => :force
88
+
89
+ m.file '../../../test/factories.rb', 'test/factories.rb'
90
+ m.file '../../../test/test_helper.rb', 'test/test_helper.rb', :collision => :force
91
+
92
+ m.directory('test/functional/cms/admin')
93
+ m.file '../../../test/functional/cms/admin/page_content_blocks_controller_test.rb', 'test/functional/cms/admin/page_content_blocks_controller_test.rb'
94
+ m.file '../../../test/functional/cms/admin/pages_controller_test.rb', 'test/functional/cms/admin/pages_controller_test.rb'
95
+ m.file '../../../test/functional/cms/admin/file_attachments_controller_test.rb', 'test/functional/cms/admin/file_attachments_controller_test.rb'
96
+ m.file '../../../test/functional/cms/content_controller_test.rb', 'test/functional/cms/content_controller_test.rb'
97
+
98
+ m.file '../../../test/unit/page_content_block_test.rb', 'test/unit/page_content_block_test.rb'
99
+ m.file '../../../test/unit/page_test.rb', 'test/unit/page_test.rb'
100
+ m.file '../../../test/unit/file_attachment_test.rb', 'test/unit/file_attachment_test.rb'
101
+
102
+ m.file '../../../config/geminstaller.yml', 'config/geminstaller.yml'
103
+ m.file '../../../config/geminstaller.local.yml', 'config/geminstaller.local.yml'
104
+ m.file '../../../config/environment.rb', 'config/environment.rb', :collision => :force
105
+ m.file '../../../config/locales/en.yml', 'config/locales/en.yml', :collision => :force
106
+ m.file '../../../config/locales/de.yml', 'config/locales/de.yml'
107
+
108
+ # copy custom content generator
109
+ m.directory('lib/generators')
110
+ m.directory('lib/generators/content')
111
+ m.directory('lib/generators/content/templates')
112
+
113
+ m.file '../../../lib/generators/content/content_generator.rb', 'lib/generators/content/content_generator.rb'
114
+ m.file '../../../lib/generators/content/templates/container.rb', 'lib/generators/content/templates/container.rb'
115
+ m.file '../../../lib/generators/content/templates/controller.rb', 'lib/generators/content/templates/controller.rb'
116
+ m.file '../../../lib/generators/content/templates/factories.rb', 'lib/generators/content/templates/factories.rb'
117
+ m.file '../../../lib/generators/content/templates/form.rb', 'lib/generators/content/templates/form.rb'
118
+ m.file '../../../lib/generators/content/templates/functional_test.rb', 'lib/generators/content/templates/functional_test.rb'
119
+ m.file '../../../lib/generators/content/templates/item.rb', 'lib/generators/content/templates/item.rb'
120
+ m.file '../../../lib/generators/content/templates/migration.rb', 'lib/generators/content/templates/migration.rb'
121
+ m.file '../../../lib/generators/content/templates/model.rb', 'lib/generators/content/templates/model.rb'
122
+ m.file '../../../lib/generators/content/templates/unit_test.rb', 'lib/generators/content/templates/unit_test.rb'
123
+ m.file '../../../lib/generators/content/templates/view.rb', 'lib/generators/content/templates/view.rb'
124
+
125
+ end
126
+ end
127
+ end
@@ -0,0 +1,5 @@
1
+ function getPcbInputs() {
2
+ $$("input.position_text_box").each(function (position) {
3
+ $("sort_form").innerHTML += "<input style=\"display:none;visibility:hidden;\" value=\""+position.value+"\" name=\""+position.name+"\"/>";
4
+ });
5
+ }
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 2
8
- - 0
9
- version: 0.2.0
8
+ - 1
9
+ version: 0.2.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Craig Partin
@@ -41,6 +41,115 @@ extra_rdoc_files:
41
41
  - README.rdoc
42
42
  files:
43
43
  - README.rdoc
44
+ - Rakefile
45
+ - VERSION
46
+ - app/controllers/application_controller.rb
47
+ - app/controllers/cms/admin/admin_controller.rb
48
+ - app/controllers/cms/admin/file_attachments_controller.rb
49
+ - app/controllers/cms/admin/page_content_blocks_controller.rb
50
+ - app/controllers/cms/admin/pages_controller.rb
51
+ - app/controllers/cms/content_controller.rb
52
+ - app/helpers/application_helper.rb
53
+ - app/helpers/cms/admin/pages_helper.rb
54
+ - app/models/file_attachment.rb
55
+ - app/models/page.rb
56
+ - app/models/page_content_block.rb
57
+ - app/views/cms/admin/_admin_toolbar.html.haml
58
+ - app/views/cms/admin/file_attachments/_form.html.haml
59
+ - app/views/cms/admin/page_content_blocks/_form.html.haml
60
+ - app/views/cms/admin/pages/_form.html.haml
61
+ - app/views/cms/admin/pages/edit.html.haml
62
+ - app/views/cms/admin/pages/index.html.haml
63
+ - app/views/cms/admin/pages/new.html.haml
64
+ - app/views/cms/content/_file_attachment.html.haml
65
+ - app/views/cms/content/_file_attachments_container.html.haml
66
+ - app/views/cms/content/_page_content_block.html.haml
67
+ - app/views/cms/content/_page_content_blocks_container.html.haml
68
+ - app/views/cms/content/content.html.haml
69
+ - app/views/cms/content/gallery.html.haml
70
+ - app/views/cms/content/home.html.haml
71
+ - app/views/layouts/application.html.haml
72
+ - app/views/layouts/cms/admin/application.html.haml
73
+ - config/boot.rb
74
+ - config/environment.rb
75
+ - config/environments/development.rb
76
+ - config/environments/production.rb
77
+ - config/environments/test.rb
78
+ - config/geminstaller.local.yml
79
+ - config/geminstaller.yml
80
+ - config/initializers/backtrace_silencers.rb
81
+ - config/initializers/inflections.rb
82
+ - config/initializers/mime_types.rb
83
+ - config/initializers/new_rails_defaults.rb
84
+ - config/initializers/session_store.rb
85
+ - config/locales/de.yml
86
+ - config/locales/en.yml
87
+ - config/routes.rb
88
+ - contentator.gemspec
89
+ - db/migrate/20091002165818_create_pages.rb
90
+ - db/migrate/20091002211930_create_home_page.rb
91
+ - db/migrate/20091007222703_create_page_content_blocks.rb
92
+ - db/migrate/20091029204950_create_file_attachments.rb
93
+ - lib/contentator.rb
94
+ - lib/generators/content/content_generator.rb
95
+ - lib/generators/content/templates/container.rb
96
+ - lib/generators/content/templates/controller.rb
97
+ - lib/generators/content/templates/factories.rb
98
+ - lib/generators/content/templates/form.rb
99
+ - lib/generators/content/templates/functional_test.rb
100
+ - lib/generators/content/templates/item.rb
101
+ - lib/generators/content/templates/migration.rb
102
+ - lib/generators/content/templates/model.rb
103
+ - lib/generators/content/templates/unit_test.rb
104
+ - lib/generators/content/templates/view.rb
105
+ - lib/template.rb
106
+ - public/404.html
107
+ - public/422.html
108
+ - public/500.html
109
+ - public/favicon.ico
110
+ - public/images/admin_standard/content-header-bg.png
111
+ - public/images/admin_standard/context-arrow.png
112
+ - public/images/admin_standard/context-bg.png
113
+ - public/images/admin_standard/crumb-bg-current.gif
114
+ - public/images/admin_standard/crumb-bg.gif
115
+ - public/images/admin_standard/crumb-divide-current.gif
116
+ - public/images/admin_standard/crumb-divide.gif
117
+ - public/images/admin_standard/drawer-end.png
118
+ - public/images/admin_standard/drawer-middle.png
119
+ - public/images/admin_standard/drawer-start.png
120
+ - public/images/admin_standard/form-error.png
121
+ - public/images/admin_standard/input-background.gif
122
+ - public/images/admin_standard/shadow-bottom.png
123
+ - public/images/admin_standard/shadow-right.png
124
+ - public/images/admin_standard/subnavigation-bullet-1.png
125
+ - public/images/admin_standard/subnavigation-bullet-2.png
126
+ - public/images/admin_standard/tab-active-cap.png
127
+ - public/images/admin_standard/tab-active.png
128
+ - public/images/admin_standard/tab-inactive-cap.png
129
+ - public/images/admin_standard/tab-inactive.png
130
+ - public/images/blank.gif
131
+ - public/images/icons/add.png
132
+ - public/images/icons/cancel.png
133
+ - public/images/icons/delete.png
134
+ - public/images/icons/edit.png
135
+ - public/images/icons/folder.png
136
+ - public/images/icons/move.png
137
+ - public/images/rails.png
138
+ - public/robots.txt
139
+ - public/stylesheets/admin_standard.css
140
+ - public/stylesheets/application.css
141
+ - rails_generators/contentator_files/contentator_files_generator.rb
142
+ - rails_generators/contentator_files/templates/application.rb
143
+ - test/factories.rb
144
+ - test/functional/cms/admin/file_attachments_controller_test.rb
145
+ - test/functional/cms/admin/page_content_blocks_controller_test.rb
146
+ - test/functional/cms/admin/pages_controller_test.rb
147
+ - test/functional/cms/content_controller_test.rb
148
+ - test/performance/browsing_test.rb
149
+ - test/test_helper.rb
150
+ - test/unit/file_attachment_test.rb
151
+ - test/unit/page_content_block_test.rb
152
+ - test/unit/page_test.rb
44
153
  has_rdoc: true
45
154
  homepage: http://github.com/cpartin/contentator
46
155
  licenses: []