zen 0.2.7 → 0.2.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (303) hide show
  1. data/.gitignore +15 -0
  2. data/.mailmap +2 -0
  3. data/.rvmrc +2 -0
  4. data/.travis.yml +8 -3
  5. data/AUTHORS +1 -2
  6. data/CHANGELOG.md +48 -17
  7. data/README.md +44 -39
  8. data/Rakefile +4 -0
  9. data/bin/zen +5 -30
  10. data/lib/zen.rb +13 -19
  11. data/lib/zen/asset.rb +99 -64
  12. data/lib/zen/bin/create.rb +94 -0
  13. data/lib/zen/bin/runner.rb +118 -0
  14. data/lib/zen/controller/admin_controller.rb +52 -36
  15. data/lib/zen/controller/base_controller.rb +5 -5
  16. data/lib/zen/controller/frontend_controller.rb +7 -7
  17. data/lib/zen/controller/main_controller.rb +12 -10
  18. data/lib/zen/controller/preview.rb +15 -11
  19. data/lib/zen/helper/acl.rb +73 -53
  20. data/lib/zen/helper/blue_form_vendor.rb +689 -0
  21. data/lib/zen/helper/breadcrumb.rb +23 -19
  22. data/lib/zen/helper/message.rb +3 -3
  23. data/lib/zen/helper/theme.rb +18 -13
  24. data/lib/zen/language.rb +62 -58
  25. data/lib/zen/language/en/zen_general.yml +2 -4
  26. data/lib/zen/language/nl/zen_general.yml +2 -4
  27. data/lib/zen/layout/admin.xhtml +3 -12
  28. data/lib/zen/layout/login.xhtml +1 -6
  29. data/lib/zen/model/methods.rb +6 -6
  30. data/lib/zen/model/settings.rb +5 -4
  31. data/lib/zen/package.rb +47 -38
  32. data/lib/zen/package/all.rb +3 -5
  33. data/lib/zen/package/base.rb +7 -7
  34. data/lib/zen/package/categories/lib/categories.rb +8 -3
  35. data/lib/zen/package/categories/lib/categories/controller/categories.rb +81 -55
  36. data/lib/zen/package/categories/lib/categories/controller/category_groups.rb +45 -44
  37. data/lib/zen/package/categories/lib/categories/helper/category.rb +88 -0
  38. data/lib/zen/package/categories/lib/categories/language/en/categories.yml +5 -4
  39. data/lib/zen/package/categories/lib/categories/language/en/category_groups.yml +5 -4
  40. data/lib/zen/package/categories/lib/categories/language/nl/categories.yml +5 -4
  41. data/lib/zen/package/categories/lib/categories/language/nl/category_groups.yml +5 -4
  42. data/lib/zen/package/categories/lib/categories/model/category.rb +15 -13
  43. data/lib/zen/package/categories/lib/categories/model/category_group.rb +3 -3
  44. data/lib/zen/package/categories/lib/categories/plugin/categories.rb +36 -25
  45. data/lib/zen/package/categories/lib/categories/view/admin/categories/form.xhtml +49 -56
  46. data/lib/zen/package/categories/lib/categories/view/admin/categories/index.xhtml +48 -35
  47. data/lib/zen/package/categories/lib/categories/view/admin/category-groups/form.xhtml +36 -29
  48. data/lib/zen/package/categories/lib/categories/view/admin/category-groups/index.xhtml +42 -37
  49. data/lib/zen/package/comments/lib/comments.rb +4 -1
  50. data/lib/zen/package/comments/lib/comments/controller/comments.rb +39 -32
  51. data/lib/zen/package/comments/lib/comments/controller/comments_form.rb +45 -26
  52. data/lib/zen/package/comments/lib/comments/helper/comment.rb +35 -0
  53. data/lib/zen/package/comments/lib/comments/language/en/comments.yml +9 -7
  54. data/lib/zen/package/comments/lib/comments/language/nl/comments.yml +10 -8
  55. data/lib/zen/package/comments/lib/comments/model/comment.rb +31 -17
  56. data/lib/zen/package/comments/lib/comments/model/comment_status.rb +15 -0
  57. data/lib/zen/package/comments/lib/comments/plugin/anti_spam.rb +27 -18
  58. data/lib/zen/package/comments/lib/comments/plugin/comments.rb +25 -20
  59. data/lib/zen/package/comments/lib/comments/view/admin/comments/form.xhtml +61 -54
  60. data/lib/zen/package/comments/lib/comments/view/admin/comments/index.xhtml +38 -23
  61. data/lib/zen/package/comments/migrations/1308774099_comment_status.rb +60 -0
  62. data/lib/zen/package/custom_fields/lib/custom_fields.rb +33 -7
  63. data/lib/zen/package/custom_fields/lib/custom_fields/blue_form_parameters.rb +209 -0
  64. data/lib/zen/package/custom_fields/lib/custom_fields/controller/custom_field_groups.rb +50 -47
  65. data/lib/zen/package/custom_fields/lib/custom_fields/controller/custom_field_types.rb +215 -0
  66. data/lib/zen/package/custom_fields/lib/custom_fields/controller/custom_fields.rb +111 -73
  67. data/lib/zen/package/custom_fields/lib/custom_fields/helper/custom_field.rb +79 -0
  68. data/lib/zen/package/custom_fields/lib/custom_fields/language/en/custom_field_groups.yml +20 -19
  69. data/lib/zen/package/custom_fields/lib/custom_fields/language/en/custom_field_types.yml +40 -0
  70. data/lib/zen/package/custom_fields/lib/custom_fields/language/en/custom_fields.yml +34 -32
  71. data/lib/zen/package/custom_fields/lib/custom_fields/language/nl/custom_field_groups.yml +5 -4
  72. data/lib/zen/package/custom_fields/lib/custom_fields/language/nl/custom_field_types.yml +40 -0
  73. data/lib/zen/package/custom_fields/lib/custom_fields/language/nl/custom_fields.yml +18 -16
  74. data/lib/zen/package/custom_fields/lib/custom_fields/model/custom_field.rb +31 -11
  75. data/lib/zen/package/custom_fields/lib/custom_fields/model/custom_field_method.rb +15 -0
  76. data/lib/zen/package/custom_fields/lib/custom_fields/model/custom_field_type.rb +50 -0
  77. data/lib/zen/package/custom_fields/lib/custom_fields/model/custom_field_value.rb +28 -7
  78. data/lib/zen/package/custom_fields/lib/custom_fields/view/admin/custom-field-groups/form.xhtml +33 -28
  79. data/lib/zen/package/custom_fields/lib/custom_fields/view/admin/custom-field-groups/index.xhtml +48 -46
  80. data/lib/zen/package/custom_fields/lib/custom_fields/view/admin/custom-field-types/form.xhtml +61 -0
  81. data/lib/zen/package/custom_fields/lib/custom_fields/view/admin/custom-field-types/index.xhtml +93 -0
  82. data/lib/zen/package/custom_fields/lib/custom_fields/view/admin/custom-fields/form.xhtml +105 -99
  83. data/lib/zen/package/custom_fields/lib/custom_fields/view/admin/custom-fields/index.xhtml +43 -39
  84. data/lib/zen/package/custom_fields/migrations/1295255665_create_schema.rb +47 -16
  85. data/lib/zen/package/custom_fields/migrations/1310659580_custom_field_types.rb +148 -0
  86. data/lib/zen/package/custom_fields/migrations/1311694920_rename_css_class.rb +11 -0
  87. data/lib/zen/package/menus/lib/menus/controller/menu_items.rb +40 -35
  88. data/lib/zen/package/menus/lib/menus/controller/menus.rb +47 -43
  89. data/lib/zen/package/menus/lib/menus/helper/{menu_item.rb → menu.rb} +42 -15
  90. data/lib/zen/package/menus/lib/menus/language/en/menu_items.yml +5 -5
  91. data/lib/zen/package/menus/lib/menus/language/en/menus.yml +9 -8
  92. data/lib/zen/package/menus/lib/menus/language/nl/menu_items.yml +8 -8
  93. data/lib/zen/package/menus/lib/menus/language/nl/menus.yml +11 -10
  94. data/lib/zen/package/menus/lib/menus/model/menu.rb +5 -5
  95. data/lib/zen/package/menus/lib/menus/model/menu_item.rb +6 -5
  96. data/lib/zen/package/menus/lib/menus/plugin/menus.rb +41 -43
  97. data/lib/zen/package/menus/lib/menus/view/admin/menu-items/form.xhtml +59 -63
  98. data/lib/zen/package/menus/lib/menus/view/admin/menu-items/index.xhtml +35 -30
  99. data/lib/zen/package/menus/lib/menus/view/admin/menus/form.xhtml +46 -37
  100. data/lib/zen/package/menus/lib/menus/view/admin/menus/index.xhtml +37 -37
  101. data/lib/zen/package/menus/migrations/1297184342_create_schema.rb +5 -5
  102. data/lib/zen/package/menus/migrations/1308671733_rename_order_column.rb +11 -0
  103. data/lib/zen/package/menus/migrations/1311695030_rename_css_class.rb +17 -0
  104. data/lib/zen/package/sections/lib/sections.rb +18 -11
  105. data/lib/zen/package/sections/lib/sections/controller/section_entries.rb +115 -109
  106. data/lib/zen/package/sections/lib/sections/controller/sections.rb +72 -50
  107. data/lib/zen/package/sections/lib/sections/helper/section.rb +53 -0
  108. data/lib/zen/package/sections/lib/sections/language/en/section_entries.yml +5 -4
  109. data/lib/zen/package/sections/lib/sections/language/en/sections.yml +5 -4
  110. data/lib/zen/package/sections/lib/sections/language/nl/section_entries.yml +5 -4
  111. data/lib/zen/package/sections/lib/sections/language/nl/sections.yml +5 -4
  112. data/lib/zen/package/sections/lib/sections/model/section.rb +17 -9
  113. data/lib/zen/package/sections/lib/sections/model/section_entry.rb +192 -13
  114. data/lib/zen/package/sections/lib/sections/model/section_entry_status.rb +13 -0
  115. data/lib/zen/package/sections/lib/sections/plugin/section_entries.rb +60 -39
  116. data/lib/zen/package/sections/lib/sections/plugin/sections.rb +14 -11
  117. data/lib/zen/package/sections/lib/sections/view/admin/form.xhtml +100 -97
  118. data/lib/zen/package/sections/lib/sections/view/admin/index.xhtml +41 -39
  119. data/lib/zen/package/sections/lib/sections/view/admin/section-entries/form.xhtml +95 -215
  120. data/lib/zen/package/sections/lib/sections/view/admin/section-entries/index.xhtml +48 -40
  121. data/lib/zen/package/sections/migrations/1308672298_use_id_for_default_section.rb +40 -0
  122. data/lib/zen/package/sections/migrations/1308813320_section_entry_statuses.rb +58 -0
  123. data/lib/zen/package/settings/lib/settings/controller/settings.rb +5 -8
  124. data/lib/zen/package/settings/lib/settings/model/setting.rb +2 -37
  125. data/lib/zen/package/settings/lib/settings/plugin/setting_base.rb +18 -1
  126. data/lib/zen/package/settings/lib/settings/plugin/settings.rb +13 -7
  127. data/lib/zen/package/settings/lib/settings/view/admin/settings/index.xhtml +2 -1
  128. data/lib/zen/package/users/lib/users.rb +3 -1
  129. data/lib/zen/package/users/lib/users/controller/access_rules.rb +77 -60
  130. data/lib/zen/package/users/lib/users/controller/user_groups.rb +41 -36
  131. data/lib/zen/package/users/lib/users/controller/users.rb +48 -42
  132. data/lib/zen/package/users/lib/users/helper/users.rb +72 -0
  133. data/lib/zen/package/users/lib/users/language/en/access_rules.yml +6 -5
  134. data/lib/zen/package/users/lib/users/language/en/user_groups.yml +5 -4
  135. data/lib/zen/package/users/lib/users/language/en/users.yml +1 -0
  136. data/lib/zen/package/users/lib/users/language/nl/access_rules.yml +5 -4
  137. data/lib/zen/package/users/lib/users/language/nl/user_groups.yml +5 -4
  138. data/lib/zen/package/users/lib/users/language/nl/users.yml +1 -0
  139. data/lib/zen/package/users/lib/users/model/access_rule.rb +5 -1
  140. data/lib/zen/package/users/lib/users/model/user.rb +17 -10
  141. data/lib/zen/package/users/lib/users/public/admin/js/users/access_rules.js +10 -37
  142. data/lib/zen/package/users/lib/users/public/admin/js/users/lib/access_rules.js +49 -0
  143. data/lib/zen/package/users/lib/users/view/admin/access-rules/form.xhtml +105 -96
  144. data/lib/zen/package/users/lib/users/view/admin/access-rules/index.xhtml +48 -41
  145. data/lib/zen/package/users/lib/users/view/admin/user-groups/form.xhtml +42 -32
  146. data/lib/zen/package/users/lib/users/view/admin/user-groups/index.xhtml +43 -38
  147. data/lib/zen/package/users/lib/users/view/admin/users/form.xhtml +76 -67
  148. data/lib/zen/package/users/lib/users/view/admin/users/index.xhtml +43 -41
  149. data/lib/zen/package/users/lib/users/view/admin/users/login.xhtml +12 -9
  150. data/lib/zen/package/users/migrations/1295281013_create_schema.rb +2 -2
  151. data/lib/zen/plugin.rb +56 -50
  152. data/lib/zen/plugin/markup/lib/markup/markup.rb +33 -21
  153. data/lib/zen/public/admin/css/zen/buttons.css +11 -7
  154. data/lib/zen/public/admin/css/zen/datepicker.css +6 -6
  155. data/lib/zen/public/admin/css/zen/forms.css +2 -1
  156. data/lib/zen/public/admin/css/zen/general.css +15 -10
  157. data/lib/zen/public/admin/css/zen/layout.css +51 -20
  158. data/lib/zen/public/admin/css/zen/tables.css +39 -11
  159. data/lib/zen/public/admin/css/zen/tabs.css +6 -4
  160. data/lib/zen/public/admin/css/zen/window.css +11 -11
  161. data/lib/zen/public/{favicon.ico → admin/favicon.ico} +0 -0
  162. data/lib/zen/public/admin/images/zen/icons/asc.png +0 -0
  163. data/lib/zen/public/admin/images/zen/icons/desc.png +0 -0
  164. data/lib/zen/public/admin/js/vendor/datepicker.js +0 -11
  165. data/lib/zen/public/admin/js/{mootools → vendor/mootools}/core.js +0 -1
  166. data/lib/zen/public/admin/js/{mootools → vendor/mootools}/more.js +100 -29
  167. data/lib/zen/public/admin/js/zen/index.js +48 -0
  168. data/lib/zen/public/admin/js/zen/lib/asset.js +111 -0
  169. data/lib/zen/public/admin/js/zen/{editor.js → lib/editor.js} +107 -127
  170. data/lib/zen/public/admin/js/zen/{editor → lib/editor}/markdown.js +7 -9
  171. data/lib/zen/public/admin/js/zen/{editor → lib/editor}/textile.js +7 -9
  172. data/lib/zen/public/admin/js/zen/lib/html_table.js +143 -0
  173. data/lib/zen/public/admin/js/zen/{tabs.js → lib/tabs.js} +40 -37
  174. data/lib/zen/public/admin/js/zen/{window.js → lib/window.js} +24 -20
  175. data/lib/zen/spec/bacon/color_output.rb +39 -0
  176. data/lib/zen/spec/helper.rb +152 -0
  177. data/lib/zen/spec/simplecov.rb +22 -0
  178. data/lib/zen/task/build.rake +20 -43
  179. data/lib/zen/task/clean.rake +2 -6
  180. data/lib/zen/task/db.rake +8 -12
  181. data/lib/zen/task/package.rake +4 -10
  182. data/lib/zen/task/plugin.rake +3 -9
  183. data/lib/zen/task/proto.rake +0 -62
  184. data/lib/zen/task/test.rake +6 -3
  185. data/lib/zen/task/theme.rake +4 -11
  186. data/lib/zen/theme.rb +22 -24
  187. data/lib/zen/validation.rb +34 -27
  188. data/lib/zen/version.rb +2 -8
  189. data/lib/zen/view/head.xhtml +7 -0
  190. data/lib/zen/view/main.xhtml +7 -22
  191. data/{proto/package/migrations → pkg}/.gitkeep +0 -0
  192. data/proto/app/app.rb +1 -0
  193. data/proto/app/config/config.rb +5 -4
  194. data/proto/app/config/database.rb +19 -41
  195. data/proto/app/config/middlewares.rb +32 -29
  196. data/proto/{package/lib/package/view/admin/package/index.xhtml → app/log/database/dev/.gitkeep} +0 -0
  197. data/proto/app/log/database/live/.gitkeep +0 -0
  198. data/spec/Rakefile +26 -0
  199. data/spec/fixtures/zen/asset.rb +18 -0
  200. data/spec/fixtures/zen/helper/acl.rb +39 -0
  201. data/spec/fixtures/zen/helper/message.rb +19 -0
  202. data/spec/fixtures/zen/language/en/spec.yml +10 -0
  203. data/spec/fixtures/zen/language/nl/spec.yml +7 -0
  204. data/spec/fixtures/zen/package.rb +17 -0
  205. data/spec/fixtures/zen/package/comments/controller/comments_form.rb +27 -0
  206. data/spec/fixtures/zen/package/settings/plugin/settings.rb +20 -0
  207. data/spec/fixtures/zen/plugin.rb +7 -0
  208. data/spec/fixtures/zen/theme/404.xhtml +1 -0
  209. data/spec/fixtures/zen/theme/default-section/index.xhtml +1 -0
  210. data/spec/fixtures/zen/theme/helper/404.xhtml +1 -0
  211. data/spec/fixtures/zen/theme/helper/partial.xhtml +1 -0
  212. data/spec/fixtures/zen/theme/helper/wrong_partial.xhtml +1 -0
  213. data/spec/fixtures/zen/theme/partials/partial.xhtml +1 -0
  214. data/spec/fixtures/zen/theme/theme.rb +11 -0
  215. data/spec/fixtures/zen/validation.rb +22 -0
  216. data/spec/helper.rb +41 -0
  217. data/spec/zen/all.rb +5 -0
  218. data/spec/zen/asset.rb +97 -0
  219. data/spec/zen/bin/create.rb +89 -0
  220. data/spec/zen/bin/runner.rb +47 -0
  221. data/spec/zen/controller/admin_controller.rb +26 -0
  222. data/spec/zen/controller/main_controller.rb +81 -0
  223. data/spec/zen/controller/preview.rb +33 -0
  224. data/spec/zen/helper/acl.rb +149 -0
  225. data/spec/zen/helper/breadcrumb.rb +38 -0
  226. data/spec/zen/helper/message.rb +31 -0
  227. data/spec/zen/helper/theme.rb +58 -0
  228. data/spec/zen/language.rb +55 -0
  229. data/spec/zen/package.rb +23 -0
  230. data/spec/zen/package/categories/controller/categories.rb +123 -0
  231. data/spec/zen/package/categories/controller/category_groups.rb +108 -0
  232. data/spec/zen/package/categories/helper/category.rb +75 -0
  233. data/spec/zen/package/categories/plugin/categories.rb +92 -0
  234. data/spec/zen/package/comments/controller/comments.rb +134 -0
  235. data/spec/zen/package/comments/controller/comments_form.rb +343 -0
  236. data/spec/zen/package/comments/helper/comment.rb +47 -0
  237. data/spec/zen/package/comments/plugin/anti_spam.rb +59 -0
  238. data/spec/zen/package/comments/plugin/comments.rb +107 -0
  239. data/spec/zen/package/custom_fields/blue_form_parameters.rb +183 -0
  240. data/spec/zen/package/custom_fields/controller/custom_field_groups.rb +120 -0
  241. data/spec/zen/package/custom_fields/controller/custom_field_types.rb +169 -0
  242. data/spec/zen/package/custom_fields/controller/custom_fields.rb +158 -0
  243. data/spec/zen/package/custom_fields/helper/custom_field.rb +86 -0
  244. data/spec/zen/package/menus/controller/menu_items.rb +110 -0
  245. data/spec/zen/package/menus/controller/menus.rb +110 -0
  246. data/spec/zen/package/menus/helper/menu.rb +75 -0
  247. data/spec/zen/package/menus/plugin/menus.rb +120 -0
  248. data/spec/zen/package/sections/controller/section_entries.rb +201 -0
  249. data/spec/zen/package/sections/controller/sections.rb +116 -0
  250. data/spec/zen/package/sections/helper/section.rb +74 -0
  251. data/spec/zen/package/sections/plugin/section_entries.rb +161 -0
  252. data/spec/zen/package/sections/plugin/sections.rb +75 -0
  253. data/spec/zen/package/settings/controller/settings.rb +36 -0
  254. data/spec/zen/package/settings/plugin/settings.rb +33 -0
  255. data/spec/zen/package/users/controller/access_rules.rb +90 -0
  256. data/spec/zen/package/users/controller/user_groups.rb +101 -0
  257. data/spec/zen/package/users/controller/users.rb +130 -0
  258. data/spec/zen/package/users/helper/users.rb +97 -0
  259. data/spec/zen/plugin.rb +64 -0
  260. data/spec/zen/plugin/helper.rb +11 -0
  261. data/spec/zen/plugin/markup.rb +44 -0
  262. data/spec/zen/theme.rb +41 -0
  263. data/spec/zen/validation.rb +63 -0
  264. data/zen.gemspec +36 -0
  265. metadata +159 -113
  266. data/MANIFEST +0 -266
  267. data/lib/zen/bin/app.rb +0 -40
  268. data/lib/zen/ext/string.rb +0 -185
  269. data/lib/zen/helper/common.rb +0 -106
  270. data/lib/zen/package/categories/lib/categories/view/admin/categories/edit.xhtml +0 -7
  271. data/lib/zen/package/categories/lib/categories/view/admin/categories/new.xhtml +0 -7
  272. data/lib/zen/package/categories/lib/categories/view/admin/category-groups/edit.xhtml +0 -7
  273. data/lib/zen/package/categories/lib/categories/view/admin/category-groups/new.xhtml +0 -7
  274. data/lib/zen/package/comments/lib/comments/view/admin/comments/edit.xhtml +0 -7
  275. data/lib/zen/package/custom_fields/lib/custom_fields/view/admin/custom-field-groups/edit.xhtml +0 -7
  276. data/lib/zen/package/custom_fields/lib/custom_fields/view/admin/custom-field-groups/new.xhtml +0 -7
  277. data/lib/zen/package/custom_fields/lib/custom_fields/view/admin/custom-fields/edit.xhtml +0 -7
  278. data/lib/zen/package/custom_fields/lib/custom_fields/view/admin/custom-fields/new.xhtml +0 -7
  279. data/lib/zen/package/menus/lib/menus/view/admin/menu-items/edit.xhtml +0 -7
  280. data/lib/zen/package/menus/lib/menus/view/admin/menu-items/new.xhtml +0 -7
  281. data/lib/zen/package/menus/lib/menus/view/admin/menus/edit.xhtml +0 -7
  282. data/lib/zen/package/menus/lib/menus/view/admin/menus/new.xhtml +0 -7
  283. data/lib/zen/package/sections/lib/sections/view/admin/edit.xhtml +0 -7
  284. data/lib/zen/package/sections/lib/sections/view/admin/new.xhtml +0 -7
  285. data/lib/zen/package/sections/lib/sections/view/admin/section-entries/edit.xhtml +0 -7
  286. data/lib/zen/package/sections/lib/sections/view/admin/section-entries/new.xhtml +0 -7
  287. data/lib/zen/package/users/lib/users/view/admin/access-rules/edit.xhtml +0 -7
  288. data/lib/zen/package/users/lib/users/view/admin/access-rules/new.xhtml +0 -7
  289. data/lib/zen/package/users/lib/users/view/admin/user-groups/edit.xhtml +0 -7
  290. data/lib/zen/package/users/lib/users/view/admin/user-groups/new.xhtml +0 -7
  291. data/lib/zen/package/users/lib/users/view/admin/users/edit.xhtml +0 -7
  292. data/lib/zen/package/users/lib/users/view/admin/users/new.xhtml +0 -7
  293. data/lib/zen/plugin/controller.rb +0 -59
  294. data/lib/zen/public/admin/css/zen/notifications.css +0 -84
  295. data/lib/zen/public/admin/images/zen/icons/large/error.png +0 -0
  296. data/lib/zen/public/admin/images/zen/icons/large/notice.png +0 -0
  297. data/lib/zen/public/admin/images/zen/icons/large/success.png +0 -0
  298. data/lib/zen/public/admin/js/zen/core.js +0 -73
  299. data/lib/zen/public/admin/js/zen/init.js +0 -80
  300. data/proto/package/lib/package.rb +0 -21
  301. data/proto/package/lib/package/controller/controllers.rb +0 -50
  302. data/proto/package/lib/package/language/en/languages.yml +0 -4
  303. data/proto/package/lib/package/model/model.rb +0 -12
