refinerycms-core 0.9.9.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (305) hide show
  1. data/app/controllers/admin/base_controller.rb +10 -0
  2. data/app/controllers/admin/dialogs_controller.rb +26 -0
  3. data/app/controllers/admin/refinery_core_controller.rb +12 -0
  4. data/app/controllers/application_controller.rb +6 -0
  5. data/app/controllers/refinery/fast_controller.rb +9 -0
  6. data/app/controllers/sitemap_controller.rb +14 -0
  7. data/app/helpers/application_helper.rb +5 -0
  8. data/app/views/admin/_head.html.erb +43 -0
  9. data/app/views/admin/_javascripts.html.erb +32 -0
  10. data/app/views/admin/_menu.html.erb +17 -0
  11. data/app/views/admin/dialogs/show.html.erb +19 -0
  12. data/app/views/layouts/admin.html.erb +24 -0
  13. data/app/views/layouts/admin_dialog.html.erb +14 -0
  14. data/app/views/layouts/application.html.erb +21 -0
  15. data/app/views/shared/_content_page.html.erb +63 -0
  16. data/app/views/shared/_draft_page_message.html.erb +3 -0
  17. data/app/views/shared/_footer.html.erb +4 -0
  18. data/app/views/shared/_google_analytics.html.erb +8 -0
  19. data/app/views/shared/_head.html.erb +42 -0
  20. data/app/views/shared/_header.html.erb +8 -0
  21. data/app/views/shared/_html_tag.html.erb +6 -0
  22. data/app/views/shared/_ie6check.html.erb +63 -0
  23. data/app/views/shared/_javascripts.html.erb +10 -0
  24. data/app/views/shared/_menu.html.erb +30 -0
  25. data/app/views/shared/_menu_branch.html.erb +26 -0
  26. data/app/views/shared/_message.html.erb +10 -0
  27. data/app/views/shared/_no_script.html.erb +9 -0
  28. data/app/views/shared/_site_bar.html.erb +25 -0
  29. data/app/views/shared/admin/_continue_editing.html.erb +3 -0
  30. data/app/views/shared/admin/_error_messages.html.erb +16 -0
  31. data/app/views/shared/admin/_form_actions.html.erb +75 -0
  32. data/app/views/shared/admin/_image_picker.html.erb +60 -0
  33. data/app/views/shared/admin/_make_sortable.html.erb +13 -0
  34. data/app/views/shared/admin/_resource_picker.html.erb +66 -0
  35. data/app/views/shared/admin/_search.html.erb +6 -0
  36. data/app/views/shared/admin/_sortable_list.html.erb +7 -0
  37. data/app/views/shared/admin/_tabbed_fields.html.erb +42 -0
  38. data/app/views/welcome.html.erb +17 -0
  39. data/app/views/wymiframe.html.erb +15 -0
  40. data/config/locales/cs.yml +77 -0
  41. data/config/locales/da.yml +75 -0
  42. data/config/locales/de.yml +75 -0
  43. data/config/locales/el.yml +75 -0
  44. data/config/locales/en.yml +75 -0
  45. data/config/locales/es.yml +68 -0
  46. data/config/locales/fr.yml +72 -0
  47. data/config/locales/it.yml +96 -0
  48. data/config/locales/lolcat.yml +68 -0
  49. data/config/locales/lt.yml +75 -0
  50. data/config/locales/lv.yml +72 -0
  51. data/config/locales/nb.yml +75 -0
  52. data/config/locales/nl.yml +75 -0
  53. data/config/locales/pl.yml +75 -0
  54. data/config/locales/pt-BR.yml +72 -0
  55. data/config/locales/rs.yml +76 -0
  56. data/config/locales/ru.yml +71 -0
  57. data/config/locales/sl.yml +72 -0
  58. data/config/locales/sv.yml +75 -0
  59. data/config/locales/vi.yml +75 -0
  60. data/config/locales/zh-CN.yml +75 -0
  61. data/config/locales/zh-TW.yml +75 -0
  62. data/config/routes.rb +19 -0
  63. data/crud.md +197 -0
  64. data/doc/included-jquery-ui-packages.jpg +0 -0
  65. data/engines.md +179 -0
  66. data/features/search.feature +55 -0
  67. data/features/site_bar.feature +24 -0
  68. data/features/step_definitions/core_steps.rb +61 -0
  69. data/features/support/paths.rb +14 -0
  70. data/features/uploads/beach.jpeg +0 -0
  71. data/features/uploads/refinery_is_awesome.txt +1 -0
  72. data/lib/gemspec.rb +43 -0
  73. data/lib/generators/refinerycms_generator.rb +110 -0
  74. data/lib/generators/templates/.gitignore +83 -0
  75. data/lib/generators/templates/app/views/sitemap/index.xml.builder +22 -0
  76. data/lib/generators/templates/autotest/autotest.rb +17 -0
  77. data/lib/generators/templates/autotest/discover.rb +2 -0
  78. data/lib/generators/templates/config/database.yml.mysql +20 -0
  79. data/lib/generators/templates/config/database.yml.postgresql +57 -0
  80. data/lib/generators/templates/config/database.yml.sqlite3 +26 -0
  81. data/lib/generators/templates/config/i18n-js.yml +6 -0
  82. data/lib/generators/templates/config/initializers/devise.rb +142 -0
  83. data/lib/generators/templates/config/settings.rb +2 -0
  84. data/lib/generators/templates/db/seeds.rb +5 -0
  85. data/lib/refinery/activity.rb +45 -0
  86. data/lib/refinery/admin/base_controller.rb +111 -0
  87. data/lib/refinery/admin_base_controller.rb +5 -0
  88. data/lib/refinery/application.rb +48 -0
  89. data/lib/refinery/application_controller.rb +120 -0
  90. data/lib/refinery/application_helper.rb +19 -0
  91. data/lib/refinery/base_presenter.rb +27 -0
  92. data/lib/refinery/catch_all_routes.rb +11 -0
  93. data/lib/refinery/crud.rb +295 -0
  94. data/lib/refinery/helpers/form_helper.rb +66 -0
  95. data/lib/refinery/helpers/head_helper.rb +17 -0
  96. data/lib/refinery/helpers/html_truncation_helper.rb +25 -0
  97. data/lib/refinery/helpers/image_helper.rb +49 -0
  98. data/lib/refinery/helpers/menu_helper.rb +68 -0
  99. data/lib/refinery/helpers/meta_helper.rb +67 -0
  100. data/lib/refinery/helpers/pagination_helper.rb +16 -0
  101. data/lib/refinery/helpers/script_helper.rb +36 -0
  102. data/lib/refinery/helpers/site_bar_helper.rb +24 -0
  103. data/lib/refinery/helpers/tag_helper.rb +21 -0
  104. data/lib/refinery/helpers/translation_helper.rb +17 -0
  105. data/lib/refinery/link_renderer.rb +55 -0
  106. data/lib/refinery/plugin.rb +106 -0
  107. data/lib/refinery/plugins.rb +75 -0
  108. data/lib/refinerycms-core.rb +156 -0
  109. data/lib/tasks/doc.rake +29 -0
  110. data/lib/tasks/refinery.rake +231 -0
  111. data/lib/tasks/yard.rake +30 -0
  112. data/license.md +21 -0
  113. data/public/404.html +26 -0
  114. data/public/422.html +26 -0
  115. data/public/500.html +26 -0
  116. data/public/favicon.ico +0 -0
  117. data/public/images/refinery/add.png +0 -0
  118. data/public/images/refinery/admin_bg.png +0 -0
  119. data/public/images/refinery/ajax-loader.gif +0 -0
  120. data/public/images/refinery/branch-end.gif +0 -0
  121. data/public/images/refinery/branch-start.gif +0 -0
  122. data/public/images/refinery/branch.gif +0 -0
  123. data/public/images/refinery/carousel-left.png +0 -0
  124. data/public/images/refinery/carousel-right.png +0 -0
  125. data/public/images/refinery/cross.png +0 -0
  126. data/public/images/refinery/dialogLoadingAnimation.gif +0 -0
  127. data/public/images/refinery/header_background.png +0 -0
  128. data/public/images/refinery/hover-gradient.jpg +0 -0
  129. data/public/images/refinery/icons/accept.png +0 -0
  130. data/public/images/refinery/icons/add.png +0 -0
  131. data/public/images/refinery/icons/ajax-loader.gif +0 -0
  132. data/public/images/refinery/icons/application_edit.png +0 -0
  133. data/public/images/refinery/icons/application_go.png +0 -0
  134. data/public/images/refinery/icons/arrow_left.png +0 -0
  135. data/public/images/refinery/icons/arrow_switch.png +0 -0
  136. data/public/images/refinery/icons/arrow_up.png +0 -0
  137. data/public/images/refinery/icons/bin.png +0 -0
  138. data/public/images/refinery/icons/bin_closed.png +0 -0
  139. data/public/images/refinery/icons/cancel.png +0 -0
  140. data/public/images/refinery/icons/cog_add.png +0 -0
  141. data/public/images/refinery/icons/cog_edit.png +0 -0
  142. data/public/images/refinery/icons/cross.png +0 -0
  143. data/public/images/refinery/icons/delete.png +0 -0
  144. data/public/images/refinery/icons/doc.png +0 -0
  145. data/public/images/refinery/icons/down.gif +0 -0
  146. data/public/images/refinery/icons/edit.png +0 -0
  147. data/public/images/refinery/icons/email.png +0 -0
  148. data/public/images/refinery/icons/email_edit.png +0 -0
  149. data/public/images/refinery/icons/email_go.png +0 -0
  150. data/public/images/refinery/icons/email_open.png +0 -0
  151. data/public/images/refinery/icons/eye.png +0 -0
  152. data/public/images/refinery/icons/folder_page_white.png +0 -0
  153. data/public/images/refinery/icons/image_add.png +0 -0
  154. data/public/images/refinery/icons/image_edit.png +0 -0
  155. data/public/images/refinery/icons/img.png +0 -0
  156. data/public/images/refinery/icons/information.png +0 -0
  157. data/public/images/refinery/icons/layout_add.png +0 -0
  158. data/public/images/refinery/icons/layout_edit.png +0 -0
  159. data/public/images/refinery/icons/music.png +0 -0
  160. data/public/images/refinery/icons/page_add.png +0 -0
  161. data/public/images/refinery/icons/page_edit.png +0 -0
  162. data/public/images/refinery/icons/page_white_edit.png +0 -0
  163. data/public/images/refinery/icons/page_white_gear.png +0 -0
  164. data/public/images/refinery/icons/page_white_put.png +0 -0
  165. data/public/images/refinery/icons/pdf.png +0 -0
  166. data/public/images/refinery/icons/ppt.png +0 -0
  167. data/public/images/refinery/icons/star.png +0 -0
  168. data/public/images/refinery/icons/tick.png +0 -0
  169. data/public/images/refinery/icons/up.gif +0 -0
  170. data/public/images/refinery/icons/user_add.png +0 -0
  171. data/public/images/refinery/icons/user_comment.png +0 -0
  172. data/public/images/refinery/icons/user_edit.png +0 -0
  173. data/public/images/refinery/icons/xls.png +0 -0
  174. data/public/images/refinery/icons/zip.png +0 -0
  175. data/public/images/refinery/icons/zoom.png +0 -0
  176. data/public/images/refinery/logo-large.png +0 -0
  177. data/public/images/refinery/logo-medium.png +0 -0
  178. data/public/images/refinery/logo-site-bar.png +0 -0
  179. data/public/images/refinery/logo-small-medium.png +0 -0
  180. data/public/images/refinery/logo-small.png +0 -0
  181. data/public/images/refinery/logo-tiny.png +0 -0
  182. data/public/images/refinery/logo.png +0 -0
  183. data/public/images/refinery/nav-3-background.gif +0 -0
  184. data/public/images/refinery/nav_inactive_background.png +0 -0
  185. data/public/images/refinery/orange_button.png +0 -0
  186. data/public/images/refinery/page_bg.png +0 -0
  187. data/public/images/refinery/resolve_digital_footer_logo.png +0 -0
  188. data/public/images/refinery/text_field_background.png +0 -0
  189. data/public/images/refinery/tooltip-nib.gif +0 -0
  190. data/public/images/refinery/tooltip-nib.png +0 -0
  191. data/public/images/wymeditor/skins/refinery/arrow_redo.png +0 -0
  192. data/public/images/wymeditor/skins/refinery/arrow_undo.png +0 -0
  193. data/public/images/wymeditor/skins/refinery/eye.png +0 -0
  194. data/public/images/wymeditor/skins/refinery/iframe/lbl-blockquote.png +0 -0
  195. data/public/images/wymeditor/skins/refinery/iframe/lbl-h1.png +0 -0
  196. data/public/images/wymeditor/skins/refinery/iframe/lbl-h2.png +0 -0
  197. data/public/images/wymeditor/skins/refinery/iframe/lbl-h3.png +0 -0
  198. data/public/images/wymeditor/skins/refinery/iframe/lbl-h4.png +0 -0
  199. data/public/images/wymeditor/skins/refinery/iframe/lbl-h5.png +0 -0
  200. data/public/images/wymeditor/skins/refinery/iframe/lbl-h6.png +0 -0
  201. data/public/images/wymeditor/skins/refinery/iframe/lbl-p.png +0 -0
  202. data/public/images/wymeditor/skins/refinery/iframe/lbl-pre.png +0 -0
  203. data/public/images/wymeditor/skins/refinery/link_add.png +0 -0
  204. data/public/images/wymeditor/skins/refinery/link_break.png +0 -0
  205. data/public/images/wymeditor/skins/refinery/page_code.png +0 -0
  206. data/public/images/wymeditor/skins/refinery/page_paste.png +0 -0
  207. data/public/images/wymeditor/skins/refinery/photo_add.png +0 -0
  208. data/public/images/wymeditor/skins/refinery/right.png +0 -0
  209. data/public/images/wymeditor/skins/refinery/style.png +0 -0
  210. data/public/images/wymeditor/skins/refinery/table_add.png +0 -0
  211. data/public/images/wymeditor/skins/refinery/text_align_center.png +0 -0
  212. data/public/images/wymeditor/skins/refinery/text_align_justify.png +0 -0
  213. data/public/images/wymeditor/skins/refinery/text_align_left.png +0 -0
  214. data/public/images/wymeditor/skins/refinery/text_align_right.png +0 -0
  215. data/public/images/wymeditor/skins/refinery/text_bold.png +0 -0
  216. data/public/images/wymeditor/skins/refinery/text_heading_1.png +0 -0
  217. data/public/images/wymeditor/skins/refinery/text_heading_2.png +0 -0
  218. data/public/images/wymeditor/skins/refinery/text_heading_3.png +0 -0
  219. data/public/images/wymeditor/skins/refinery/text_heading_4.png +0 -0
  220. data/public/images/wymeditor/skins/refinery/text_heading_5.png +0 -0
  221. data/public/images/wymeditor/skins/refinery/text_heading_6.png +0 -0
  222. data/public/images/wymeditor/skins/refinery/text_indent.png +0 -0
  223. data/public/images/wymeditor/skins/refinery/text_indent_remove.png +0 -0
  224. data/public/images/wymeditor/skins/refinery/text_italic.png +0 -0
  225. data/public/images/wymeditor/skins/refinery/text_list_bullets.png +0 -0
  226. data/public/images/wymeditor/skins/refinery/text_list_numbers.png +0 -0
  227. data/public/images/wymeditor/skins/refinery/text_paragraph.png +0 -0
  228. data/public/images/wymeditor/skins/refinery/text_strikethrough.png +0 -0
  229. data/public/images/wymeditor/skins/refinery/text_subscript.png +0 -0
  230. data/public/images/wymeditor/skins/refinery/text_superscript.png +0 -0
  231. data/public/images/wymeditor/skins/refinery/text_underline.png +0 -0
  232. data/public/images/wymeditor/skins/wymeditor_icon.png +0 -0
  233. data/public/javascripts/admin.js +7 -0
  234. data/public/javascripts/application.js +1 -0
  235. data/public/javascripts/dd_belatedpng.js +13 -0
  236. data/public/javascripts/i18n-messages.js +2 -0
  237. data/public/javascripts/jquery-min.js +16 -0
  238. data/public/javascripts/jquery-ui-custom-min.js +251 -0
  239. data/public/javascripts/jquery.js +8176 -0
  240. data/public/javascripts/jquery/GPL-LICENSE.txt +278 -0
  241. data/public/javascripts/jquery/MIT-LICENSE.txt +20 -0
  242. data/public/javascripts/jquery/jquery.corner.js +345 -0
  243. data/public/javascripts/jquery/jquery.html5-placeholder-shim.js +88 -0
  244. data/public/javascripts/jquery/jquery.jcarousel.js +900 -0
  245. data/public/javascripts/jquery/jquery.textTruncate.js +174 -0
  246. data/public/javascripts/jquery/jquery.timers.js +138 -0
  247. data/public/javascripts/modernizr-min.js +30 -0
  248. data/public/javascripts/rails.js +175 -0
  249. data/public/javascripts/refinery/admin.js +1114 -0
  250. data/public/javascripts/refinery/boot_wym.js +285 -0
  251. data/public/javascripts/refinery/core.js +18 -0
  252. data/public/javascripts/refinery/i18n.js +340 -0
  253. data/public/javascripts/refinery/nestedsortables.js +164 -0
  254. data/public/javascripts/refinery/serializelist.js +66 -0
  255. data/public/javascripts/refinery/site_bar.js +16 -0
  256. data/public/javascripts/refinery/submenu.js +49 -0
  257. data/public/javascripts/wymeditor/jquery.refinery.wymeditor.js +5156 -0
  258. data/public/javascripts/wymeditor/lang/ca.js +45 -0
  259. data/public/javascripts/wymeditor/lang/cs.js +45 -0
  260. data/public/javascripts/wymeditor/lang/da.js +48 -0
  261. data/public/javascripts/wymeditor/lang/de.js +45 -0
  262. data/public/javascripts/wymeditor/lang/en.js +47 -0
  263. data/public/javascripts/wymeditor/lang/es.js +48 -0
  264. data/public/javascripts/wymeditor/lang/fa.js +46 -0
  265. data/public/javascripts/wymeditor/lang/fr.js +45 -0
  266. data/public/javascripts/wymeditor/lang/he.js +45 -0
  267. data/public/javascripts/wymeditor/lang/hu.js +45 -0
  268. data/public/javascripts/wymeditor/lang/it.js +48 -0
  269. data/public/javascripts/wymeditor/lang/lv.js +47 -0
  270. data/public/javascripts/wymeditor/lang/nb.js +48 -0
  271. data/public/javascripts/wymeditor/lang/nl.js +47 -0
  272. data/public/javascripts/wymeditor/lang/nn.js +45 -0
  273. data/public/javascripts/wymeditor/lang/pl.js +45 -0
  274. data/public/javascripts/wymeditor/lang/pt-BR.js +47 -0
  275. data/public/javascripts/wymeditor/lang/pt.js +45 -0
  276. data/public/javascripts/wymeditor/lang/rs.js +47 -0
  277. data/public/javascripts/wymeditor/lang/ru.js +45 -0
  278. data/public/javascripts/wymeditor/lang/sl.js +47 -0
  279. data/public/javascripts/wymeditor/lang/sv.js +45 -0
  280. data/public/javascripts/wymeditor/lang/tr.js +45 -0
  281. data/public/javascripts/wymeditor/lang/vi.js +47 -0
  282. data/public/javascripts/wymeditor/lang/zh_cn.js +47 -0
  283. data/public/javascripts/wymeditor/skins/refinery/skin.js +48 -0
  284. data/public/robots.txt +3 -0
  285. data/public/stylesheets/application.css +4 -0
  286. data/public/stylesheets/formatting.css +4 -0
  287. data/public/stylesheets/home.css +4 -0
  288. data/public/stylesheets/refinery/application.css +72 -0
  289. data/public/stylesheets/refinery/formatting.css +57 -0
  290. data/public/stylesheets/refinery/home.css +0 -0
  291. data/public/stylesheets/refinery/refinery.css +1579 -0
  292. data/public/stylesheets/refinery/site_bar.css +87 -0
  293. data/public/stylesheets/refinery/submenu.css +22 -0
  294. data/public/stylesheets/refinery/theme.css +36 -0
  295. data/public/stylesheets/refinery/tooltips.css +34 -0
  296. data/public/stylesheets/refinery/ui.css +107 -0
  297. data/public/stylesheets/theme.css +4 -0
  298. data/public/stylesheets/wymeditor/skins/refinery/skin.css +528 -0
  299. data/public/stylesheets/wymeditor/skins/refinery/wymiframe.css +96 -0
  300. data/public/wymeditor/GPL-license.txt +278 -0
  301. data/public/wymeditor/MIT-license.txt +20 -0
  302. data/public/wymeditor/README +35 -0
  303. data/refinerycms-core.gemspec +391 -0
  304. data/spec/lib/refinery/plugins_spec.rb +90 -0
  305. metadata +482 -0
