jacobat-refinerycms 0.9.6.14

Sign up to get free protection for your applications and to get access to all the features.
Files changed (547) hide show
  1. data/.gems +8 -0
  2. data/.gitignore +23 -0
  3. data/.yardopts +31 -0
  4. data/Gemfile +12 -0
  5. data/Rakefile +70 -0
  6. data/VERSION +1 -0
  7. data/app/controllers/admin/base_controller.rb +8 -0
  8. data/app/controllers/application.rb +3 -0
  9. data/app/controllers/application_controller.rb +7 -0
  10. data/app/helpers/application_helper.rb +7 -0
  11. data/bin/refinery +84 -0
  12. data/bin/refinery-override +76 -0
  13. data/bin/refinery-update-core +92 -0
  14. data/config/amazon_s3.yml.example +18 -0
  15. data/config/application.rb +88 -0
  16. data/config/boot.rb +110 -0
  17. data/config/database.yml.example +20 -0
  18. data/config/environment.rb +5 -0
  19. data/config/environments/development.rb +26 -0
  20. data/config/environments/production.rb +26 -0
  21. data/config/environments/test.rb +22 -0
  22. data/config/initializers/inflections.rb +10 -0
  23. data/config/initializers/mime_types.rb +5 -0
  24. data/config/preinitializer.rb +27 -0
  25. data/config/rackspace_cloudfiles.yml.example +14 -0
  26. data/config/routes.rb +20 -0
  27. data/contributors.md +20 -0
  28. data/db/migrate/20091029034951_remove_blurb_from_news_items.rb +9 -0
  29. data/db/migrate/20091109012126_add_missing_indexes.rb +25 -0
  30. data/db/migrate/20091130040711_add_down_for_maintenance_page.rb +15 -0
  31. data/db/migrate/20091207033335_add_superuser_to_users.rb +12 -0
  32. data/db/migrate/20100114092849_add_themes_table.rb +19 -0
  33. data/db/migrate/20100127004649_add_reset_code_to_users.rb +9 -0
  34. data/db/migrate/20100202034802_remove_custom_title_image_id_and_image_id_from_pages.rb +13 -0
  35. data/db/migrate/20100204011654_change_part_titles_to_titleized_version_for_new_format.rb +13 -0
  36. data/db/migrate/20100223211536_remove_themes_table.rb +17 -0
  37. data/db/schema.rb +150 -0
  38. data/db/seeds.rb +121 -0
  39. data/doc/.yardoc/checksums +0 -0
  40. data/doc/.yardoc/objects/root.dat +0 -0
  41. data/doc/.yardoc/proxy_types +0 -0
  42. data/lib/refinery_initializer.rb +23 -0
  43. data/license.md +21 -0
  44. data/public/.htaccess +40 -0
  45. data/public/404.html +29 -0
  46. data/public/422.html +30 -0
  47. data/public/500.html +29 -0
  48. data/public/favicon.ico +0 -0
  49. data/public/images/refinery/add.png +0 -0
  50. data/public/images/refinery/admin_bg.png +0 -0
  51. data/public/images/refinery/ajax-loader.gif +0 -0
  52. data/public/images/refinery/branch-end.gif +0 -0
  53. data/public/images/refinery/branch-start.gif +0 -0
  54. data/public/images/refinery/branch.gif +0 -0
  55. data/public/images/refinery/header_background.png +0 -0
  56. data/public/images/refinery/hover-gradient.jpg +0 -0
  57. data/public/images/refinery/icons/accept.png +0 -0
  58. data/public/images/refinery/icons/add.png +0 -0
  59. data/public/images/refinery/icons/application_edit.png +0 -0
  60. data/public/images/refinery/icons/application_go.png +0 -0
  61. data/public/images/refinery/icons/arrow_left.png +0 -0
  62. data/public/images/refinery/icons/arrow_switch.png +0 -0
  63. data/public/images/refinery/icons/arrow_up.png +0 -0
  64. data/public/images/refinery/icons/cancel.png +0 -0
  65. data/public/images/refinery/icons/cog_add.png +0 -0
  66. data/public/images/refinery/icons/cog_edit.png +0 -0
  67. data/public/images/refinery/icons/cross.png +0 -0
  68. data/public/images/refinery/icons/delete.png +0 -0
  69. data/public/images/refinery/icons/edit.png +0 -0
  70. data/public/images/refinery/icons/email_edit.png +0 -0
  71. data/public/images/refinery/icons/email_go.png +0 -0
  72. data/public/images/refinery/icons/email_open.png +0 -0
  73. data/public/images/refinery/icons/eye.png +0 -0
  74. data/public/images/refinery/icons/image_add.png +0 -0
  75. data/public/images/refinery/icons/image_edit.png +0 -0
  76. data/public/images/refinery/icons/layout_add.png +0 -0
  77. data/public/images/refinery/icons/layout_edit.png +0 -0
  78. data/public/images/refinery/icons/page_add.png +0 -0
  79. data/public/images/refinery/icons/page_edit.png +0 -0
  80. data/public/images/refinery/icons/page_white_edit.png +0 -0
  81. data/public/images/refinery/icons/page_white_put.png +0 -0
  82. data/public/images/refinery/icons/star.png +0 -0
  83. data/public/images/refinery/icons/tick.png +0 -0
  84. data/public/images/refinery/icons/user_add.png +0 -0
  85. data/public/images/refinery/icons/user_comment.png +0 -0
  86. data/public/images/refinery/icons/user_edit.png +0 -0
  87. data/public/images/refinery/logo-large.png +0 -0
  88. data/public/images/refinery/logo-medium.png +0 -0
  89. data/public/images/refinery/logo-small-medium.png +0 -0
  90. data/public/images/refinery/logo-small.png +0 -0
  91. data/public/images/refinery/logo.png +0 -0
  92. data/public/images/refinery/nav-3-background.gif +0 -0
  93. data/public/images/refinery/page_bg.png +0 -0
  94. data/public/images/refinery/resolve_digital_footer_logo.png +0 -0
  95. data/public/images/thickbox/cross.png +0 -0
  96. data/public/images/thickbox/loadingAnimation.gif +0 -0
  97. data/public/images/thickbox/macFFBgHack.png +0 -0
  98. data/public/images/wymeditor/skins/refinery/blockquote.png +0 -0
  99. data/public/images/wymeditor/skins/refinery/center.png +0 -0
  100. data/public/images/wymeditor/skins/refinery/css.png +0 -0
  101. data/public/images/wymeditor/skins/refinery/h1.png +0 -0
  102. data/public/images/wymeditor/skins/refinery/h2.png +0 -0
  103. data/public/images/wymeditor/skins/refinery/h3.png +0 -0
  104. data/public/images/wymeditor/skins/refinery/h4.png +0 -0
  105. data/public/images/wymeditor/skins/refinery/h5.png +0 -0
  106. data/public/images/wymeditor/skins/refinery/h6.png +0 -0
  107. data/public/images/wymeditor/skins/refinery/icons.png +0 -0
  108. data/public/images/wymeditor/skins/refinery/iframe/lbl-blockquote.png +0 -0
  109. data/public/images/wymeditor/skins/refinery/iframe/lbl-h1.png +0 -0
  110. data/public/images/wymeditor/skins/refinery/iframe/lbl-h2.png +0 -0
  111. data/public/images/wymeditor/skins/refinery/iframe/lbl-h3.png +0 -0
  112. data/public/images/wymeditor/skins/refinery/iframe/lbl-h4.png +0 -0
  113. data/public/images/wymeditor/skins/refinery/iframe/lbl-h5.png +0 -0
  114. data/public/images/wymeditor/skins/refinery/iframe/lbl-h6.png +0 -0
  115. data/public/images/wymeditor/skins/refinery/iframe/lbl-p.png +0 -0
  116. data/public/images/wymeditor/skins/refinery/iframe/lbl-pre.png +0 -0
  117. data/public/images/wymeditor/skins/refinery/justify.png +0 -0
  118. data/public/images/wymeditor/skins/refinery/left.png +0 -0
  119. data/public/images/wymeditor/skins/refinery/paragraph.png +0 -0
  120. data/public/images/wymeditor/skins/refinery/right.png +0 -0
  121. data/public/images/wymeditor/skins/wymeditor_icon.png +0 -0
  122. data/public/javascripts/admin.js +5 -0
  123. data/public/javascripts/application.js +1 -0
  124. data/public/javascripts/jquery/GPL-LICENSE.txt +278 -0
  125. data/public/javascripts/jquery/MIT-LICENSE.txt +20 -0
  126. data/public/javascripts/jquery-ui-1.8rc1.min.js +375 -0
  127. data/public/javascripts/jquery.js +6078 -0
  128. data/public/javascripts/refinery/admin.js +705 -0
  129. data/public/javascripts/refinery/boot_wym.js +154 -0
  130. data/public/javascripts/thickbox.js +350 -0
  131. data/public/javascripts/wymeditor/jquery.refinery.wymeditor.js +4975 -0
  132. data/public/javascripts/wymeditor/lang/ca.js +45 -0
  133. data/public/javascripts/wymeditor/lang/cs.js +45 -0
  134. data/public/javascripts/wymeditor/lang/de.js +45 -0
  135. data/public/javascripts/wymeditor/lang/en.js +48 -0
  136. data/public/javascripts/wymeditor/lang/es.js +45 -0
  137. data/public/javascripts/wymeditor/lang/fa.js +46 -0
  138. data/public/javascripts/wymeditor/lang/fr.js +45 -0
  139. data/public/javascripts/wymeditor/lang/he.js +45 -0
  140. data/public/javascripts/wymeditor/lang/hu.js +45 -0
  141. data/public/javascripts/wymeditor/lang/it.js +45 -0
  142. data/public/javascripts/wymeditor/lang/nb.js +45 -0
  143. data/public/javascripts/wymeditor/lang/nl.js +45 -0
  144. data/public/javascripts/wymeditor/lang/nn.js +45 -0
  145. data/public/javascripts/wymeditor/lang/pl.js +45 -0
  146. data/public/javascripts/wymeditor/lang/pt-br.js +45 -0
  147. data/public/javascripts/wymeditor/lang/pt.js +45 -0
  148. data/public/javascripts/wymeditor/lang/ru.js +45 -0
  149. data/public/javascripts/wymeditor/lang/sv.js +45 -0
  150. data/public/javascripts/wymeditor/lang/tr.js +45 -0
  151. data/public/javascripts/wymeditor/lang/zh_cn.js +47 -0
  152. data/public/javascripts/wymeditor/skins/refinery/skin.js +40 -0
  153. data/public/robots.txt +2 -0
  154. data/public/stylesheets/application.css +5 -0
  155. data/public/stylesheets/formatting.css +5 -0
  156. data/public/stylesheets/home.css +5 -0
  157. data/public/stylesheets/ie6.css +0 -0
  158. data/public/stylesheets/ie7.css +0 -0
  159. data/public/stylesheets/refinery/application.css +45 -0
  160. data/public/stylesheets/refinery/formatting.css +53 -0
  161. data/public/stylesheets/refinery/home.css +0 -0
  162. data/public/stylesheets/refinery/refinery.css +1233 -0
  163. data/public/stylesheets/refinery/theme.css +36 -0
  164. data/public/stylesheets/refinery/thickbox.css +165 -0
  165. data/public/stylesheets/refinery/tooltips.css +38 -0
  166. data/public/stylesheets/theme.css +1 -0
  167. data/public/stylesheets/wymeditor/skins/refinery/skin.css +218 -0
  168. data/public/stylesheets/wymeditor/skins/refinery/wymiframe.css +92 -0
  169. data/public/wymeditor/GPL-license.txt +278 -0
  170. data/public/wymeditor/MIT-license.txt +20 -0
  171. data/public/wymeditor/README +35 -0
  172. data/readme.md +181 -0
  173. data/script/about +3 -0
  174. data/script/console +3 -0
  175. data/script/dbconsole +3 -0
  176. data/script/destroy +3 -0
  177. data/script/generate +3 -0
  178. data/script/performance/benchmarker +3 -0
  179. data/script/performance/profiler +3 -0
  180. data/script/performance/request +3 -0
  181. data/script/plugin +3 -0
  182. data/script/process/inspector +3 -0
  183. data/script/process/reaper +3 -0
  184. data/script/process/spawner +3 -0
  185. data/script/runner +3 -0
  186. data/script/server +3 -0
  187. data/test/files/The world!.gif +0 -0
  188. data/test/files/car-wallpapers19.jpg +0 -0
  189. data/test/files/teng.pdf +0 -0
  190. data/test/fixtures/images.yml +14 -0
  191. data/test/fixtures/inquiries.yml +22 -0
  192. data/test/fixtures/news_items.yml +14 -0
  193. data/test/fixtures/page_parts.yml +9 -0
  194. data/test/fixtures/pages.yml +94 -0
  195. data/test/fixtures/refinery_settings.yml +3 -0
  196. data/test/fixtures/resources.yml +4 -0
  197. data/test/fixtures/users.yml +16 -0
  198. data/test/functional/dashboard_controller_test.rb +24 -0
  199. data/test/performance/browsing_test.rb +9 -0
  200. data/test/test_helper.rb +43 -0
  201. data/test/unit/image_test.rb +27 -0
  202. data/test/unit/inquiry_test.rb +41 -0
  203. data/test/unit/news_items_test.rb +33 -0
  204. data/test/unit/page_part_test.rb +19 -0
  205. data/test/unit/page_test.rb +133 -0
  206. data/test/unit/refinery_setting_test.rb +57 -0
  207. data/test/unit/resource_test.rb +33 -0
  208. data/themes/demolicious/LICENSE +21 -0
  209. data/themes/demolicious/README +1 -0
  210. data/themes/demolicious/images/footer_background.png +0 -0
  211. data/themes/demolicious/images/header_background.png +0 -0
  212. data/themes/demolicious/stylesheets/application.css +94 -0
  213. data/themes/demolicious/stylesheets/formatting.css +36 -0
  214. data/themes/demolicious/stylesheets/home.css +8 -0
  215. data/themes/demolicious/stylesheets/ie6.css +0 -0
  216. data/themes/demolicious/stylesheets/ie7.css +0 -0
  217. data/themes/demolicious/views/layouts/application.html.erb +20 -0
  218. data/themes/demolicious/views/pages/home.html.erb +1 -0
  219. data/themes/demolicious/views/pages/show.html.erb +1 -0
  220. data/themes/hemingway/LICENSE +7 -0
  221. data/themes/hemingway/README +3 -0
  222. data/themes/hemingway/images/archives.gif +0 -0
  223. data/themes/hemingway/images/footer_black.gif +0 -0
  224. data/themes/hemingway/images/kyle-header.jpg +0 -0
  225. data/themes/hemingway/images/readon_black.gif +0 -0
  226. data/themes/hemingway/images/search.gif +0 -0
  227. data/themes/hemingway/images/spinner.gif +0 -0
  228. data/themes/hemingway/images/trackback_pingback.gif +0 -0
  229. data/themes/hemingway/stylesheets/application.css +713 -0
  230. data/themes/hemingway/stylesheets/formatting.css +1 -0
  231. data/themes/hemingway/stylesheets/home.css +1 -0
  232. data/themes/hemingway/views/layouts/application.html.erb +55 -0
  233. data/todo.md +23 -0
  234. data/vendor/cache/aasm-2.1.3.gem +0 -0
  235. data/vendor/cache/actionmailer-2.3.5.gem +0 -0
  236. data/vendor/cache/actionpack-2.3.5.gem +0 -0
  237. data/vendor/cache/activerecord-2.3.5.gem +0 -0
  238. data/vendor/cache/activeresource-2.3.5.gem +0 -0
  239. data/vendor/cache/activesupport-2.3.5.gem +0 -0
  240. data/vendor/cache/friendly_id-2.3.1.gem +0 -0
  241. data/vendor/cache/hpricot-0.8.2.gem +0 -0
  242. data/vendor/cache/rack-1.0.1.gem +0 -0
  243. data/vendor/cache/rails-2.3.5.gem +0 -0
  244. data/vendor/cache/rake-0.8.7.gem +0 -0
  245. data/vendor/cache/rubyzip-0.9.1.gem +0 -0
  246. data/vendor/cache/slim_scrooge-1.0.3.gem +0 -0
  247. data/vendor/cache/will_paginate-2.3.11.gem +0 -0
  248. data/vendor/plugins/acts_as_indexed/CHANGELOG +74 -0
  249. data/vendor/plugins/acts_as_indexed/MIT-LICENSE +20 -0
  250. data/vendor/plugins/acts_as_indexed/README.rdoc +114 -0
  251. data/vendor/plugins/acts_as_indexed/Rakefile +35 -0
  252. data/vendor/plugins/acts_as_indexed/init.rb +2 -0
  253. data/vendor/plugins/acts_as_indexed/lib/acts_as_indexed.rb +224 -0
  254. data/vendor/plugins/acts_as_indexed/lib/search_atom.rb +107 -0
  255. data/vendor/plugins/acts_as_indexed/lib/search_index.rb +329 -0
  256. data/vendor/plugins/acts_as_indexed/lib/will_paginate_search.rb +29 -0
  257. data/vendor/plugins/acts_as_indexed/test/abstract_unit.rb +47 -0
  258. data/vendor/plugins/acts_as_indexed/test/acts_as_indexed_test.rb +102 -0
  259. data/vendor/plugins/acts_as_indexed/test/database.yml +10 -0
  260. data/vendor/plugins/acts_as_indexed/test/fixtures/post.rb +5 -0
  261. data/vendor/plugins/acts_as_indexed/test/fixtures/posts.yml +31 -0
  262. data/vendor/plugins/acts_as_indexed/test/schema.rb +6 -0
  263. data/vendor/plugins/acts_as_tree/README +26 -0
  264. data/vendor/plugins/acts_as_tree/Rakefile +22 -0
  265. data/vendor/plugins/acts_as_tree/init.rb +1 -0
  266. data/vendor/plugins/acts_as_tree/lib/active_record/acts/tree.rb +141 -0
  267. data/vendor/plugins/acts_as_tree/test/abstract_unit.rb +0 -0
  268. data/vendor/plugins/acts_as_tree/test/acts_as_tree_test.rb +219 -0
  269. data/vendor/plugins/acts_as_tree/test/database.yml +0 -0
  270. data/vendor/plugins/acts_as_tree/test/fixtures/mixin.rb +0 -0
  271. data/vendor/plugins/acts_as_tree/test/fixtures/mixins.yml +0 -0
  272. data/vendor/plugins/acts_as_tree/test/schema.rb +0 -0
  273. data/vendor/plugins/attachment_fu/CHANGELOG +35 -0
  274. data/vendor/plugins/attachment_fu/LICENSE +20 -0
  275. data/vendor/plugins/attachment_fu/README +193 -0
  276. data/vendor/plugins/attachment_fu/Rakefile +22 -0
  277. data/vendor/plugins/attachment_fu/amazon_s3.yml.tpl +17 -0
  278. data/vendor/plugins/attachment_fu/init.rb +16 -0
  279. data/vendor/plugins/attachment_fu/install.rb +7 -0
  280. data/vendor/plugins/attachment_fu/lib/geometry.rb +93 -0
  281. data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/backends/cloud_file_backend.rb +211 -0
  282. data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/backends/db_file_backend.rb +39 -0
  283. data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/backends/file_system_backend.rb +126 -0
  284. data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/backends/s3_backend.rb +394 -0
  285. data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/processors/core_image_processor.rb +59 -0
  286. data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/processors/gd2_processor.rb +54 -0
  287. data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/processors/image_science_processor.rb +61 -0
  288. data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/processors/mini_magick_processor.rb +132 -0
  289. data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/processors/rmagick_processor.rb +57 -0
  290. data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu.rb +514 -0
  291. data/vendor/plugins/attachment_fu/rackspace_cloudfiles.yml.tpl +14 -0
  292. data/vendor/plugins/attachment_fu/test/backends/db_file_test.rb +16 -0
  293. data/vendor/plugins/attachment_fu/test/backends/file_system_test.rb +143 -0
  294. data/vendor/plugins/attachment_fu/test/backends/remote/cloudfiles_test.rb +102 -0
  295. data/vendor/plugins/attachment_fu/test/backends/remote/s3_test.rb +119 -0
  296. data/vendor/plugins/attachment_fu/test/base_attachment_tests.rb +77 -0
  297. data/vendor/plugins/attachment_fu/test/basic_test.rb +70 -0
  298. data/vendor/plugins/attachment_fu/test/database.yml +18 -0
  299. data/vendor/plugins/attachment_fu/test/extra_attachment_test.rb +67 -0
  300. data/vendor/plugins/attachment_fu/test/fixtures/attachment.rb +226 -0
  301. data/vendor/plugins/attachment_fu/test/fixtures/files/fake/rails.png +0 -0
  302. data/vendor/plugins/attachment_fu/test/fixtures/files/foo.txt +1 -0
  303. data/vendor/plugins/attachment_fu/test/fixtures/files/rails.png +0 -0
  304. data/vendor/plugins/attachment_fu/test/geometry_test.rb +108 -0
  305. data/vendor/plugins/attachment_fu/test/processors/core_image_test.rb +37 -0
  306. data/vendor/plugins/attachment_fu/test/processors/gd2_test.rb +31 -0
  307. data/vendor/plugins/attachment_fu/test/processors/image_science_test.rb +31 -0
  308. data/vendor/plugins/attachment_fu/test/processors/mini_magick_test.rb +103 -0
  309. data/vendor/plugins/attachment_fu/test/processors/rmagick_test.rb +255 -0
  310. data/vendor/plugins/attachment_fu/test/schema.rb +134 -0
  311. data/vendor/plugins/attachment_fu/test/test_helper.rb +150 -0
  312. data/vendor/plugins/attachment_fu/test/validation_test.rb +55 -0
  313. data/vendor/plugins/attachment_fu/vendor/red_artisan/core_image/filters/color.rb +27 -0
  314. data/vendor/plugins/attachment_fu/vendor/red_artisan/core_image/filters/effects.rb +31 -0
  315. data/vendor/plugins/attachment_fu/vendor/red_artisan/core_image/filters/perspective.rb +25 -0
  316. data/vendor/plugins/attachment_fu/vendor/red_artisan/core_image/filters/quality.rb +25 -0
  317. data/vendor/plugins/attachment_fu/vendor/red_artisan/core_image/filters/scale.rb +47 -0
  318. data/vendor/plugins/attachment_fu/vendor/red_artisan/core_image/filters/watermark.rb +32 -0
  319. data/vendor/plugins/attachment_fu/vendor/red_artisan/core_image/processor.rb +123 -0
  320. data/vendor/plugins/authentication/README +0 -0
  321. data/vendor/plugins/authentication/Rakefile +0 -0
  322. data/vendor/plugins/authentication/app/controllers/admin/users_controller.rb +67 -0
  323. data/vendor/plugins/authentication/app/controllers/sessions_controller.rb +36 -0
  324. data/vendor/plugins/authentication/app/controllers/users_controller.rb +101 -0
  325. data/vendor/plugins/authentication/app/helpers/sessions_helper.rb +2 -0
  326. data/vendor/plugins/authentication/app/helpers/users_helper.rb +2 -0
  327. data/vendor/plugins/authentication/app/models/user.rb +154 -0
  328. data/vendor/plugins/authentication/app/models/user_mailer.rb +18 -0
  329. data/vendor/plugins/authentication/app/models/user_plugin.rb +5 -0
  330. data/vendor/plugins/authentication/app/views/admin/users/_form.html.erb +38 -0
  331. data/vendor/plugins/authentication/app/views/admin/users/edit.html.erb +1 -0
  332. data/vendor/plugins/authentication/app/views/admin/users/index.html.erb +40 -0
  333. data/vendor/plugins/authentication/app/views/admin/users/new.html.erb +1 -0
  334. data/vendor/plugins/authentication/app/views/sessions/new.html.erb +24 -0
  335. data/vendor/plugins/authentication/app/views/user_mailer/reset_notification.html.erb +6 -0
  336. data/vendor/plugins/authentication/app/views/users/forgot.html.erb +13 -0
  337. data/vendor/plugins/authentication/app/views/users/new.html.erb +28 -0
  338. data/vendor/plugins/authentication/app/views/users/reset.html.erb +18 -0
  339. data/vendor/plugins/authentication/authentication.md +15 -0
  340. data/vendor/plugins/authentication/config/routes.rb +15 -0
  341. data/vendor/plugins/authentication/lib/authenticated_system.rb +115 -0
  342. data/vendor/plugins/authentication/lib/authenticated_test_helper.rb +10 -0
  343. data/vendor/plugins/authentication/rails/init.rb +13 -0
  344. data/vendor/plugins/authentication/test/fixtures/users.yml +19 -0
  345. data/vendor/plugins/authentication/test/functional/admin/base_controller_test.rb +8 -0
  346. data/vendor/plugins/authentication/test/functional/admin/dashboard_controller_test.rb +8 -0
  347. data/vendor/plugins/authentication/test/functional/admin/pages_controller_test.rb +8 -0
  348. data/vendor/plugins/authentication/test/functional/sessions_controller_test.rb +85 -0
  349. data/vendor/plugins/authentication/test/functional/users_controller_test.rb +99 -0
  350. data/vendor/plugins/authentication/test/test_helper.rb +38 -0
  351. data/vendor/plugins/authentication/test/unit/user_mailer_test.rb +31 -0
  352. data/vendor/plugins/authentication/test/unit/user_test.rb +164 -0
  353. data/vendor/plugins/dashboard/app/controllers/admin/dashboard_controller.rb +28 -0
  354. data/vendor/plugins/dashboard/app/helpers/admin/dashboard_helper.rb +19 -0
  355. data/vendor/plugins/dashboard/app/views/admin/dashboard/_recent_activity.html.erb +14 -0
  356. data/vendor/plugins/dashboard/app/views/admin/dashboard/index.html.erb +31 -0
  357. data/vendor/plugins/dashboard/config/routes.rb +5 -0
  358. data/vendor/plugins/dashboard/dashboard.md +22 -0
  359. data/vendor/plugins/dashboard/rails/init.rb +6 -0
  360. data/vendor/plugins/images/app/controllers/admin/images_controller.rb +98 -0
  361. data/vendor/plugins/images/app/helpers/admin/images_helper.rb +23 -0
  362. data/vendor/plugins/images/app/models/image.rb +57 -0
  363. data/vendor/plugins/images/app/views/admin/images/_form.html.erb +31 -0
  364. data/vendor/plugins/images/app/views/admin/images/_grid_view.html.erb +16 -0
  365. data/vendor/plugins/images/app/views/admin/images/_list_view.html.erb +12 -0
  366. data/vendor/plugins/images/app/views/admin/images/_list_view_image.html.erb +16 -0
  367. data/vendor/plugins/images/app/views/admin/images/edit.html.erb +1 -0
  368. data/vendor/plugins/images/app/views/admin/images/index.html.erb +42 -0
  369. data/vendor/plugins/images/app/views/admin/images/insert.html.erb +50 -0
  370. data/vendor/plugins/images/app/views/admin/images/new.html.erb +1 -0
  371. data/vendor/plugins/images/config/routes.rb +5 -0
  372. data/vendor/plugins/images/images.md +53 -0
  373. data/vendor/plugins/images/lib/tasks/images.rake +45 -0
  374. data/vendor/plugins/images/rails/init.rb +14 -0
  375. data/vendor/plugins/inquiries/app/controllers/admin/inquiries_controller.rb +29 -0
  376. data/vendor/plugins/inquiries/app/controllers/admin/inquiry_settings_controller.rb +16 -0
  377. data/vendor/plugins/inquiries/app/controllers/inquiries_controller.rb +41 -0
  378. data/vendor/plugins/inquiries/app/helpers/inquiries_helper.rb +13 -0
  379. data/vendor/plugins/inquiries/app/models/inquiry.rb +16 -0
  380. data/vendor/plugins/inquiries/app/models/inquiry_mailer.rb +20 -0
  381. data/vendor/plugins/inquiries/app/models/inquiry_setting.rb +11 -0
  382. data/vendor/plugins/inquiries/app/views/admin/inquiries/_inquiry.html.erb +20 -0
  383. data/vendor/plugins/inquiries/app/views/admin/inquiries/index.html.erb +43 -0
  384. data/vendor/plugins/inquiries/app/views/admin/inquiries/show.html.erb +62 -0
  385. data/vendor/plugins/inquiries/app/views/admin/inquiry_settings/_confirmation_email_form.html.erb +46 -0
  386. data/vendor/plugins/inquiries/app/views/admin/inquiry_settings/_notification_recipients_form.html.erb +18 -0
  387. data/vendor/plugins/inquiries/app/views/admin/inquiry_settings/edit.html.erb +5 -0
  388. data/vendor/plugins/inquiries/app/views/admin/inquiry_settings/index.html.erb +31 -0
  389. data/vendor/plugins/inquiries/app/views/inquiries/new.html.erb +31 -0
  390. data/vendor/plugins/inquiries/app/views/inquiries/thank_you.html.erb +1 -0
  391. data/vendor/plugins/inquiries/app/views/inquiry_mailer/confirmation.html.erb +1 -0
  392. data/vendor/plugins/inquiries/app/views/inquiry_mailer/notification.html.erb +18 -0
  393. data/vendor/plugins/inquiries/config/routes.rb +8 -0
  394. data/vendor/plugins/inquiries/inquiries.md +31 -0
  395. data/vendor/plugins/inquiries/rails/init.rb +13 -0
  396. data/vendor/plugins/news/app/controllers/admin/news_items_controller.rb +5 -0
  397. data/vendor/plugins/news/app/controllers/news_items_controller.rb +20 -0
  398. data/vendor/plugins/news/app/models/news_item.rb +22 -0
  399. data/vendor/plugins/news/app/views/admin/news_items/_form.html.erb +19 -0
  400. data/vendor/plugins/news/app/views/admin/news_items/_news_item.html.erb +15 -0
  401. data/vendor/plugins/news/app/views/admin/news_items/edit.html.erb +1 -0
  402. data/vendor/plugins/news/app/views/admin/news_items/index.html.erb +31 -0
  403. data/vendor/plugins/news/app/views/admin/news_items/new.html.erb +1 -0
  404. data/vendor/plugins/news/app/views/news_items/_recent_posts.html.erb +8 -0
  405. data/vendor/plugins/news/app/views/news_items/index.html.erb +17 -0
  406. data/vendor/plugins/news/app/views/news_items/index.rss.builder +26 -0
  407. data/vendor/plugins/news/app/views/news_items/show.html.erb +13 -0
  408. data/vendor/plugins/news/config/routes.rb +7 -0
  409. data/vendor/plugins/news/news.md +20 -0
  410. data/vendor/plugins/news/rails/init.rb +11 -0
  411. data/vendor/plugins/pages/app/controllers/admin/page_dialogs_controller.rb +49 -0
  412. data/vendor/plugins/pages/app/controllers/admin/page_parts_controller.rb +20 -0
  413. data/vendor/plugins/pages/app/controllers/admin/pages_controller.rb +18 -0
  414. data/vendor/plugins/pages/app/controllers/pages_controller.rb +22 -0
  415. data/vendor/plugins/pages/app/helpers/pages_helper.rb +2 -0
  416. data/vendor/plugins/pages/app/models/page.rb +162 -0
  417. data/vendor/plugins/pages/app/models/page_part.rb +10 -0
  418. data/vendor/plugins/pages/app/presenters/page_presenter.rb +3 -0
  419. data/vendor/plugins/pages/app/views/admin/page_dialogs/_page_link.html.erb +5 -0
  420. data/vendor/plugins/pages/app/views/admin/page_dialogs/link_to.html.erb +149 -0
  421. data/vendor/plugins/pages/app/views/admin/pages/_form.html.erb +140 -0
  422. data/vendor/plugins/pages/app/views/admin/pages/_list.html.erb +29 -0
  423. data/vendor/plugins/pages/app/views/admin/pages/_page_part_field.html.erb +4 -0
  424. data/vendor/plugins/pages/app/views/admin/pages/_sortable_list.html.erb +4 -0
  425. data/vendor/plugins/pages/app/views/admin/pages/edit.html.erb +1 -0
  426. data/vendor/plugins/pages/app/views/admin/pages/index.html.erb +41 -0
  427. data/vendor/plugins/pages/app/views/admin/pages/new.html.erb +1 -0
  428. data/vendor/plugins/pages/app/views/pages/home.html.erb +1 -0
  429. data/vendor/plugins/pages/app/views/pages/show.html.erb +1 -0
  430. data/vendor/plugins/pages/config/routes.rb +11 -0
  431. data/vendor/plugins/pages/pages.md +146 -0
  432. data/vendor/plugins/pages/rails/init.rb +13 -0
  433. data/vendor/plugins/rails_indexes/MIT-LICENSE +20 -0
  434. data/vendor/plugins/rails_indexes/README.textile +46 -0
  435. data/vendor/plugins/rails_indexes/Rakefile +23 -0
  436. data/vendor/plugins/rails_indexes/lib/indexer.rb +305 -0
  437. data/vendor/plugins/rails_indexes/tasks/indexer.rake +18 -0
  438. data/vendor/plugins/rails_indexes/test/fixtures/app/controllers/users_controller.rb +8 -0
  439. data/vendor/plugins/rails_indexes/test/fixtures/app/models/address.rb +5 -0
  440. data/vendor/plugins/rails_indexes/test/fixtures/app/models/company.rb +11 -0
  441. data/vendor/plugins/rails_indexes/test/fixtures/app/models/country.rb +4 -0
  442. data/vendor/plugins/rails_indexes/test/fixtures/app/models/freelancer.rb +3 -0
  443. data/vendor/plugins/rails_indexes/test/fixtures/app/models/gift.rb +10 -0
  444. data/vendor/plugins/rails_indexes/test/fixtures/app/models/god.rb +3 -0
  445. data/vendor/plugins/rails_indexes/test/fixtures/app/models/user.rb +17 -0
  446. data/vendor/plugins/rails_indexes/test/fixtures/app/sweepers/user_sweeper.rb +9 -0
  447. data/vendor/plugins/rails_indexes/test/fixtures/schema.rb +46 -0
  448. data/vendor/plugins/rails_indexes/test/rails_indexes_test.rb +83 -0
  449. data/vendor/plugins/rails_indexes/test/test_helper.rb +30 -0
  450. data/vendor/plugins/refinery/app/controllers/admin/refinery_core_controller.rb +14 -0
  451. data/vendor/plugins/refinery/app/views/admin/_head.html.erb +11 -0
  452. data/vendor/plugins/refinery/app/views/admin/_menu.html.erb +23 -0
  453. data/vendor/plugins/refinery/app/views/layouts/admin.html.erb +34 -0
  454. data/vendor/plugins/refinery/app/views/layouts/application.html.erb +20 -0
  455. data/vendor/plugins/refinery/app/views/shared/_content_page.html.erb +36 -0
  456. data/vendor/plugins/refinery/app/views/shared/_footer.html.erb +5 -0
  457. data/vendor/plugins/refinery/app/views/shared/_google_analytics.html.erb +13 -0
  458. data/vendor/plugins/refinery/app/views/shared/_head.html.erb +16 -0
  459. data/vendor/plugins/refinery/app/views/shared/_header.html.erb +4 -0
  460. data/vendor/plugins/refinery/app/views/shared/_ie6check.html.erb +11 -0
  461. data/vendor/plugins/refinery/app/views/shared/_menu.html.erb +8 -0
  462. data/vendor/plugins/refinery/app/views/shared/_menu_branch.html.erb +23 -0
  463. data/vendor/plugins/refinery/app/views/shared/_message.html.erb +5 -0
  464. data/vendor/plugins/refinery/app/views/shared/_submenu.html.erb +5 -0
  465. data/vendor/plugins/refinery/app/views/shared/_submenu_branch.html.erb +10 -0
  466. data/vendor/plugins/refinery/app/views/shared/admin/_continue_editing.html.erb +4 -0
  467. data/vendor/plugins/refinery/app/views/shared/admin/_error_messages_for.html.erb +2 -0
  468. data/vendor/plugins/refinery/app/views/shared/admin/_form_actions.html.erb +13 -0
  469. data/vendor/plugins/refinery/app/views/shared/admin/_head_before_javascript_libraries.html.erb +0 -0
  470. data/vendor/plugins/refinery/app/views/shared/admin/_image_picker.html.erb +48 -0
  471. data/vendor/plugins/refinery/app/views/shared/admin/_make_sortable.html.erb +10 -0
  472. data/vendor/plugins/refinery/app/views/shared/admin/_resource_picker.html.erb +57 -0
  473. data/vendor/plugins/refinery/app/views/shared/admin/_search.html.erb +5 -0
  474. data/vendor/plugins/refinery/app/views/shared/admin/_sortable_list.html.erb +9 -0
  475. data/vendor/plugins/refinery/app/views/welcome.html.erb +13 -0
  476. data/vendor/plugins/refinery/app/views/wymiframe.html.erb +8 -0
  477. data/vendor/plugins/refinery/config/routes.rb +10 -0
  478. data/vendor/plugins/refinery/crud.md +197 -0
  479. data/vendor/plugins/refinery/lib/crud.rb +222 -0
  480. data/vendor/plugins/refinery/lib/generators/refinery/README +29 -0
  481. data/vendor/plugins/refinery/lib/generators/refinery/Rakefile +12 -0
  482. data/vendor/plugins/refinery/lib/generators/refinery/USAGE +2 -0
  483. data/vendor/plugins/refinery/lib/generators/refinery/install.rb +2 -0
  484. data/vendor/plugins/refinery/lib/generators/refinery/refinery_generator.rb +65 -0
  485. data/vendor/plugins/refinery/lib/generators/refinery/templates/config/routes.rb +7 -0
  486. data/vendor/plugins/refinery/lib/generators/refinery/templates/controller.rb +5 -0
  487. data/vendor/plugins/refinery/lib/generators/refinery/templates/migration.rb +44 -0
  488. data/vendor/plugins/refinery/lib/generators/refinery/templates/model.rb +9 -0
  489. data/vendor/plugins/refinery/lib/generators/refinery/templates/public_controller.rb +30 -0
  490. data/vendor/plugins/refinery/lib/generators/refinery/templates/rails/init.rb +10 -0
  491. data/vendor/plugins/refinery/lib/generators/refinery/templates/views/admin/_form.html.erb +14 -0
  492. data/vendor/plugins/refinery/lib/generators/refinery/templates/views/admin/_singular_name.html.erb +15 -0
  493. data/vendor/plugins/refinery/lib/generators/refinery/templates/views/admin/_sortable_list.html.erb +2 -0
  494. data/vendor/plugins/refinery/lib/generators/refinery/templates/views/admin/edit.html.erb +1 -0
  495. data/vendor/plugins/refinery/lib/generators/refinery/templates/views/admin/index.html.erb +42 -0
  496. data/vendor/plugins/refinery/lib/generators/refinery/templates/views/admin/new.html.erb +1 -0
  497. data/vendor/plugins/refinery/lib/generators/refinery/templates/views/index.html.erb +11 -0
  498. data/vendor/plugins/refinery/lib/generators/refinery/templates/views/show.html.erb +25 -0
  499. data/vendor/plugins/refinery/lib/refinery/activity.rb +37 -0
  500. data/vendor/plugins/refinery/lib/refinery/admin_base_controller.rb +56 -0
  501. data/vendor/plugins/refinery/lib/refinery/application_controller.rb +80 -0
  502. data/vendor/plugins/refinery/lib/refinery/application_helper.rb +112 -0
  503. data/vendor/plugins/refinery/lib/refinery/attachment_fu_patch.rb +16 -0
  504. data/vendor/plugins/refinery/lib/refinery/base_presenter.rb +27 -0
  505. data/vendor/plugins/refinery/lib/refinery/form_helpers.rb +28 -0
  506. data/vendor/plugins/refinery/lib/refinery/html_truncation_helper.rb +110 -0
  507. data/vendor/plugins/refinery/lib/refinery/initializer.rb +80 -0
  508. data/vendor/plugins/refinery/lib/refinery/link_renderer.rb +45 -0
  509. data/vendor/plugins/refinery/lib/refinery/plugin.rb +47 -0
  510. data/vendor/plugins/refinery/lib/refinery/plugins.rb +53 -0
  511. data/vendor/plugins/refinery/lib/refinery.rb +11 -0
  512. data/vendor/plugins/refinery/lib/tasks/doc.rake +29 -0
  513. data/vendor/plugins/refinery/lib/tasks/refinery.rake +34 -0
  514. data/vendor/plugins/refinery/lib/tasks/yard.rake +32 -0
  515. data/vendor/plugins/refinery/plugins.md +205 -0
  516. data/vendor/plugins/refinery/rails/init.rb +14 -0
  517. data/vendor/plugins/refinery_dialogs/app/controllers/admin/dialogs_controller.rb +26 -0
  518. data/vendor/plugins/refinery_dialogs/app/views/admin/dialogs/show.html.erb +20 -0
  519. data/vendor/plugins/refinery_dialogs/app/views/layouts/admin_dialog.html.erb +24 -0
  520. data/vendor/plugins/refinery_dialogs/config/routes.rb +5 -0
  521. data/vendor/plugins/refinery_dialogs/rails/init.rb +7 -0
  522. data/vendor/plugins/refinery_settings/app/controllers/admin/refinery_settings_controller.rb +5 -0
  523. data/vendor/plugins/refinery_settings/app/models/refinery_setting.rb +88 -0
  524. data/vendor/plugins/refinery_settings/app/views/admin/refinery_settings/_form.html.erb +17 -0
  525. data/vendor/plugins/refinery_settings/app/views/admin/refinery_settings/_refinery_setting.html.erb +12 -0
  526. data/vendor/plugins/refinery_settings/app/views/admin/refinery_settings/edit.html.erb +4 -0
  527. data/vendor/plugins/refinery_settings/app/views/admin/refinery_settings/index.html.erb +27 -0
  528. data/vendor/plugins/refinery_settings/app/views/admin/refinery_settings/new.html.erb +1 -0
  529. data/vendor/plugins/refinery_settings/config/routes.rb +5 -0
  530. data/vendor/plugins/refinery_settings/rails/init.rb +13 -0
  531. data/vendor/plugins/refinery_settings/settings.md +55 -0
  532. data/vendor/plugins/resources/app/controllers/admin/resources_controller.rb +94 -0
  533. data/vendor/plugins/resources/app/models/resource.rb +55 -0
  534. data/vendor/plugins/resources/app/views/admin/resources/_form.html.erb +33 -0
  535. data/vendor/plugins/resources/app/views/admin/resources/_resource.html.erb +14 -0
  536. data/vendor/plugins/resources/app/views/admin/resources/edit.html.erb +1 -0
  537. data/vendor/plugins/resources/app/views/admin/resources/index.html.erb +41 -0
  538. data/vendor/plugins/resources/app/views/admin/resources/insert.html.erb +67 -0
  539. data/vendor/plugins/resources/app/views/admin/resources/new.html.erb +1 -0
  540. data/vendor/plugins/resources/config/routes.rb +9 -0
  541. data/vendor/plugins/resources/rails/init.rb +12 -0
  542. data/vendor/plugins/resources/resources.md +9 -0
  543. data/vendor/plugins/themes/app/helpers/themes_helper.rb +25 -0
  544. data/vendor/plugins/themes/lib/theme_server.rb +30 -0
  545. data/vendor/plugins/themes/rails/init.rb +24 -0
  546. data/vendor/plugins/themes/themes.md +113 -0
  547. metadata +625 -0
