pictrails 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (944) hide show
  1. data/.autotest +8 -0
  2. data/History.txt +80 -0
  3. data/MIT-LICENSE +21 -0
  4. data/Manifest.txt +943 -0
  5. data/README.txt +88 -0
  6. data/Rakefile +10 -0
  7. data/app/controllers/admin/base_controller.rb +12 -0
  8. data/app/controllers/admin/comments_controller.rb +49 -0
  9. data/app/controllers/admin/galleries_controller.rb +110 -0
  10. data/app/controllers/admin/pictures_controller.rb +85 -0
  11. data/app/controllers/admin/sessions_controller.rb +26 -0
  12. data/app/controllers/admin/settings_controller.rb +44 -0
  13. data/app/controllers/admin/users_controller.rb +40 -0
  14. data/app/controllers/application.rb +54 -0
  15. data/app/controllers/galleries_controller.rb +61 -0
  16. data/app/controllers/pictures_controller.rb +57 -0
  17. data/app/controllers/tags_controller.rb +12 -0
  18. data/app/helpers/admin/base_helper.rb +36 -0
  19. data/app/helpers/admin/comments_helper.rb +2 -0
  20. data/app/helpers/admin/galleries_helper.rb +2 -0
  21. data/app/helpers/admin/pictures_helper.rb +2 -0
  22. data/app/helpers/admin/sessions_helper.rb +2 -0
  23. data/app/helpers/admin/users_helper.rb +2 -0
  24. data/app/helpers/application_helper.rb +87 -0
  25. data/app/helpers/galleries_helper.rb +2 -0
  26. data/app/helpers/pictures_helper.rb +12 -0
  27. data/app/models/comment.rb +6 -0
  28. data/app/models/gallery.rb +173 -0
  29. data/app/models/import.rb +25 -0
  30. data/app/models/picture.rb +104 -0
  31. data/app/models/setting.rb +102 -0
  32. data/app/models/tag.rb +30 -0
  33. data/app/models/thumbnail.rb +8 -0
  34. data/app/models/user.rb +52 -0
  35. data/app/sweepers/gallery_sweeper.rb +25 -0
  36. data/app/sweepers/page_cache.rb +66 -0
  37. data/app/sweepers/picture_sweeper.rb +26 -0
  38. data/app/sweepers/setting_sweeper.rb +11 -0
  39. data/app/views/admin/comments/edit.html.erb +35 -0
  40. data/app/views/admin/comments/index.html.erb +38 -0
  41. data/app/views/admin/comments/show.html.erb +16 -0
  42. data/app/views/admin/galleries/_follow_import.html.erb +17 -0
  43. data/app/views/admin/galleries/edit.html.erb +90 -0
  44. data/app/views/admin/galleries/follow_import.html.erb +7 -0
  45. data/app/views/admin/galleries/follow_import.js.rjs +6 -0
  46. data/app/views/admin/galleries/index.html.erb +43 -0
  47. data/app/views/admin/galleries/new.html.erb +44 -0
  48. data/app/views/admin/galleries/new_by_mass_upload.html.erb +28 -0
  49. data/app/views/admin/galleries/show.html.erb +54 -0
  50. data/app/views/admin/pictures/_picture.html.erb +12 -0
  51. data/app/views/admin/pictures/edit.html.erb +59 -0
  52. data/app/views/admin/pictures/index.html.erb +17 -0
  53. data/app/views/admin/pictures/new.html.erb +56 -0
  54. data/app/views/admin/pictures/show.html.erb +55 -0
  55. data/app/views/admin/sessions/new.html.erb +28 -0
  56. data/app/views/admin/settings/_follow_setting_update.html.erb +16 -0
  57. data/app/views/admin/settings/follow_setting_update.html.erb +7 -0
  58. data/app/views/admin/settings/follow_setting_update.js.rjs +6 -0
  59. data/app/views/admin/settings/index.html.erb +65 -0
  60. data/app/views/admin/users/new.html.erb +32 -0
  61. data/app/views/comments/_comment.html.erb +6 -0
  62. data/app/views/galleries/_gallery.html.erb +6 -0
  63. data/app/views/galleries/_list_pictures.html.erb +22 -0
  64. data/app/views/galleries/_sidebar_gallery.html.erb +13 -0
  65. data/app/views/galleries/_top_show.html.erb +10 -0
  66. data/app/views/galleries/index.html.erb +11 -0
  67. data/app/views/galleries/show.atom.builder +22 -0
  68. data/app/views/galleries/show.html.erb +28 -0
  69. data/app/views/layouts/administration.html.erb +48 -0
  70. data/app/views/layouts/application.html.erb +38 -0
  71. data/app/views/pictures/_picture.html.erb +13 -0
  72. data/app/views/pictures/index.html.erb +11 -0
  73. data/app/views/pictures/show.html.erb +51 -0
  74. data/app/views/tags/_sidebar_tag.html.erb +20 -0
  75. data/app/views/tags/show.html.erb +14 -0
  76. data/config/boot.rb +109 -0
  77. data/config/database.yml.example +25 -0
  78. data/config/environment.rb +63 -0
  79. data/config/environments/development.rb +19 -0
  80. data/config/environments/production.rb +18 -0
  81. data/config/environments/stories.rb +19 -0
  82. data/config/environments/test.rb +22 -0
  83. data/config/initializers/inflections.rb +10 -0
  84. data/config/initializers/mime_types.rb +5 -0
  85. data/config/initializers/new_rails_defaults.rb +15 -0
  86. data/config/routes.rb +66 -0
  87. data/db/migrate/001_create_galleries.rb +20 -0
  88. data/db/migrate/002_create_pictures.rb +28 -0
  89. data/db/migrate/003_create_thumbnails_table.rb +17 -0
  90. data/db/migrate/004_create_users.rb +20 -0
  91. data/db/migrate/005_create_settings.rb +12 -0
  92. data/db/migrate/006_add_permalink_to_galleries.rb +15 -0
  93. data/db/migrate/007_add_permalink_to_picture.rb +15 -0
  94. data/db/migrate/008_create_imports.rb +15 -0
  95. data/db/migrate/009_delete_timestamp_and_add_number.rb +13 -0
  96. data/db/migrate/010_add_parent_id_for_gallery.rb +9 -0
  97. data/db/migrate/20080618220812_acts_as_taggable_migration.rb +26 -0
  98. data/db/migrate/20080824170446_add_picture_id_in_import.rb +11 -0
  99. data/db/migrate/20080910173454_create_comments.rb +19 -0
  100. data/db/schema.rb +110 -0
  101. data/lib/authenticated_system.rb +116 -0
  102. data/lib/authenticated_test_helper.rb +10 -0
  103. data/lib/config_manager.rb +96 -0
  104. data/lib/pictrails/caching_methods.rb +15 -0
  105. data/lib/pictrails/import_system.rb +37 -0
  106. data/lib/pictrails/mass_upload.rb +29 -0
  107. data/lib/pictrails/version.rb +9 -0
  108. data/lib/tasks/cache.rake +6 -0
  109. data/lib/tasks/rspec.rake +132 -0
  110. data/lib/tasks/story.rake +12 -0
  111. data/log/keep +0 -0
  112. data/public/.htaccess +40 -0
  113. data/public/404.html +30 -0
  114. data/public/422.html +30 -0
  115. data/public/500.html +30 -0
  116. data/public/dispatch.cgi +10 -0
  117. data/public/dispatch.fcgi +24 -0
  118. data/public/dispatch.rb +10 -0
  119. data/public/favicon.ico +0 -0
  120. data/public/images/README +2 -0
  121. data/public/images/accept.png +0 -0
  122. data/public/images/accept50.png +0 -0
  123. data/public/images/admin/bc-bg.gif +0 -0
  124. data/public/images/admin/bgdivider.gif +0 -0
  125. data/public/images/admin/bgdivider.png +0 -0
  126. data/public/images/admin/bgoff.png +0 -0
  127. data/public/images/admin/bgoff2.png +0 -0
  128. data/public/images/admin/bgon.png +0 -0
  129. data/public/images/admin/bgover.png +0 -0
  130. data/public/images/admin/bgselected.png +0 -0
  131. data/public/images/admin/cancel.png +0 -0
  132. data/public/images/admin/checked.png +0 -0
  133. data/public/images/admin/delete.png +0 -0
  134. data/public/images/admin/edit.png +0 -0
  135. data/public/images/admin/error.png +0 -0
  136. data/public/images/admin/foot.jpg +0 -0
  137. data/public/images/admin/help.png +0 -0
  138. data/public/images/admin/loginformbg.png +0 -0
  139. data/public/images/admin/remove.png +0 -0
  140. data/public/images/admin/show.png +0 -0
  141. data/public/images/admin/table-header-first.png +0 -0
  142. data/public/images/admin/table-header-last.png +0 -0
  143. data/public/images/admin/table-header.png +0 -0
  144. data/public/images/admin/top.gif +0 -0
  145. data/public/images/bg_white.png +0 -0
  146. data/public/images/email_open.png +0 -0
  147. data/public/images/email_open50.png +0 -0
  148. data/public/images/page_edit50.png +0 -0
  149. data/public/images/user.png +0 -0
  150. data/public/images/user50.png +0 -0
  151. data/public/images/world_link.png +0 -0
  152. data/public/images/world_link50.png +0 -0
  153. data/public/javascripts/application.js +2 -0
  154. data/public/javascripts/controls.js +963 -0
  155. data/public/javascripts/dragdrop.js +972 -0
  156. data/public/javascripts/effects.js +1120 -0
  157. data/public/javascripts/follow_import.js +7 -0
  158. data/public/javascripts/follow_setting_update.js +7 -0
  159. data/public/javascripts/prototype.js +4225 -0
  160. data/public/no_picture.png +0 -0
  161. data/public/robots.txt +5 -0
  162. data/public/stylesheets/administration.css +998 -0
  163. data/public/stylesheets/pictrails.css +260 -0
  164. data/script/about +3 -0
  165. data/script/autospec +3 -0
  166. data/script/console +3 -0
  167. data/script/dbconsole +3 -0
  168. data/script/destroy +3 -0
  169. data/script/generate +3 -0
  170. data/script/performance/benchmarker +3 -0
  171. data/script/performance/profiler +3 -0
  172. data/script/performance/request +3 -0
  173. data/script/plugin +3 -0
  174. data/script/process/inspector +3 -0
  175. data/script/process/reaper +3 -0
  176. data/script/process/spawner +3 -0
  177. data/script/runner +3 -0
  178. data/script/server +3 -0
  179. data/script/spec +4 -0
  180. data/script/spec_server +116 -0
  181. data/spec/controllers/admin/comments_controller_spec.rb +117 -0
  182. data/spec/controllers/admin/galleries_controller_spec.rb +247 -0
  183. data/spec/controllers/admin/pictures_controller_spec.rb +114 -0
  184. data/spec/controllers/admin/sessions_controller_spec.rb +36 -0
  185. data/spec/controllers/admin/settings_controller_spec.rb +54 -0
  186. data/spec/controllers/admin/users_controller_spec.rb +48 -0
  187. data/spec/controllers/galleries_controller_spec.rb +138 -0
  188. data/spec/controllers/pictures_controller_spec.rb +78 -0
  189. data/spec/fixtures/files/foo-2.PNG +0 -0
  190. data/spec/fixtures/files/foo.png +0 -0
  191. data/spec/fixtures/files/rails-2.png +0 -0
  192. data/spec/fixtures/files/rails-3.png +0 -0
  193. data/spec/fixtures/files/rails.png +0 -0
  194. data/spec/fixtures/galleries.yml +38 -0
  195. data/spec/fixtures/imports.yml +19 -0
  196. data/spec/fixtures/pictures.yml +108 -0
  197. data/spec/fixtures/settings.yml +8 -0
  198. data/spec/fixtures/taggings.yml +17 -0
  199. data/spec/fixtures/tags.yml +6 -0
  200. data/spec/fixtures/thumbnails.yml +30 -0
  201. data/spec/fixtures/users.yml +15 -0
  202. data/spec/helpers/admin/admin_base_helper_spec.rb +15 -0
  203. data/spec/helpers/admin/comments_helper_spec.rb +11 -0
  204. data/spec/helpers/admin/pictures_helper_spec.rb +5 -0
  205. data/spec/helpers/application_helper_spec.rb +37 -0
  206. data/spec/lib/import_spec.rb +115 -0
  207. data/spec/lib/mass_upload_spec.rb +35 -0
  208. data/spec/models/comment_spec.rb +24 -0
  209. data/spec/models/gallery_spec.rb +256 -0
  210. data/spec/models/import_spec.rb +11 -0
  211. data/spec/models/picture_spec.rb +139 -0
  212. data/spec/models/setting_spec.rb +74 -0
  213. data/spec/models/user_spec.rb +52 -0
  214. data/spec/rcov.opts +2 -0
  215. data/spec/spec.opts +4 -0
  216. data/spec/spec_helper.rb +39 -0
  217. data/stories/add_gallery_story +29 -0
  218. data/stories/all.rb +18 -0
  219. data/stories/helper.rb +16 -0
  220. data/stories/integration_test_file_upload_deep.rb +60 -0
  221. data/stories/signup_story +37 -0
  222. data/stories/steps/admin_steps.rb +6 -0
  223. data/stories/steps/gallery_steps.rb +38 -0
  224. data/stories/steps/general_steps.rb +71 -0
  225. data/stories/steps/signup_steps.rb +25 -0
  226. data/stories/view_gallery_story +37 -0
  227. data/test/fixtures/comments.yml +15 -0
  228. data/test/functional/comment_controller_test.rb +8 -0
  229. data/test/functional/comments_controller_test.rb +8 -0
  230. data/test/unit/comment_test.rb +8 -0
  231. data/vendor/plugins/acts_as_taggable_on_steroids/CHANGELOG +167 -0
  232. data/vendor/plugins/acts_as_taggable_on_steroids/MIT-LICENSE +20 -0
  233. data/vendor/plugins/acts_as_taggable_on_steroids/README +148 -0
  234. data/vendor/plugins/acts_as_taggable_on_steroids/Rakefile +22 -0
  235. data/vendor/plugins/acts_as_taggable_on_steroids/generators/acts_as_taggable_migration/acts_as_taggable_migration_generator.rb +11 -0
  236. data/vendor/plugins/acts_as_taggable_on_steroids/generators/acts_as_taggable_migration/templates/migration.rb +26 -0
  237. data/vendor/plugins/acts_as_taggable_on_steroids/init.rb +1 -0
  238. data/vendor/plugins/acts_as_taggable_on_steroids/lib/acts_as_taggable.rb +214 -0
  239. data/vendor/plugins/acts_as_taggable_on_steroids/lib/tag.rb +26 -0
  240. data/vendor/plugins/acts_as_taggable_on_steroids/lib/tag_counts_extension.rb +3 -0
  241. data/vendor/plugins/acts_as_taggable_on_steroids/lib/tag_list.rb +91 -0
  242. data/vendor/plugins/acts_as_taggable_on_steroids/lib/tagging.rb +12 -0
  243. data/vendor/plugins/acts_as_taggable_on_steroids/lib/tags_helper.rb +13 -0
  244. data/vendor/plugins/acts_as_taggable_on_steroids/test/abstract_unit.rb +97 -0
  245. data/vendor/plugins/acts_as_taggable_on_steroids/test/acts_as_taggable_test.rb +347 -0
  246. data/vendor/plugins/acts_as_taggable_on_steroids/test/database.yml +10 -0
  247. data/vendor/plugins/acts_as_taggable_on_steroids/test/fixtures/magazine.rb +3 -0
  248. data/vendor/plugins/acts_as_taggable_on_steroids/test/fixtures/magazines.yml +7 -0
  249. data/vendor/plugins/acts_as_taggable_on_steroids/test/fixtures/photo.rb +8 -0
  250. data/vendor/plugins/acts_as_taggable_on_steroids/test/fixtures/photos.yml +24 -0
  251. data/vendor/plugins/acts_as_taggable_on_steroids/test/fixtures/post.rb +7 -0
  252. data/vendor/plugins/acts_as_taggable_on_steroids/test/fixtures/posts.yml +34 -0
  253. data/vendor/plugins/acts_as_taggable_on_steroids/test/fixtures/special_post.rb +2 -0
  254. data/vendor/plugins/acts_as_taggable_on_steroids/test/fixtures/subscription.rb +4 -0
  255. data/vendor/plugins/acts_as_taggable_on_steroids/test/fixtures/subscriptions.yml +3 -0
  256. data/vendor/plugins/acts_as_taggable_on_steroids/test/fixtures/taggings.yml +149 -0
  257. data/vendor/plugins/acts_as_taggable_on_steroids/test/fixtures/tags.yml +19 -0
  258. data/vendor/plugins/acts_as_taggable_on_steroids/test/fixtures/user.rb +7 -0
  259. data/vendor/plugins/acts_as_taggable_on_steroids/test/fixtures/users.yml +7 -0
  260. data/vendor/plugins/acts_as_taggable_on_steroids/test/schema.rb +37 -0
  261. data/vendor/plugins/acts_as_taggable_on_steroids/test/tag_list_test.rb +106 -0
  262. data/vendor/plugins/acts_as_taggable_on_steroids/test/tag_test.rb +34 -0
  263. data/vendor/plugins/acts_as_taggable_on_steroids/test/tagging_test.rb +13 -0
  264. data/vendor/plugins/acts_as_taggable_on_steroids/test/tags_helper_test.rb +28 -0
  265. data/vendor/plugins/acts_as_tree/README +26 -0
  266. data/vendor/plugins/acts_as_tree/Rakefile +22 -0
  267. data/vendor/plugins/acts_as_tree/init.rb +1 -0
  268. data/vendor/plugins/acts_as_tree/lib/active_record/acts/tree.rb +96 -0
  269. data/vendor/plugins/atom_feed_helper/CHANGELOG +5 -0
  270. data/vendor/plugins/atom_feed_helper/MIT-LICENSE +20 -0
  271. data/vendor/plugins/atom_feed_helper/README +72 -0
  272. data/vendor/plugins/atom_feed_helper/Rakefile +22 -0
  273. data/vendor/plugins/atom_feed_helper/init.rb +2 -0
  274. data/vendor/plugins/atom_feed_helper/lib/atom_feed_helper.rb +111 -0
  275. data/vendor/plugins/atom_feed_helper/test/atom_feed_helper_test.rb +8 -0
  276. data/vendor/plugins/attachment_fu/CHANGELOG +35 -0
  277. data/vendor/plugins/attachment_fu/README +186 -0
  278. data/vendor/plugins/attachment_fu/Rakefile +22 -0
  279. data/vendor/plugins/attachment_fu/amazon_s3.yml.tpl +14 -0
  280. data/vendor/plugins/attachment_fu/init.rb +16 -0
  281. data/vendor/plugins/attachment_fu/install.rb +5 -0
  282. data/vendor/plugins/attachment_fu/lib/geometry.rb +93 -0
  283. data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu.rb +473 -0
  284. data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/backends/db_file_backend.rb +39 -0
  285. data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/backends/file_system_backend.rb +101 -0
  286. data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/backends/s3_backend.rb +303 -0
  287. data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/processors/core_image_processor.rb +59 -0
  288. data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/processors/gd2_processor.rb +54 -0
  289. data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/processors/image_science_processor.rb +61 -0
  290. data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/processors/mini_magick_processor.rb +59 -0
  291. data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/processors/rmagick_processor.rb +54 -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 +80 -0
  294. data/vendor/plugins/attachment_fu/test/backends/remote/s3_test.rb +107 -0
  295. data/vendor/plugins/attachment_fu/test/base_attachment_tests.rb +77 -0
  296. data/vendor/plugins/attachment_fu/test/basic_test.rb +70 -0
  297. data/vendor/plugins/attachment_fu/test/database.yml +18 -0
  298. data/vendor/plugins/attachment_fu/test/extra_attachment_test.rb +67 -0
  299. data/vendor/plugins/attachment_fu/test/fixtures/attachment.rb +148 -0
  300. data/vendor/plugins/attachment_fu/test/fixtures/files/fake/rails.png +0 -0
  301. data/vendor/plugins/attachment_fu/test/fixtures/files/foo.txt +1 -0
  302. data/vendor/plugins/attachment_fu/test/fixtures/files/rails.png +0 -0
  303. data/vendor/plugins/attachment_fu/test/geometry_test.rb +101 -0
  304. data/vendor/plugins/attachment_fu/test/processors/core_image_test.rb +37 -0
  305. data/vendor/plugins/attachment_fu/test/processors/gd2_test.rb +31 -0
  306. data/vendor/plugins/attachment_fu/test/processors/image_science_test.rb +31 -0
  307. data/vendor/plugins/attachment_fu/test/processors/mini_magick_test.rb +31 -0
  308. data/vendor/plugins/attachment_fu/test/processors/rmagick_test.rb +255 -0
  309. data/vendor/plugins/attachment_fu/test/schema.rb +108 -0
  310. data/vendor/plugins/attachment_fu/test/test_helper.rb +150 -0
  311. data/vendor/plugins/attachment_fu/test/validation_test.rb +55 -0
  312. data/vendor/plugins/attachment_fu/vendor/red_artisan/core_image/filters/color.rb +27 -0
  313. data/vendor/plugins/attachment_fu/vendor/red_artisan/core_image/filters/effects.rb +31 -0
  314. data/vendor/plugins/attachment_fu/vendor/red_artisan/core_image/filters/perspective.rb +25 -0
  315. data/vendor/plugins/attachment_fu/vendor/red_artisan/core_image/filters/quality.rb +25 -0
  316. data/vendor/plugins/attachment_fu/vendor/red_artisan/core_image/filters/scale.rb +47 -0
  317. data/vendor/plugins/attachment_fu/vendor/red_artisan/core_image/filters/watermark.rb +32 -0
  318. data/vendor/plugins/attachment_fu/vendor/red_artisan/core_image/processor.rb +123 -0
  319. data/vendor/plugins/mimetype-fu/MIT-LICENSE +20 -0
  320. data/vendor/plugins/mimetype-fu/README +16 -0
  321. data/vendor/plugins/mimetype-fu/Rakefile +22 -0
  322. data/vendor/plugins/mimetype-fu/init.rb +2 -0
  323. data/vendor/plugins/mimetype-fu/install.rb +1 -0
  324. data/vendor/plugins/mimetype-fu/lib/extensions_const.rb +1 -0
  325. data/vendor/plugins/mimetype-fu/lib/mime_types.yml +776 -0
  326. data/vendor/plugins/mimetype-fu/lib/mimetype_fu.rb +35 -0
  327. data/vendor/plugins/mimetype-fu/spec/fixtures/file.jpg +0 -0
  328. data/vendor/plugins/mimetype-fu/spec/fixtures/file.rb +0 -0
  329. data/vendor/plugins/mimetype-fu/spec/fixtures/file.unknown +0 -0
  330. data/vendor/plugins/mimetype-fu/spec/mime_type_spec.rb +57 -0
  331. data/vendor/plugins/mimetype-fu/spec/spec_helper.rb +4 -0
  332. data/vendor/plugins/mimetype-fu/tasks/mimetype_fu_tasks.rake +4 -0
  333. data/vendor/plugins/mimetype-fu/test/mimetype_fu_test.rb +8 -0
  334. data/vendor/plugins/mimetype-fu/uninstall.rb +1 -0
  335. data/vendor/plugins/rspec-rails/History.txt +57 -0
  336. data/vendor/plugins/rspec-rails/Manifest.txt +158 -0
  337. data/vendor/plugins/rspec-rails/README.txt +81 -0
  338. data/vendor/plugins/rspec-rails/Rakefile +39 -0
  339. data/vendor/plugins/rspec-rails/UPGRADE +7 -0
  340. data/vendor/plugins/rspec-rails/generators/rspec/CHANGES +1 -0
  341. data/vendor/plugins/rspec-rails/generators/rspec/rspec_generator.rb +40 -0
  342. data/vendor/plugins/rspec-rails/generators/rspec/templates/all_stories.rb +4 -0
  343. data/vendor/plugins/rspec-rails/generators/rspec/templates/previous_failures.txt +0 -0
  344. data/vendor/plugins/rspec-rails/generators/rspec/templates/rcov.opts +2 -0
  345. data/vendor/plugins/rspec-rails/generators/rspec/templates/rspec.rake +132 -0
  346. data/vendor/plugins/rspec-rails/generators/rspec/templates/script/autospec +3 -0
  347. data/vendor/plugins/rspec-rails/generators/rspec/templates/script/spec +4 -0
  348. data/vendor/plugins/rspec-rails/generators/rspec/templates/script/spec_server +116 -0
  349. data/vendor/plugins/rspec-rails/generators/rspec/templates/spec.opts +4 -0
  350. data/vendor/plugins/rspec-rails/generators/rspec/templates/spec_helper.rb +47 -0
  351. data/vendor/plugins/rspec-rails/generators/rspec/templates/stories_helper.rb +3 -0
  352. data/vendor/plugins/rspec-rails/generators/rspec_controller/USAGE +33 -0
  353. data/vendor/plugins/rspec-rails/generators/rspec_controller/rspec_controller_generator.rb +49 -0
  354. data/vendor/plugins/rspec-rails/generators/rspec_controller/templates/controller_spec.rb +25 -0
  355. data/vendor/plugins/rspec-rails/generators/rspec_controller/templates/helper_spec.rb +11 -0
  356. data/vendor/plugins/rspec-rails/generators/rspec_controller/templates/view_spec.rb +12 -0
  357. data/vendor/plugins/rspec-rails/generators/rspec_default_values.rb +19 -0
  358. data/vendor/plugins/rspec-rails/generators/rspec_model/USAGE +18 -0
  359. data/vendor/plugins/rspec-rails/generators/rspec_model/rspec_model_generator.rb +35 -0
  360. data/vendor/plugins/rspec-rails/generators/rspec_model/templates/model_spec.rb +15 -0
  361. data/vendor/plugins/rspec-rails/generators/rspec_scaffold/rspec_scaffold_generator.rb +154 -0
  362. data/vendor/plugins/rspec-rails/generators/rspec_scaffold/templates/controller_spec.rb +173 -0
  363. data/vendor/plugins/rspec-rails/generators/rspec_scaffold/templates/edit_erb_spec.rb +26 -0
  364. data/vendor/plugins/rspec-rails/generators/rspec_scaffold/templates/helper_spec.rb +11 -0
  365. data/vendor/plugins/rspec-rails/generators/rspec_scaffold/templates/index_erb_spec.rb +27 -0
  366. data/vendor/plugins/rspec-rails/generators/rspec_scaffold/templates/new_erb_spec.rb +26 -0
  367. data/vendor/plugins/rspec-rails/generators/rspec_scaffold/templates/routing_spec.rb +59 -0
  368. data/vendor/plugins/rspec-rails/generators/rspec_scaffold/templates/show_erb_spec.rb +23 -0
  369. data/vendor/plugins/rspec-rails/init.rb +9 -0
  370. data/vendor/plugins/rspec-rails/lib/autotest/discover.rb +1 -0
  371. data/vendor/plugins/rspec-rails/lib/autotest/rails_rspec.rb +76 -0
  372. data/vendor/plugins/rspec-rails/lib/spec/rails.rb +15 -0
  373. data/vendor/plugins/rspec-rails/lib/spec/rails/example.rb +47 -0
  374. data/vendor/plugins/rspec-rails/lib/spec/rails/example/assigns_hash_proxy.rb +43 -0
  375. data/vendor/plugins/rspec-rails/lib/spec/rails/example/controller_example_group.rb +256 -0
  376. data/vendor/plugins/rspec-rails/lib/spec/rails/example/cookies_proxy.rb +25 -0
  377. data/vendor/plugins/rspec-rails/lib/spec/rails/example/functional_example_group.rb +87 -0
  378. data/vendor/plugins/rspec-rails/lib/spec/rails/example/helper_example_group.rb +166 -0
  379. data/vendor/plugins/rspec-rails/lib/spec/rails/example/model_example_group.rb +14 -0
  380. data/vendor/plugins/rspec-rails/lib/spec/rails/example/rails_example_group.rb +33 -0
  381. data/vendor/plugins/rspec-rails/lib/spec/rails/example/render_observer.rb +93 -0
  382. data/vendor/plugins/rspec-rails/lib/spec/rails/example/view_example_group.rb +183 -0
  383. data/vendor/plugins/rspec-rails/lib/spec/rails/extensions.rb +12 -0
  384. data/vendor/plugins/rspec-rails/lib/spec/rails/extensions/action_controller/base.rb +14 -0
  385. data/vendor/plugins/rspec-rails/lib/spec/rails/extensions/action_controller/rescue.rb +21 -0
  386. data/vendor/plugins/rspec-rails/lib/spec/rails/extensions/action_controller/test_response.rb +11 -0
  387. data/vendor/plugins/rspec-rails/lib/spec/rails/extensions/action_view/base.rb +31 -0
  388. data/vendor/plugins/rspec-rails/lib/spec/rails/extensions/active_record/base.rb +30 -0
  389. data/vendor/plugins/rspec-rails/lib/spec/rails/extensions/object.rb +5 -0
  390. data/vendor/plugins/rspec-rails/lib/spec/rails/extensions/spec/example/configuration.rb +71 -0
  391. data/vendor/plugins/rspec-rails/lib/spec/rails/extensions/spec/matchers/have.rb +21 -0
  392. data/vendor/plugins/rspec-rails/lib/spec/rails/interop/testcase.rb +14 -0
  393. data/vendor/plugins/rspec-rails/lib/spec/rails/matchers.rb +31 -0
  394. data/vendor/plugins/rspec-rails/lib/spec/rails/matchers/assert_select.rb +131 -0
  395. data/vendor/plugins/rspec-rails/lib/spec/rails/matchers/change.rb +11 -0
  396. data/vendor/plugins/rspec-rails/lib/spec/rails/matchers/have_text.rb +57 -0
  397. data/vendor/plugins/rspec-rails/lib/spec/rails/matchers/include_text.rb +54 -0
  398. data/vendor/plugins/rspec-rails/lib/spec/rails/matchers/redirect_to.rb +113 -0
  399. data/vendor/plugins/rspec-rails/lib/spec/rails/matchers/render_template.rb +90 -0
  400. data/vendor/plugins/rspec-rails/lib/spec/rails/mocks.rb +132 -0
  401. data/vendor/plugins/rspec-rails/lib/spec/rails/story_adapter.rb +79 -0
  402. data/vendor/plugins/rspec-rails/lib/spec/rails/version.rb +15 -0
  403. data/vendor/plugins/rspec-rails/output_buffer_fix.diff +34 -0
  404. data/vendor/plugins/rspec-rails/rspec-rails.gemspec +35 -0
  405. data/vendor/plugins/rspec-rails/spec/rails/autotest/mappings_spec.rb +36 -0
  406. data/vendor/plugins/rspec-rails/spec/rails/example/assigns_hash_proxy_spec.rb +65 -0
  407. data/vendor/plugins/rspec-rails/spec/rails/example/configuration_spec.rb +83 -0
  408. data/vendor/plugins/rspec-rails/spec/rails/example/controller_isolation_spec.rb +62 -0
  409. data/vendor/plugins/rspec-rails/spec/rails/example/controller_spec_spec.rb +272 -0
  410. data/vendor/plugins/rspec-rails/spec/rails/example/cookies_proxy_spec.rb +74 -0
  411. data/vendor/plugins/rspec-rails/spec/rails/example/example_group_factory_spec.rb +112 -0
  412. data/vendor/plugins/rspec-rails/spec/rails/example/helper_spec_spec.rb +161 -0
  413. data/vendor/plugins/rspec-rails/spec/rails/example/model_spec_spec.rb +18 -0
  414. data/vendor/plugins/rspec-rails/spec/rails/example/shared_behaviour_spec.rb +16 -0
  415. data/vendor/plugins/rspec-rails/spec/rails/example/test_unit_assertion_accessibility_spec.rb +33 -0
  416. data/vendor/plugins/rspec-rails/spec/rails/example/view_spec_spec.rb +280 -0
  417. data/vendor/plugins/rspec-rails/spec/rails/extensions/action_controller_rescue_action_spec.rb +54 -0
  418. data/vendor/plugins/rspec-rails/spec/rails/extensions/action_view_base_spec.rb +48 -0
  419. data/vendor/plugins/rspec-rails/spec/rails/extensions/active_record_spec.rb +14 -0
  420. data/vendor/plugins/rspec-rails/spec/rails/interop/testcase_spec.rb +66 -0
  421. data/vendor/plugins/rspec-rails/spec/rails/matchers/assert_select_spec.rb +814 -0
  422. data/vendor/plugins/rspec-rails/spec/rails/matchers/description_generation_spec.rb +37 -0
  423. data/vendor/plugins/rspec-rails/spec/rails/matchers/errors_on_spec.rb +13 -0
  424. data/vendor/plugins/rspec-rails/spec/rails/matchers/have_text_spec.rb +62 -0
  425. data/vendor/plugins/rspec-rails/spec/rails/matchers/include_text_spec.rb +64 -0
  426. data/vendor/plugins/rspec-rails/spec/rails/matchers/redirect_to_spec.rb +209 -0
  427. data/vendor/plugins/rspec-rails/spec/rails/matchers/render_template_spec.rb +176 -0
  428. data/vendor/plugins/rspec-rails/spec/rails/matchers/should_change_spec.rb +15 -0
  429. data/vendor/plugins/rspec-rails/spec/rails/mocks/ar_classes.rb +10 -0
  430. data/vendor/plugins/rspec-rails/spec/rails/mocks/mock_model_spec.rb +106 -0
  431. data/vendor/plugins/rspec-rails/spec/rails/mocks/stub_model_spec.rb +80 -0
  432. data/vendor/plugins/rspec-rails/spec/rails/sample_modified_fixture.rb +8 -0
  433. data/vendor/plugins/rspec-rails/spec/rails/sample_spec.rb +8 -0
  434. data/vendor/plugins/rspec-rails/spec/rails/spec_server_spec.rb +96 -0
  435. data/vendor/plugins/rspec-rails/spec/rails/spec_spec.rb +11 -0
  436. data/vendor/plugins/rspec-rails/spec/rails_suite.rb +7 -0
  437. data/vendor/plugins/rspec-rails/spec/spec_helper.rb +57 -0
  438. data/vendor/plugins/rspec-rails/spec_resources/controllers/action_view_base_spec_controller.rb +2 -0
  439. data/vendor/plugins/rspec-rails/spec_resources/controllers/controller_spec_controller.rb +94 -0
  440. data/vendor/plugins/rspec-rails/spec_resources/controllers/redirect_spec_controller.rb +59 -0
  441. data/vendor/plugins/rspec-rails/spec_resources/controllers/render_spec_controller.rb +30 -0
  442. data/vendor/plugins/rspec-rails/spec_resources/controllers/rjs_spec_controller.rb +58 -0
  443. data/vendor/plugins/rspec-rails/spec_resources/helpers/explicit_helper.rb +38 -0
  444. data/vendor/plugins/rspec-rails/spec_resources/helpers/more_explicit_helper.rb +5 -0
  445. data/vendor/plugins/rspec-rails/spec_resources/helpers/plugin_application_helper.rb +6 -0
  446. data/vendor/plugins/rspec-rails/spec_resources/helpers/view_spec_helper.rb +13 -0
  447. data/vendor/plugins/rspec-rails/spec_resources/views/controller_spec/_partial.rhtml +0 -0
  448. data/vendor/plugins/rspec-rails/spec_resources/views/controller_spec/action_setting_flash_after_session_reset.rhtml +1 -0
  449. data/vendor/plugins/rspec-rails/spec_resources/views/controller_spec/action_setting_flash_before_session_reset.rhtml +1 -0
  450. data/vendor/plugins/rspec-rails/spec_resources/views/controller_spec/action_setting_the_assigns_hash.rhtml +0 -0
  451. data/vendor/plugins/rspec-rails/spec_resources/views/controller_spec/action_with_errors_in_template.rhtml +1 -0
  452. data/vendor/plugins/rspec-rails/spec_resources/views/controller_spec/action_with_template.rhtml +1 -0
  453. data/vendor/plugins/rspec-rails/spec_resources/views/layouts/application.rhtml +0 -0
  454. data/vendor/plugins/rspec-rails/spec_resources/views/layouts/simple.rhtml +0 -0
  455. data/vendor/plugins/rspec-rails/spec_resources/views/objects/_object.html.erb +1 -0
  456. data/vendor/plugins/rspec-rails/spec_resources/views/render_spec/_a_partial.rhtml +0 -0
  457. data/vendor/plugins/rspec-rails/spec_resources/views/render_spec/action_with_alternate_layout.rhtml +0 -0
  458. data/vendor/plugins/rspec-rails/spec_resources/views/render_spec/some_action.js.rjs +1 -0
  459. data/vendor/plugins/rspec-rails/spec_resources/views/render_spec/some_action.rhtml +0 -0
  460. data/vendor/plugins/rspec-rails/spec_resources/views/render_spec/some_action.rjs +1 -0
  461. data/vendor/plugins/rspec-rails/spec_resources/views/rjs_spec/_replacement_partial.rhtml +1 -0
  462. data/vendor/plugins/rspec-rails/spec_resources/views/rjs_spec/hide_div.rjs +1 -0
  463. data/vendor/plugins/rspec-rails/spec_resources/views/rjs_spec/hide_page_element.rjs +1 -0
  464. data/vendor/plugins/rspec-rails/spec_resources/views/rjs_spec/insert_html.rjs +1 -0
  465. data/vendor/plugins/rspec-rails/spec_resources/views/rjs_spec/replace.rjs +1 -0
  466. data/vendor/plugins/rspec-rails/spec_resources/views/rjs_spec/replace_html.rjs +1 -0
  467. data/vendor/plugins/rspec-rails/spec_resources/views/rjs_spec/replace_html_with_partial.rjs +1 -0
  468. data/vendor/plugins/rspec-rails/spec_resources/views/rjs_spec/visual_effect.rjs +1 -0
  469. data/vendor/plugins/rspec-rails/spec_resources/views/rjs_spec/visual_toggle_effect.rjs +1 -0
  470. data/vendor/plugins/rspec-rails/spec_resources/views/tag_spec/no_tags.rhtml +1 -0
  471. data/vendor/plugins/rspec-rails/spec_resources/views/tag_spec/single_div_with_no_attributes.rhtml +1 -0
  472. data/vendor/plugins/rspec-rails/spec_resources/views/tag_spec/single_div_with_one_attribute.rhtml +1 -0
  473. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/_partial.rhtml +2 -0
  474. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/_partial_used_twice.rhtml +0 -0
  475. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/_partial_with_local_variable.rhtml +1 -0
  476. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/_partial_with_sub_partial.rhtml +1 -0
  477. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/_spacer.rhtml +1 -0
  478. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/accessor.rhtml +5 -0
  479. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/block_helper.rhtml +3 -0
  480. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/entry_form.rhtml +2 -0
  481. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/explicit_helper.rhtml +2 -0
  482. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/foo/show.rhtml +1 -0
  483. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/implicit_helper.rhtml +2 -0
  484. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/multiple_helpers.rhtml +3 -0
  485. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/should_not_receive.rhtml +3 -0
  486. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/template_with_partial.rhtml +5 -0
  487. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/template_with_partial_using_collection.rhtml +3 -0
  488. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/template_with_partial_with_array.rhtml +1 -0
  489. data/vendor/plugins/rspec-rails/stories/all.rb +10 -0
  490. data/vendor/plugins/rspec-rails/stories/configuration/stories.rb +5 -0
  491. data/vendor/plugins/rspec-rails/stories/helper.rb +6 -0
  492. data/vendor/plugins/rspec-rails/stories/steps/people.rb +8 -0
  493. data/vendor/plugins/rspec-rails/stories/transactions_should_rollback +15 -0
  494. data/vendor/plugins/rspec-rails/stories/transactions_should_rollback.rb +25 -0
  495. data/vendor/plugins/rspec/.autotest +3 -0
  496. data/vendor/plugins/rspec/History.txt +1132 -0
  497. data/vendor/plugins/rspec/Manifest.txt +403 -0
  498. data/vendor/plugins/rspec/README.txt +63 -0
  499. data/vendor/plugins/rspec/Rakefile +89 -0
  500. data/vendor/plugins/rspec/TODO.txt +1 -0
  501. data/vendor/plugins/rspec/bin/autospec +4 -0
  502. data/vendor/plugins/rspec/bin/spec +4 -0
  503. data/vendor/plugins/rspec/examples/pure/autogenerated_docstrings_example.rb +19 -0
  504. data/vendor/plugins/rspec/examples/pure/before_and_after_example.rb +40 -0
  505. data/vendor/plugins/rspec/examples/pure/behave_as_example.rb +45 -0
  506. data/vendor/plugins/rspec/examples/pure/custom_expectation_matchers.rb +54 -0
  507. data/vendor/plugins/rspec/examples/pure/custom_formatter.rb +12 -0
  508. data/vendor/plugins/rspec/examples/pure/dynamic_spec.rb +9 -0
  509. data/vendor/plugins/rspec/examples/pure/file_accessor.rb +19 -0
  510. data/vendor/plugins/rspec/examples/pure/file_accessor_spec.rb +38 -0
  511. data/vendor/plugins/rspec/examples/pure/greeter_spec.rb +31 -0
  512. data/vendor/plugins/rspec/examples/pure/helper_method_example.rb +14 -0
  513. data/vendor/plugins/rspec/examples/pure/io_processor.rb +8 -0
  514. data/vendor/plugins/rspec/examples/pure/io_processor_spec.rb +21 -0
  515. data/vendor/plugins/rspec/examples/pure/legacy_spec.rb +11 -0
  516. data/vendor/plugins/rspec/examples/pure/mocking_example.rb +27 -0
  517. data/vendor/plugins/rspec/examples/pure/multi_threaded_behaviour_runner.rb +28 -0
  518. data/vendor/plugins/rspec/examples/pure/nested_classes_example.rb +36 -0
  519. data/vendor/plugins/rspec/examples/pure/partial_mock_example.rb +29 -0
  520. data/vendor/plugins/rspec/examples/pure/pending_example.rb +20 -0
  521. data/vendor/plugins/rspec/examples/pure/predicate_example.rb +27 -0
  522. data/vendor/plugins/rspec/examples/pure/priority.txt +1 -0
  523. data/vendor/plugins/rspec/examples/pure/shared_example_group_example.rb +81 -0
  524. data/vendor/plugins/rspec/examples/pure/shared_stack_examples.rb +38 -0
  525. data/vendor/plugins/rspec/examples/pure/spec_helper.rb +3 -0
  526. data/vendor/plugins/rspec/examples/pure/stack.rb +36 -0
  527. data/vendor/plugins/rspec/examples/pure/stack_spec.rb +63 -0
  528. data/vendor/plugins/rspec/examples/pure/stack_spec_with_nested_example_groups.rb +67 -0
  529. data/vendor/plugins/rspec/examples/pure/stubbing_example.rb +69 -0
  530. data/vendor/plugins/rspec/examples/pure/yielding_example.rb +33 -0
  531. data/vendor/plugins/rspec/examples/stories/adder.rb +13 -0
  532. data/vendor/plugins/rspec/examples/stories/addition +34 -0
  533. data/vendor/plugins/rspec/examples/stories/addition.rb +9 -0
  534. data/vendor/plugins/rspec/examples/stories/calculator.rb +65 -0
  535. data/vendor/plugins/rspec/examples/stories/game-of-life/.loadpath +5 -0
  536. data/vendor/plugins/rspec/examples/stories/game-of-life/README.txt +21 -0
  537. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/everything.rb +6 -0
  538. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/examples/examples.rb +3 -0
  539. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/examples/game_behaviour.rb +35 -0
  540. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/examples/grid_behaviour.rb +66 -0
  541. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/CellsWithLessThanTwoNeighboursDie.story +21 -0
  542. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/CellsWithMoreThanThreeNeighboursDie.story +21 -0
  543. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/EmptySpacesWithThreeNeighboursCreateACell.story +42 -0
  544. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/ICanCreateACell.story +42 -0
  545. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/ICanKillACell.story +17 -0
  546. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/TheGridWraps.story +53 -0
  547. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/create_a_cell.rb +52 -0
  548. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/helper.rb +6 -0
  549. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/kill_a_cell.rb +26 -0
  550. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/steps.rb +5 -0
  551. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/stories.rb +3 -0
  552. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/stories.txt +22 -0
  553. data/vendor/plugins/rspec/examples/stories/game-of-life/life.rb +3 -0
  554. data/vendor/plugins/rspec/examples/stories/game-of-life/life/game.rb +23 -0
  555. data/vendor/plugins/rspec/examples/stories/game-of-life/life/grid.rb +43 -0
  556. data/vendor/plugins/rspec/examples/stories/helper.rb +9 -0
  557. data/vendor/plugins/rspec/examples/stories/steps/addition_steps.rb +18 -0
  558. data/vendor/plugins/rspec/failing_examples/README.txt +7 -0
  559. data/vendor/plugins/rspec/failing_examples/diffing_spec.rb +36 -0
  560. data/vendor/plugins/rspec/failing_examples/failing_autogenerated_docstrings_example.rb +19 -0
  561. data/vendor/plugins/rspec/failing_examples/failure_in_setup.rb +10 -0
  562. data/vendor/plugins/rspec/failing_examples/failure_in_teardown.rb +10 -0
  563. data/vendor/plugins/rspec/failing_examples/mocking_example.rb +40 -0
  564. data/vendor/plugins/rspec/failing_examples/mocking_with_flexmock.rb +26 -0
  565. data/vendor/plugins/rspec/failing_examples/mocking_with_mocha.rb +25 -0
  566. data/vendor/plugins/rspec/failing_examples/mocking_with_rr.rb +27 -0
  567. data/vendor/plugins/rspec/failing_examples/partial_mock_example.rb +20 -0
  568. data/vendor/plugins/rspec/failing_examples/predicate_example.rb +29 -0
  569. data/vendor/plugins/rspec/failing_examples/raising_example.rb +47 -0
  570. data/vendor/plugins/rspec/failing_examples/spec_helper.rb +3 -0
  571. data/vendor/plugins/rspec/failing_examples/syntax_error_example.rb +7 -0
  572. data/vendor/plugins/rspec/failing_examples/team_spec.rb +44 -0
  573. data/vendor/plugins/rspec/failing_examples/timeout_behaviour.rb +7 -0
  574. data/vendor/plugins/rspec/init.rb +9 -0
  575. data/vendor/plugins/rspec/lib/autotest/discover.rb +3 -0
  576. data/vendor/plugins/rspec/lib/autotest/rspec.rb +46 -0
  577. data/vendor/plugins/rspec/lib/spec.rb +28 -0
  578. data/vendor/plugins/rspec/lib/spec/adapters.rb +1 -0
  579. data/vendor/plugins/rspec/lib/spec/adapters/ruby_engine.rb +26 -0
  580. data/vendor/plugins/rspec/lib/spec/adapters/ruby_engine/mri.rb +8 -0
  581. data/vendor/plugins/rspec/lib/spec/adapters/ruby_engine/rubinius.rb +8 -0
  582. data/vendor/plugins/rspec/lib/spec/example.rb +12 -0
  583. data/vendor/plugins/rspec/lib/spec/example/configuration.rb +158 -0
  584. data/vendor/plugins/rspec/lib/spec/example/errors.rb +15 -0
  585. data/vendor/plugins/rspec/lib/spec/example/example_group.rb +17 -0
  586. data/vendor/plugins/rspec/lib/spec/example/example_group_factory.rb +64 -0
  587. data/vendor/plugins/rspec/lib/spec/example/example_group_methods.rb +440 -0
  588. data/vendor/plugins/rspec/lib/spec/example/example_matcher.rb +44 -0
  589. data/vendor/plugins/rspec/lib/spec/example/example_methods.rb +107 -0
  590. data/vendor/plugins/rspec/lib/spec/example/module_inclusion_warnings.rb +38 -0
  591. data/vendor/plugins/rspec/lib/spec/example/module_reopening_fix.rb +21 -0
  592. data/vendor/plugins/rspec/lib/spec/example/pending.rb +18 -0
  593. data/vendor/plugins/rspec/lib/spec/example/shared_example_group.rb +58 -0
  594. data/vendor/plugins/rspec/lib/spec/expectations.rb +56 -0
  595. data/vendor/plugins/rspec/lib/spec/expectations/differs/default.rb +66 -0
  596. data/vendor/plugins/rspec/lib/spec/expectations/errors.rb +12 -0
  597. data/vendor/plugins/rspec/lib/spec/expectations/extensions.rb +2 -0
  598. data/vendor/plugins/rspec/lib/spec/expectations/extensions/object.rb +63 -0
  599. data/vendor/plugins/rspec/lib/spec/expectations/extensions/string_and_symbol.rb +17 -0
  600. data/vendor/plugins/rspec/lib/spec/expectations/handler.rb +52 -0
  601. data/vendor/plugins/rspec/lib/spec/extensions.rb +4 -0
  602. data/vendor/plugins/rspec/lib/spec/extensions/class.rb +24 -0
  603. data/vendor/plugins/rspec/lib/spec/extensions/main.rb +87 -0
  604. data/vendor/plugins/rspec/lib/spec/extensions/metaclass.rb +7 -0
  605. data/vendor/plugins/rspec/lib/spec/extensions/object.rb +6 -0
  606. data/vendor/plugins/rspec/lib/spec/interop/test.rb +12 -0
  607. data/vendor/plugins/rspec/lib/spec/interop/test/unit/autorunner.rb +6 -0
  608. data/vendor/plugins/rspec/lib/spec/interop/test/unit/testcase.rb +61 -0
  609. data/vendor/plugins/rspec/lib/spec/interop/test/unit/testresult.rb +6 -0
  610. data/vendor/plugins/rspec/lib/spec/interop/test/unit/testsuite_adapter.rb +34 -0
  611. data/vendor/plugins/rspec/lib/spec/interop/test/unit/ui/console/testrunner.rb +61 -0
  612. data/vendor/plugins/rspec/lib/spec/matchers.rb +162 -0
  613. data/vendor/plugins/rspec/lib/spec/matchers/be.rb +221 -0
  614. data/vendor/plugins/rspec/lib/spec/matchers/be_close.rb +37 -0
  615. data/vendor/plugins/rspec/lib/spec/matchers/change.rb +148 -0
  616. data/vendor/plugins/rspec/lib/spec/matchers/eql.rb +43 -0
  617. data/vendor/plugins/rspec/lib/spec/matchers/equal.rb +43 -0
  618. data/vendor/plugins/rspec/lib/spec/matchers/exist.rb +17 -0
  619. data/vendor/plugins/rspec/lib/spec/matchers/has.rb +34 -0
  620. data/vendor/plugins/rspec/lib/spec/matchers/have.rb +150 -0
  621. data/vendor/plugins/rspec/lib/spec/matchers/include.rb +70 -0
  622. data/vendor/plugins/rspec/lib/spec/matchers/match.rb +41 -0
  623. data/vendor/plugins/rspec/lib/spec/matchers/operator_matcher.rb +79 -0
  624. data/vendor/plugins/rspec/lib/spec/matchers/raise_error.rb +132 -0
  625. data/vendor/plugins/rspec/lib/spec/matchers/respond_to.rb +45 -0
  626. data/vendor/plugins/rspec/lib/spec/matchers/satisfy.rb +47 -0
  627. data/vendor/plugins/rspec/lib/spec/matchers/simple_matcher.rb +132 -0
  628. data/vendor/plugins/rspec/lib/spec/matchers/throw_symbol.rb +74 -0
  629. data/vendor/plugins/rspec/lib/spec/mocks.rb +211 -0
  630. data/vendor/plugins/rspec/lib/spec/mocks/argument_constraints.rb +185 -0
  631. data/vendor/plugins/rspec/lib/spec/mocks/argument_expectation.rb +71 -0
  632. data/vendor/plugins/rspec/lib/spec/mocks/error_generator.rb +84 -0
  633. data/vendor/plugins/rspec/lib/spec/mocks/errors.rb +10 -0
  634. data/vendor/plugins/rspec/lib/spec/mocks/extensions.rb +1 -0
  635. data/vendor/plugins/rspec/lib/spec/mocks/extensions/object.rb +3 -0
  636. data/vendor/plugins/rspec/lib/spec/mocks/framework.rb +15 -0
  637. data/vendor/plugins/rspec/lib/spec/mocks/message_expectation.rb +316 -0
  638. data/vendor/plugins/rspec/lib/spec/mocks/methods.rb +51 -0
  639. data/vendor/plugins/rspec/lib/spec/mocks/mock.rb +56 -0
  640. data/vendor/plugins/rspec/lib/spec/mocks/order_group.rb +29 -0
  641. data/vendor/plugins/rspec/lib/spec/mocks/proxy.rb +225 -0
  642. data/vendor/plugins/rspec/lib/spec/mocks/space.rb +28 -0
  643. data/vendor/plugins/rspec/lib/spec/mocks/spec_methods.rb +46 -0
  644. data/vendor/plugins/rspec/lib/spec/rake/spectask.rb +227 -0
  645. data/vendor/plugins/rspec/lib/spec/rake/verify_rcov.rb +52 -0
  646. data/vendor/plugins/rspec/lib/spec/runner.rb +214 -0
  647. data/vendor/plugins/rspec/lib/spec/runner/backtrace_tweaker.rb +56 -0
  648. data/vendor/plugins/rspec/lib/spec/runner/class_and_arguments_parser.rb +16 -0
  649. data/vendor/plugins/rspec/lib/spec/runner/command_line.rb +17 -0
  650. data/vendor/plugins/rspec/lib/spec/runner/drb_command_line.rb +20 -0
  651. data/vendor/plugins/rspec/lib/spec/runner/example_group_runner.rb +59 -0
  652. data/vendor/plugins/rspec/lib/spec/runner/formatter/base_formatter.rb +79 -0
  653. data/vendor/plugins/rspec/lib/spec/runner/formatter/base_text_formatter.rb +126 -0
  654. data/vendor/plugins/rspec/lib/spec/runner/formatter/failing_example_groups_formatter.rb +27 -0
  655. data/vendor/plugins/rspec/lib/spec/runner/formatter/failing_examples_formatter.rb +20 -0
  656. data/vendor/plugins/rspec/lib/spec/runner/formatter/html_formatter.rb +337 -0
  657. data/vendor/plugins/rspec/lib/spec/runner/formatter/nested_text_formatter.rb +65 -0
  658. data/vendor/plugins/rspec/lib/spec/runner/formatter/profile_formatter.rb +51 -0
  659. data/vendor/plugins/rspec/lib/spec/runner/formatter/progress_bar_formatter.rb +34 -0
  660. data/vendor/plugins/rspec/lib/spec/runner/formatter/snippet_extractor.rb +52 -0
  661. data/vendor/plugins/rspec/lib/spec/runner/formatter/specdoc_formatter.rb +39 -0
  662. data/vendor/plugins/rspec/lib/spec/runner/formatter/story/html_formatter.rb +174 -0
  663. data/vendor/plugins/rspec/lib/spec/runner/formatter/story/plain_text_formatter.rb +194 -0
  664. data/vendor/plugins/rspec/lib/spec/runner/formatter/story/progress_bar_formatter.rb +42 -0
  665. data/vendor/plugins/rspec/lib/spec/runner/formatter/text_mate_formatter.rb +16 -0
  666. data/vendor/plugins/rspec/lib/spec/runner/heckle_runner.rb +72 -0
  667. data/vendor/plugins/rspec/lib/spec/runner/heckle_runner_unsupported.rb +10 -0
  668. data/vendor/plugins/rspec/lib/spec/runner/option_parser.rb +204 -0
  669. data/vendor/plugins/rspec/lib/spec/runner/options.rb +318 -0
  670. data/vendor/plugins/rspec/lib/spec/runner/reporter.rb +167 -0
  671. data/vendor/plugins/rspec/lib/spec/runner/spec_parser.rb +71 -0
  672. data/vendor/plugins/rspec/lib/spec/story.rb +10 -0
  673. data/vendor/plugins/rspec/lib/spec/story/extensions.rb +3 -0
  674. data/vendor/plugins/rspec/lib/spec/story/extensions/main.rb +86 -0
  675. data/vendor/plugins/rspec/lib/spec/story/extensions/regexp.rb +9 -0
  676. data/vendor/plugins/rspec/lib/spec/story/extensions/string.rb +9 -0
  677. data/vendor/plugins/rspec/lib/spec/story/given_scenario.rb +14 -0
  678. data/vendor/plugins/rspec/lib/spec/story/runner.rb +59 -0
  679. data/vendor/plugins/rspec/lib/spec/story/runner/plain_text_story_runner.rb +48 -0
  680. data/vendor/plugins/rspec/lib/spec/story/runner/scenario_collector.rb +18 -0
  681. data/vendor/plugins/rspec/lib/spec/story/runner/scenario_runner.rb +54 -0
  682. data/vendor/plugins/rspec/lib/spec/story/runner/story_mediator.rb +137 -0
  683. data/vendor/plugins/rspec/lib/spec/story/runner/story_parser.rb +247 -0
  684. data/vendor/plugins/rspec/lib/spec/story/runner/story_runner.rb +70 -0
  685. data/vendor/plugins/rspec/lib/spec/story/scenario.rb +14 -0
  686. data/vendor/plugins/rspec/lib/spec/story/step.rb +70 -0
  687. data/vendor/plugins/rspec/lib/spec/story/step_group.rb +89 -0
  688. data/vendor/plugins/rspec/lib/spec/story/step_mother.rb +38 -0
  689. data/vendor/plugins/rspec/lib/spec/story/story.rb +39 -0
  690. data/vendor/plugins/rspec/lib/spec/story/world.rb +128 -0
  691. data/vendor/plugins/rspec/lib/spec/version.rb +13 -0
  692. data/vendor/plugins/rspec/plugins/mock_frameworks/flexmock.rb +23 -0
  693. data/vendor/plugins/rspec/plugins/mock_frameworks/mocha.rb +19 -0
  694. data/vendor/plugins/rspec/plugins/mock_frameworks/rr.rb +21 -0
  695. data/vendor/plugins/rspec/plugins/mock_frameworks/rspec.rb +20 -0
  696. data/vendor/plugins/rspec/rake_tasks/examples.rake +7 -0
  697. data/vendor/plugins/rspec/rake_tasks/examples_with_rcov.rake +9 -0
  698. data/vendor/plugins/rspec/rake_tasks/failing_examples_with_html.rake +9 -0
  699. data/vendor/plugins/rspec/rake_tasks/verify_rcov.rake +7 -0
  700. data/vendor/plugins/rspec/rspec.gemspec +33 -0
  701. data/vendor/plugins/rspec/spec/README.jruby +15 -0
  702. data/vendor/plugins/rspec/spec/autotest/discover_spec.rb +19 -0
  703. data/vendor/plugins/rspec/spec/autotest/rspec_spec.rb +146 -0
  704. data/vendor/plugins/rspec/spec/autotest_helper.rb +6 -0
  705. data/vendor/plugins/rspec/spec/autotest_matchers.rb +47 -0
  706. data/vendor/plugins/rspec/spec/rspec_suite.rb +7 -0
  707. data/vendor/plugins/rspec/spec/ruby_forker.rb +13 -0
  708. data/vendor/plugins/rspec/spec/spec.opts +6 -0
  709. data/vendor/plugins/rspec/spec/spec/adapters/ruby_engine_spec.rb +16 -0
  710. data/vendor/plugins/rspec/spec/spec/example/base_formatter_spec.rb +112 -0
  711. data/vendor/plugins/rspec/spec/spec/example/configuration_spec.rb +282 -0
  712. data/vendor/plugins/rspec/spec/spec/example/example_group/described_module_spec.rb +20 -0
  713. data/vendor/plugins/rspec/spec/spec/example/example_group/warning_messages_spec.rb +76 -0
  714. data/vendor/plugins/rspec/spec/spec/example/example_group_class_definition_spec.rb +48 -0
  715. data/vendor/plugins/rspec/spec/spec/example/example_group_factory_spec.rb +144 -0
  716. data/vendor/plugins/rspec/spec/spec/example/example_group_methods_spec.rb +574 -0
  717. data/vendor/plugins/rspec/spec/spec/example/example_group_spec.rb +724 -0
  718. data/vendor/plugins/rspec/spec/spec/example/example_matcher_spec.rb +96 -0
  719. data/vendor/plugins/rspec/spec/spec/example/example_methods_spec.rb +130 -0
  720. data/vendor/plugins/rspec/spec/spec/example/example_runner_spec.rb +194 -0
  721. data/vendor/plugins/rspec/spec/spec/example/nested_example_group_spec.rb +71 -0
  722. data/vendor/plugins/rspec/spec/spec/example/pending_module_spec.rb +69 -0
  723. data/vendor/plugins/rspec/spec/spec/example/predicate_matcher_spec.rb +21 -0
  724. data/vendor/plugins/rspec/spec/spec/example/shared_example_group_spec.rb +265 -0
  725. data/vendor/plugins/rspec/spec/spec/example/subclassing_example_group_spec.rb +25 -0
  726. data/vendor/plugins/rspec/spec/spec/expectations/differs/default_spec.rb +127 -0
  727. data/vendor/plugins/rspec/spec/spec/expectations/extensions/object_spec.rb +95 -0
  728. data/vendor/plugins/rspec/spec/spec/expectations/fail_with_spec.rb +71 -0
  729. data/vendor/plugins/rspec/spec/spec/extensions/main_spec.rb +71 -0
  730. data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/spec_that_fails.rb +10 -0
  731. data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/spec_that_passes.rb +10 -0
  732. data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/spec_with_errors.rb +10 -0
  733. data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/test_case_that_fails.rb +10 -0
  734. data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/test_case_that_passes.rb +10 -0
  735. data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/test_case_with_errors.rb +10 -0
  736. data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/testsuite_adapter_spec_with_test_unit.rb +38 -0
  737. data/vendor/plugins/rspec/spec/spec/interop/test/unit/spec_spec.rb +45 -0
  738. data/vendor/plugins/rspec/spec/spec/interop/test/unit/test_unit_spec_helper.rb +14 -0
  739. data/vendor/plugins/rspec/spec/spec/interop/test/unit/testcase_spec.rb +45 -0
  740. data/vendor/plugins/rspec/spec/spec/interop/test/unit/testsuite_adapter_spec.rb +9 -0
  741. data/vendor/plugins/rspec/spec/spec/matchers/be_close_spec.rb +39 -0
  742. data/vendor/plugins/rspec/spec/spec/matchers/be_spec.rb +248 -0
  743. data/vendor/plugins/rspec/spec/spec/matchers/change_spec.rb +329 -0
  744. data/vendor/plugins/rspec/spec/spec/matchers/description_generation_spec.rb +153 -0
  745. data/vendor/plugins/rspec/spec/spec/matchers/eql_spec.rb +28 -0
  746. data/vendor/plugins/rspec/spec/spec/matchers/equal_spec.rb +28 -0
  747. data/vendor/plugins/rspec/spec/spec/matchers/exist_spec.rb +57 -0
  748. data/vendor/plugins/rspec/spec/spec/matchers/handler_spec.rb +150 -0
  749. data/vendor/plugins/rspec/spec/spec/matchers/has_spec.rb +63 -0
  750. data/vendor/plugins/rspec/spec/spec/matchers/have_spec.rb +394 -0
  751. data/vendor/plugins/rspec/spec/spec/matchers/include_spec.rb +45 -0
  752. data/vendor/plugins/rspec/spec/spec/matchers/match_spec.rb +37 -0
  753. data/vendor/plugins/rspec/spec/spec/matchers/matcher_methods_spec.rb +78 -0
  754. data/vendor/plugins/rspec/spec/spec/matchers/mock_constraint_matchers_spec.rb +24 -0
  755. data/vendor/plugins/rspec/spec/spec/matchers/operator_matcher_spec.rb +191 -0
  756. data/vendor/plugins/rspec/spec/spec/matchers/raise_error_spec.rb +315 -0
  757. data/vendor/plugins/rspec/spec/spec/matchers/respond_to_spec.rb +54 -0
  758. data/vendor/plugins/rspec/spec/spec/matchers/satisfy_spec.rb +36 -0
  759. data/vendor/plugins/rspec/spec/spec/matchers/simple_matcher_spec.rb +93 -0
  760. data/vendor/plugins/rspec/spec/spec/matchers/throw_symbol_spec.rb +54 -0
  761. data/vendor/plugins/rspec/spec/spec/mocks/any_number_of_times_spec.rb +36 -0
  762. data/vendor/plugins/rspec/spec/spec/mocks/argument_expectation_spec.rb +23 -0
  763. data/vendor/plugins/rspec/spec/spec/mocks/at_least_spec.rb +97 -0
  764. data/vendor/plugins/rspec/spec/spec/mocks/at_most_spec.rb +93 -0
  765. data/vendor/plugins/rspec/spec/spec/mocks/bug_report_10260_spec.rb +8 -0
  766. data/vendor/plugins/rspec/spec/spec/mocks/bug_report_10263_spec.rb +24 -0
  767. data/vendor/plugins/rspec/spec/spec/mocks/bug_report_11545_spec.rb +33 -0
  768. data/vendor/plugins/rspec/spec/spec/mocks/bug_report_15719_spec.rb +30 -0
  769. data/vendor/plugins/rspec/spec/spec/mocks/bug_report_496.rb +17 -0
  770. data/vendor/plugins/rspec/spec/spec/mocks/bug_report_7611_spec.rb +19 -0
  771. data/vendor/plugins/rspec/spec/spec/mocks/bug_report_7805_spec.rb +22 -0
  772. data/vendor/plugins/rspec/spec/spec/mocks/bug_report_8165_spec.rb +31 -0
  773. data/vendor/plugins/rspec/spec/spec/mocks/bug_report_8302_spec.rb +26 -0
  774. data/vendor/plugins/rspec/spec/spec/mocks/failing_mock_argument_constraints_spec.rb +129 -0
  775. data/vendor/plugins/rspec/spec/spec/mocks/hash_including_matcher_spec.rb +53 -0
  776. data/vendor/plugins/rspec/spec/spec/mocks/mock_ordering_spec.rb +84 -0
  777. data/vendor/plugins/rspec/spec/spec/mocks/mock_space_spec.rb +54 -0
  778. data/vendor/plugins/rspec/spec/spec/mocks/mock_spec.rb +539 -0
  779. data/vendor/plugins/rspec/spec/spec/mocks/multiple_return_value_spec.rb +113 -0
  780. data/vendor/plugins/rspec/spec/spec/mocks/nil_expectation_warning_spec.rb +54 -0
  781. data/vendor/plugins/rspec/spec/spec/mocks/null_object_mock_spec.rb +54 -0
  782. data/vendor/plugins/rspec/spec/spec/mocks/once_counts_spec.rb +53 -0
  783. data/vendor/plugins/rspec/spec/spec/mocks/options_hash_spec.rb +35 -0
  784. data/vendor/plugins/rspec/spec/spec/mocks/partial_mock_spec.rb +144 -0
  785. data/vendor/plugins/rspec/spec/spec/mocks/partial_mock_using_mocks_directly_spec.rb +66 -0
  786. data/vendor/plugins/rspec/spec/spec/mocks/passing_mock_argument_constraints_spec.rb +174 -0
  787. data/vendor/plugins/rspec/spec/spec/mocks/precise_counts_spec.rb +52 -0
  788. data/vendor/plugins/rspec/spec/spec/mocks/record_messages_spec.rb +26 -0
  789. data/vendor/plugins/rspec/spec/spec/mocks/stub_spec.rb +188 -0
  790. data/vendor/plugins/rspec/spec/spec/mocks/twice_counts_spec.rb +67 -0
  791. data/vendor/plugins/rspec/spec/spec/package/bin_spec_spec.rb +14 -0
  792. data/vendor/plugins/rspec/spec/spec/runner/class_and_argument_parser_spec.rb +23 -0
  793. data/vendor/plugins/rspec/spec/spec/runner/command_line_spec.rb +140 -0
  794. data/vendor/plugins/rspec/spec/spec/runner/drb_command_line_spec.rb +99 -0
  795. data/vendor/plugins/rspec/spec/spec/runner/empty_file.txt +0 -0
  796. data/vendor/plugins/rspec/spec/spec/runner/examples.txt +2 -0
  797. data/vendor/plugins/rspec/spec/spec/runner/failed.txt +3 -0
  798. data/vendor/plugins/rspec/spec/spec/runner/formatter/failing_example_groups_formatter_spec.rb +45 -0
  799. data/vendor/plugins/rspec/spec/spec/runner/formatter/failing_examples_formatter_spec.rb +33 -0
  800. data/vendor/plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.4.html +365 -0
  801. data/vendor/plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.5-jruby.html +387 -0
  802. data/vendor/plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.5.html +371 -0
  803. data/vendor/plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.6-jruby.html +381 -0
  804. data/vendor/plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.6.html +370 -0
  805. data/vendor/plugins/rspec/spec/spec/runner/formatter/html_formatter_spec.rb +64 -0
  806. data/vendor/plugins/rspec/spec/spec/runner/formatter/nested_text_formatter_spec.rb +333 -0
  807. data/vendor/plugins/rspec/spec/spec/runner/formatter/profile_formatter_spec.rb +65 -0
  808. data/vendor/plugins/rspec/spec/spec/runner/formatter/progress_bar_formatter_spec.rb +155 -0
  809. data/vendor/plugins/rspec/spec/spec/runner/formatter/snippet_extractor_spec.rb +18 -0
  810. data/vendor/plugins/rspec/spec/spec/runner/formatter/spec_mate_formatter_spec.rb +104 -0
  811. data/vendor/plugins/rspec/spec/spec/runner/formatter/specdoc_formatter_spec.rb +158 -0
  812. data/vendor/plugins/rspec/spec/spec/runner/formatter/story/html_formatter_spec.rb +135 -0
  813. data/vendor/plugins/rspec/spec/spec/runner/formatter/story/plain_text_formatter_spec.rb +600 -0
  814. data/vendor/plugins/rspec/spec/spec/runner/formatter/story/progress_bar_formatter_spec.rb +82 -0
  815. data/vendor/plugins/rspec/spec/spec/runner/formatter/text_mate_formatted-1.8.4.html +365 -0
  816. data/vendor/plugins/rspec/spec/spec/runner/formatter/text_mate_formatted-1.8.6.html +370 -0
  817. data/vendor/plugins/rspec/spec/spec/runner/heckle_runner_spec.rb +78 -0
  818. data/vendor/plugins/rspec/spec/spec/runner/heckler_spec.rb +13 -0
  819. data/vendor/plugins/rspec/spec/spec/runner/noisy_backtrace_tweaker_spec.rb +45 -0
  820. data/vendor/plugins/rspec/spec/spec/runner/option_parser_spec.rb +409 -0
  821. data/vendor/plugins/rspec/spec/spec/runner/options_spec.rb +450 -0
  822. data/vendor/plugins/rspec/spec/spec/runner/output_one_time_fixture.rb +7 -0
  823. data/vendor/plugins/rspec/spec/spec/runner/output_one_time_fixture_runner.rb +8 -0
  824. data/vendor/plugins/rspec/spec/spec/runner/output_one_time_spec.rb +16 -0
  825. data/vendor/plugins/rspec/spec/spec/runner/quiet_backtrace_tweaker_spec.rb +62 -0
  826. data/vendor/plugins/rspec/spec/spec/runner/reporter_spec.rb +238 -0
  827. data/vendor/plugins/rspec/spec/spec/runner/resources/a_bar.rb +0 -0
  828. data/vendor/plugins/rspec/spec/spec/runner/resources/a_foo.rb +0 -0
  829. data/vendor/plugins/rspec/spec/spec/runner/resources/a_spec.rb +1 -0
  830. data/vendor/plugins/rspec/spec/spec/runner/spec.opts +2 -0
  831. data/vendor/plugins/rspec/spec/spec/runner/spec_drb.opts +1 -0
  832. data/vendor/plugins/rspec/spec/spec/runner/spec_parser/spec_parser_fixture.rb +70 -0
  833. data/vendor/plugins/rspec/spec/spec/runner/spec_parser_spec.rb +85 -0
  834. data/vendor/plugins/rspec/spec/spec/runner/spec_spaced.opts +2 -0
  835. data/vendor/plugins/rspec/spec/spec/runner_spec.rb +11 -0
  836. data/vendor/plugins/rspec/spec/spec/spec_classes.rb +133 -0
  837. data/vendor/plugins/rspec/spec/spec/story/builders.rb +46 -0
  838. data/vendor/plugins/rspec/spec/spec/story/extensions/main_spec.rb +161 -0
  839. data/vendor/plugins/rspec/spec/spec/story/extensions_spec.rb +14 -0
  840. data/vendor/plugins/rspec/spec/spec/story/given_scenario_spec.rb +27 -0
  841. data/vendor/plugins/rspec/spec/spec/story/runner/plain_text_story_runner_spec.rb +90 -0
  842. data/vendor/plugins/rspec/spec/spec/story/runner/scenario_collector_spec.rb +27 -0
  843. data/vendor/plugins/rspec/spec/spec/story/runner/scenario_runner_spec.rb +214 -0
  844. data/vendor/plugins/rspec/spec/spec/story/runner/story_mediator_spec.rb +143 -0
  845. data/vendor/plugins/rspec/spec/spec/story/runner/story_parser_spec.rb +401 -0
  846. data/vendor/plugins/rspec/spec/spec/story/runner/story_runner_spec.rb +294 -0
  847. data/vendor/plugins/rspec/spec/spec/story/runner_spec.rb +93 -0
  848. data/vendor/plugins/rspec/spec/spec/story/scenario_spec.rb +18 -0
  849. data/vendor/plugins/rspec/spec/spec/story/step_group_spec.rb +157 -0
  850. data/vendor/plugins/rspec/spec/spec/story/step_mother_spec.rb +84 -0
  851. data/vendor/plugins/rspec/spec/spec/story/step_spec.rb +272 -0
  852. data/vendor/plugins/rspec/spec/spec/story/story_helper.rb +2 -0
  853. data/vendor/plugins/rspec/spec/spec/story/story_spec.rb +84 -0
  854. data/vendor/plugins/rspec/spec/spec/story/world_spec.rb +423 -0
  855. data/vendor/plugins/rspec/spec/spec_helper.rb +56 -0
  856. data/vendor/plugins/rspec/stories/all.rb +5 -0
  857. data/vendor/plugins/rspec/stories/configuration/before_blocks.story +21 -0
  858. data/vendor/plugins/rspec/stories/configuration/stories.rb +7 -0
  859. data/vendor/plugins/rspec/stories/example_groups/autogenerated_docstrings +45 -0
  860. data/vendor/plugins/rspec/stories/example_groups/example_group_with_should_methods +17 -0
  861. data/vendor/plugins/rspec/stories/example_groups/nested_groups +17 -0
  862. data/vendor/plugins/rspec/stories/example_groups/output +25 -0
  863. data/vendor/plugins/rspec/stories/example_groups/stories.rb +7 -0
  864. data/vendor/plugins/rspec/stories/helper.rb +6 -0
  865. data/vendor/plugins/rspec/stories/interop/examples_and_tests_together +30 -0
  866. data/vendor/plugins/rspec/stories/interop/stories.rb +7 -0
  867. data/vendor/plugins/rspec/stories/interop/test_case_with_should_methods +17 -0
  868. data/vendor/plugins/rspec/stories/mock_framework_integration/stories.rb +7 -0
  869. data/vendor/plugins/rspec/stories/mock_framework_integration/use_flexmock.story +9 -0
  870. data/vendor/plugins/rspec/stories/pending_stories/README +3 -0
  871. data/vendor/plugins/rspec/stories/resources/helpers/cmdline.rb +9 -0
  872. data/vendor/plugins/rspec/stories/resources/helpers/story_helper.rb +16 -0
  873. data/vendor/plugins/rspec/stories/resources/matchers/smart_match.rb +37 -0
  874. data/vendor/plugins/rspec/stories/resources/spec/before_blocks_example.rb +32 -0
  875. data/vendor/plugins/rspec/stories/resources/spec/example_group_with_should_methods.rb +12 -0
  876. data/vendor/plugins/rspec/stories/resources/spec/simple_spec.rb +8 -0
  877. data/vendor/plugins/rspec/stories/resources/spec/spec_with_flexmock.rb +18 -0
  878. data/vendor/plugins/rspec/stories/resources/steps/running_rspec.rb +50 -0
  879. data/vendor/plugins/rspec/stories/resources/stories/failing_story.rb +15 -0
  880. data/vendor/plugins/rspec/stories/resources/test/spec_and_test_together.rb +57 -0
  881. data/vendor/plugins/rspec/stories/resources/test/test_case_with_should_methods.rb +30 -0
  882. data/vendor/plugins/rspec/stories/stories/multiline_steps.story +23 -0
  883. data/vendor/plugins/rspec/stories/stories/steps/multiline_steps.rb +13 -0
  884. data/vendor/plugins/rspec/stories/stories/stories.rb +6 -0
  885. data/vendor/plugins/rspec/story_server/prototype/javascripts/builder.js +136 -0
  886. data/vendor/plugins/rspec/story_server/prototype/javascripts/controls.js +972 -0
  887. data/vendor/plugins/rspec/story_server/prototype/javascripts/dragdrop.js +976 -0
  888. data/vendor/plugins/rspec/story_server/prototype/javascripts/effects.js +1117 -0
  889. data/vendor/plugins/rspec/story_server/prototype/javascripts/prototype.js +4140 -0
  890. data/vendor/plugins/rspec/story_server/prototype/javascripts/rspec.js +149 -0
  891. data/vendor/plugins/rspec/story_server/prototype/javascripts/scriptaculous.js +58 -0
  892. data/vendor/plugins/rspec/story_server/prototype/javascripts/slider.js +276 -0
  893. data/vendor/plugins/rspec/story_server/prototype/javascripts/sound.js +55 -0
  894. data/vendor/plugins/rspec/story_server/prototype/javascripts/unittest.js +568 -0
  895. data/vendor/plugins/rspec/story_server/prototype/lib/server.rb +24 -0
  896. data/vendor/plugins/rspec/story_server/prototype/stories.html +176 -0
  897. data/vendor/plugins/rspec/story_server/prototype/stylesheets/rspec.css +136 -0
  898. data/vendor/plugins/rspec/story_server/prototype/stylesheets/test.css +90 -0
  899. data/vendor/plugins/will_paginate/.manifest +49 -0
  900. data/vendor/plugins/will_paginate/CHANGELOG.rdoc +94 -0
  901. data/vendor/plugins/will_paginate/LICENSE +18 -0
  902. data/vendor/plugins/will_paginate/README.rdoc +106 -0
  903. data/vendor/plugins/will_paginate/Rakefile +62 -0
  904. data/vendor/plugins/will_paginate/examples/apple-circle.gif +0 -0
  905. data/vendor/plugins/will_paginate/examples/index.haml +69 -0
  906. data/vendor/plugins/will_paginate/examples/index.html +92 -0
  907. data/vendor/plugins/will_paginate/examples/pagination.css +90 -0
  908. data/vendor/plugins/will_paginate/examples/pagination.sass +91 -0
  909. data/vendor/plugins/will_paginate/init.rb +1 -0
  910. data/vendor/plugins/will_paginate/lib/will_paginate.rb +82 -0
  911. data/vendor/plugins/will_paginate/lib/will_paginate/array.rb +16 -0
  912. data/vendor/plugins/will_paginate/lib/will_paginate/collection.rb +146 -0
  913. data/vendor/plugins/will_paginate/lib/will_paginate/core_ext.rb +32 -0
  914. data/vendor/plugins/will_paginate/lib/will_paginate/finder.rb +253 -0
  915. data/vendor/plugins/will_paginate/lib/will_paginate/named_scope.rb +132 -0
  916. data/vendor/plugins/will_paginate/lib/will_paginate/named_scope_patch.rb +39 -0
  917. data/vendor/plugins/will_paginate/lib/will_paginate/version.rb +9 -0
  918. data/vendor/plugins/will_paginate/lib/will_paginate/view_helpers.rb +383 -0
  919. data/vendor/plugins/will_paginate/test/boot.rb +21 -0
  920. data/vendor/plugins/will_paginate/test/collection_test.rb +140 -0
  921. data/vendor/plugins/will_paginate/test/console +8 -0
  922. data/vendor/plugins/will_paginate/test/database.yml +22 -0
  923. data/vendor/plugins/will_paginate/test/finder_test.rb +443 -0
  924. data/vendor/plugins/will_paginate/test/fixtures/admin.rb +3 -0
  925. data/vendor/plugins/will_paginate/test/fixtures/developer.rb +13 -0
  926. data/vendor/plugins/will_paginate/test/fixtures/developers_projects.yml +13 -0
  927. data/vendor/plugins/will_paginate/test/fixtures/project.rb +15 -0
  928. data/vendor/plugins/will_paginate/test/fixtures/projects.yml +6 -0
  929. data/vendor/plugins/will_paginate/test/fixtures/replies.yml +29 -0
  930. data/vendor/plugins/will_paginate/test/fixtures/reply.rb +7 -0
  931. data/vendor/plugins/will_paginate/test/fixtures/schema.rb +38 -0
  932. data/vendor/plugins/will_paginate/test/fixtures/topic.rb +6 -0
  933. data/vendor/plugins/will_paginate/test/fixtures/topics.yml +30 -0
  934. data/vendor/plugins/will_paginate/test/fixtures/user.rb +2 -0
  935. data/vendor/plugins/will_paginate/test/fixtures/users.yml +35 -0
  936. data/vendor/plugins/will_paginate/test/helper.rb +37 -0
  937. data/vendor/plugins/will_paginate/test/lib/activerecord_test_case.rb +36 -0
  938. data/vendor/plugins/will_paginate/test/lib/activerecord_test_connector.rb +69 -0
  939. data/vendor/plugins/will_paginate/test/lib/load_fixtures.rb +11 -0
  940. data/vendor/plugins/will_paginate/test/lib/view_test_process.rb +165 -0
  941. data/vendor/plugins/will_paginate/test/tasks.rake +59 -0
  942. data/vendor/plugins/will_paginate/test/view_test.rb +363 -0
  943. data/vendor/plugins/will_paginate/will_paginate.gemspec +21 -0
  944. metadata +995 -0