@@ -0,0 +1,116 @@
1
+ require File.expand_path('../../../../../helper', __FILE__)
2
+
3
+ describe("Sections::Controller::Sections") do
4
+ behaves_like :capybara
5
+
6
+ it('Submit a form without a CSRF token') do
7
+ response = page.driver.post(
8
+ Sections::Controller::Sections.r(:save).to_s
9
+ )
10
+
11
+ response.body.include?(lang('zen_general.errors.csrf')).should === true
12
+ response.status.should === 403
13
+ end
14
+
15
+ it("No sections should exist") do
16
+ section_url = Sections::Controller::Sections.r(:index).to_s
17
+ message = lang('sections.messages.no_sections')
18
+
19
+ visit(section_url)
20
+
21
+ current_path.should == section_url
22
+ page.has_selector?('table tbody tr').should == false
23
+ page.has_content?(message).should == true
24
+ end
25
+
26
+ it("Create a new section") do
27
+ new_url = Sections::Controller::Sections.r(:new).to_s
28
+ edit_url = Sections::Controller::Sections.r(:edit).to_s
29
+ new_button = lang('sections.buttons.new')
30
+ select_plain = lang('zen_general.special.format_hash.plain')
31
+ submit_button = lang('sections.buttons.save')
32
+
33
+ click_link(new_button)
34
+
35
+ current_path.should == new_url
36
+
37
+ # Check if the tabs are there
38
+ page.has_selector?('.tabs ul').should === true
39
+
40
+ # Fill in the form
41
+ within('#section_form') do
42
+ fill_in('name' , :with => 'Spec section')
43
+ fill_in('description', :with => 'Spec section description.')
44
+
45
+ choose('form_comment_allow_0')
46
+ choose('form_comment_require_account_1')
47
+ choose('form_comment_moderate_0')
48
+ select(select_plain, :from => 'form_comment_format')
49
+
50
+ click_on(submit_button)
51
+ end
52
+
53
+ # Validate the new page
54
+ current_path.should =~ /#{edit_url}\/[0-9]+/
55
+ page.find('input[name="name"]').value.should === 'Spec section'
56
+ end
57
+
58
+ it("Edit an existing section") do
59
+ index_url = Sections::Controller::Sections.r(:index).to_s
60
+ edit_url = Sections::Controller::Sections.r(:edit).to_s
61
+ submit = lang('sections.buttons.save')
62
+
63
+ visit(index_url)
64
+ click_link('Spec section')
65
+
66
+ current_path.should =~ /#{edit_url}\/[0-9]+/
67
+
68
+ within('#section_form') do
69
+ fill_in('name', :with => 'Spec section modified')
70
+ click_on(submit)
71
+ end
72
+
73
+ page.find('input[name="name"]').value.should === 'Spec section modified'
74
+ page.find('input[name="slug"]').value.should === 'spec-section'
75
+ end
76
+
77
+ it("Edit an existing section with invalid data") do
78
+ index_url = Sections::Controller::Sections.r(:index).to_s
79
+ edit_url = Sections::Controller::Sections.r(:edit).to_s
80
+ submit = lang('sections.buttons.save')
81
+
82
+ visit(index_url)
83
+ click_link('Spec section')
84
+
85
+ current_path.should =~ /#{edit_url}\/[0-9]+/
86
+
87
+ within('#section_form') do
88
+ fill_in('name', :with => '')
89
+ click_on(submit)
90
+ end
91
+
92
+ page.has_selector?('span.error').should === true
93
+ end
94
+
95
+ it('Delete a section without an ID specified') do
96
+ index_url = Sections::Controller::Sections.r(:index).to_s
97
+ delete_button = lang('sections.buttons.delete')
98
+
99
+ visit(index_url)
100
+ click_on(delete_button)
101
+
102
+ page.has_selector?('input[name="section_ids[]"]').should === true
103
+ end
104
+
105
+ it("Delete an existing section") do
106
+ index_url = Sections::Controller::Sections.r(:index).to_s
107
+ delete_button = lang('sections.buttons.delete')
108
+
109
+ visit(index_url)
110
+
111
+ check('section_ids[]')
112
+ click_on(delete_button)
113
+
114
+ page.has_selector?('table tbody tr').should === false
115
+ end
116
+ end
@@ -0,0 +1,74 @@
1
+ require File.expand_path('../../../../../helper', __FILE__)
2
+
3
+ describe('Ramaze::Helper::Section') do
4
+ behaves_like :capybara
5
+
6
+ it('Create the test data') do
7
+ status_id = Sections::Model::SectionEntryStatus[:name => 'published'].id
8
+ user_id = Users::Model::User[:email => 'spec@domain.tld'].id
9
+ @section = Sections::Model::Section.create(
10
+ :name => 'Spec section',
11
+ :comment_allow => false,
12
+ :comment_require_account => false,
13
+ :comment_moderate => false,
14
+ :comment_format => 'markdown'
15
+ )
16
+
17
+ @entry = Sections::Model::SectionEntry.create(
18
+ :title => 'Spec entry',
19
+ :user_id => user_id,
20
+ :section_entry_status_id => status_id,
21
+ :section_id => @section.id
22
+ )
23
+
24
+ @section.name.should === 'Spec section'
25
+ @entry.title.should === 'Spec entry'
26
+ end
27
+
28
+ it('Validate a valid section') do
29
+ url = Sections::Controller::Sections.r(:edit, @section.id).to_s
30
+
31
+ visit(url)
32
+
33
+ current_path.should === url
34
+ end
35
+
36
+ it('Validate an invalid section') do
37
+ url = Sections::Controller::Sections.r(:edit, @section.id + 1).to_s
38
+ index = Sections::Controller::Sections.r(:index).to_s
39
+
40
+ visit(url)
41
+
42
+ current_path.should === index
43
+ end
44
+
45
+ it('Validate a valid section entry') do
46
+ url = Sections::Controller::SectionEntries.r(
47
+ :edit, @section.id, @entry.id
48
+ ).to_s
49
+
50
+ visit(url)
51
+
52
+ current_path.should === url
53
+ end
54
+
55
+ it('Validate an invalid section entry') do
56
+ index = Sections::Controller::SectionEntries.r(:index, @section.id).to_s
57
+ url = Sections::Controller::SectionEntries.r(
58
+ :edit, @section.id, @entry.id + 1
59
+ ).to_s
60
+
61
+ visit(url)
62
+
63
+ current_path.should === index
64
+ end
65
+
66
+ it('Delete the test data') do
67
+ @entry.destroy
68
+ @section.destroy
69
+
70
+ Sections::Model::SectionEntry[:title => 'Spec entry'].should === nil
71
+ Sections::Model::Section[:name => 'Spec section'].should === nil
72
+ end
73
+
74
+ end
@@ -0,0 +1,161 @@
1
+ require File.expand_path('../../../../../helper', __FILE__)
2
+
3
+ describe('Sections::Plugin::SectionEntries') do
4
+ user = Users::Model::User[:email => 'spec@domain.tld']
5
+ status_id = Sections::Model::SectionEntryStatus[:name => 'published'].id
6
+ comment_status = Comments::Model::CommentStatus[:name => 'open'].id
7
+
8
+ @section = Sections::Model::Section.create(
9
+ :name => 'Spec',
10
+ :comment_allow => true,
11
+ :comment_require_account => false,
12
+ :comment_moderate => false,
13
+ :comment_format => 'plain'
14
+ )
15
+
16
+ @entry_1 = Sections::Model::SectionEntry.create(
17
+ :title => 'Spec',
18
+ :status => 'published',
19
+ :user_id => user.id,
20
+ :section_id => @section.id,
21
+ :slug => 'spec',
22
+ :section_entry_status_id => status_id
23
+ )
24
+
25
+ @entry_2 = Sections::Model::SectionEntry.create(
26
+ :title => 'Spec 1',
27
+ :status => 'published',
28
+ :user_id => user.id,
29
+ :section_id => @section.id,
30
+ :slug => 'spec-1',
31
+ :section_entry_status_id => status_id
32
+ )
33
+
34
+ @comment = Comments::Model::Comment.create(
35
+ :user_id => user.id,
36
+ :comment_status_id => comment_status,
37
+ :section_entry_id => @entry_2.id,
38
+ :comment => 'Comment',
39
+ :email => user.email
40
+ )
41
+
42
+ @category_group = Categories::Model::CategoryGroup.create(
43
+ :name => 'spec category group'
44
+ )
45
+
46
+ @category = Categories::Model::Category.create(
47
+ :name => 'spec category',
48
+ :category_group_id => @category_group.id
49
+ )
50
+
51
+ type = CustomFields::Model::CustomFieldType[:name => 'textbox']
52
+ @group = CustomFields::Model::CustomFieldGroup.create(
53
+ :name => 'Spec group'
54
+ )
55
+
56
+ @field = CustomFields::Model::CustomField.create(
57
+ :name => 'Spec field',
58
+ :format => 'markdown',
59
+ :text_editor => false,
60
+ :required => false,
61
+ :custom_field_group_id => @group.id,
62
+ :custom_field_type_id => type.id
63
+ )
64
+
65
+ @section.category_group_pks = [@category_group.id]
66
+
67
+ @entry_1.add_category(@category)
68
+ @entry_1.add_custom_field_value(
69
+ :custom_field_id => @field.id,
70
+ :value => 'hello'
71
+ )
72
+
73
+ it('Raise when no section or entry has been specified') do
74
+ should.raise?(ArgumentError) do
75
+ plugin(:section_entries)
76
+ end
77
+ end
78
+
79
+ it('Retrieve all section entries') do
80
+ entries = plugin(
81
+ :section_entries,
82
+ :section => 'spec',
83
+ :comments => true,
84
+ :categories => true
85
+ )
86
+
87
+ entries.count.should === 2
88
+ entries[0].class.should == Hash
89
+ entries[0][:title].should === 'Spec'
90
+ entries[1][:title].should === 'Spec 1'
91
+ entries[1][:user][:name].should === 'Spec'
92
+
93
+ entries[1][:comments].empty?.should === false
94
+ entries[1][:comments][0][:comment].should === 'Comment'
95
+
96
+ entries[0][:categories].empty?.should === false
97
+ entries[0][:categories][0][:name].should === 'spec category'
98
+
99
+ entries[0][:fields][:'spec-field'].strip.should === '<p>hello</p>'
100
+ end
101
+
102
+ it('Retrieve all section entries for an ID') do
103
+ entries = plugin(
104
+ :section_entries, :section => @section.id
105
+ )
106
+
107
+ entries.count.should === 2
108
+ entries[0].class.should == Hash
109
+ entries[0][:title].should === 'Spec'
110
+ entries[1][:title].should === 'Spec 1'
111
+ end
112
+
113
+ it('Retrieve a single entry by it\'s slug') do
114
+ entry = plugin(:section_entries, :entry => 'spec')
115
+
116
+ entry.class.should == Hash
117
+ entry[:title].should === 'Spec'
118
+ entry[:id].should === @entry_1.id
119
+ end
120
+
121
+ it('Retrieve a single entry by it\'s ID') do
122
+ entry = plugin(
123
+ :section_entries, :entry => @entry_1.id
124
+ )
125
+
126
+ entry.class.should == Hash
127
+ entry[:title].should === 'Spec'
128
+ entry[:id].should === @entry_1.id
129
+ end
130
+
131
+ it('Limit the amount of entries') do
132
+ entries = plugin(
133
+ :section_entries, :section => 'spec', :limit => 1
134
+ )
135
+
136
+ entries.count.should === 1
137
+ entries[0][:title].should === 'Spec'
138
+ end
139
+
140
+ it('Limit the amount of entries with an offset') do
141
+ entries = plugin(
142
+ :section_entries, :section => 'spec', :limit => 1, :offset => 1
143
+ )
144
+
145
+ entries.count.should === 1
146
+ entries[0][:title].should === 'Spec 1'
147
+ end
148
+
149
+ [
150
+ @field,
151
+ @group,
152
+ @category,
153
+ @category_group,
154
+ @comment,
155
+ @entry_2,
156
+ @entry_1,
157
+ @section
158
+ ].each do |k|
159
+ k.destroy
160
+ end
161
+ end # describe
@@ -0,0 +1,75 @@
1
+ require File.expand_path('../../../../../helper', __FILE__)
2
+
3
+ describe('Sections::Plugin::Sections') do
4
+ extend ::Sections::Model
5
+
6
+ it('Create the test data') do
7
+ @section_1 = Section.create(
8
+ :name => 'Spec',
9
+ :comment_allow => true,
10
+ :comment_require_account => false,
11
+ :comment_moderate => false,
12
+ :comment_format => 'plain'
13
+ )
14
+
15
+ @section_2 = Section.create(
16
+ :name => 'Spec 1',
17
+ :comment_allow => true,
18
+ :comment_require_account => false,
19
+ :comment_moderate => false,
20
+ :comment_format => 'plain'
21
+ )
22
+
23
+ @section_1.name.should === 'Spec'
24
+ @section_2.name.should === 'Spec 1'
25
+ end
26
+
27
+ it('Retrieve all sections') do
28
+ sections = plugin(:sections)
29
+
30
+ sections.count.should === 2
31
+ sections[0][:name].should === 'Spec'
32
+ sections[1][:name].should === 'Spec 1'
33
+ end
34
+
35
+ it('Retrieve a single section') do
36
+ section = plugin(:sections, :section => 'spec')
37
+
38
+ section[:name].should === 'Spec'
39
+ section[:comment_allow].should === true
40
+ section[:comment_format].should === 'plain'
41
+ end
42
+
43
+ it('Retrieve a single section by it\'s ID') do
44
+ section = plugin(
45
+ :sections, :section => @section_1.id
46
+ )
47
+
48
+ section[:name].should === 'Spec'
49
+ section[:comment_allow].should === true
50
+ section[:comment_format].should === 'plain'
51
+ end
52
+
53
+ it('Limit the amount of sections') do
54
+ sections = plugin(:sections, :limit => 1)
55
+
56
+ sections.count.should === 1
57
+ sections[0][:name].should === 'Spec'
58
+ end
59
+
60
+ it('Limit the amount of sections and set an offset') do
61
+ sections = plugin(:sections, :limit => 1, :offset => 1)
62
+
63
+ sections.count.should === 1
64
+ sections[0][:name].should === 'Spec 1'
65
+ end
66
+
67
+ it('Delete the test data') do
68
+ @section_1.destroy
69
+ @section_2.destroy
70
+
71
+ Section[:name => 'Spec'].should === nil
72
+ Section[:name => 'Spec 1'].should === nil
73
+ end
74
+
75
+ end
@@ -0,0 +1,36 @@
1
+ require File.expand_path('../../../../../helper', __FILE__)
2
+
3
+ describe("Settings::Controller::Settings") do
4
+ behaves_like :capybara
5
+
6
+ it('Submit a form without a CSRF token') do
7
+ response = page.driver.post(
8
+ Settings::Controller::Settings.r(:save).to_s
9
+ )
10
+
11
+ response.body.include?(lang('zen_general.errors.csrf')).should === true
12
+ response.status.should === 403
13
+ end
14
+
15
+ it("Update a set of settings") do
16
+ index_url = Settings::Controller::Settings.r(:index).to_s
17
+ save_button = lang('settings.buttons.save')
18
+
19
+ visit(index_url)
20
+
21
+ within('#setting_form') do
22
+ fill_in('website_name', :with => 'Zen spec')
23
+
24
+ click_on(save_button)
25
+ end
26
+
27
+ page.find('input[name="website_name"]').value.should === 'Zen spec'
28
+
29
+ within('#setting_form') do
30
+ fill_in('website_name', :with => 'Zen')
31
+ end
32
+
33
+ page.find('input[name="website_name"]').value.should === 'Zen'
34
+ end
35
+
36
+ end