File without changes
File without changes
@@ -0,0 +1,35 @@
1
+ * Apr 17 2008 *
2
+ * amazon_s3.yml is now passed through ERB before being passed to AWS::S3 [François Beausoleil]
3
+
4
+ * Mar 22 2008 *
5
+ * Some tweaks to support Rails 2.0 and Rails 2.1 due to ActiveSupport::Callback changes.
6
+ Thanks to http://blog.methodmissing.com/2008/1/19/edge-callback-refactorings-attachment_fu/
7
+
8
+ * Feb. 26, 2008 *
9
+ * remove breakpoint from test_helper, makes test suite crazy (at least Rails 2+) [Rob Sanheim]
10
+ * make S3 test really optional [Rob Sanheim]
11
+
12
+ * Nov 27, 2007 *
13
+ * Handle properly ImageScience thumbnails resized from a gif file [Matt Aimonetti]
14
+ * Save thumbnails file size properly when using ImageScience [Matt Aimonetti]
15
+ * fixed s3 config file loading with latest versions of Rails [Matt Aimonetti]
16
+
17
+ * April 2, 2007 *
18
+
19
+ * don't copy the #full_filename to the default #temp_paths array if it doesn't exist
20
+ * add default ID partitioning for attachments
21
+ * add #binmode call to Tempfile (note: ruby should be doing this!) [Eric Beland]
22
+ * Check for current type of :thumbnails option.
23
+ * allow customization of the S3 configuration file path with the :s3_config_path option.
24
+ * Don't try to remove thumbnails if there aren't any. Closes #3 [ben stiglitz]
25
+
26
+ * BC * (before changelog)
27
+
28
+ * add default #temp_paths entry [mattly]
29
+ * add MiniMagick support to attachment_fu [Isacc]
30
+ * update #destroy_file to clear out any empty directories too [carlivar]
31
+ * fix references to S3Backend module [Hunter Hillegas]
32
+ * make #current_data public with db_file and s3 backends [ebryn]
33
+ * oops, actually svn add the files for s3 backend. [Jeffrey Hardy]
34
+ * experimental s3 support, egad, no tests.... [Jeffrey Hardy]
35
+ * doh, fix a few bad references to ActsAsAttachment [sixty4bit]
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2009 rick olson
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,193 @@
1
+ attachment-fu
2
+ =============
3
+
4
+ attachment_fu is a plugin by Rick Olson (aka technoweenie <http://techno-weenie.net>) and is the successor to acts_as_attachment. To get a basic run-through of its capabilities, check out Mike Clark's tutorial <http://clarkware.com/cgi/blosxom/2007/02/24#FileUploadFu>.
5
+
6
+
7
+ attachment_fu functionality
8
+ ===========================
9
+
10
+ attachment_fu facilitates file uploads in Ruby on Rails. There are a few storage options for the actual file data, but the plugin always at a minimum stores metadata for each file in the database.
11
+
12
+ There are four storage options for files uploaded through attachment_fu:
13
+ File system
14
+ Database file
15
+ Amazon S3
16
+ Rackspace (Mosso) Cloud Files
17
+
18
+ Each method of storage many options associated with it that will be covered in the following section. Something to note, however, is that the Amazon S3 storage requires you to modify config/amazon_s3.yml, the Rackspace Cloud Files storage requires you to modify config/rackspace_cloudfiles.yml, and the Database file storage requires an extra table.
19
+
20
+
21
+ attachment_fu models
22
+ ====================
23
+
24
+ For all three of these storage options a table of metadata is required. This table will contain information about the file (hence the 'meta') and its location. This table has no restrictions on naming, unlike the extra table required for database storage, which must have a table name of db_files (and by convention a model of DbFile).
25
+
26
+ In the model there are two methods made available by this plugins: has_attachment and validates_as_attachment.
27
+
28
+ has_attachment(options = {})
29
+ This method accepts the options in a hash:
30
+ :content_type # Allowed content types.
31
+ # Allows all by default. Use :image to allow all standard image types.
32
+ :min_size # Minimum size allowed.
33
+ # 1 byte is the default.
34
+ :max_size # Maximum size allowed.
35
+ # 1.megabyte is the default.
36
+ :size # Range of sizes allowed.
37
+ # (1..1.megabyte) is the default. This overrides the :min_size and :max_size options.
38
+ :resize_to # Used by RMagick to resize images.
39
+ # Pass either an array of width/height, or a geometry string.
40
+ :thumbnails # Specifies a set of thumbnails to generate.
41
+ # This accepts a hash of filename suffixes and RMagick resizing options.
42
+ # This option need only be included if you want thumbnailing.
43
+ :thumbnail_class # Set which model class to use for thumbnails.
44
+ # This current attachment class is used by default.
45
+ :path_prefix # Path to store the uploaded files in.
46
+ # Uses public/#{table_name} by default for the filesystem, and just #{table_name} for the S3 and Cloud Files backend.
47
+ # Setting this sets the :storage to :file_system.
48
+ :partition # Whether to partiton files in directories like /0000/0001/image.jpg. Default is true. Only applicable to the :file_system backend.
49
+ :storage # Specifies the storage system to use..
50
+ # Defaults to :db_file. Options are :file_system, :db_file, :s3, and :cloud_files.
51
+ :cloudfront # If using S3 for storage, this option allows for serving the files via Amazon CloudFront.
52
+ # Defaults to false.
53
+ :processor # Sets the image processor to use for resizing of the attached image.
54
+ # Options include ImageScience, Rmagick, and MiniMagick. Default is whatever is installed.
55
+ :uuid_primary_key # If your model's primary key is a 128-bit UUID in hexadecimal format, then set this to true.
56
+ :association_options # attachment_fu automatically defines associations with thumbnails with has_many and belongs_to. If there are any additional options that you want to pass to these methods, then specify them here.
57
+
58
+
59
+ Examples:
60
+ has_attachment :max_size => 1.kilobyte
61
+ has_attachment :size => 1.megabyte..2.megabytes
62
+ has_attachment :content_type => 'application/pdf'
63
+ has_attachment :content_type => ['application/pdf', 'application/msword', 'text/plain']
64
+ has_attachment :content_type => :image, :resize_to => [50,50]
65
+ has_attachment :content_type => ['application/pdf', :image], :resize_to => 'x50'
66
+ has_attachment :thumbnails => { :thumb => [50, 50], :geometry => 'x50' }
67
+ has_attachment :storage => :file_system, :path_prefix => 'public/files'
68
+ has_attachment :storage => :file_system, :path_prefix => 'public/files',
69
+ :content_type => :image, :resize_to => [50,50], :partition => false
70
+ has_attachment :storage => :file_system, :path_prefix => 'public/files',
71
+ :thumbnails => { :thumb => [50, 50], :geometry => 'x50' }
72
+ has_attachment :storage => :s3
73
+ has_attachment :store => :s3, :cloudfront => true
74
+ has_attachment :storage => :cloud_files
75
+
76
+ validates_as_attachment
77
+ This method prevents files outside of the valid range (:min_size to :max_size, or the :size range) from being saved. It does not however, halt the upload of such files. They will be uploaded into memory regardless of size before validation.
78
+
79
+ Example:
80
+ validates_as_attachment
81
+
82
+
83
+ attachment_fu migrations
84
+ ========================
85
+
86
+ Fields for attachment_fu metadata tables...
87
+ in general:
88
+ size, :integer # file size in bytes
89
+ content_type, :string # mime type, ex: application/mp3
90
+ filename, :string # sanitized filename
91
+ that reference images:
92
+ height, :integer # in pixels
93
+ width, :integer # in pixels
94
+ that reference images that will be thumbnailed:
95
+ parent_id, :integer # id of parent image (on the same table, a self-referencing foreign-key).
96
+ # Only populated if the current object is a thumbnail.
97
+ thumbnail, :string # the 'type' of thumbnail this attachment record describes.
98
+ # Only populated if the current object is a thumbnail.
99
+ # Usage:
100
+ # [ In Model 'Avatar' ]
101
+ # has_attachment :content_type => :image,
102
+ # :storage => :file_system,
103
+ # :max_size => 500.kilobytes,
104
+ # :resize_to => '320x200>',
105
+ # :thumbnails => { :small => '10x10>',
106
+ # :thumb => '100x100>' }
107
+ # [ Elsewhere ]
108
+ # @user.avatar.thumbnails.first.thumbnail #=> 'small'
109
+ that reference files stored in the database (:db_file):
110
+ db_file_id, :integer # id of the file in the database (foreign key)
111
+
112
+ Field for attachment_fu db_files table:
113
+ data, :binary # binary file data, for use in database file storage
114
+
115
+
116
+ attachment_fu views
117
+ ===================
118
+
119
+ There are two main views tasks that will be directly affected by attachment_fu: upload forms and displaying uploaded images.
120
+
121
+ There are two parts of the upload form that differ from typical usage.
122
+ 1. Include ':multipart => true' in the html options of the form_for tag.
123
+ Example:
124
+ <% form_for(:attachment_metadata, :url => { :action => "create" }, :html => { :multipart => true }) do |form| %>
125
+
126
+ 2. Use the file_field helper with :uploaded_data as the field name.
127
+ Example:
128
+ <%= form.file_field :uploaded_data %>
129
+
130
+ Displaying uploaded images is made easy by the public_filename method of the ActiveRecord attachment objects using file system, s3, and Cloud Files storage.
131
+
132
+ public_filename(thumbnail = nil)
133
+ Returns the public path to the file. If a thumbnail prefix is specified it will return the public file path to the corresponding thumbnail.
134
+ Examples:
135
+ attachment_obj.public_filename #=> /attachments/2/file.jpg
136
+ attachment_obj.public_filename(:thumb) #=> /attachments/2/file_thumb.jpg
137
+ attachment_obj.public_filename(:small) #=> /attachments/2/file_small.jpg
138
+
139
+ When serving files from database storage, doing more than simply downloading the file is beyond the scope of this document.
140
+
141
+
142
+ attachment_fu controllers
143
+ =========================
144
+
145
+ There are two considerations to take into account when using attachment_fu in controllers.
146
+
147
+ The first is when the files have no publicly accessible path and need to be downloaded through an action.
148
+
149
+ Example:
150
+ def readme
151
+ send_file '/path/to/readme.txt', :type => 'plain/text', :disposition => 'inline'
152
+ end
153
+
154
+ See the possible values for send_file for reference.
155
+
156
+
157
+ The second is when saving the file when submitted from a form.
158
+ Example in view:
159
+ <%= form.file_field :attachable, :uploaded_data %>
160
+
161
+ Example in controller:
162
+ def create
163
+ @attachable_file = AttachmentMetadataModel.new(params[:attachable])
164
+ if @attachable_file.save
165
+ flash[:notice] = 'Attachment was successfully created.'
166
+ redirect_to attachable_url(@attachable_file)
167
+ else
168
+ render :action => :new
169
+ end
170
+ end
171
+
172
+ attachement_fu scripting
173
+ ====================================
174
+
175
+ You may wish to import a large number of images or attachments.
176
+ The following example shows how to upload a file from a script.
177
+
178
+ #!/usr/bin/env ./script/runner
179
+
180
+ # required to use ActionController::TestUploadedFile
181
+ require 'action_controller'
182
+ require 'action_controller/test_process.rb'
183
+
184
+ path = "./public/images/x.jpg"
185
+
186
+ # mimetype is a string like "image/jpeg". One way to get the mimetype for a given file on a UNIX system
187
+ # mimetype = `file -ib #{path}`.gsub(/\n/,"")
188
+
189
+ mimetype = "image/jpeg"
190
+
191
+ # This will "upload" the file at path and create the new model.
192
+ @attachable = AttachmentMetadataModel.new(:uploaded_data => ActionController::TestUploadedFile.new(path, mimetype))
193
+ @attachable.save
@@ -0,0 +1,22 @@
1
+ require 'rake'
2
+ require 'rake/testtask'
3
+ require 'rake/rdoctask'
4
+
5
+ desc 'Default: run unit tests.'
6
+ task :default => :test
7
+
8
+ desc 'Test the attachment_fu plugin.'
9
+ Rake::TestTask.new(:test) do |t|
10
+ t.libs << 'lib'
11
+ t.pattern = 'test/**/*_test.rb'
12
+ t.verbose = true
13
+ end
14
+
15
+ desc 'Generate documentation for the attachment_fu plugin.'
16
+ Rake::RDocTask.new(:rdoc) do |rdoc|
17
+ rdoc.rdoc_dir = 'rdoc'
18
+ rdoc.title = 'ActsAsAttachment'
19
+ rdoc.options << '--line-numbers --inline-source'
20
+ rdoc.rdoc_files.include('README')
21
+ rdoc.rdoc_files.include('lib/**/*.rb')
22
+ end
@@ -0,0 +1,17 @@
1
+ development:
2
+ bucket_name: appname_development
3
+ access_key_id:
4
+ secret_access_key:
5
+ distribution_domain: XXXX.cloudfront.net
6
+
7
+ test:
8
+ bucket_name: appname_test
9
+ access_key_id:
10
+ secret_access_key:
11
+ distribution_domain: XXXX.cloudfront.net
12
+
13
+ production:
14
+ bucket_name: appname
15
+ access_key_id:
16
+ secret_access_key:
17
+ distribution_domain: XXXX.cloudfront.net
@@ -0,0 +1,16 @@
1
+ require 'tempfile'
2
+
3
+ Tempfile.class_eval do
4
+ # overwrite so tempfiles use the extension of the basename. important for rmagick and image science
5
+ def make_tmpname(basename, n)
6
+ ext = nil
7
+ sprintf("%s%d-%d%s", basename.to_s.gsub(/\.\w+$/) { |s| ext = s; '' }, $$, n, ext)
8
+ end
9
+ end
10
+
11
+ require 'geometry'
12
+ ActiveRecord::Base.send(:extend, Technoweenie::AttachmentFu::ActMethods)
13
+ Technoweenie::AttachmentFu.tempfile_path = ATTACHMENT_FU_TEMPFILE_PATH if Object.const_defined?(:ATTACHMENT_FU_TEMPFILE_PATH)
14
+ FileUtils.mkdir_p Technoweenie::AttachmentFu.tempfile_path
15
+
16
+ $:.unshift(File.dirname(__FILE__) + '/vendor')
@@ -0,0 +1,7 @@
1
+ require 'fileutils'
2
+
3
+ s3_config = File.dirname(__FILE__) + '/../../../config/amazon_s3.yml'
4
+ FileUtils.cp File.dirname(__FILE__) + '/amazon_s3.yml.tpl', s3_config unless File.exist?(s3_config)
5
+ cloudfiles_config = File.dirname(__FILE__) + '/../../../config/rackspace_cloudfiles.yml'
6
+ FileUtils.cp File.dirname(__FILE__) + '/rackspace_cloudfiles.yml.tpl', cloudfiles_config unless File.exist?(cloudfiles_config)
7
+ puts IO.read(File.join(File.dirname(__FILE__), 'README'))
@@ -0,0 +1,93 @@
1
+ # This Geometry class was yanked from RMagick. However, it lets ImageMagick handle the actual change_geometry.
2
+ # Use #new_dimensions_for to get new dimensons
3
+ # Used so I can use spiffy RMagick geometry strings with ImageScience
4
+ class Geometry
5
+ # ! and @ are removed until support for them is added
6
+ FLAGS = ['', '%', '<', '>']#, '!', '@']
7
+ RFLAGS = { '%' => :percent,
8
+ '!' => :aspect,
9
+ '<' => :>,
10
+ '>' => :<,
11
+ '@' => :area }
12
+
13
+ attr_accessor :width, :height, :x, :y, :flag
14
+
15
+ def initialize(width=nil, height=nil, x=nil, y=nil, flag=nil)
16
+ # Support floating-point width and height arguments so Geometry
17
+ # objects can be used to specify Image#density= arguments.
18
+ raise ArgumentError, "width must be >= 0: #{width}" if width < 0
19
+ raise ArgumentError, "height must be >= 0: #{height}" if height < 0
20
+ @width = width.to_f
21
+ @height = height.to_f
22
+ @x = x.to_i
23
+ @y = y.to_i
24
+ @flag = flag
25
+ end
26
+
27
+ # Construct an object from a geometry string
28
+ RE = /\A(\d*)(?:x(\d+)?)?([-+]\d+)?([-+]\d+)?([%!<>@]?)\Z/
29
+
30
+ def self.from_s(str)
31
+ raise(ArgumentError, "no geometry string specified") unless str
32
+
33
+ if m = RE.match(str)
34
+ new(m[1].to_i, m[2].to_i, m[3].to_i, m[4].to_i, RFLAGS[m[5]])
35
+ else
36
+ raise ArgumentError, "invalid geometry format"
37
+ end
38
+ end
39
+
40
+ # Convert object to a geometry string
41
+ def to_s
42
+ str = ''
43
+ str << "%g" % @width if @width > 0
44
+ str << 'x' if (@width > 0 || @height > 0)
45
+ str << "%g" % @height if @height > 0
46
+ str << "%+d%+d" % [@x, @y] if (@x != 0 || @y != 0)
47
+ str << FLAGS[@flag.to_i]
48
+ end
49
+
50
+ # attempts to get new dimensions for the current geometry string given these old dimensions.
51
+ # This doesn't implement the aspect flag (!) or the area flag (@). PDI
52
+ def new_dimensions_for(orig_width, orig_height)
53
+ new_width = orig_width
54
+ new_height = orig_height
55
+
56
+ case @flag
57
+ when :percent
58
+ scale_x = @width.zero? ? 100 : @width
59
+ scale_y = @height.zero? ? @width : @height
60
+ new_width = scale_x.to_f * (orig_width.to_f / 100.0)
61
+ new_height = scale_y.to_f * (orig_height.to_f / 100.0)
62
+ when :<, :>, nil
63
+ scale_factor =
64
+ if new_width.zero? || new_height.zero?
65
+ 1.0
66
+ else
67
+ if @width.nonzero? && @height.nonzero?
68
+ [@width.to_f / new_width.to_f, @height.to_f / new_height.to_f].min
69
+ else
70
+ @width.nonzero? ? (@width.to_f / new_width.to_f) : (@height.to_f / new_height.to_f)
71
+ end
72
+ end
73
+ new_width = scale_factor * new_width.to_f
74
+ new_height = scale_factor * new_height.to_f
75
+ new_width = orig_width if @flag && orig_width.send(@flag, new_width)
76
+ new_height = orig_height if @flag && orig_height.send(@flag, new_height)
77
+ end
78
+
79
+ [new_width, new_height].collect! { |v| [v.round, 1].max }
80
+ end
81
+ end
82
+
83
+ class Array
84
+ # allows you to get new dimensions for the current array of dimensions with a given geometry string
85
+ #
86
+ # [50, 64] / '40>' # => [40, 51]
87
+ def /(geometry)
88
+ raise ArgumentError, "Only works with a [width, height] pair" if size != 2
89
+ raise ArgumentError, "Must pass a valid geometry string or object" unless geometry.is_a?(String) || geometry.is_a?(Geometry)
90
+ geometry = Geometry.from_s(geometry) if geometry.is_a?(String)
91
+ geometry.new_dimensions_for first, last
92
+ end
93
+ end
@@ -0,0 +1,211 @@
1
+ module Technoweenie # :nodoc:
2
+ module AttachmentFu # :nodoc:
3
+ module Backends
4
+ # = CloudFiles Storage Backend
5
+ #
6
+ # Enables use of {Rackspace Cloud Files}[http://www.mosso.com/cloudfiles.jsp] as a storage mechanism
7
+ #
8
+ # Based heavily on the Amazon S3 backend.
9
+ #
10
+ # == Requirements
11
+ #
12
+ # Requires the {Cloud Files Gem}[http://www.mosso.com/cloudfiles.jsp] by Rackspace
13
+ #
14
+ # == Configuration
15
+ #
16
+ # Configuration is done via <tt>RAILS_ROOT/config/rackspace_cloudfiles.yml</tt> and is loaded according to the <tt>RAILS_ENV</tt>.
17
+ # The minimum connection options that you must specify are a container name, your Mosso login name and your Mosso API key.
18
+ # You can sign up for Cloud Files and get access keys by visiting https://www.mosso.com/buy.htm
19
+ #
20
+ # Example configuration (RAILS_ROOT/config/rackspace_cloudfiles.yml)
21
+ #
22
+ # development:
23
+ # container_name: appname_development
24
+ # username: <your key>
25
+ # api_key: <your key>
26
+ #
27
+ # test:
28
+ # container_name: appname_test
29
+ # username: <your key>
30
+ # api_key: <your key>
31
+ #
32
+ # production:
33
+ # container_name: appname
34
+ # username: <your key>
35
+ # apik_key: <your key>
36
+ #
37
+ # You can change the location of the config path by passing a full path to the :cloudfiles_config_path option.
38
+ #
39
+ # has_attachment :storage => :cloud_files, :cloudfiles_config_path => (RAILS_ROOT + '/config/mosso.yml')
40
+ #
41
+ # === Required configuration parameters
42
+ #
43
+ # * <tt>:username</tt> - The username for your Rackspace Cloud (Mosso) account. Provided by Rackspace.
44
+ # * <tt>:secret_access_key</tt> - The api key for your Rackspace Cloud account. Provided by Rackspace.
45
+ # * <tt>:container_name</tt> - The name of a container in your Cloud Files account.
46
+ #
47
+ # If any of these required arguments is missing, a AuthenticationException will be raised from CloudFiles::Connection.
48
+ #
49
+ # == Usage
50
+ #
51
+ # To specify Cloud Files as the storage mechanism for a model, set the acts_as_attachment <tt>:storage</tt> option to <tt>:cloud_files/tt>.
52
+ #
53
+ # class Photo < ActiveRecord::Base
54
+ # has_attachment :storage => :cloud_files
55
+ # end
56
+ #
57
+ # === Customizing the path
58
+ #
59
+ # By default, files are prefixed using a pseudo hierarchy in the form of <tt>:table_name/:id</tt>, which results
60
+ # in Cloud Files object names (and urls) that look like: http://:server/:container_name/:table_name/:id/:filename with :table_name
61
+ # representing the customizable portion of the path. You can customize this prefix using the <tt>:path_prefix</tt>
62
+ # option:
63
+ #
64
+ # class Photo < ActiveRecord::Base
65
+ # has_attachment :storage => :cloud_files, :path_prefix => 'my/custom/path'
66
+ # end
67
+ #
68
+ # Which would result in public URLs like <tt>http(s)://:server/:container_name/my/custom/path/:id/:filename.</tt>
69
+ #
70
+ # === Permissions
71
+ #
72
+ # File permisisons are determined by the permissions of the container. At present, the options are public (and distributed
73
+ # by the Limelight CDN), and private (only available to your login)
74
+ #
75
+ # === Other options
76
+ #
77
+ # Of course, all the usual configuration options apply, such as content_type and thumbnails:
78
+ #
79
+ # class Photo < ActiveRecord::Base
80
+ # has_attachment :storage => :cloud_files, :content_type => ['application/pdf', :image], :resize_to => 'x50'
81
+ # has_attachment :storage => :cloud_files, :thumbnails => { :thumb => [50, 50], :geometry => 'x50' }
82
+ # end
83
+ #
84
+ # === Accessing Cloud Files URLs
85
+ #
86
+ # You can get an object's public URL using the cloudfiles_url accessor. For example, assuming that for your postcard app
87
+ # you had a container name like 'postcard_world_development', and an attachment model called Photo:
88
+ #
89
+ # @postcard.cloudfiles_url # => http://cdn.cloudfiles.mosso.com/c45182/uploaded_files/20/london.jpg
90
+ #
91
+ # The resulting url is in the form: http://:server/:container_name/:table_name/:id/:file.
92
+ # The optional thumbnail argument will output the thumbnail's filename (if any).
93
+ #
94
+ # Additionally, you can get an object's base path relative to the container root using
95
+ # <tt>base_path</tt>:
96
+ #
97
+ # @photo.file_base_path # => uploaded_files/20
98
+ #
99
+ # And the full path (including the filename) using <tt>full_filename</tt>:
100
+ #
101
+ # @photo.full_filename # => uploaded_files/20/london.jpg
102
+ #
103
+ # Niether <tt>base_path</tt> or <tt>full_filename</tt> include the container name as part of the path.
104
+ # You can retrieve the container name using the <tt>container_name</tt> method.
105
+ module CloudFileBackend
106
+ class RequiredLibraryNotFoundError < StandardError; end
107
+ class ConfigFileNotFoundError < StandardError; end
108
+
109
+ def self.included(base) #:nodoc:
110
+ mattr_reader :container_name, :cloudfiles_config
111
+
112
+ begin
113
+ require 'cloudfiles'
114
+ rescue LoadError
115
+ raise RequiredLibraryNotFoundError.new('CloudFiles could not be loaded')
116
+ end
117
+
118
+ begin
119
+ @@cloudfiles_config_path = base.attachment_options[:cloudfiles_config_path] || (RAILS_ROOT + '/config/rackspace_cloudfiles.yml')
120
+ @@cloudfiles_config = @@cloudfiles_config = YAML.load(ERB.new(File.read(@@cloudfiles_config_path)).result)[RAILS_ENV].symbolize_keys
121
+ rescue
122
+ #raise ConfigFileNotFoundError.new('File %s not found' % @@cloudfiles_config_path)
123
+ end
124
+
125
+ @@container_name = @@cloudfiles_config[:container_name]
126
+ @@cf = CloudFiles::Connection.new(@@cloudfiles_config[:username], @@cloudfiles_config[:api_key])
127
+ @@container = @@cf.container(@@container_name)
128
+
129
+ base.before_update :rename_file
130
+ end
131
+
132
+ # Overwrites the base filename writer in order to store the old filename
133
+ def filename=(value)
134
+ @old_filename = filename unless filename.nil? || @old_filename
135
+ write_attribute :filename, sanitize_filename(value)
136
+ end
137
+
138
+ # The attachment ID used in the full path of a file
139
+ def attachment_path_id
140
+ ((respond_to?(:parent_id) && parent_id) || id).to_s
141
+ end
142
+
143
+ # The pseudo hierarchy containing the file relative to the container name
144
+ # Example: <tt>:table_name/:id</tt>
145
+ def base_path
146
+ File.join(attachment_options[:path_prefix], attachment_path_id)
147
+ end
148
+
149
+ # The full path to the file relative to the container name
150
+ # Example: <tt>:table_name/:id/:filename</tt>
151
+ def full_filename(thumbnail = nil)
152
+ File.join(base_path, thumbnail_name_for(thumbnail))
153
+ end
154
+
155
+ # All public objects are accessible via a GET request to the Cloud Files servers. You can generate a
156
+ # url for an object using the cloudfiles_url method.
157
+ #
158
+ # @photo.cloudfiles_url
159
+ #
160
+ # The resulting url is in the CDN URL for the object
161
+ #
162
+ # The optional thumbnail argument will output the thumbnail's filename (if any).
163
+ #
164
+ # If you are trying to get the URL for a nonpublic container, nil will be returned.
165
+ def cloudfiles_url(thumbnail = nil)
166
+ if @@container.public?
167
+ File.join(@@container.cdn_url, full_filename(thumbnail))
168
+ else
169
+ nil
170
+ end
171
+ end
172
+ alias :public_filename :cloudfiles_url
173
+
174
+ def create_temp_file
175
+ write_to_temp_file current_data
176
+ end
177
+
178
+ def current_data
179
+ @@container.get_object(full_filename).data
180
+ end
181
+
182
+ protected
183
+ # Called in the after_destroy callback
184
+ def destroy_file
185
+ @@container.delete_object(full_filename)
186
+ end
187
+
188
+ def rename_file
189
+ # Cloud Files doesn't rename right now, so we'll just nuke.
190
+ return unless @old_filename && @old_filename != filename
191
+
192
+ old_full_filename = File.join(base_path, @old_filename)
193
+ @@container.delete_object(old_full_filename)
194
+
195
+ @old_filename = nil
196
+ true
197
+ end
198
+
199
+ def save_to_storage
200
+ if save_attachment?
201
+ @object = @@container.create_object(full_filename)
202
+ @object.write((temp_path ? File.open(temp_path) : temp_data))
203
+ end
204
+
205
+ @old_filename = nil
206
+ true
207
+ end
208
+ end
209
+ end
210
+ end
211
+ end