@@ -0,0 +1,50 @@
1
+ steps_for :running_rspec do
2
+
3
+ Given("the file $relative_path") do |relative_path|
4
+ @path = File.expand_path(File.join(File.dirname(__FILE__), "..", "..", "resources", relative_path))
5
+ unless File.exist?(@path)
6
+ raise "could not find file at #{@path}"
7
+ end
8
+ end
9
+
10
+ When("I run it with the $interpreter") do |interpreter|
11
+ stderr_file = Tempfile.new('rspec')
12
+ stderr_file.close
13
+ @stdout = case(interpreter)
14
+ when /^ruby interpreter/
15
+ args = interpreter.gsub('ruby interpreter','')
16
+ ruby("#{@path}#{args}", stderr_file.path)
17
+ when /^spec script/
18
+ args = interpreter.gsub('spec script','')
19
+ spec("#{@path}#{args}", stderr_file.path)
20
+ when 'CommandLine object' then cmdline(@path, stderr_file.path)
21
+ else raise "Unknown interpreter: #{interpreter}"
22
+ end
23
+ @stderr = IO.read(stderr_file.path)
24
+ @exit_code = $?.to_i
25
+ end
26
+
27
+ Then("the exit code should be $exit_code") do |exit_code|
28
+ if @exit_code != exit_code.to_i
29
+ raise "Did not exit with #{exit_code}, but with #{@exit_code}. Standard error:\n#{@stderr}"
30
+ end
31
+ end
32
+
33
+ Then("the $stream should match $regex") do |stream, string_or_regex|
34
+ written = case(stream)
35
+ when 'stdout' then @stdout
36
+ when 'stderr' then @stderr
37
+ else raise "Unknown stream: #{stream}"
38
+ end
39
+ written.should smart_match(string_or_regex)
40
+ end
41
+
42
+ Then("the $stream should not match $regex") do |stream, string_or_regex|
43
+ written = case(stream)
44
+ when 'stdout' then @stdout
45
+ when 'stderr' then @stderr
46
+ else raise "Unknown stream: #{stream}"
47
+ end
48
+ written.should_not smart_match(string_or_regex)
49
+ end
50
+ end
@@ -0,0 +1,15 @@
1
+ $:.push File.join(File.dirname(__FILE__), *%w[.. .. .. lib])
2
+
3
+ require 'spec/story'
4
+
5
+ Story "Failing story",
6
+ %(As an RSpec user
7
+ I want a failing test
8
+ So that I can observe the output) do
9
+
10
+ Scenario "Failing scenario" do
11
+ Then "true should be false" do
12
+ true.should == false
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,57 @@
1
+ $:.push File.join(File.dirname(__FILE__), *%w[.. .. .. lib])
2
+ require 'spec'
3
+ # TODO - this should not be necessary, ay?
4
+ require 'spec/interop/test'
5
+
6
+ describe "An Example" do
7
+ it "should pass with assert" do
8
+ assert true
9
+ end
10
+
11
+ it "should fail with assert" do
12
+ assert false
13
+ end
14
+
15
+ it "should pass with should" do
16
+ 1.should == 1
17
+ end
18
+
19
+ it "should fail with should" do
20
+ 1.should == 2
21
+ end
22
+ end
23
+
24
+ class ATest < Test::Unit::TestCase
25
+ def test_should_pass_with_assert
26
+ assert true
27
+ end
28
+
29
+ def test_should_fail_with_assert
30
+ assert false
31
+ end
32
+
33
+ def test_should_pass_with_should
34
+ 1.should == 1
35
+ end
36
+
37
+ def test_should_fail_with_should
38
+ 1.should == 2
39
+ end
40
+
41
+ def setup
42
+ @from_setup ||= 3
43
+ @from_setup += 1
44
+ end
45
+
46
+ def test_should_fail_with_setup_method_variable
47
+ @from_setup.should == 40
48
+ end
49
+
50
+ before do
51
+ @from_before = @from_setup + 1
52
+ end
53
+
54
+ def test_should_fail_with_before_block_variable
55
+ @from_before.should == 50
56
+ end
57
+ end
@@ -0,0 +1,30 @@
1
+ $:.push File.join(File.dirname(__FILE__), *%w[.. .. .. lib])
2
+ require 'test/unit'
3
+ require 'spec'
4
+ require 'spec/interop/test'
5
+
6
+ class MySpec < Test::Unit::TestCase
7
+ def should_pass_with_should
8
+ 1.should == 1
9
+ end
10
+
11
+ def should_fail_with_should
12
+ 1.should == 2
13
+ end
14
+
15
+ def should_pass_with_assert
16
+ assert true
17
+ end
18
+
19
+ def should_fail_with_assert
20
+ assert false
21
+ end
22
+
23
+ def test
24
+ raise "This is not a real test"
25
+ end
26
+
27
+ def test_ify
28
+ raise "This is a real test"
29
+ end
30
+ end
@@ -0,0 +1,23 @@
1
+ Story: multiline steps in plain text stories
2
+
3
+ As a plain text story writer
4
+ I want to write steps with multiline arguments
5
+
6
+ Scenario: two lines
7
+
8
+ Given I have a two line step with this text:
9
+ This is the first line
10
+ # This, by the way, is just a comment
11
+ plus this is the second line
12
+
13
+ # This, by the way, is just a comment
14
+
15
+ When I have a When with the same two lines:
16
+ This is the first line
17
+ plus this is the second line
18
+
19
+ Then it should match:
20
+ This is the first line
21
+ plus this is the second line
22
+
23
+ # And here is another comment
@@ -0,0 +1,13 @@
1
+ steps_for :multiline_steps do
2
+ Given "I have a two line step with this text:$text" do |text|
3
+ @text = text
4
+ end
5
+
6
+ When "I have a When with the same two lines:$text" do |text|
7
+ text.should == @text
8
+ end
9
+
10
+ Then "it should match:$text" do |text|
11
+ text.should == @text
12
+ end
13
+ end
@@ -0,0 +1,6 @@
1
+ require File.join(File.dirname(__FILE__), *%w[.. helper])
2
+ require File.join(File.dirname(__FILE__), *%w[steps multiline_steps])
3
+
4
+ with_steps_for :multiline_steps do
5
+ run File.dirname(__FILE__) + "/multiline_steps.story"
6
+ end
@@ -0,0 +1,136 @@
1
+ // script.aculo.us builder.js v1.8.0_pre1, Fri Oct 12 21:34:51 +0200 2007
2
+
3
+ // Copyright (c) 2005-2007 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
4
+ //
5
+ // script.aculo.us is freely distributable under the terms of an MIT-style license.
6
+ // For details, see the script.aculo.us web site: http://script.aculo.us/
7
+
8
+ var Builder = {
9
+ NODEMAP: {
10
+ AREA: 'map',
11
+ CAPTION: 'table',
12
+ COL: 'table',
13
+ COLGROUP: 'table',
14
+ LEGEND: 'fieldset',
15
+ OPTGROUP: 'select',
16
+ OPTION: 'select',
17
+ PARAM: 'object',
18
+ TBODY: 'table',
19
+ TD: 'table',
20
+ TFOOT: 'table',
21
+ TH: 'table',
22
+ THEAD: 'table',
23
+ TR: 'table'
24
+ },
25
+ // note: For Firefox < 1.5, OPTION and OPTGROUP tags are currently broken,
26
+ // due to a Firefox bug
27
+ node: function(elementName) {
28
+ elementName = elementName.toUpperCase();
29
+
30
+ // try innerHTML approach
31
+ var parentTag = this.NODEMAP[elementName] || 'div';
32
+ var parentElement = document.createElement(parentTag);
33
+ try { // prevent IE "feature": http://dev.rubyonrails.org/ticket/2707
34
+ parentElement.innerHTML = "<" + elementName + "></" + elementName + ">";
35
+ } catch(e) {}
36
+ var element = parentElement.firstChild || null;
37
+
38
+ // see if browser added wrapping tags
39
+ if(element && (element.tagName.toUpperCase() != elementName))
40
+ element = element.getElementsByTagName(elementName)[0];
41
+
42
+ // fallback to createElement approach
43
+ if(!element) element = document.createElement(elementName);
44
+
45
+ // abort if nothing could be created
46
+ if(!element) return;
47
+
48
+ // attributes (or text)
49
+ if(arguments[1])
50
+ if(this._isStringOrNumber(arguments[1]) ||
51
+ (arguments[1] instanceof Array) ||
52
+ arguments[1].tagName) {
53
+ this._children(element, arguments[1]);
54
+ } else {
55
+ var attrs = this._attributes(arguments[1]);
56
+ if(attrs.length) {
57
+ try { // prevent IE "feature": http://dev.rubyonrails.org/ticket/2707
58
+ parentElement.innerHTML = "<" +elementName + " " +
59
+ attrs + "></" + elementName + ">";
60
+ } catch(e) {}
61
+ element = parentElement.firstChild || null;
62
+ // workaround firefox 1.0.X bug
63
+ if(!element) {
64
+ element = document.createElement(elementName);
65
+ for(attr in arguments[1])
66
+ element[attr == 'class' ? 'className' : attr] = arguments[1][attr];
67
+ }
68
+ if(element.tagName.toUpperCase() != elementName)
69
+ element = parentElement.getElementsByTagName(elementName)[0];
70
+ }
71
+ }
72
+
73
+ // text, or array of children
74
+ if(arguments[2])
75
+ this._children(element, arguments[2]);
76
+
77
+ return element;
78
+ },
79
+ _text: function(text) {
80
+ return document.createTextNode(text);
81
+ },
82
+
83
+ ATTR_MAP: {
84
+ 'className': 'class',
85
+ 'htmlFor': 'for'
86
+ },
87
+
88
+ _attributes: function(attributes) {
89
+ var attrs = [];
90
+ for(attribute in attributes)
91
+ attrs.push((attribute in this.ATTR_MAP ? this.ATTR_MAP[attribute] : attribute) +
92
+ '="' + attributes[attribute].toString().escapeHTML().gsub(/"/,'&quot;') + '"');
93
+ return attrs.join(" ");
94
+ },
95
+ _children: function(element, children) {
96
+ if(children.tagName) {
97
+ element.appendChild(children);
98
+ return;
99
+ }
100
+ if(typeof children=='object') { // array can hold nodes and text
101
+ children.flatten().each( function(e) {
102
+ if(typeof e=='object')
103
+ element.appendChild(e)
104
+ else
105
+ if(Builder._isStringOrNumber(e))
106
+ element.appendChild(Builder._text(e));
107
+ });
108
+ } else
109
+ if(Builder._isStringOrNumber(children))
110
+ element.appendChild(Builder._text(children));
111
+ },
112
+ _isStringOrNumber: function(param) {
113
+ return(typeof param=='string' || typeof param=='number');
114
+ },
115
+ build: function(html) {
116
+ var element = this.node('div');
117
+ $(element).update(html.strip());
118
+ return element.down();
119
+ },
120
+ dump: function(scope) {
121
+ if(typeof scope != 'object' && typeof scope != 'function') scope = window; //global scope
122
+
123
+ var tags = ("A ABBR ACRONYM ADDRESS APPLET AREA B BASE BASEFONT BDO BIG BLOCKQUOTE BODY " +
124
+ "BR BUTTON CAPTION CENTER CITE CODE COL COLGROUP DD DEL DFN DIR DIV DL DT EM FIELDSET " +
125
+ "FONT FORM FRAME FRAMESET H1 H2 H3 H4 H5 H6 HEAD HR HTML I IFRAME IMG INPUT INS ISINDEX "+
126
+ "KBD LABEL LEGEND LI LINK MAP MENU META NOFRAMES NOSCRIPT OBJECT OL OPTGROUP OPTION P "+
127
+ "PARAM PRE Q S SAMP SCRIPT SELECT SMALL SPAN STRIKE STRONG STYLE SUB SUP TABLE TBODY TD "+
128
+ "TEXTAREA TFOOT TH THEAD TITLE TR TT U UL VAR").split(/\s+/);
129
+
130
+ tags.each( function(tag){
131
+ scope[tag] = function() {
132
+ return Builder.node.apply(Builder, [tag].concat($A(arguments)));
133
+ }
134
+ });
135
+ }
136
+ }
@@ -0,0 +1,972 @@
1
+ // script.aculo.us controls.js v1.8.0_pre1, Fri Oct 12 21:34:51 +0200 2007
2
+
3
+ // Copyright (c) 2005-2007 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
4
+ // (c) 2005-2007 Ivan Krstic (http://blogs.law.harvard.edu/ivan)
5
+ // (c) 2005-2007 Jon Tirsen (http://www.tirsen.com)
6
+ // Contributors:
7
+ // Richard Livsey
8
+ // Rahul Bhargava
9
+ // Rob Wills
10
+ //
11
+ // script.aculo.us is freely distributable under the terms of an MIT-style license.
12
+ // For details, see the script.aculo.us web site: http://script.aculo.us/
13
+
14
+ // Autocompleter.Base handles all the autocompletion functionality
15
+ // that's independent of the data source for autocompletion. This
16
+ // includes drawing the autocompletion menu, observing keyboard
17
+ // and mouse events, and similar.
18
+ //
19
+ // Specific autocompleters need to provide, at the very least,
20
+ // a getUpdatedChoices function that will be invoked every time
21
+ // the text inside the monitored textbox changes. This method
22
+ // should get the text for which to provide autocompletion by
23
+ // invoking this.getToken(), NOT by directly accessing
24
+ // this.element.value. This is to allow incremental tokenized
25
+ // autocompletion. Specific auto-completion logic (AJAX, etc)
26
+ // belongs in getUpdatedChoices.
27
+ //
28
+ // Tokenized incremental autocompletion is enabled automatically
29
+ // when an autocompleter is instantiated with the 'tokens' option
30
+ // in the options parameter, e.g.:
31
+ // new Ajax.Autocompleter('id','upd', '/url/', { tokens: ',' });
32
+ // will incrementally autocomplete with a comma as the token.
33
+ // Additionally, ',' in the above example can be replaced with
34
+ // a token array, e.g. { tokens: [',', '\n'] } which
35
+ // enables autocompletion on multiple tokens. This is most
36
+ // useful when one of the tokens is \n (a newline), as it
37
+ // allows smart autocompletion after linebreaks.
38
+ //
39
+ // vim:expandtab ts=8 sw=2
40
+
41
+ if(typeof Effect == 'undefined')
42
+ throw("controls.js requires including script.aculo.us' effects.js library");
43
+
44
+ var Autocompleter = { }
45
+ Autocompleter.Base = function() { };
46
+ Autocompleter.Base.prototype = {
47
+ baseInitialize: function(element, update, options) {
48
+ element = $(element)
49
+ this.element = element;
50
+ this.update = $(update);
51
+ this.hasFocus = false;
52
+ this.changed = false;
53
+ this.active = false;
54
+ this.index = 0;
55
+ this.entryCount = 0;
56
+ this.oldElementValue = this.element.value;
57
+
58
+ if(this.setOptions)
59
+ this.setOptions(options);
60
+ else
61
+ this.options = options || { };
62
+
63
+ this.options.paramName = this.options.paramName || this.element.name;
64
+ this.options.tokens = this.options.tokens || [];
65
+ this.options.frequency = this.options.frequency || 0.4;
66
+ this.options.minChars = this.options.minChars || 1;
67
+ this.options.onShow = this.options.onShow ||
68
+ function(element, update){
69
+ if(!update.style.position || update.style.position=='absolute') {
70
+ update.style.position = 'absolute';
71
+ Position.clone(element, update, {
72
+ setHeight: false,
73
+ offsetTop: element.offsetHeight
74
+ });
75
+ }
76
+ Effect.Appear(update,{duration:0.15});
77
+ };
78
+ this.options.onHide = this.options.onHide ||
79
+ function(element, update){ new Effect.Fade(update,{duration:0.15}) };
80
+
81
+ if(typeof(this.options.tokens) == 'string')
82
+ this.options.tokens = new Array(this.options.tokens);
83
+ // Force carriage returns as token delimiters anyway
84
+ if (!this.options.tokens.include('\n'))
85
+ this.options.tokens.push('\n');
86
+
87
+ this.observer = null;
88
+
89
+ this.element.setAttribute('autocomplete','off');
90
+
91
+ Element.hide(this.update);
92
+
93
+ Event.observe(this.element, 'blur', this.onBlur.bindAsEventListener(this));
94
+ Event.observe(this.element, 'keypress', this.onKeyPress.bindAsEventListener(this));
95
+ },
96
+
97
+ show: function() {
98
+ if(Element.getStyle(this.update, 'display')=='none') this.options.onShow(this.element, this.update);
99
+ if(!this.iefix &&
100
+ (Prototype.Browser.IE) &&
101
+ (Element.getStyle(this.update, 'position')=='absolute')) {
102
+ new Insertion.After(this.update,
103
+ '<iframe id="' + this.update.id + '_iefix" '+
104
+ 'style="display:none;position:absolute;filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);" ' +
105
+ 'src="javascript:false;" frameborder="0" scrolling="no"></iframe>');
106
+ this.iefix = $(this.update.id+'_iefix');
107
+ }
108
+ if(this.iefix) setTimeout(this.fixIEOverlapping.bind(this), 50);
109
+ },
110
+
111
+ fixIEOverlapping: function() {
112
+ Position.clone(this.update, this.iefix, {setTop:(!this.update.style.height)});
113
+ this.iefix.style.zIndex = 1;
114
+ this.update.style.zIndex = 2;
115
+ Element.show(this.iefix);
116
+ },
117
+
118
+ hide: function() {
119
+ this.stopIndicator();
120
+ if(Element.getStyle(this.update, 'display')!='none') this.options.onHide(this.element, this.update);
121
+ if(this.iefix) Element.hide(this.iefix);
122
+ },
123
+
124
+ startIndicator: function() {
125
+ if(this.options.indicator) Element.show(this.options.indicator);
126
+ },
127
+
128
+ stopIndicator: function() {
129
+ if(this.options.indicator) Element.hide(this.options.indicator);
130
+ },
131
+
132
+ onKeyPress: function(event) {
133
+ if(this.active)
134
+ switch(event.keyCode) {
135
+ case Event.KEY_TAB:
136
+ case Event.KEY_RETURN:
137
+ this.selectEntry();
138
+ Event.stop(event);
139
+ case Event.KEY_ESC:
140
+ this.hide();
141
+ this.active = false;
142
+ Event.stop(event);
143
+ return;
144
+ case Event.KEY_LEFT:
145
+ case Event.KEY_RIGHT:
146
+ return;
147
+ case Event.KEY_UP:
148
+ this.markPrevious();
149
+ this.render();
150
+ if(Prototype.Browser.WebKit) Event.stop(event);
151
+ return;
152
+ case Event.KEY_DOWN:
153
+ this.markNext();
154
+ this.render();
155
+ if(Prototype.Browser.WebKit) Event.stop(event);
156
+ return;
157
+ }
158
+ else
159
+ if(event.keyCode==Event.KEY_TAB || event.keyCode==Event.KEY_RETURN ||
160
+ (Prototype.Browser.WebKit > 0 && event.keyCode == 0)) return;
161
+
162
+ this.changed = true;
163
+ this.hasFocus = true;
164
+
165
+ if(this.observer) clearTimeout(this.observer);
166
+ this.observer =
167
+ setTimeout(this.onObserverEvent.bind(this), this.options.frequency*1000);
168
+ },
169
+
170
+ activate: function() {
171
+ this.changed = false;
172
+ this.hasFocus = true;
173
+ this.getUpdatedChoices();
174
+ },
175
+
176
+ onHover: function(event) {
177
+ var element = Event.findElement(event, 'LI');
178
+ if(this.index != element.autocompleteIndex)
179
+ {
180
+ this.index = element.autocompleteIndex;
181
+ this.render();
182
+ }
183
+ Event.stop(event);
184
+ },
185
+
186
+ onClick: function(event) {
187
+ var element = Event.findElement(event, 'LI');
188
+ this.index = element.autocompleteIndex;
189
+ this.selectEntry();
190
+ this.hide();
191
+ },
192
+
193
+ onBlur: function(event) {
194
+ // needed to make click events working
195
+ setTimeout(this.hide.bind(this), 250);
196
+ this.hasFocus = false;
197
+ this.active = false;
198
+ },
199
+
200
+ render: function() {
201
+ if(this.entryCount > 0) {
202
+ for (var i = 0; i < this.entryCount; i++)
203
+ this.index==i ?
204
+ Element.addClassName(this.getEntry(i),"selected") :
205
+ Element.removeClassName(this.getEntry(i),"selected");
206
+ if(this.hasFocus) {
207
+ this.show();
208
+ this.active = true;
209
+ }
210
+ } else {
211
+ this.active = false;
212
+ this.hide();
213
+ }
214
+ },
215
+
216
+ markPrevious: function() {
217
+ if(this.index > 0) this.index--
218
+ else this.index = this.entryCount-1;
219
+ this.getEntry(this.index).scrollIntoView(true);
220
+ },
221
+
222
+ markNext: function() {
223
+ if(this.index < this.entryCount-1) this.index++
224
+ else this.index = 0;
225
+ this.getEntry(this.index).scrollIntoView(false);
226
+ },
227
+
228
+ getEntry: function(index) {
229
+ return this.update.firstChild.childNodes[index];
230
+ },
231
+
232
+ getCurrentEntry: function() {
233
+ return this.getEntry(this.index);
234
+ },
235
+
236
+ selectEntry: function() {
237
+ this.active = false;
238
+ this.updateElement(this.getCurrentEntry());
239
+ },
240
+
241
+ updateElement: function(selectedElement) {
242
+ if (this.options.updateElement) {
243
+ this.options.updateElement(selectedElement);
244
+ return;
245
+ }
246
+ var value = '';
247
+ if (this.options.select) {
248
+ var nodes = document.getElementsByClassName(this.options.select, selectedElement) || [];
249
+ if(nodes.length>0) value = Element.collectTextNodes(nodes[0], this.options.select);
250
+ } else
251
+ value = Element.collectTextNodesIgnoreClass(selectedElement, 'informal');
252
+
253
+ var bounds = this.getTokenBounds();
254
+ if (bounds[0] != -1) {
255
+ var newValue = this.element.value.substr(0, bounds[0]);
256
+ var whitespace = this.element.value.substr(bounds[0]).match(/^\s+/);
257
+ if (whitespace)
258
+ newValue += whitespace[0];
259
+ this.element.value = newValue + value + this.element.value.substr(bounds[1]);
260
+ } else {
261
+ this.element.value = value;
262
+ }
263
+ this.oldElementValue = this.element.value;
264
+ this.element.focus();
265
+
266
+ if (this.options.afterUpdateElement)
267
+ this.options.afterUpdateElement(this.element, selectedElement);
268
+ },
269
+
270
+ updateChoices: function(choices) {
271
+ if(!this.changed && this.hasFocus) {
272
+ this.update.innerHTML = choices;
273
+ Element.cleanWhitespace(this.update);
274
+ Element.cleanWhitespace(this.update.down());
275
+
276
+ if(this.update.firstChild && this.update.down().childNodes) {
277
+ this.entryCount =
278
+ this.update.down().childNodes.length;
279
+ for (var i = 0; i < this.entryCount; i++) {
280
+ var entry = this.getEntry(i);
281
+ entry.autocompleteIndex = i;
282
+ this.addObservers(entry);
283
+ }
284
+ } else {
285
+ this.entryCount = 0;
286
+ }
287
+
288
+ this.stopIndicator();
289
+ this.index = 0;
290
+
291
+ if(this.entryCount==1 && this.options.autoSelect) {
292
+ this.selectEntry();
293
+ this.hide();
294
+ } else {
295
+ this.render();
296
+ }
297
+ }
298
+ },
299
+
300
+ addObservers: function(element) {
301
+ Event.observe(element, "mouseover", this.onHover.bindAsEventListener(this));
302
+ Event.observe(element, "click", this.onClick.bindAsEventListener(this));
303
+ },
304
+
305
+ onObserverEvent: function() {
306
+ this.changed = false;
307
+ this.tokenBounds = null;
308
+ if(this.getToken().length>=this.options.minChars) {
309
+ this.getUpdatedChoices();
310
+ } else {
311
+ this.active = false;
312
+ this.hide();
313
+ }
314
+ this.oldElementValue = this.element.value;
315
+ },
316
+
317
+ getToken: function() {
318
+ var bounds = this.getTokenBounds();
319
+ return this.element.value.substring(bounds[0], bounds[1]).strip();
320
+ },
321
+
322
+ getTokenBounds: function() {
323
+ if (null != this.tokenBounds) return this.tokenBounds;
324
+ var value = this.element.value;
325
+ if (value.strip().empty()) return [-1, 0];
326
+ var diff = arguments.callee.getFirstDifferencePos(value, this.oldElementValue);
327
+ var offset = (diff == this.oldElementValue.length ? 1 : 0);
328
+ var prevTokenPos = -1, nextTokenPos = value.length;
329
+ var tp;
330
+ for (var index = 0, l = this.options.tokens.length; index < l; ++index) {
331
+ tp = value.lastIndexOf(this.options.tokens[index], diff + offset - 1);
332
+ if (tp > prevTokenPos) prevTokenPos = tp;
333
+ tp = value.indexOf(this.options.tokens[index], diff + offset);
334
+ if (-1 != tp && tp < nextTokenPos) nextTokenPos = tp;
335
+ }
336
+ return (this.tokenBounds = [prevTokenPos + 1, nextTokenPos]);
337
+ }
338
+ }
339
+
340
+ Autocompleter.Base.prototype.getTokenBounds.getFirstDifferencePos = function(newS, oldS) {
341
+ var boundary = Math.min(newS.length, oldS.length);
342
+ for (var index = 0; index < boundary; ++index)
343
+ if (newS[index] != oldS[index])
344
+ return index;
345
+ return boundary;
346
+ };
347
+
348
+ Ajax.Autocompleter = Class.create();
349
+ Object.extend(Object.extend(Ajax.Autocompleter.prototype, Autocompleter.Base.prototype), {
350
+ initialize: function(element, update, url, options) {
351
+ this.baseInitialize(element, update, options);
352
+ this.options.asynchronous = true;
353
+ this.options.onComplete = this.onComplete.bind(this);
354
+ this.options.defaultParams = this.options.parameters || null;
355
+ this.url = url;
356
+ },
357
+
358
+ getUpdatedChoices: function() {
359
+ this.startIndicator();
360
+
361
+ var entry = encodeURIComponent(this.options.paramName) + '=' +
362
+ encodeURIComponent(this.getToken());
363
+
364
+ this.options.parameters = this.options.callback ?
365
+ this.options.callback(this.element, entry) : entry;
366
+
367
+ if(this.options.defaultParams)
368
+ this.options.parameters += '&' + this.options.defaultParams;
369
+
370
+ new Ajax.Request(this.url, this.options);
371
+ },
372
+
373
+ onComplete: function(request) {
374
+ this.updateChoices(request.responseText);
375
+ }
376
+
377
+ });
378
+
379
+ // The local array autocompleter. Used when you'd prefer to
380
+ // inject an array of autocompletion options into the page, rather
381
+ // than sending out Ajax queries, which can be quite slow sometimes.
382
+ //
383
+ // The constructor takes four parameters. The first two are, as usual,
384
+ // the id of the monitored textbox, and id of the autocompletion menu.
385
+ // The third is the array you want to autocomplete from, and the fourth
386
+ // is the options block.
387
+ //
388
+ // Extra local autocompletion options:
389
+ // - choices - How many autocompletion choices to offer
390
+ //
391
+ // - partialSearch - If false, the autocompleter will match entered
392
+ // text only at the beginning of strings in the
393
+ // autocomplete array. Defaults to true, which will
394
+ // match text at the beginning of any *word* in the
395
+ // strings in the autocomplete array. If you want to
396
+ // search anywhere in the string, additionally set
397
+ // the option fullSearch to true (default: off).
398
+ //
399
+ // - fullSsearch - Search anywhere in autocomplete array strings.
400
+ //
401
+ // - partialChars - How many characters to enter before triggering
402
+ // a partial match (unlike minChars, which defines
403
+ // how many characters are required to do any match
404
+ // at all). Defaults to 2.
405
+ //
406
+ // - ignoreCase - Whether to ignore case when autocompleting.
407
+ // Defaults to true.
408
+ //
409
+ // It's possible to pass in a custom function as the 'selector'
410
+ // option, if you prefer to write your own autocompletion logic.
411
+ // In that case, the other options above will not apply unless
412
+ // you support them.
413
+
414
+ Autocompleter.Local = Class.create();
415
+ Autocompleter.Local.prototype = Object.extend(new Autocompleter.Base(), {
416
+ initialize: function(element, update, array, options) {
417
+ this.baseInitialize(element, update, options);
418
+ this.options.array = array;
419
+ },
420
+
421
+ getUpdatedChoices: function() {
422
+ this.updateChoices(this.options.selector(this));
423
+ },
424
+
425
+ setOptions: function(options) {
426
+ this.options = Object.extend({
427
+ choices: 10,
428
+ partialSearch: true,
429
+ partialChars: 2,
430
+ ignoreCase: true,
431
+ fullSearch: false,
432
+ selector: function(instance) {
433
+ var ret = []; // Beginning matches
434
+ var partial = []; // Inside matches
435
+ var entry = instance.getToken();
436
+ var count = 0;
437
+
438
+ for (var i = 0; i < instance.options.array.length &&
439
+ ret.length < instance.options.choices ; i++) {
440
+
441
+ var elem = instance.options.array[i];
442
+ var foundPos = instance.options.ignoreCase ?
443
+ elem.toLowerCase().indexOf(entry.toLowerCase()) :
444
+ elem.indexOf(entry);
445
+
446
+ while (foundPos != -1) {
447
+ if (foundPos == 0 && elem.length != entry.length) {
448
+ ret.push("<li><strong>" + elem.substr(0, entry.length) + "</strong>" +
449
+ elem.substr(entry.length) + "</li>");
450
+ break;
451
+ } else if (entry.length >= instance.options.partialChars &&
452
+ instance.options.partialSearch && foundPos != -1) {
453
+ if (instance.options.fullSearch || /\s/.test(elem.substr(foundPos-1,1))) {
454
+ partial.push("<li>" + elem.substr(0, foundPos) + "<strong>" +
455
+ elem.substr(foundPos, entry.length) + "</strong>" + elem.substr(
456
+ foundPos + entry.length) + "</li>");
457
+ break;
458
+ }
459
+ }
460
+
461
+ foundPos = instance.options.ignoreCase ?
462
+ elem.toLowerCase().indexOf(entry.toLowerCase(), foundPos + 1) :
463
+ elem.indexOf(entry, foundPos + 1);
464
+
465
+ }
466
+ }
467
+ if (partial.length)
468
+ ret = ret.concat(partial.slice(0, instance.options.choices - ret.length))
469
+ return "<ul>" + ret.join('') + "</ul>";
470
+ }
471
+ }, options || { });
472
+ }
473
+ });
474
+
475
+ // AJAX in-place editor and collection editor
476
+ // Full rewrite by Christophe Porteneuve <tdd@tddsworld.com> (April 2007).
477
+
478
+ // Use this if you notice weird scrolling problems on some browsers,
479
+ // the DOM might be a bit confused when this gets called so do this
480
+ // waits 1 ms (with setTimeout) until it does the activation
481
+ Field.scrollFreeActivate = function(field) {
482
+ setTimeout(function() {
483
+ Field.activate(field);
484
+ }, 1);
485
+ }
486
+
487
+ Ajax.InPlaceEditor = Class.create();
488
+ Object.extend(Ajax.InPlaceEditor, {
489
+ DefaultOptions: {
490
+ ajaxOptions: { },
491
+ autoRows: 3, // Use when multi-line w/ rows == 1
492
+ cancelControl: 'link', // 'link'|'button'|false
493
+ cancelText: 'cancel',
494
+ clickToEditText: 'Click to edit',
495
+ externalControl: null, // id|elt
496
+ externalControlOnly: false,
497
+ fieldPostCreation: 'activate', // 'activate'|'focus'|false
498
+ formClassName: 'inplaceeditor-form',
499
+ formId: null, // id|elt
500
+ highlightColor: '#ffff99',
501
+ highlightEndColor: '#ffffff',
502
+ hoverClassName: '',
503
+ htmlResponse: true,
504
+ loadingClassName: 'inplaceeditor-loading',
505
+ loadingText: 'Loading...',
506
+ okControl: 'button', // 'link'|'button'|false
507
+ okText: 'ok',
508
+ paramName: 'value',
509
+ rows: 1, // If 1 and multi-line, uses autoRows
510
+ savingClassName: 'inplaceeditor-saving',
511
+ savingText: 'Saving...',
512
+ size: 0,
513
+ stripLoadedTextTags: false,
514
+ submitOnBlur: false,
515
+ textAfterControls: '',
516
+ textBeforeControls: '',
517
+ textBetweenControls: ''
518
+ },
519
+ DefaultCallbacks: {
520
+ callback: function(form) {
521
+ return Form.serialize(form);
522
+ },
523
+ onComplete: function(transport, element) {
524
+ // For backward compatibility, this one is bound to the IPE, and passes
525
+ // the element directly. It was too often customized, so we don't break it.
526
+ new Effect.Highlight(element, {
527
+ startcolor: this.options.highlightColor, keepBackgroundImage: true });
528
+ },
529
+ onEnterEditMode: null,
530
+ onEnterHover: function(ipe) {
531
+ ipe.element.style.backgroundColor = ipe.options.highlightColor;
532
+ if (ipe._effect)
533
+ ipe._effect.cancel();
534
+ },
535
+ onFailure: function(transport, ipe) {
536
+ alert('Error communication with the server: ' + transport.responseText.stripTags());
537
+ },
538
+ onFormCustomization: null, // Takes the IPE and its generated form, after editor, before controls.
539
+ onLeaveEditMode: null,
540
+ onLeaveHover: function(ipe) {
541
+ ipe._effect = new Effect.Highlight(ipe.element, {
542
+ startcolor: ipe.options.highlightColor, endcolor: ipe.options.highlightEndColor,
543
+ restorecolor: ipe._originalBackground, keepBackgroundImage: true
544
+ });
545
+ }
546
+ },
547
+ Listeners: {
548
+ click: 'enterEditMode',
549
+ keydown: 'checkForEscapeOrReturn',
550
+ mouseover: 'enterHover',
551
+ mouseout: 'leaveHover'
552
+ }
553
+ });
554
+ Ajax.InPlaceEditor.prototype = {
555
+ initialize: function(element, url, options) {
556
+ this.url = url;
557
+ this.element = element = $(element);
558
+ this.prepareOptions();
559
+ this._controls = { };
560
+ arguments.callee.dealWithDeprecatedOptions(options); // DEPRECATION LAYER!!!
561
+ Object.extend(this.options, options || { });
562
+ if (!this.options.formId && this.element.id) {
563
+ this.options.formId = this.element.id + '-inplaceeditor';
564
+ if ($(this.options.formId))
565
+ this.options.formId = '';
566
+ }
567
+ if (this.options.externalControl)
568
+ this.options.externalControl = $(this.options.externalControl);
569
+ if (!this.options.externalControl)
570
+ this.options.externalControlOnly = false;
571
+ this._originalBackground = this.element.getStyle('background-color') || 'transparent';
572
+ this.element.title = this.options.clickToEditText;
573
+ this._boundCancelHandler = this.handleFormCancellation.bind(this);
574
+ this._boundComplete = (this.options.onComplete || Prototype.emptyFunction).bind(this);
575
+ this._boundFailureHandler = this.handleAJAXFailure.bind(this);
576
+ this._boundSubmitHandler = this.handleFormSubmission.bind(this);
577
+ this._boundWrapperHandler = this.wrapUp.bind(this);
578
+ this.registerListeners();
579
+ },
580
+ checkForEscapeOrReturn: function(e) {
581
+ if (!this._editing || e.ctrlKey || e.altKey || e.shiftKey) return;
582
+ if (Event.KEY_ESC == e.keyCode)
583
+ this.handleFormCancellation(e);
584
+ else if (Event.KEY_RETURN == e.keyCode)
585
+ this.handleFormSubmission(e);
586
+ },
587
+ createControl: function(mode, handler, extraClasses) {
588
+ var control = this.options[mode + 'Control'];
589
+ var text = this.options[mode + 'Text'];
590
+ if ('button' == control) {
591
+ var btn = document.createElement('input');
592
+ btn.type = 'submit';
593
+ btn.value = text;
594
+ btn.className = 'editor_' + mode + '_button';
595
+ if ('cancel' == mode)
596
+ btn.onclick = this._boundCancelHandler;
597
+ this._form.appendChild(btn);
598
+ this._controls[mode] = btn;
599
+ } else if ('link' == control) {
600
+ var link = document.createElement('a');
601
+ link.href = '#';
602
+ link.appendChild(document.createTextNode(text));
603
+ link.onclick = 'cancel' == mode ? this._boundCancelHandler : this._boundSubmitHandler;
604
+ link.className = 'editor_' + mode + '_link';
605
+ if (extraClasses)
606
+ link.className += ' ' + extraClasses;
607
+ this._form.appendChild(link);
608
+ this._controls[mode] = link;
609
+ }
610
+ },
611
+ createEditField: function() {
612
+ var text = (this.options.loadTextURL ? this.options.loadingText : this.getText());
613
+ var fld;
614
+ if (1 >= this.options.rows && !/\r|\n/.test(this.getText())) {
615
+ fld = document.createElement('input');
616
+ fld.type = 'text';
617
+ var size = this.options.size || this.options.cols || 0;
618
+ if (0 < size) fld.size = size;
619
+ } else {
620
+ fld = document.createElement('textarea');
621
+ fld.rows = (1 >= this.options.rows ? this.options.autoRows : this.options.rows);
622
+ fld.cols = this.options.cols || 40;
623
+ }
624
+ fld.name = this.options.paramName;
625
+ fld.value = text; // No HTML breaks conversion anymore
626
+ fld.className = 'editor_field';
627
+ if (this.options.submitOnBlur)
628
+ fld.onblur = this._boundSubmitHandler;
629
+ this._controls.editor = fld;
630
+ if (this.options.loadTextURL)
631
+ this.loadExternalText();
632
+ this._form.appendChild(this._controls.editor);
633
+ },
634
+ createForm: function() {
635
+ var ipe = this;
636
+ function addText(mode, condition) {
637
+ var text = ipe.options['text' + mode + 'Controls'];
638
+ if (!text || condition === false) return;
639
+ ipe._form.appendChild(document.createTextNode(text));
640
+ };
641
+ this._form = $(document.createElement('form'));
642
+ this._form.id = this.options.formId;
643
+ this._form.addClassName(this.options.formClassName);
644
+ this._form.onsubmit = this._boundSubmitHandler;
645
+ this.createEditField();
646
+ if ('textarea' == this._controls.editor.tagName.toLowerCase())
647
+ this._form.appendChild(document.createElement('br'));
648
+ if (this.options.onFormCustomization)
649
+ this.options.onFormCustomization(this, this._form);
650
+ addText('Before', this.options.okControl || this.options.cancelControl);
651
+ this.createControl('ok', this._boundSubmitHandler);
652
+ addText('Between', this.options.okControl && this.options.cancelControl);
653
+ this.createControl('cancel', this._boundCancelHandler, 'editor_cancel');
654
+ addText('After', this.options.okControl || this.options.cancelControl);
655
+ },
656
+ destroy: function() {
657
+ if (this._oldInnerHTML)
658
+ this.element.innerHTML = this._oldInnerHTML;
659
+ this.leaveEditMode();
660
+ this.unregisterListeners();
661
+ },
662
+ enterEditMode: function(e) {
663
+ if (this._saving || this._editing) return;
664
+ this._editing = true;
665
+ this.triggerCallback('onEnterEditMode');
666
+ if (this.options.externalControl)
667
+ this.options.externalControl.hide();
668
+ this.element.hide();
669
+ this.createForm();
670
+ this.element.parentNode.insertBefore(this._form, this.element);
671
+ if (!this.options.loadTextURL)
672
+ this.postProcessEditField();
673
+ if (e) Event.stop(e);
674
+ },
675
+ enterHover: function(e) {
676
+ if (this.options.hoverClassName)
677
+ this.element.addClassName(this.options.hoverClassName);
678
+ if (this._saving) return;
679
+ this.triggerCallback('onEnterHover');
680
+ },
681
+ getText: function() {
682
+ return this.element.innerHTML;
683
+ },
684
+ handleAJAXFailure: function(transport) {
685
+ this.triggerCallback('onFailure', transport);
686
+ if (this._oldInnerHTML) {
687
+ this.element.innerHTML = this._oldInnerHTML;
688
+ this._oldInnerHTML = null;
689
+ }
690
+ },
691
+ handleFormCancellation: function(e) {
692
+ this.wrapUp();
693
+ if (e) Event.stop(e);
694
+ },
695
+ handleFormSubmission: function(e) {
696
+ var form = this._form;
697
+ var value = $F(this._controls.editor);
698
+ this.prepareSubmission();
699
+ var params = this.options.callback(form, value);
700
+ params = (params ? params + '&' : '?') + 'editorId=' + this.element.id;
701
+ if (this.options.htmlResponse) {
702
+ var options = Object.extend({ evalScripts: true }, this.options.ajaxOptions);
703
+ Object.extend(options, {
704
+ parameters: params,
705
+ onComplete: this._boundWrapperHandler,
706
+ onFailure: this._boundFailureHandler
707
+ });
708
+ new Ajax.Updater({ success: this.element }, this.url, options);
709
+ } else {
710
+ var options = Object.extend({ method: 'get' }, this.options.ajaxOptions);
711
+ Object.extend(options, {
712
+ parameters: params,
713
+ onComplete: this._boundWrapperHandler,
714
+ onFailure: this._boundFailureHandler
715
+ });
716
+ new Ajax.Request(this.url, options);
717
+ }
718
+ if (e) Event.stop(e);
719
+ },
720
+ leaveEditMode: function() {
721
+ this.element.removeClassName(this.options.savingClassName);
722
+ this.removeForm();
723
+ this.leaveHover();
724
+ this.element.style.backgroundColor = this._originalBackground;
725
+ this.element.show();
726
+ if (this.options.externalControl)
727
+ this.options.externalControl.show();
728
+ this._saving = false;
729
+ this._editing = false;
730
+ this._oldInnerHTML = null;
731
+ this.triggerCallback('onLeaveEditMode');
732
+ },
733
+ leaveHover: function(e) {
734
+ if (this.options.hoverClassName)
735
+ this.element.removeClassName(this.options.hoverClassName);
736
+ if (this._saving) return;
737
+ this.triggerCallback('onLeaveHover');
738
+ },
739
+ loadExternalText: function() {
740
+ this._form.addClassName(this.options.loadingClassName);
741
+ this._controls.editor.disabled = true;
742
+ var options = Object.extend({ method: 'get' }, this.options.ajaxOptions);
743
+ Object.extend(options, {
744
+ parameters: 'editorId=' + encodeURIComponent(this.element.id),
745
+ onComplete: Prototype.emptyFunction,
746
+ onSuccess: function(transport) {
747
+ this._form.removeClassName(this.options.loadingClassName);
748
+ var text = transport.responseText;
749
+ if (this.options.stripLoadedTextTags)
750
+ text = text.stripTags();
751
+ this._controls.editor.value = text;
752
+ this._controls.editor.disabled = false;
753
+ this.postProcessEditField();
754
+ }.bind(this),
755
+ onFailure: this._boundFailureHandler
756
+ });
757
+ new Ajax.Request(this.options.loadTextURL, options);
758
+ },
759
+ postProcessEditField: function() {
760
+ var fpc = this.options.fieldPostCreation;
761
+ if (fpc)
762
+ $(this._controls.editor)['focus' == fpc ? 'focus' : 'activate']();
763
+ },
764
+ prepareOptions: function() {
765
+ this.options = Object.clone(Ajax.InPlaceEditor.DefaultOptions);
766
+ Object.extend(this.options, Ajax.InPlaceEditor.DefaultCallbacks);
767
+ [this._extraDefaultOptions].flatten().compact().each(function(defs) {
768
+ Object.extend(this.options, defs);
769
+ }.bind(this));
770
+ },
771
+ prepareSubmission: function() {
772
+ this._saving = true;
773
+ this.removeForm();
774
+ this.leaveHover();
775
+ this.showSaving();
776
+ },
777
+ registerListeners: function() {
778
+ this._listeners = { };
779
+ var listener;
780
+ $H(Ajax.InPlaceEditor.Listeners).each(function(pair) {
781
+ listener = this[pair.value].bind(this);
782
+ this._listeners[pair.key] = listener;
783
+ if (!this.options.externalControlOnly)
784
+ this.element.observe(pair.key, listener);
785
+ if (this.options.externalControl)
786
+ this.options.externalControl.observe(pair.key, listener);
787
+ }.bind(this));
788
+ },
789
+ removeForm: function() {
790
+ if (!this._form) return;
791
+ this._form.remove();
792
+ this._form = null;
793
+ this._controls = { };
794
+ },
795
+ showSaving: function() {
796
+ this._oldInnerHTML = this.element.innerHTML;
797
+ this.element.innerHTML = this.options.savingText;
798
+ this.element.addClassName(this.options.savingClassName);
799
+ this.element.style.backgroundColor = this._originalBackground;
800
+ this.element.show();
801
+ },
802
+ triggerCallback: function(cbName, arg) {
803
+ if ('function' == typeof this.options[cbName]) {
804
+ this.options[cbName](this, arg);
805
+ }
806
+ },
807
+ unregisterListeners: function() {
808
+ $H(this._listeners).each(function(pair) {
809
+ if (!this.options.externalControlOnly)
810
+ this.element.stopObserving(pair.key, pair.value);
811
+ if (this.options.externalControl)
812
+ this.options.externalControl.stopObserving(pair.key, pair.value);
813
+ }.bind(this));
814
+ },
815
+ wrapUp: function(transport) {
816
+ this.leaveEditMode();
817
+ // Can't use triggerCallback due to backward compatibility: requires
818
+ // binding + direct element
819
+ this._boundComplete(transport, this.element);
820
+ }
821
+ };
822
+ Object.extend(Ajax.InPlaceEditor.prototype, {
823
+ dispose: Ajax.InPlaceEditor.prototype.destroy
824
+ });
825
+
826
+
827
+ Ajax.InPlaceCollectionEditor = Class.create();
828
+ Ajax.InPlaceCollectionEditor.DefaultOptions = {
829
+ loadingCollectionText: 'Loading options...'
830
+ };
831
+ Object.extend(Ajax.InPlaceCollectionEditor.prototype, Ajax.InPlaceEditor.prototype);
832
+ Object.extend(Ajax.InPlaceCollectionEditor.prototype, {
833
+ initialize: function(element, url, options) {
834
+ this._extraDefaultOptions = Ajax.InPlaceCollectionEditor.DefaultOptions;
835
+ Ajax.InPlaceEditor.prototype.initialize.call(this, element, url, options);
836
+ },
837
+
838
+ createEditField: function() {
839
+ var list = document.createElement('select');
840
+ list.name = this.options.paramName;
841
+ list.size = 1;
842
+ this._controls.editor = list;
843
+ this._collection = this.options.collection || [];
844
+ if (this.options.loadCollectionURL)
845
+ this.loadCollection();
846
+ else
847
+ this.checkForExternalText();
848
+ this._form.appendChild(this._controls.editor);
849
+ },
850
+
851
+ loadCollection: function() {
852
+ this._form.addClassName(this.options.loadingClassName);
853
+ this.showLoadingText(this.options.loadingCollectionText);
854
+ var options = Object.extend({ method: 'get' }, this.options.ajaxOptions);
855
+ Object.extend(options, {
856
+ parameters: 'editorId=' + encodeURIComponent(this.element.id),
857
+ onComplete: Prototype.emptyFunction,
858
+ onSuccess: function(transport) {
859
+ var js = transport.responseText.strip();
860
+ if (!/^\[.*\]$/.test(js)) // TODO: improve sanity check
861
+ throw 'Server returned an invalid collection representation.';
862
+ this._collection = eval(js);
863
+ this.checkForExternalText();
864
+ }.bind(this),
865
+ onFailure: this.onFailure
866
+ });
867
+ new Ajax.Request(this.options.loadCollectionURL, options);
868
+ },
869
+
870
+ showLoadingText: function(text) {
871
+ this._controls.editor.disabled = true;
872
+ var tempOption = this._controls.editor.firstChild;
873
+ if (!tempOption) {
874
+ tempOption = document.createElement('option');
875
+ tempOption.value = '';
876
+ this._controls.editor.appendChild(tempOption);
877
+ tempOption.selected = true;
878
+ }
879
+ tempOption.update((text || '').stripScripts().stripTags());
880
+ },
881
+
882
+ checkForExternalText: function() {
883
+ this._text = this.getText();
884
+ if (this.options.loadTextURL)
885
+ this.loadExternalText();
886
+ else
887
+ this.buildOptionList();
888
+ },
889
+
890
+ loadExternalText: function() {
891
+ this.showLoadingText(this.options.loadingText);
892
+ var options = Object.extend({ method: 'get' }, this.options.ajaxOptions);
893
+ Object.extend(options, {
894
+ parameters: 'editorId=' + encodeURIComponent(this.element.id),
895
+ onComplete: Prototype.emptyFunction,
896
+ onSuccess: function(transport) {
897
+ this._text = transport.responseText.strip();
898
+ this.buildOptionList();
899
+ }.bind(this),
900
+ onFailure: this.onFailure
901
+ });
902
+ new Ajax.Request(this.options.loadTextURL, options);
903
+ },
904
+
905
+ buildOptionList: function() {
906
+ this._form.removeClassName(this.options.loadingClassName);
907
+ this._collection = this._collection.map(function(entry) {
908
+ return 2 === entry.length ? entry : [entry, entry].flatten();
909
+ });
910
+ var marker = ('value' in this.options) ? this.options.value : this._text;
911
+ var textFound = this._collection.any(function(entry) {
912
+ return entry[0] == marker;
913
+ }.bind(this));
914
+ this._controls.editor.update('');
915
+ var option;
916
+ this._collection.each(function(entry, index) {
917
+ option = document.createElement('option');
918
+ option.value = entry[0];
919
+ option.selected = textFound ? entry[0] == marker : 0 == index;
920
+ option.appendChild(document.createTextNode(entry[1]));
921
+ this._controls.editor.appendChild(option);
922
+ }.bind(this));
923
+ this._controls.editor.disabled = false;
924
+ Field.scrollFreeActivate(this._controls.editor);
925
+ }
926
+ });
927
+
928
+ //**** DEPRECATION LAYER FOR InPlace[Collection]Editor! ****
929
+ //**** This only exists for a while, in order to let ****
930
+ //**** users adapt to the new API. Read up on the new ****
931
+ //**** API and convert your code to it ASAP! ****
932
+
933
+ Ajax.InPlaceEditor.prototype.initialize.dealWithDeprecatedOptions = function(options) {
934
+ if (!options) return;
935
+ function fallback(name, expr) {
936
+ if (name in options || expr === undefined) return;
937
+ options[name] = expr;
938
+ };
939
+ fallback('cancelControl', (options.cancelLink ? 'link' : (options.cancelButton ? 'button' :
940
+ options.cancelLink == options.cancelButton == false ? false : undefined)));
941
+ fallback('okControl', (options.okLink ? 'link' : (options.okButton ? 'button' :
942
+ options.okLink == options.okButton == false ? false : undefined)));
943
+ fallback('highlightColor', options.highlightcolor);
944
+ fallback('highlightEndColor', options.highlightendcolor);
945
+ };
946
+
947
+
948
+ // Delayed observer, like Form.Element.Observer,
949
+ // but waits for delay after last key input
950
+ // Ideal for live-search fields
951
+
952
+ Form.Element.DelayedObserver = Class.create();
953
+ Form.Element.DelayedObserver.prototype = {
954
+ initialize: function(element, delay, callback) {
955
+ this.delay = delay || 0.5;
956
+ this.element = $(element);
957
+ this.callback = callback;
958
+ this.timer = null;
959
+ this.lastValue = $F(this.element);
960
+ Event.observe(this.element,'keyup',this.delayedListener.bindAsEventListener(this));
961
+ },
962
+ delayedListener: function(event) {
963
+ if(this.lastValue == $F(this.element)) return;
964
+ if(this.timer) clearTimeout(this.timer);
965
+ this.timer = setTimeout(this.onTimerEvent.bind(this), this.delay * 1000);
966
+ this.lastValue = $F(this.element);
967
+ },
968
+ onTimerEvent: function() {
969
+ this.timer = null;
970
+ this.callback(this.element, $F(this.element));
971
+ }
972
+ };