@@ -0,0 +1,96 @@
1
+ /*
2
+ * WYMeditor : what you see is What You Mean web-based editor
3
+ * Copyright (c) 2008 Jean-Francois Hovinne, http://www.wymeditor.org/
4
+ * Dual licensed under the MIT (MIT-license.txt)
5
+ * and GPL (GPL-license.txt) licenses.
6
+ *
7
+ * For further information visit:
8
+ * http://www.wymeditor.org/
9
+ *
10
+ * File Name:
11
+ * wymeditor.css
12
+ * Main editor css file.
13
+ * See the documentation for more info.
14
+ *
15
+ * File Authors:
16
+ * Jean-Francois Hovinne (jf.hovinne a-t wymeditor dotorg)
17
+ * Daniel Reszka (d.reszka a-t wymeditor dotorg)
18
+ */
19
+
20
+ /* VISUAL FEEDBACK */
21
+
22
+ /* basic */
23
+ body { background: #fff;}
24
+
25
+ /* make HTML blocs visible */
26
+ p,
27
+ h1,
28
+ h2,
29
+ h3,
30
+ h4,
31
+ h5,
32
+ h6,
33
+ ul,
34
+ ol,
35
+ table,
36
+ blockquote,
37
+ pre { background: transparent no-repeat 2px 2px;
38
+ padding:8px 5px 5px;
39
+ margin:6px 0px;
40
+ border: 1px dotted #cccccc;
41
+ }
42
+ td { background: #F0F4F8; }
43
+ th { background: #ffffcc; }
44
+ ul,
45
+ ol { border-left:20px solid #B9C4D0; padding:0px 5px; }
46
+ caption { background: #E4E4B0; padding: 5px; font-weight: bold; }
47
+ table { font-size: 12px; width: 500px; }
48
+ td { width: 25%; }
49
+ blockquote { margin-left: 30px; }
50
+ pre { background-color:transparent; border: 1px solid white; }
51
+
52
+ /* Gecko min height fix */
53
+ p { min-height: 1em; } /*min-height is needed under Firefox, because empty parargraphs */
54
+ *+html p { min-height: auto; } /* but we have to remove it under IE7 because it triggers the 'haslayout' mode */
55
+ td { height: 1.6em; }
56
+
57
+ /* labels */
58
+ p { background-image: url('/images/wymeditor/skins/refinery/iframe/lbl-p.png'); }
59
+ h1 { background-image: url('/images/wymeditor/skins/refinery/iframe/lbl-h1.png'); }
60
+ h2 { background-image: url('/images/wymeditor/skins/refinery/iframe/lbl-h2.png'); }
61
+ h3 { background-image: url('/images/wymeditor/skins/refinery/iframe/lbl-h3.png'); }
62
+ h4 { background-image: url('/images/wymeditor/skins/refinery/iframe/lbl-h4.png'); }
63
+ h5 { background-image: url('/images/wymeditor/skins/refinery/iframe/lbl-h5.png'); }
64
+ h6 { background-image: url('/images/wymeditor/skins/refinery/iframe/lbl-h6.png'); }
65
+ blockquote{ background-image: url('/images/wymeditor/skins/refinery/iframe/lbl-blockquote.png'); }
66
+ pre { background-image: url('/images/wymeditor/skins/refinery/iframe/lbl-pre.png'); }
67
+
68
+ /* specific HTML elements */
69
+ caption { text-align: left; }
70
+ img { margin-right: 5px;
71
+ border: 1px solid transparent; }
72
+ a img { border: 1px dotted blue !important; }
73
+ acronym { border: 1px solid gray; }
74
+
75
+ /* visual feedback for non-valid nesting of elements*/
76
+ h1 h1, h1 h2, h1 h3, h1 h4, h1 h5, h1 h6, h1 p, h1 pre, h1 address,
77
+ h2 h1, h2 h2, h2 h3, h2 h4, h2 h5, h2 h6, h2 p, h2 pre, h2 address,
78
+ h3 h1, h3 h2, h3 h3, h3 h4, h3 h5, h3 h6, h3 p, h3 pre, h3 address,
79
+ h4 h1, h4 h2, h4 h3, h4 h4, h4 h5, h4 h6, h4 p, h4 pre, h4 address,
80
+ h5 h1, h5 h2, h5 h3, h5 h4, h5 h5, h5 h6, h5 p, h5 pre, h5 address,
81
+ h6 h1, h6 h2, h6 h3, h6 h4, h6 h4, h6 h6, h6 p, h6 pre, h6 address,
82
+ p h1, p h2, p h3, p h4, p h5, p h6, p pre, p address,
83
+ pre h1, pre h2, pre h3, pre h4, pre h5, pre h6, pre p, pre pre, pre address,
84
+ address h1, address h2, address h3, address h4, address h5, address h6,
85
+ address p, address pre, address address
86
+ { background-color: #ff9999 !important;
87
+ border: 1px solid red !important;
88
+ font-size: 12px !important;
89
+ font-weight: normal; }
90
+
91
+ /* indicate invalid text area fields */
92
+ body.fieldWithErrors { background-color: #ffecf0 !important; }
93
+
94
+ img.selected_by_wym {
95
+ border: 1px dashed #22a7f2;
96
+ }
@@ -0,0 +1,278 @@
1
+ GNU GENERAL PUBLIC LICENSE
2
+ Version 2, June 1991
3
+
4
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.
5
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
6
+ Everyone is permitted to copy and distribute verbatim copies
7
+ of this license document, but changing it is not allowed.
8
+
9
+ Preamble
10
+
11
+ The licenses for most software are designed to take away your
12
+ freedom to share and change it. By contrast, the GNU General Public
13
+ License is intended to guarantee your freedom to share and change free
14
+ software--to make sure the software is free for all its users. This
15
+ General Public License applies to most of the Free Software
16
+ Foundation's software and to any other program whose authors commit to
17
+ using it. (Some other Free Software Foundation software is covered by
18
+ the GNU Lesser General Public License instead.) You can apply it to
19
+ your programs, too.
20
+
21
+ When we speak of free software, we are referring to freedom, not
22
+ price. Our General Public Licenses are designed to make sure that you
23
+ have the freedom to distribute copies of free software (and charge for
24
+ this service if you wish), that you receive source code or can get it
25
+ if you want it, that you can change the software or use pieces of it
26
+ in new free programs; and that you know you can do these things.
27
+
28
+ To protect your rights, we need to make restrictions that forbid
29
+ anyone to deny you these rights or to ask you to surrender the rights.
30
+ These restrictions translate to certain responsibilities for you if you
31
+ distribute copies of the software, or if you modify it.
32
+
33
+ For example, if you distribute copies of such a program, whether
34
+ gratis or for a fee, you must give the recipients all the rights that
35
+ you have. You must make sure that they, too, receive or can get the
36
+ source code. And you must show them these terms so they know their
37
+ rights.
38
+
39
+ We protect your rights with two steps: (1) copyright the software, and
40
+ (2) offer you this license which gives you legal permission to copy,
41
+ distribute and/or modify the software.
42
+
43
+ Also, for each author's protection and ours, we want to make certain
44
+ that everyone understands that there is no warranty for this free
45
+ software. If the software is modified by someone else and passed on, we
46
+ want its recipients to know that what they have is not the original, so
47
+ that any problems introduced by others will not reflect on the original
48
+ authors' reputations.
49
+
50
+ Finally, any free program is threatened constantly by software
51
+ patents. We wish to avoid the danger that redistributors of a free
52
+ program will individually obtain patent licenses, in effect making the
53
+ program proprietary. To prevent this, we have made it clear that any
54
+ patent must be licensed for everyone's free use or not licensed at all.
55
+
56
+ The precise terms and conditions for copying, distribution and
57
+ modification follow.
58
+
59
+ GNU GENERAL PUBLIC LICENSE
60
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
61
+
62
+ 0. This License applies to any program or other work which contains
63
+ a notice placed by the copyright holder saying it may be distributed
64
+ under the terms of this General Public License. The "Program", below,
65
+ refers to any such program or work, and a "work based on the Program"
66
+ means either the Program or any derivative work under copyright law:
67
+ that is to say, a work containing the Program or a portion of it,
68
+ either verbatim or with modifications and/or translated into another
69
+ language. (Hereinafter, translation is included without limitation in
70
+ the term "modification".) Each licensee is addressed as "you".
71
+
72
+ Activities other than copying, distribution and modification are not
73
+ covered by this License; they are outside its scope. The act of
74
+ running the Program is not restricted, and the output from the Program
75
+ is covered only if its contents constitute a work based on the
76
+ Program (independent of having been made by running the Program).
77
+ Whether that is true depends on what the Program does.
78
+
79
+ 1. You may copy and distribute verbatim copies of the Program's
80
+ source code as you receive it, in any medium, provided that you
81
+ conspicuously and appropriately publish on each copy an appropriate
82
+ copyright notice and disclaimer of warranty; keep intact all the
83
+ notices that refer to this License and to the absence of any warranty;
84
+ and give any other recipients of the Program a copy of this License
85
+ along with the Program.
86
+
87
+ You may charge a fee for the physical act of transferring a copy, and
88
+ you may at your option offer warranty protection in exchange for a fee.
89
+
90
+ 2. You may modify your copy or copies of the Program or any portion
91
+ of it, thus forming a work based on the Program, and copy and
92
+ distribute such modifications or work under the terms of Section 1
93
+ above, provided that you also meet all of these conditions:
94
+
95
+ a) You must cause the modified files to carry prominent notices
96
+ stating that you changed the files and the date of any change.
97
+
98
+ b) You must cause any work that you distribute or publish, that in
99
+ whole or in part contains or is derived from the Program or any
100
+ part thereof, to be licensed as a whole at no charge to all third
101
+ parties under the terms of this License.
102
+
103
+ c) If the modified program normally reads commands interactively
104
+ when run, you must cause it, when started running for such
105
+ interactive use in the most ordinary way, to print or display an
106
+ announcement including an appropriate copyright notice and a
107
+ notice that there is no warranty (or else, saying that you provide
108
+ a warranty) and that users may redistribute the program under
109
+ these conditions, and telling the user how to view a copy of this
110
+ License. (Exception: if the Program itself is interactive but
111
+ does not normally print such an announcement, your work based on
112
+ the Program is not required to print an announcement.)
113
+
114
+ These requirements apply to the modified work as a whole. If
115
+ identifiable sections of that work are not derived from the Program,
116
+ and can be reasonably considered independent and separate works in
117
+ themselves, then this License, and its terms, do not apply to those
118
+ sections when you distribute them as separate works. But when you
119
+ distribute the same sections as part of a whole which is a work based
120
+ on the Program, the distribution of the whole must be on the terms of
121
+ this License, whose permissions for other licensees extend to the
122
+ entire whole, and thus to each and every part regardless of who wrote it.
123
+
124
+ Thus, it is not the intent of this section to claim rights or contest
125
+ your rights to work written entirely by you; rather, the intent is to
126
+ exercise the right to control the distribution of derivative or
127
+ collective works based on the Program.
128
+
129
+ In addition, mere aggregation of another work not based on the Program
130
+ with the Program (or with a work based on the Program) on a volume of
131
+ a storage or distribution medium does not bring the other work under
132
+ the scope of this License.
133
+
134
+ 3. You may copy and distribute the Program (or a work based on it,
135
+ under Section 2) in object code or executable form under the terms of
136
+ Sections 1 and 2 above provided that you also do one of the following:
137
+
138
+ a) Accompany it with the complete corresponding machine-readable
139
+ source code, which must be distributed under the terms of Sections
140
+ 1 and 2 above on a medium customarily used for software interchange; or,
141
+
142
+ b) Accompany it with a written offer, valid for at least three
143
+ years, to give any third party, for a charge no more than your
144
+ cost of physically performing source distribution, a complete
145
+ machine-readable copy of the corresponding source code, to be
146
+ distributed under the terms of Sections 1 and 2 above on a medium
147
+ customarily used for software interchange; or,
148
+
149
+ c) Accompany it with the information you received as to the offer
150
+ to distribute corresponding source code. (This alternative is
151
+ allowed only for noncommercial distribution and only if you
152
+ received the program in object code or executable form with such
153
+ an offer, in accord with Subsection b above.)
154
+
155
+ The source code for a work means the preferred form of the work for
156
+ making modifications to it. For an executable work, complete source
157
+ code means all the source code for all modules it contains, plus any
158
+ associated interface definition files, plus the scripts used to
159
+ control compilation and installation of the executable. However, as a
160
+ special exception, the source code distributed need not include
161
+ anything that is normally distributed (in either source or binary
162
+ form) with the major components (compiler, kernel, and so on) of the
163
+ operating system on which the executable runs, unless that component
164
+ itself accompanies the executable.
165
+
166
+ If distribution of executable or object code is made by offering
167
+ access to copy from a designated place, then offering equivalent
168
+ access to copy the source code from the same place counts as
169
+ distribution of the source code, even though third parties are not
170
+ compelled to copy the source along with the object code.
171
+
172
+ 4. You may not copy, modify, sublicense, or distribute the Program
173
+ except as expressly provided under this License. Any attempt
174
+ otherwise to copy, modify, sublicense or distribute the Program is
175
+ void, and will automatically terminate your rights under this License.
176
+ However, parties who have received copies, or rights, from you under
177
+ this License will not have their licenses terminated so long as such
178
+ parties remain in full compliance.
179
+
180
+ 5. You are not required to accept this License, since you have not
181
+ signed it. However, nothing else grants you permission to modify or
182
+ distribute the Program or its derivative works. These actions are
183
+ prohibited by law if you do not accept this License. Therefore, by
184
+ modifying or distributing the Program (or any work based on the
185
+ Program), you indicate your acceptance of this License to do so, and
186
+ all its terms and conditions for copying, distributing or modifying
187
+ the Program or works based on it.
188
+
189
+ 6. Each time you redistribute the Program (or any work based on the
190
+ Program), the recipient automatically receives a license from the
191
+ original licensor to copy, distribute or modify the Program subject to
192
+ these terms and conditions. You may not impose any further
193
+ restrictions on the recipients' exercise of the rights granted herein.
194
+ You are not responsible for enforcing compliance by third parties to
195
+ this License.
196
+
197
+ 7. If, as a consequence of a court judgment or allegation of patent
198
+ infringement or for any other reason (not limited to patent issues),
199
+ conditions are imposed on you (whether by court order, agreement or
200
+ otherwise) that contradict the conditions of this License, they do not
201
+ excuse you from the conditions of this License. If you cannot
202
+ distribute so as to satisfy simultaneously your obligations under this
203
+ License and any other pertinent obligations, then as a consequence you
204
+ may not distribute the Program at all. For example, if a patent
205
+ license would not permit royalty-free redistribution of the Program by
206
+ all those who receive copies directly or indirectly through you, then
207
+ the only way you could satisfy both it and this License would be to
208
+ refrain entirely from distribution of the Program.
209
+
210
+ If any portion of this section is held invalid or unenforceable under
211
+ any particular circumstance, the balance of the section is intended to
212
+ apply and the section as a whole is intended to apply in other
213
+ circumstances.
214
+
215
+ It is not the purpose of this section to induce you to infringe any
216
+ patents or other property right claims or to contest validity of any
217
+ such claims; this section has the sole purpose of protecting the
218
+ integrity of the free software distribution system, which is
219
+ implemented by public license practices. Many people have made
220
+ generous contributions to the wide range of software distributed
221
+ through that system in reliance on consistent application of that
222
+ system; it is up to the author/donor to decide if he or she is willing
223
+ to distribute software through any other system and a licensee cannot
224
+ impose that choice.
225
+
226
+ This section is intended to make thoroughly clear what is believed to
227
+ be a consequence of the rest of this License.
228
+
229
+ 8. If the distribution and/or use of the Program is restricted in
230
+ certain countries either by patents or by copyrighted interfaces, the
231
+ original copyright holder who places the Program under this License
232
+ may add an explicit geographical distribution limitation excluding
233
+ those countries, so that distribution is permitted only in or among
234
+ countries not thus excluded. In such case, this License incorporates
235
+ the limitation as if written in the body of this License.
236
+
237
+ 9. The Free Software Foundation may publish revised and/or new versions
238
+ of the General Public License from time to time. Such new versions will
239
+ be similar in spirit to the present version, but may differ in detail to
240
+ address new problems or concerns.
241
+
242
+ Each version is given a distinguishing version number. If the Program
243
+ specifies a version number of this License which applies to it and "any
244
+ later version", you have the option of following the terms and conditions
245
+ either of that version or of any later version published by the Free
246
+ Software Foundation. If the Program does not specify a version number of
247
+ this License, you may choose any version ever published by the Free Software
248
+ Foundation.
249
+
250
+ 10. If you wish to incorporate parts of the Program into other free
251
+ programs whose distribution conditions are different, write to the author
252
+ to ask for permission. For software which is copyrighted by the Free
253
+ Software Foundation, write to the Free Software Foundation; we sometimes
254
+ make exceptions for this. Our decision will be guided by the two goals
255
+ of preserving the free status of all derivatives of our free software and
256
+ of promoting the sharing and reuse of software generally.
257
+
258
+ NO WARRANTY
259
+
260
+ 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
261
+ FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
262
+ OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
263
+ PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
264
+ OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
265
+ MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
266
+ TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
267
+ PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
268
+ REPAIR OR CORRECTION.
269
+
270
+ 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
271
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
272
+ REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
273
+ INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
274
+ OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
275
+ TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
276
+ YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
277
+ PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
278
+ POSSIBILITY OF SUCH DAMAGES.
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2008 Jean-Francois Hovinne, http://www.wymeditor.org/
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,35 @@
1
+ WYMeditor : what you see is What You Mean web-based editor
2
+ Copyright (c) 2008 Jean-Francois Hovinne, http://www.wymeditor.org/
3
+ Dual licensed under the MIT (MIT-license.txt)
4
+ and GPL (GPL-license.txt) licenses.
5
+
6
+ For further information visit:
7
+ http://www.wymeditor.org/
8
+
9
+ File Name:
10
+ README
11
+ Readme file.
12
+
13
+ File Authors:
14
+ Jean-François Hovinne - http://www.hovinne.com/
15
+
16
+
17
+ README
18
+ ======
19
+
20
+ For WYMeditor to work, you'll need at least jQuery 1.1.3.x
21
+ jQuery is available at http://jquery.com/
22
+
23
+ WYMeditor is compatible with MSIE 6.0+,
24
+ Gecko-based browsers (e.g. Firefox 1.5+),
25
+ Opera 9.5+, Safari 3.0+, Google Chrome.
26
+
27
+ WYMeditor integration examples are available in the 'examples' directory.
28
+
29
+ For more information, please read the documentation, available at:
30
+ http://trac.wymeditor.org/trac/wiki
31
+
32
+ If you need help, feel free to create an account on the forum or subscribe
33
+ to the WYMeditor-user mailing-list, and ask your question.
34
+ http://forum.wymeditor.org/
35
+ http://lists.wymeditor.org/
@@ -0,0 +1,391 @@
1
+ # DO NOT EDIT THIS FILE DIRECTLY! Instead, use lib/gemspec.rb to generate it.
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = %q{refinerycms-core}
5
+ s.version = %q{0.9.9.1}
6
+ s.summary = %q{Core engine for Refinery CMS}
7
+ s.description = %q{The core of Refinery CMS. This handles the common functionality and is required by most engines}
8
+ s.date = %q{2011-02-15}
9
+ s.email = %q{info@refinerycms.com}
10
+ s.homepage = %q{http://refinerycms.com}
11
+ s.rubyforge_project = %q{refinerycms}
12
+ s.authors = ['Resolve Digital', 'Philip Arndt', 'David Jones', 'Steven Heidel']
13
+ s.license = %q{MIT}
14
+ s.require_paths = %w(lib)
15
+ s.executables = %w()
16
+
17
+ s.add_dependency 'refinerycms-base', '~> 0.9.9.1'
18
+ s.add_dependency 'refinerycms-settings', '~> 0.9.9.1'
19
+ s.add_dependency 'refinerycms-generators', '~> 0.9.9.3'
20
+ s.add_dependency 'acts_as_indexed', '~> 0.7'
21
+ s.add_dependency 'friendly_id_globalize3', '~> 3.2.0'
22
+ s.add_dependency 'globalize3', '>= 0.1.0.beta'
23
+ s.add_dependency 'moretea-awesome_nested_set', '= 1.4.3.1'
24
+ s.add_dependency 'rails', '~> 3.0.3'
25
+ s.add_dependency 'rdoc', '>= 2.5.11' # helps fix ubuntu
26
+ s.add_dependency 'truncate_html', '~> 0.5'
27
+ s.add_dependency 'will_paginate', '~> 3.0.pre'
28
+
29
+ s.files = [
30
+ 'app',
31
+ 'app/controllers',
32
+ 'app/controllers/admin',
33
+ 'app/controllers/admin/base_controller.rb',
34
+ 'app/controllers/admin/dialogs_controller.rb',
35
+ 'app/controllers/admin/refinery_core_controller.rb',
36
+ 'app/controllers/application_controller.rb',
37
+ 'app/controllers/refinery',
38
+ 'app/controllers/refinery/fast_controller.rb',
39
+ 'app/controllers/sitemap_controller.rb',
40
+ 'app/helpers',
41
+ 'app/helpers/application_helper.rb',
42
+ 'app/views',
43
+ 'app/views/admin',
44
+ 'app/views/admin/_head.html.erb',
45
+ 'app/views/admin/_javascripts.html.erb',
46
+ 'app/views/admin/_menu.html.erb',
47
+ 'app/views/admin/dialogs',
48
+ 'app/views/admin/dialogs/show.html.erb',
49
+ 'app/views/layouts',
50
+ 'app/views/layouts/admin.html.erb',
51
+ 'app/views/layouts/admin_dialog.html.erb',
52
+ 'app/views/layouts/application.html.erb',
53
+ 'app/views/shared',
54
+ 'app/views/shared/_content_page.html.erb',
55
+ 'app/views/shared/_draft_page_message.html.erb',
56
+ 'app/views/shared/_footer.html.erb',
57
+ 'app/views/shared/_google_analytics.html.erb',
58
+ 'app/views/shared/_head.html.erb',
59
+ 'app/views/shared/_header.html.erb',
60
+ 'app/views/shared/_html_tag.html.erb',
61
+ 'app/views/shared/_ie6check.html.erb',
62
+ 'app/views/shared/_javascripts.html.erb',
63
+ 'app/views/shared/_menu.html.erb',
64
+ 'app/views/shared/_menu_branch.html.erb',
65
+ 'app/views/shared/_message.html.erb',
66
+ 'app/views/shared/_no_script.html.erb',
67
+ 'app/views/shared/_site_bar.html.erb',
68
+ 'app/views/shared/admin',
69
+ 'app/views/shared/admin/_continue_editing.html.erb',
70
+ 'app/views/shared/admin/_error_messages.html.erb',
71
+ 'app/views/shared/admin/_form_actions.html.erb',
72
+ 'app/views/shared/admin/_image_picker.html.erb',
73
+ 'app/views/shared/admin/_make_sortable.html.erb',
74
+ 'app/views/shared/admin/_resource_picker.html.erb',
75
+ 'app/views/shared/admin/_search.html.erb',
76
+ 'app/views/shared/admin/_sortable_list.html.erb',
77
+ 'app/views/shared/admin/_tabbed_fields.html.erb',
78
+ 'app/views/welcome.html.erb',
79
+ 'app/views/wymiframe.html.erb',
80
+ 'config',
81
+ 'config/locales',
82
+ 'config/locales/cs.yml',
83
+ 'config/locales/da.yml',
84
+ 'config/locales/de.yml',
85
+ 'config/locales/el.yml',
86
+ 'config/locales/en.yml',
87
+ 'config/locales/es.yml',
88
+ 'config/locales/fr.yml',
89
+ 'config/locales/it.yml',
90
+ 'config/locales/lolcat.yml',
91
+ 'config/locales/lt.yml',
92
+ 'config/locales/lv.yml',
93
+ 'config/locales/nb.yml',
94
+ 'config/locales/nl.yml',
95
+ 'config/locales/pl.yml',
96
+ 'config/locales/pt-BR.yml',
97
+ 'config/locales/rs.yml',
98
+ 'config/locales/ru.yml',
99
+ 'config/locales/sl.yml',
100
+ 'config/locales/sv.yml',
101
+ 'config/locales/vi.yml',
102
+ 'config/locales/zh-CN.yml',
103
+ 'config/locales/zh-TW.yml',
104
+ 'config/routes.rb',
105
+ 'crud.md',
106
+ 'doc',
107
+ 'doc/included-jquery-ui-packages.jpg',
108
+ 'engines.md',
109
+ 'features',
110
+ 'features/search.feature',
111
+ 'features/site_bar.feature',
112
+ 'features/step_definitions',
113
+ 'features/step_definitions/core_steps.rb',
114
+ 'features/support',
115
+ 'features/support/paths.rb',
116
+ 'features/uploads',
117
+ 'features/uploads/beach.jpeg',
118
+ 'features/uploads/refinery_is_awesome.txt',
119
+ 'lib',
120
+ 'lib/gemspec.rb',
121
+ 'lib/generators',
122
+ 'lib/generators/refinerycms_generator.rb',
123
+ 'lib/generators/templates',
124
+ 'lib/generators/templates/.gitignore',
125
+ 'lib/generators/templates/app',
126
+ 'lib/generators/templates/app/views',
127
+ 'lib/generators/templates/app/views/sitemap',
128
+ 'lib/generators/templates/app/views/sitemap/index.xml.builder',
129
+ 'lib/generators/templates/autotest',
130
+ 'lib/generators/templates/autotest/autotest.rb',
131
+ 'lib/generators/templates/autotest/discover.rb',
132
+ 'lib/generators/templates/config',
133
+ 'lib/generators/templates/config/database.yml.mysql',
134
+ 'lib/generators/templates/config/database.yml.postgresql',
135
+ 'lib/generators/templates/config/database.yml.sqlite3',
136
+ 'lib/generators/templates/config/i18n-js.yml',
137
+ 'lib/generators/templates/config/initializers',
138
+ 'lib/generators/templates/config/initializers/devise.rb',
139
+ 'lib/generators/templates/config/settings.rb',
140
+ 'lib/generators/templates/db',
141
+ 'lib/generators/templates/db/seeds.rb',
142
+ 'lib/refinery',
143
+ 'lib/refinery/activity.rb',
144
+ 'lib/refinery/admin',
145
+ 'lib/refinery/admin/base_controller.rb',
146
+ 'lib/refinery/admin_base_controller.rb',
147
+ 'lib/refinery/application.rb',
148
+ 'lib/refinery/application_controller.rb',
149
+ 'lib/refinery/application_helper.rb',
150
+ 'lib/refinery/base_presenter.rb',
151
+ 'lib/refinery/catch_all_routes.rb',
152
+ 'lib/refinery/crud.rb',
153
+ 'lib/refinery/helpers',
154
+ 'lib/refinery/helpers/form_helper.rb',
155
+ 'lib/refinery/helpers/head_helper.rb',
156
+ 'lib/refinery/helpers/html_truncation_helper.rb',
157
+ 'lib/refinery/helpers/image_helper.rb',
158
+ 'lib/refinery/helpers/menu_helper.rb',
159
+ 'lib/refinery/helpers/meta_helper.rb',
160
+ 'lib/refinery/helpers/pagination_helper.rb',
161
+ 'lib/refinery/helpers/script_helper.rb',
162
+ 'lib/refinery/helpers/site_bar_helper.rb',
163
+ 'lib/refinery/helpers/tag_helper.rb',
164
+ 'lib/refinery/helpers/translation_helper.rb',
165
+ 'lib/refinery/link_renderer.rb',
166
+ 'lib/refinery/plugin.rb',
167
+ 'lib/refinery/plugins.rb',
168
+ 'lib/refinerycms-core.rb',
169
+ 'lib/tasks',
170
+ 'lib/tasks/doc.rake',
171
+ 'lib/tasks/refinery.rake',
172
+ 'lib/tasks/yard.rake',
173
+ 'license.md',
174
+ 'public',
175
+ 'public/404.html',
176
+ 'public/422.html',
177
+ 'public/500.html',
178
+ 'public/favicon.ico',
179
+ 'public/images',
180
+ 'public/images/refinery',
181
+ 'public/images/refinery/add.png',
182
+ 'public/images/refinery/admin_bg.png',
183
+ 'public/images/refinery/ajax-loader.gif',
184
+ 'public/images/refinery/branch-end.gif',
185
+ 'public/images/refinery/branch-start.gif',
186
+ 'public/images/refinery/branch.gif',
187
+ 'public/images/refinery/carousel-left.png',
188
+ 'public/images/refinery/carousel-right.png',
189
+ 'public/images/refinery/cross.png',
190
+ 'public/images/refinery/dialogLoadingAnimation.gif',
191
+ 'public/images/refinery/header_background.png',
192
+ 'public/images/refinery/hover-gradient.jpg',
193
+ 'public/images/refinery/icons',
194
+ 'public/images/refinery/icons/accept.png',
195
+ 'public/images/refinery/icons/add.png',
196
+ 'public/images/refinery/icons/ajax-loader.gif',
197
+ 'public/images/refinery/icons/application_edit.png',
198
+ 'public/images/refinery/icons/application_go.png',
199
+ 'public/images/refinery/icons/arrow_left.png',
200
+ 'public/images/refinery/icons/arrow_switch.png',
201
+ 'public/images/refinery/icons/arrow_up.png',
202
+ 'public/images/refinery/icons/bin.png',
203
+ 'public/images/refinery/icons/bin_closed.png',
204
+ 'public/images/refinery/icons/cancel.png',
205
+ 'public/images/refinery/icons/cog_add.png',
206
+ 'public/images/refinery/icons/cog_edit.png',
207
+ 'public/images/refinery/icons/cross.png',
208
+ 'public/images/refinery/icons/delete.png',
209
+ 'public/images/refinery/icons/doc.png',
210
+ 'public/images/refinery/icons/down.gif',
211
+ 'public/images/refinery/icons/edit.png',
212
+ 'public/images/refinery/icons/email.png',
213
+ 'public/images/refinery/icons/email_edit.png',
214
+ 'public/images/refinery/icons/email_go.png',
215
+ 'public/images/refinery/icons/email_open.png',
216
+ 'public/images/refinery/icons/eye.png',
217
+ 'public/images/refinery/icons/folder_page_white.png',
218
+ 'public/images/refinery/icons/image_add.png',
219
+ 'public/images/refinery/icons/image_edit.png',
220
+ 'public/images/refinery/icons/img.png',
221
+ 'public/images/refinery/icons/information.png',
222
+ 'public/images/refinery/icons/layout_add.png',
223
+ 'public/images/refinery/icons/layout_edit.png',
224
+ 'public/images/refinery/icons/music.png',
225
+ 'public/images/refinery/icons/page_add.png',
226
+ 'public/images/refinery/icons/page_edit.png',
227
+ 'public/images/refinery/icons/page_white_edit.png',
228
+ 'public/images/refinery/icons/page_white_gear.png',
229
+ 'public/images/refinery/icons/page_white_put.png',
230
+ 'public/images/refinery/icons/pdf.png',
231
+ 'public/images/refinery/icons/ppt.png',
232
+ 'public/images/refinery/icons/star.png',
233
+ 'public/images/refinery/icons/tick.png',
234
+ 'public/images/refinery/icons/up.gif',
235
+ 'public/images/refinery/icons/user_add.png',
236
+ 'public/images/refinery/icons/user_comment.png',
237
+ 'public/images/refinery/icons/user_edit.png',
238
+ 'public/images/refinery/icons/xls.png',
239
+ 'public/images/refinery/icons/zip.png',
240
+ 'public/images/refinery/icons/zoom.png',
241
+ 'public/images/refinery/logo-large.png',
242
+ 'public/images/refinery/logo-medium.png',
243
+ 'public/images/refinery/logo-site-bar.png',
244
+ 'public/images/refinery/logo-small-medium.png',
245
+ 'public/images/refinery/logo-small.png',
246
+ 'public/images/refinery/logo-tiny.png',
247
+ 'public/images/refinery/logo.png',
248
+ 'public/images/refinery/nav-3-background.gif',
249
+ 'public/images/refinery/nav_inactive_background.png',
250
+ 'public/images/refinery/orange_button.png',
251
+ 'public/images/refinery/page_bg.png',
252
+ 'public/images/refinery/resolve_digital_footer_logo.png',
253
+ 'public/images/refinery/text_field_background.png',
254
+ 'public/images/refinery/tooltip-nib.gif',
255
+ 'public/images/refinery/tooltip-nib.png',
256
+ 'public/images/wymeditor',
257
+ 'public/images/wymeditor/skins',
258
+ 'public/images/wymeditor/skins/refinery',
259
+ 'public/images/wymeditor/skins/refinery/arrow_redo.png',
260
+ 'public/images/wymeditor/skins/refinery/arrow_undo.png',
261
+ 'public/images/wymeditor/skins/refinery/eye.png',
262
+ 'public/images/wymeditor/skins/refinery/iframe',
263
+ 'public/images/wymeditor/skins/refinery/iframe/lbl-blockquote.png',
264
+ 'public/images/wymeditor/skins/refinery/iframe/lbl-h1.png',
265
+ 'public/images/wymeditor/skins/refinery/iframe/lbl-h2.png',
266
+ 'public/images/wymeditor/skins/refinery/iframe/lbl-h3.png',
267
+ 'public/images/wymeditor/skins/refinery/iframe/lbl-h4.png',
268
+ 'public/images/wymeditor/skins/refinery/iframe/lbl-h5.png',
269
+ 'public/images/wymeditor/skins/refinery/iframe/lbl-h6.png',
270
+ 'public/images/wymeditor/skins/refinery/iframe/lbl-p.png',
271
+ 'public/images/wymeditor/skins/refinery/iframe/lbl-pre.png',
272
+ 'public/images/wymeditor/skins/refinery/link_add.png',
273
+ 'public/images/wymeditor/skins/refinery/link_break.png',
274
+ 'public/images/wymeditor/skins/refinery/page_code.png',
275
+ 'public/images/wymeditor/skins/refinery/page_paste.png',
276
+ 'public/images/wymeditor/skins/refinery/photo_add.png',
277
+ 'public/images/wymeditor/skins/refinery/right.png',
278
+ 'public/images/wymeditor/skins/refinery/style.png',
279
+ 'public/images/wymeditor/skins/refinery/table_add.png',
280
+ 'public/images/wymeditor/skins/refinery/text_align_center.png',
281
+ 'public/images/wymeditor/skins/refinery/text_align_justify.png',
282
+ 'public/images/wymeditor/skins/refinery/text_align_left.png',
283
+ 'public/images/wymeditor/skins/refinery/text_align_right.png',
284
+ 'public/images/wymeditor/skins/refinery/text_bold.png',
285
+ 'public/images/wymeditor/skins/refinery/text_heading_1.png',
286
+ 'public/images/wymeditor/skins/refinery/text_heading_2.png',
287
+ 'public/images/wymeditor/skins/refinery/text_heading_3.png',
288
+ 'public/images/wymeditor/skins/refinery/text_heading_4.png',
289
+ 'public/images/wymeditor/skins/refinery/text_heading_5.png',
290
+ 'public/images/wymeditor/skins/refinery/text_heading_6.png',
291
+ 'public/images/wymeditor/skins/refinery/text_indent.png',
292
+ 'public/images/wymeditor/skins/refinery/text_indent_remove.png',
293
+ 'public/images/wymeditor/skins/refinery/text_italic.png',
294
+ 'public/images/wymeditor/skins/refinery/text_list_bullets.png',
295
+ 'public/images/wymeditor/skins/refinery/text_list_numbers.png',
296
+ 'public/images/wymeditor/skins/refinery/text_paragraph.png',
297
+ 'public/images/wymeditor/skins/refinery/text_strikethrough.png',
298
+ 'public/images/wymeditor/skins/refinery/text_subscript.png',
299
+ 'public/images/wymeditor/skins/refinery/text_superscript.png',
300
+ 'public/images/wymeditor/skins/refinery/text_underline.png',
301
+ 'public/images/wymeditor/skins/wymeditor_icon.png',
302
+ 'public/javascripts',
303
+ 'public/javascripts/admin.js',
304
+ 'public/javascripts/application.js',
305
+ 'public/javascripts/dd_belatedpng.js',
306
+ 'public/javascripts/i18n-messages.js',
307
+ 'public/javascripts/jquery',
308
+ 'public/javascripts/jquery/GPL-LICENSE.txt',
309
+ 'public/javascripts/jquery/MIT-LICENSE.txt',
310
+ 'public/javascripts/jquery/jquery.corner.js',
311
+ 'public/javascripts/jquery/jquery.html5-placeholder-shim.js',
312
+ 'public/javascripts/jquery/jquery.jcarousel.js',
313
+ 'public/javascripts/jquery/jquery.textTruncate.js',
314
+ 'public/javascripts/jquery/jquery.timers.js',
315
+ 'public/javascripts/jquery-min.js',
316
+ 'public/javascripts/jquery-ui-custom-min.js',
317
+ 'public/javascripts/jquery.js',
318
+ 'public/javascripts/modernizr-min.js',
319
+ 'public/javascripts/rails.js',
320
+ 'public/javascripts/refinery',
321
+ 'public/javascripts/refinery/admin.js',
322
+ 'public/javascripts/refinery/boot_wym.js',
323
+ 'public/javascripts/refinery/core.js',
324
+ 'public/javascripts/refinery/i18n.js',
325
+ 'public/javascripts/refinery/nestedsortables.js',
326
+ 'public/javascripts/refinery/serializelist.js',
327
+ 'public/javascripts/refinery/site_bar.js',
328
+ 'public/javascripts/refinery/submenu.js',
329
+ 'public/javascripts/wymeditor',
330
+ 'public/javascripts/wymeditor/jquery.refinery.wymeditor.js',
331
+ 'public/javascripts/wymeditor/lang',
332
+ 'public/javascripts/wymeditor/lang/ca.js',
333
+ 'public/javascripts/wymeditor/lang/cs.js',
334
+ 'public/javascripts/wymeditor/lang/da.js',
335
+ 'public/javascripts/wymeditor/lang/de.js',
336
+ 'public/javascripts/wymeditor/lang/en.js',
337
+ 'public/javascripts/wymeditor/lang/es.js',
338
+ 'public/javascripts/wymeditor/lang/fa.js',
339
+ 'public/javascripts/wymeditor/lang/fr.js',
340
+ 'public/javascripts/wymeditor/lang/he.js',
341
+ 'public/javascripts/wymeditor/lang/hu.js',
342
+ 'public/javascripts/wymeditor/lang/it.js',
343
+ 'public/javascripts/wymeditor/lang/lv.js',
344
+ 'public/javascripts/wymeditor/lang/nb.js',
345
+ 'public/javascripts/wymeditor/lang/nl.js',
346
+ 'public/javascripts/wymeditor/lang/nn.js',
347
+ 'public/javascripts/wymeditor/lang/pl.js',
348
+ 'public/javascripts/wymeditor/lang/pt-BR.js',
349
+ 'public/javascripts/wymeditor/lang/pt.js',
350
+ 'public/javascripts/wymeditor/lang/rs.js',
351
+ 'public/javascripts/wymeditor/lang/ru.js',
352
+ 'public/javascripts/wymeditor/lang/sl.js',
353
+ 'public/javascripts/wymeditor/lang/sv.js',
354
+ 'public/javascripts/wymeditor/lang/tr.js',
355
+ 'public/javascripts/wymeditor/lang/vi.js',
356
+ 'public/javascripts/wymeditor/lang/zh_cn.js',
357
+ 'public/javascripts/wymeditor/skins',
358
+ 'public/javascripts/wymeditor/skins/refinery',
359
+ 'public/javascripts/wymeditor/skins/refinery/skin.js',
360
+ 'public/robots.txt',
361
+ 'public/stylesheets',
362
+ 'public/stylesheets/application.css',
363
+ 'public/stylesheets/formatting.css',
364
+ 'public/stylesheets/home.css',
365
+ 'public/stylesheets/refinery',
366
+ 'public/stylesheets/refinery/application.css',
367
+ 'public/stylesheets/refinery/formatting.css',
368
+ 'public/stylesheets/refinery/home.css',
369
+ 'public/stylesheets/refinery/refinery.css',
370
+ 'public/stylesheets/refinery/site_bar.css',
371
+ 'public/stylesheets/refinery/submenu.css',
372
+ 'public/stylesheets/refinery/theme.css',
373
+ 'public/stylesheets/refinery/tooltips.css',
374
+ 'public/stylesheets/refinery/ui.css',
375
+ 'public/stylesheets/theme.css',
376
+ 'public/stylesheets/wymeditor',
377
+ 'public/stylesheets/wymeditor/skins',
378
+ 'public/stylesheets/wymeditor/skins/refinery',
379
+ 'public/stylesheets/wymeditor/skins/refinery/skin.css',
380
+ 'public/stylesheets/wymeditor/skins/refinery/wymiframe.css',
381
+ 'public/wymeditor',
382
+ 'public/wymeditor/GPL-license.txt',
383
+ 'public/wymeditor/MIT-license.txt',
384
+ 'public/wymeditor/README',
385
+ 'refinerycms-core.gemspec',
386
+ 'spec',
387
+ 'spec/lib',
388
+ 'spec/lib/refinery',
389
+ 'spec/lib/refinery/plugins_spec.rb'
390
+ ]
391
+ end