typo 3.99.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (742) hide show
  1. data/.DS_Store +0 -0
  2. data/CHANGELOG +718 -0
  3. data/MAINTAINERS +30 -0
  4. data/MIT-LICENSE +21 -0
  5. data/README +92 -0
  6. data/Rakefile +10 -0
  7. data/app/apis/blogger_service.rb +94 -0
  8. data/app/apis/meta_weblog_service.rb +197 -0
  9. data/app/apis/movable_type_service.rb +150 -0
  10. data/app/apis/typo_web_service.rb +26 -0
  11. data/app/controllers/accounts_controller.rb +52 -0
  12. data/app/controllers/admin/base_controller.rb +21 -0
  13. data/app/controllers/admin/blacklist_controller.rb +50 -0
  14. data/app/controllers/admin/cache_controller.rb +31 -0
  15. data/app/controllers/admin/categories_controller.rb +64 -0
  16. data/app/controllers/admin/comments_controller.rb +57 -0
  17. data/app/controllers/admin/content_controller.rb +147 -0
  18. data/app/controllers/admin/general_controller.rb +42 -0
  19. data/app/controllers/admin/pages_controller.rb +50 -0
  20. data/app/controllers/admin/resources_controller.rb +98 -0
  21. data/app/controllers/admin/sidebar_controller.rb +74 -0
  22. data/app/controllers/admin/textfilters_controller.rb +104 -0
  23. data/app/controllers/admin/themes_controller.rb +20 -0
  24. data/app/controllers/admin/trackbacks_controller.rb +54 -0
  25. data/app/controllers/admin/users_controller.rb +41 -0
  26. data/app/controllers/application.rb +66 -0
  27. data/app/controllers/articles_controller.rb +218 -0
  28. data/app/controllers/backend_controller.rb +11 -0
  29. data/app/controllers/content_controller.rb +98 -0
  30. data/app/controllers/live_controller.rb +10 -0
  31. data/app/controllers/redirect_controller.rb +16 -0
  32. data/app/controllers/sidebar_controller.rb +50 -0
  33. data/app/controllers/textfilter_controller.rb +22 -0
  34. data/app/controllers/theme_controller.rb +52 -0
  35. data/app/controllers/xml_controller.rb +111 -0
  36. data/app/helpers/accounts_helper.rb +2 -0
  37. data/app/helpers/admin/base_helper.rb +124 -0
  38. data/app/helpers/admin/blacklist_helper.rb +2 -0
  39. data/app/helpers/admin/cache_helper.rb +2 -0
  40. data/app/helpers/admin/comments_helper.rb +2 -0
  41. data/app/helpers/admin/content_helper.rb +2 -0
  42. data/app/helpers/admin/general_helper.rb +2 -0
  43. data/app/helpers/admin/pages_helper.rb +2 -0
  44. data/app/helpers/admin/resources_helper.rb +2 -0
  45. data/app/helpers/admin/sidebar_helper.rb +2 -0
  46. data/app/helpers/admin/textfilters_helper.rb +2 -0
  47. data/app/helpers/admin/themes_helper.rb +2 -0
  48. data/app/helpers/admin/trackbacks_helper.rb +2 -0
  49. data/app/helpers/admin/users_helper.rb +2 -0
  50. data/app/helpers/application_helper.rb +92 -0
  51. data/app/helpers/articles_helper.rb +163 -0
  52. data/app/helpers/backend_helper.rb +2 -0
  53. data/app/helpers/content_helper.rb +3 -0
  54. data/app/helpers/mail_helper.rb +6 -0
  55. data/app/helpers/redirect_helper.rb +2 -0
  56. data/app/helpers/sidebar_helper.rb +22 -0
  57. data/app/helpers/sidebars/plugin_helper.rb +2 -0
  58. data/app/helpers/text_filter_plugin_helper.rb +2 -0
  59. data/app/helpers/textfilter_helper.rb +2 -0
  60. data/app/helpers/theme_helper.rb +23 -0
  61. data/app/helpers/xml_helper.rb +21 -0
  62. data/app/models/aggregations/audioscrobbler.rb +54 -0
  63. data/app/models/aggregations/backpack.rb +57 -0
  64. data/app/models/aggregations/delicious.rb +57 -0
  65. data/app/models/aggregations/flickr.rb +89 -0
  66. data/app/models/aggregations/fortythree.rb +62 -0
  67. data/app/models/aggregations/magnolia.rb +81 -0
  68. data/app/models/aggregations/tada.rb +75 -0
  69. data/app/models/aggregations/technorati.rb +51 -0
  70. data/app/models/aggregations/upcoming.rb +74 -0
  71. data/app/models/article.rb +211 -0
  72. data/app/models/blacklist_pattern.rb +22 -0
  73. data/app/models/blog.rb +162 -0
  74. data/app/models/blog_sweeper.rb +23 -0
  75. data/app/models/category.rb +62 -0
  76. data/app/models/comment.rb +76 -0
  77. data/app/models/config_manager.rb +80 -0
  78. data/app/models/content.rb +222 -0
  79. data/app/models/content_observer.rb +5 -0
  80. data/app/models/content_state/base.rb +51 -0
  81. data/app/models/content_state/draft.rb +40 -0
  82. data/app/models/content_state/factory.rb +16 -0
  83. data/app/models/content_state/just_published.rb +47 -0
  84. data/app/models/content_state/new.rb +45 -0
  85. data/app/models/content_state/publication_pending.rb +43 -0
  86. data/app/models/content_state/published.rb +35 -0
  87. data/app/models/email_notifier.rb +9 -0
  88. data/app/models/notification_mailer.rb +34 -0
  89. data/app/models/page.rb +20 -0
  90. data/app/models/page_cache.rb +29 -0
  91. data/app/models/ping.rb +129 -0
  92. data/app/models/redirect.rb +3 -0
  93. data/app/models/resource.rb +76 -0
  94. data/app/models/sidebar.rb +32 -0
  95. data/app/models/simple_cache.rb +37 -0
  96. data/app/models/tag.rb +63 -0
  97. data/app/models/text_filter.rb +111 -0
  98. data/app/models/theme.rb +44 -0
  99. data/app/models/trackback.rb +51 -0
  100. data/app/models/trigger.rb +31 -0
  101. data/app/models/user.rb +113 -0
  102. data/app/models/web_notifier.rb +7 -0
  103. data/app/views/accounts/login.rhtml +24 -0
  104. data/app/views/accounts/logout.rhtml +12 -0
  105. data/app/views/accounts/signup.rhtml +26 -0
  106. data/app/views/accounts/welcome.rhtml +13 -0
  107. data/app/views/admin/base/_recent_comments.rhtml +10 -0
  108. data/app/views/admin/base/_recent_trackbacks.rhtml +10 -0
  109. data/app/views/admin/blacklist/_blacklist_patterns.rhtml +16 -0
  110. data/app/views/admin/blacklist/_form.rhtml +15 -0
  111. data/app/views/admin/blacklist/_quick_post.rhtml +16 -0
  112. data/app/views/admin/blacklist/destroy.rhtml +10 -0
  113. data/app/views/admin/blacklist/edit.rhtml +14 -0
  114. data/app/views/admin/blacklist/list.rhtml +13 -0
  115. data/app/views/admin/cache/list.rhtml +8 -0
  116. data/app/views/admin/categories/_categories.rhtml +14 -0
  117. data/app/views/admin/categories/_form.rhtml +7 -0
  118. data/app/views/admin/categories/_quick_post.rhtml +11 -0
  119. data/app/views/admin/categories/destroy.rhtml +10 -0
  120. data/app/views/admin/categories/edit.rhtml +13 -0
  121. data/app/views/admin/categories/list.rhtml +15 -0
  122. data/app/views/admin/categories/reorder.rhtml +9 -0
  123. data/app/views/admin/categories/show.rhtml +18 -0
  124. data/app/views/admin/comments/_form.rhtml +19 -0
  125. data/app/views/admin/comments/comments.rhtml +4 -0
  126. data/app/views/admin/comments/destroy.rhtml +11 -0
  127. data/app/views/admin/comments/edit.rhtml +18 -0
  128. data/app/views/admin/comments/list.rhtml +31 -0
  129. data/app/views/admin/comments/new.rhtml +15 -0
  130. data/app/views/admin/comments/show.rhtml +10 -0
  131. data/app/views/admin/content/_articles.rhtml +20 -0
  132. data/app/views/admin/content/_attachment.rhtml +17 -0
  133. data/app/views/admin/content/_form.rhtml +51 -0
  134. data/app/views/admin/content/_pages.rhtml +3 -0
  135. data/app/views/admin/content/_quick_post.rhtml +20 -0
  136. data/app/views/admin/content/_show_categories.rhtml +9 -0
  137. data/app/views/admin/content/_show_resources.rhtml +9 -0
  138. data/app/views/admin/content/destroy.rhtml +11 -0
  139. data/app/views/admin/content/edit.rhtml +28 -0
  140. data/app/views/admin/content/list.rhtml +20 -0
  141. data/app/views/admin/content/new.rhtml +27 -0
  142. data/app/views/admin/content/preview.rhtml +3 -0
  143. data/app/views/admin/content/show.rhtml +25 -0
  144. data/app/views/admin/general/index.rhtml +216 -0
  145. data/app/views/admin/general/update_database.rhtml +44 -0
  146. data/app/views/admin/pages/_form.rhtml +19 -0
  147. data/app/views/admin/pages/_pages.rhtml +18 -0
  148. data/app/views/admin/pages/_quick_post.rhtml +21 -0
  149. data/app/views/admin/pages/destroy.rhtml +11 -0
  150. data/app/views/admin/pages/edit.rhtml +28 -0
  151. data/app/views/admin/pages/list.rhtml +13 -0
  152. data/app/views/admin/pages/new.rhtml +24 -0
  153. data/app/views/admin/pages/preview.rhtml +1 -0
  154. data/app/views/admin/pages/show.rhtml +14 -0
  155. data/app/views/admin/resources/_itunes_category_add.rhtml +11 -0
  156. data/app/views/admin/resources/_itunes_category_edit.rhtml +32 -0
  157. data/app/views/admin/resources/_metadata_add.rhtml +22 -0
  158. data/app/views/admin/resources/_metadata_edit.rhtml +22 -0
  159. data/app/views/admin/resources/_mime_edit.rhtml +8 -0
  160. data/app/views/admin/resources/_pages.rhtml +3 -0
  161. data/app/views/admin/resources/_resources.rhtml +40 -0
  162. data/app/views/admin/resources/destroy.rhtml +11 -0
  163. data/app/views/admin/resources/list.rhtml +9 -0
  164. data/app/views/admin/resources/new.rhtml +12 -0
  165. data/app/views/admin/sidebar/_active.rhtml +14 -0
  166. data/app/views/admin/sidebar/_actives.rhtml +9 -0
  167. data/app/views/admin/sidebar/_available.rhtml +5 -0
  168. data/app/views/admin/sidebar/_availables.rhtml +5 -0
  169. data/app/views/admin/sidebar/_publish.rhtml +2 -0
  170. data/app/views/admin/sidebar/_target.rhtml +1 -0
  171. data/app/views/admin/sidebar/index.rhtml +34 -0
  172. data/app/views/admin/sidebar/publish.rjs +6 -0
  173. data/app/views/admin/sidebar/remove.rjs +5 -0
  174. data/app/views/admin/sidebar/set_active.rjs +10 -0
  175. data/app/views/admin/textfilters/_form.rhtml +45 -0
  176. data/app/views/admin/textfilters/_macros.rhtml +16 -0
  177. data/app/views/admin/textfilters/_textfilters.rhtml +20 -0
  178. data/app/views/admin/textfilters/destroy.rhtml +10 -0
  179. data/app/views/admin/textfilters/edit.rhtml +17 -0
  180. data/app/views/admin/textfilters/list.rhtml +15 -0
  181. data/app/views/admin/textfilters/macro_help.rhtml +3 -0
  182. data/app/views/admin/textfilters/new.rhtml +15 -0
  183. data/app/views/admin/textfilters/preview.rhtml +3 -0
  184. data/app/views/admin/textfilters/show.rhtml +34 -0
  185. data/app/views/admin/textfilters/show_help.rhtml +8 -0
  186. data/app/views/admin/themes/index.rhtml +12 -0
  187. data/app/views/admin/trackbacks/_form.rhtml +19 -0
  188. data/app/views/admin/trackbacks/destroy.rhtml +6 -0
  189. data/app/views/admin/trackbacks/edit.rhtml +14 -0
  190. data/app/views/admin/trackbacks/list.rhtml +31 -0
  191. data/app/views/admin/trackbacks/new.rhtml +15 -0
  192. data/app/views/admin/trackbacks/show.rhtml +14 -0
  193. data/app/views/admin/users/_form.rhtml +48 -0
  194. data/app/views/admin/users/_user.rhtml +9 -0
  195. data/app/views/admin/users/destroy.rhtml +14 -0
  196. data/app/views/admin/users/edit.rhtml +14 -0
  197. data/app/views/admin/users/list.rhtml +9 -0
  198. data/app/views/admin/users/new.rhtml +15 -0
  199. data/app/views/admin/users/show.rhtml +18 -0
  200. data/app/views/articles/_article.rhtml +4 -0
  201. data/app/views/articles/_comment.rhtml +7 -0
  202. data/app/views/articles/_comment_box.rhtml +43 -0
  203. data/app/views/articles/_comment_error.rhtml +1 -0
  204. data/app/views/articles/_trackback.rhtml +7 -0
  205. data/app/views/articles/archives.rhtml +22 -0
  206. data/app/views/articles/comment_preview.rhtml +3 -0
  207. data/app/views/articles/error.rhtml +3 -0
  208. data/app/views/articles/groupings.rhtml +14 -0
  209. data/app/views/articles/index.rhtml +11 -0
  210. data/app/views/articles/read.rhtml +70 -0
  211. data/app/views/articles/trackback.rxml +5 -0
  212. data/app/views/articles/view_page.rhtml +3 -0
  213. data/app/views/layouts/accounts.rhtml +22 -0
  214. data/app/views/layouts/administration.rhtml +75 -0
  215. data/app/views/layouts/sidebar.rhtml +40 -0
  216. data/app/views/live/search.rhtml +10 -0
  217. data/app/views/notification_mailer/_mail_footer.rhtml +7 -0
  218. data/app/views/notification_mailer/_mail_header.rhtml +1 -0
  219. data/app/views/notification_mailer/article.rhtml +6 -0
  220. data/app/views/notification_mailer/comment.rhtml +11 -0
  221. data/app/views/notification_mailer/trackback.rhtml +3 -0
  222. data/app/views/settings/done.rhtml +2 -0
  223. data/app/views/settings/install.rhtml +12 -0
  224. data/app/views/shared/_search.rhtml +10 -0
  225. data/app/views/sidebar/_row.rhtml +1 -0
  226. data/app/views/sidebar/_sidebar.rhtml +5 -0
  227. data/app/views/sidebar/display_plugins.rhtml +5 -0
  228. data/app/views/sidebar/show.rhtml +1 -0
  229. data/app/views/theme/static_view_test.rhtml +1 -0
  230. data/app/views/xml/_atom10_item_article.rxml +39 -0
  231. data/app/views/xml/_atom10_item_comment.rxml +13 -0
  232. data/app/views/xml/_atom10_item_trackback.rxml +16 -0
  233. data/app/views/xml/_itunes_item_resource.rxml +30 -0
  234. data/app/views/xml/_rss20_item_article.rxml +35 -0
  235. data/app/views/xml/_rss20_item_comment.rxml +7 -0
  236. data/app/views/xml/_rss20_item_trackback.rxml +7 -0
  237. data/app/views/xml/atom10_feed.rxml +18 -0
  238. data/app/views/xml/itunes_feed.rxml +29 -0
  239. data/app/views/xml/rsd.rxml +19 -0
  240. data/app/views/xml/rss20_feed.rxml +18 -0
  241. data/bin/typo +12 -0
  242. data/cache/META/DATA/ACTION_PARAM/localhost.3000/articles/index/.cache +540 -0
  243. data/cache/META/DATA/ACTION_PARAM/localhost.3000/articles/permalink/day=09&month=09&title=i-need-a-new-keyboard-and-mouse&year=2005.cache +414 -0
  244. data/cache/META/META/ACTION_PARAM/localhost.3000/articles/index/.cache +3 -0
  245. data/cache/META/META/ACTION_PARAM/localhost.3000/articles/permalink/day=09&month=09&title=i-need-a-new-keyboard-and-mouse&year=2005.cache +3 -0
  246. data/components/plugins/sidebars/aimpresence/content.rhtml +4 -0
  247. data/components/plugins/sidebars/aimpresence_controller.rb +10 -0
  248. data/components/plugins/sidebars/amazon/content.rhtml +4 -0
  249. data/components/plugins/sidebars/amazon_controller.rb +17 -0
  250. data/components/plugins/sidebars/archives/content.rhtml +11 -0
  251. data/components/plugins/sidebars/archives_controller.rb +24 -0
  252. data/components/plugins/sidebars/audioscrobbler/content.rhtml +10 -0
  253. data/components/plugins/sidebars/audioscrobbler_controller.rb +10 -0
  254. data/components/plugins/sidebars/backpack/content.rhtml +12 -0
  255. data/components/plugins/sidebars/backpack_controller.rb +17 -0
  256. data/components/plugins/sidebars/category/content.rhtml +10 -0
  257. data/components/plugins/sidebars/category_controller.rb +13 -0
  258. data/components/plugins/sidebars/delicious/content.rhtml +20 -0
  259. data/components/plugins/sidebars/delicious_controller.rb +29 -0
  260. data/components/plugins/sidebars/flickr/content.rhtml +15 -0
  261. data/components/plugins/sidebars/flickr_controller.rb +16 -0
  262. data/components/plugins/sidebars/fortythree/content.rhtml +8 -0
  263. data/components/plugins/sidebars/fortythree_controller.rb +12 -0
  264. data/components/plugins/sidebars/fortythreeplaces/content.rhtml +8 -0
  265. data/components/plugins/sidebars/fortythreeplaces_controller.rb +12 -0
  266. data/components/plugins/sidebars/magnolia/content.rhtml +12 -0
  267. data/components/plugins/sidebars/magnolia_controller.rb +17 -0
  268. data/components/plugins/sidebars/recent_comments/content.rhtml +12 -0
  269. data/components/plugins/sidebars/recent_comments_controller.rb +23 -0
  270. data/components/plugins/sidebars/static/content.rhtml +2 -0
  271. data/components/plugins/sidebars/static_controller.rb +23 -0
  272. data/components/plugins/sidebars/tada/content.rhtml +12 -0
  273. data/components/plugins/sidebars/tada_controller.rb +12 -0
  274. data/components/plugins/sidebars/tag/content.rhtml +8 -0
  275. data/components/plugins/sidebars/tag_controller.rb +18 -0
  276. data/components/plugins/sidebars/technorati/content.rhtml +8 -0
  277. data/components/plugins/sidebars/technorati_controller.rb +12 -0
  278. data/components/plugins/sidebars/upcoming/content.rhtml +8 -0
  279. data/components/plugins/sidebars/upcoming_controller.rb +11 -0
  280. data/components/plugins/sidebars/xbox/content.rhtml +2 -0
  281. data/components/plugins/sidebars/xbox_controller.rb +6 -0
  282. data/components/plugins/sidebars/xml/content.rhtml +12 -0
  283. data/components/plugins/sidebars/xml_controller.rb +11 -0
  284. data/components/plugins/textfilters/amazon_controller.rb +39 -0
  285. data/components/plugins/textfilters/code_controller.rb +59 -0
  286. data/components/plugins/textfilters/flickr_controller.rb +75 -0
  287. data/components/plugins/textfilters/htmlfilter_controller.rb +8 -0
  288. data/components/plugins/textfilters/lightbox_controller.rb +122 -0
  289. data/components/plugins/textfilters/macropost_controller.rb +14 -0
  290. data/components/plugins/textfilters/macropre_controller.rb +14 -0
  291. data/components/plugins/textfilters/markdown_controller.rb +32 -0
  292. data/components/plugins/textfilters/none_controller.rb +8 -0
  293. data/components/plugins/textfilters/smartypants_controller.rb +8 -0
  294. data/components/plugins/textfilters/sparkline_controller.rb +87 -0
  295. data/components/plugins/textfilters/textile_controller.rb +8 -0
  296. data/components/sidebars/README +36 -0
  297. data/config/boot.rb +44 -0
  298. data/config/database.yml +17 -0
  299. data/config/database.yml-pgsql +17 -0
  300. data/config/database.yml.example +18 -0
  301. data/config/environment.rb +145 -0
  302. data/config/environments/development.rb +17 -0
  303. data/config/environments/production.rb +19 -0
  304. data/config/environments/test.rb +26 -0
  305. data/config/iTunes.yml +72 -0
  306. data/config/lighttpd.conf +46 -0
  307. data/config/mail.yml +8 -0
  308. data/config/mail.yml.example +8 -0
  309. data/config/routes.rb +92 -0
  310. data/db/DB +0 -0
  311. data/db/DB.test +0 -0
  312. data/db/converters/README +14 -0
  313. data/db/converters/feed.rb +68 -0
  314. data/db/converters/mt-import.rb +72 -0
  315. data/db/converters/mt3.rb +172 -0
  316. data/db/converters/rss.rb +67 -0
  317. data/db/converters/s9y.rb +182 -0
  318. data/db/converters/textpattern.rb +137 -0
  319. data/db/converters/wordpress.rb +187 -0
  320. data/db/development_structure.sql +691 -0
  321. data/db/migrate/001_initial_schema.rb +127 -0
  322. data/db/migrate/002_add_user_email.rb +17 -0
  323. data/db/migrate/003_add_article_user_id.rb +20 -0
  324. data/db/migrate/004_add_sidebars.rb +31 -0
  325. data/db/migrate/005_add_cache_table.rb +20 -0
  326. data/db/migrate/006_add_pages.rb +17 -0
  327. data/db/migrate/007_add_permalink.rb +36 -0
  328. data/db/migrate/008_add_page_title.rb +9 -0
  329. data/db/migrate/009_add_article_guid.rb +10 -0
  330. data/db/migrate/010_add_tags.rb +19 -0
  331. data/db/migrate/011_add_article_id.rb +17 -0
  332. data/db/migrate/012_enlarge_settings.rb +11 -0
  333. data/db/migrate/013_add_textfilters.rb +33 -0
  334. data/db/migrate/014_move_text_filter_to_text_filter_id.rb +43 -0
  335. data/db/migrate/015_convert_mysql_to_innodb.rb +19 -0
  336. data/db/migrate/016_fix_is_primary_postgres.rb +19 -0
  337. data/db/migrate/017_add_comment_user_id.rb +23 -0
  338. data/db/migrate/018_add_guids.rb +13 -0
  339. data/db/migrate/019_add_whiteboards_to_content.rb +15 -0
  340. data/db/migrate/020_superclass_articles.rb +167 -0
  341. data/db/migrate/021_superclass_comments.rb +94 -0
  342. data/db/migrate/022_superclass_trackbacks.rb +71 -0
  343. data/db/migrate/023_superclass_pages.rb +64 -0
  344. data/db/migrate/024_cleanup_contents.rb +54 -0
  345. data/db/migrate/025_add_itunes_metadata.rb +29 -0
  346. data/db/migrate/026_add_redirect_table.rb +13 -0
  347. data/db/migrate/027_set_comment_published_flag.rb +19 -0
  348. data/db/migrate/028_rename_redirect_to.rb +12 -0
  349. data/db/migrate/029_add_user_notification.rb +29 -0
  350. data/db/migrate/030_index_sessions.rb +9 -0
  351. data/db/migrate/031_add_notifications_table.rb +14 -0
  352. data/db/migrate/032_add_jabber_notification.rb +11 -0
  353. data/db/migrate/033_add_count_caching.rb +34 -0
  354. data/db/migrate/034_boolify_published.rb +36 -0
  355. data/db/migrate/035_boolify_content_allow_foo.rb +36 -0
  356. data/db/migrate/036_add_tag_display_name.rb +53 -0
  357. data/db/migrate/037_enlarge_ip_field.rb +9 -0
  358. data/db/migrate/038_add_blog_object.rb +52 -0
  359. data/db/migrate/039_serialize_blog_attributes.rb +160 -0
  360. data/db/migrate/040_attach_content_to_blog.rb +28 -0
  361. data/db/migrate/041_fixup_default_sidebars.rb +18 -0
  362. data/db/migrate/042_remove_sidebar_staged_config.rb +22 -0
  363. data/db/migrate/043_create_triggers.rb +14 -0
  364. data/db/migrate/044_add_published_at_to_content.rb +18 -0
  365. data/db/migrate/045_fix_contents_published_default.rb +9 -0
  366. data/db/migrate/046_fixup_forthcoming_publications.rb +40 -0
  367. data/db/schema.mysql-v3.sql +218 -0
  368. data/db/schema.mysql.sql +218 -0
  369. data/db/schema.postgresql.sql +218 -0
  370. data/db/schema.rb +169 -0
  371. data/db/schema.sqlite.sql +218 -0
  372. data/db/schema.sqlserver.sql +232 -0
  373. data/db/schema_version +1 -0
  374. data/db/scripts/fix_permalinks.rb +5 -0
  375. data/db/updates/update.168.to.200.mysql.sql +33 -0
  376. data/db/updates/update.168.to.200.psql.sql +30 -0
  377. data/doc/Installer.txt +55 -0
  378. data/doc/README_FOR_APP +2 -0
  379. data/installer/rails-installer.rb +488 -0
  380. data/installer/rails_installer_defaults.yml +4 -0
  381. data/installer/typo-installer.rb +35 -0
  382. data/lib/backpack_api.rb +202 -0
  383. data/lib/bare_migration.rb +142 -0
  384. data/lib/email_notify.rb +32 -0
  385. data/lib/format.rb +19 -0
  386. data/lib/generators/sidebar/sidebar_generator.rb +13 -0
  387. data/lib/generators/sidebar/templates/components/plugins/sidebars/controller_template.rb +20 -0
  388. data/lib/generators/sidebar/templates/components/plugins/sidebars/views/content_template.rhtml +4 -0
  389. data/lib/jabber_notify.rb +32 -0
  390. data/lib/login_system.rb +85 -0
  391. data/lib/migrator.rb +28 -0
  392. data/lib/rails_patch/active_record.rb +36 -0
  393. data/lib/rails_patch/components.rb +14 -0
  394. data/lib/sidebars/component_plugin.rb +5 -0
  395. data/lib/sidebars/plugin.rb +241 -0
  396. data/lib/spam_protection.rb +126 -0
  397. data/lib/tasks/release.rake +171 -0
  398. data/lib/tasks/schemas.rake +6 -0
  399. data/lib/tasks/sweep_cache.rake +6 -0
  400. data/lib/text_filter_plugin.rb +97 -0
  401. data/lib/transforms.rb +26 -0
  402. data/lib/typo_guid.rb +10 -0
  403. data/lib/typo_plugins.rb +19 -0
  404. data/lib/typo_version.rb +1 -0
  405. data/lib/xmlrpc_fix.rb +13 -0
  406. data/public/.htaccess +34 -0
  407. data/public/404.html +8 -0
  408. data/public/500.html +8 -0
  409. data/public/dispatch.cgi +10 -0
  410. data/public/dispatch.fcgi +24 -0
  411. data/public/dispatch.rb +10 -0
  412. data/public/favicon.ico +0 -0
  413. data/public/images/admin/dot-vertical.gif +0 -0
  414. data/public/images/admin/h-tile.gif +0 -0
  415. data/public/images/admin/hdr-tile.gif +0 -0
  416. data/public/images/admin/toggle.gif +0 -0
  417. data/public/images/bg.jpg +0 -0
  418. data/public/images/bgcolor.jpg +0 -0
  419. data/public/images/body_bg.png +0 -0
  420. data/public/images/branding_bg.png +0 -0
  421. data/public/images/branding_logo.png +0 -0
  422. data/public/images/checked.gif +0 -0
  423. data/public/images/content_bg.png +0 -0
  424. data/public/images/delete.png +0 -0
  425. data/public/images/footer.jpg +0 -0
  426. data/public/images/footer.png +0 -0
  427. data/public/images/global_bg.png +0 -0
  428. data/public/images/global_logo.png +0 -0
  429. data/public/images/go.png +0 -0
  430. data/public/images/header.jpg +0 -0
  431. data/public/images/loading.gif +0 -0
  432. data/public/images/not-checked copy.gif +0 -0
  433. data/public/images/not-checked.gif +0 -0
  434. data/public/images/overlay.png +0 -0
  435. data/public/images/powered.gif +0 -0
  436. data/public/images/section_bg.png +0 -0
  437. data/public/images/sections_bg.png +0 -0
  438. data/public/images/sections_hilite.png +0 -0
  439. data/public/images/sections_hover.png +0 -0
  440. data/public/images/spinner-blue.gif +0 -0
  441. data/public/images/spinner.gif +0 -0
  442. data/public/images/spot-header.gif +0 -0
  443. data/public/images/spot-title.gif +0 -0
  444. data/public/images/x-ed.gif +0 -0
  445. data/public/javascripts/application.js +2 -0
  446. data/public/javascripts/controls.js +815 -0
  447. data/public/javascripts/cookies.js +60 -0
  448. data/public/javascripts/dragdrop.js +724 -0
  449. data/public/javascripts/effects.js +953 -0
  450. data/public/javascripts/lightbox.js +348 -0
  451. data/public/javascripts/prototype.js +1985 -0
  452. data/public/javascripts/scriptaculous.js +47 -0
  453. data/public/javascripts/slider.js +258 -0
  454. data/public/javascripts/typo.js +85 -0
  455. data/public/robots.txt +2 -0
  456. data/public/stylesheets/administration.css +585 -0
  457. data/public/stylesheets/lightbox.css +22 -0
  458. data/public/stylesheets/rss.css +54 -0
  459. data/public/stylesheets/user-styles.css +0 -0
  460. data/script/about +3 -0
  461. data/script/benchmarker +19 -0
  462. data/script/breakpointer +3 -0
  463. data/script/console +3 -0
  464. data/script/destroy +3 -0
  465. data/script/generate +3 -0
  466. data/script/lighttpd +2 -0
  467. data/script/logreport +79 -0
  468. data/script/migrate +31 -0
  469. data/script/performance/benchmarker +3 -0
  470. data/script/performance/profiler +3 -0
  471. data/script/plugin +3 -0
  472. data/script/process/reaper +3 -0
  473. data/script/process/spawner +3 -0
  474. data/script/process/spinner +3 -0
  475. data/script/profiler +34 -0
  476. data/script/runner +3 -0
  477. data/script/server +3 -0
  478. data/script/spacecheck +40 -0
  479. data/test/fixtures/articles_categories.yml +31 -0
  480. data/test/fixtures/articles_tags.yml +19 -0
  481. data/test/fixtures/blacklist_patterns.yml +10 -0
  482. data/test/fixtures/blogs.yml +74 -0
  483. data/test/fixtures/categories.yml +35 -0
  484. data/test/fixtures/contents.yml +297 -0
  485. data/test/fixtures/notification_mailer/article +3 -0
  486. data/test/fixtures/notification_mailer/comment +3 -0
  487. data/test/fixtures/notification_mailer/trackback +3 -0
  488. data/test/fixtures/notifications.yml +0 -0
  489. data/test/fixtures/page_caches.yml +7 -0
  490. data/test/fixtures/redirects.yml +13 -0
  491. data/test/fixtures/resources.yml +24 -0
  492. data/test/fixtures/sidebars.yml +5 -0
  493. data/test/fixtures/tags.yml +13 -0
  494. data/test/fixtures/text_filters.yml +42 -0
  495. data/test/fixtures/triggers.yml +1 -0
  496. data/test/fixtures/users.yml +56 -0
  497. data/test/functional/accounts_controller_test.rb +82 -0
  498. data/test/functional/admin/article_preview_test.rb +67 -0
  499. data/test/functional/admin/blacklist_controller_test.rb +63 -0
  500. data/test/functional/admin/categories_controller_test.rb +112 -0
  501. data/test/functional/admin/comments_controller_test.rb +78 -0
  502. data/test/functional/admin/content_controller_test.rb +234 -0
  503. data/test/functional/admin/general_controller_test.rb +26 -0
  504. data/test/functional/admin/pages_controller_test.rb +103 -0
  505. data/test/functional/admin/resources_controller_test.rb +49 -0
  506. data/test/functional/admin/textfilters_controller_test.rb +29 -0
  507. data/test/functional/admin/themes_controller_test.rb +34 -0
  508. data/test/functional/admin/trackbacks_controller_test.rb +76 -0
  509. data/test/functional/admin/users_controller_test.rb +72 -0
  510. data/test/functional/articles_controller_test.rb +525 -0
  511. data/test/functional/backend_controller_test.rb +273 -0
  512. data/test/functional/redirect_controller_test.rb +40 -0
  513. data/test/functional/textfilter_controller_test.rb +275 -0
  514. data/test/functional/theme_controller_test.rb +45 -0
  515. data/test/functional/xml_controller_test.rb +353 -0
  516. data/test/mocks/test/dns_mock.rb +13 -0
  517. data/test/mocks/test/flickr_mock.rb +30 -0
  518. data/test/mocks/test/http_mock.rb +38 -0
  519. data/test/mocks/test/theme_mock.rb +5 -0
  520. data/test/mocks/test/xmlrpc_mock.rb +27 -0
  521. data/test/mocks/themes/123-numbers-in-path/about.markdown +0 -0
  522. data/test/mocks/themes/CamelCaseDirectory/about.markdown +0 -0
  523. data/test/mocks/themes/azure/about.markdown +5 -0
  524. data/test/mocks/themes/azure/layouts/default.rhtml +50 -0
  525. data/test/mocks/themes/azure/preview.png +0 -0
  526. data/test/mocks/themes/azure/views/theme/static_view_test.rhtml +1 -0
  527. data/test/mocks/themes/i-have-special-chars/about.markdown +0 -0
  528. data/test/test_helper.rb +95 -0
  529. data/test/unit/article_test.rb +245 -0
  530. data/test/unit/assumptions_tests.rb +54 -0
  531. data/test/unit/audioscrobbler_test.rb +132 -0
  532. data/test/unit/blacklist_pattern_test.rb +14 -0
  533. data/test/unit/blog_test.rb +83 -0
  534. data/test/unit/category_test.rb +37 -0
  535. data/test/unit/comment_test.rb +117 -0
  536. data/test/unit/configuration_test.rb +21 -0
  537. data/test/unit/content_state/factory_test.rb +84 -0
  538. data/test/unit/delicious_test.rb +96 -0
  539. data/test/unit/flickr_test.rb +134 -0
  540. data/test/unit/fortythree_test.rb +66 -0
  541. data/test/unit/magnolia_test.rb +87 -0
  542. data/test/unit/metafragment_test.rb +63 -0
  543. data/test/unit/notification_mailer_test.rb +55 -0
  544. data/test/unit/observer_test.rb +40 -0
  545. data/test/unit/page_cache_test.rb +34 -0
  546. data/test/unit/page_test.rb +25 -0
  547. data/test/unit/ping_test.rb +111 -0
  548. data/test/unit/redirect_test.rb +19 -0
  549. data/test/unit/resource_test.rb +71 -0
  550. data/test/unit/sidebar_test.rb +14 -0
  551. data/test/unit/tag_test.rb +66 -0
  552. data/test/unit/text_filter_test.rb +126 -0
  553. data/test/unit/theme_test.rb +44 -0
  554. data/test/unit/trackback_test.rb +45 -0
  555. data/test/unit/trigger_test.rb +40 -0
  556. data/test/unit/user_test.rb +111 -0
  557. data/themes/azure/about.markdown +5 -0
  558. data/themes/azure/images/bg-tile.gif +0 -0
  559. data/themes/azure/images/bracket.gif +0 -0
  560. data/themes/azure/images/bullet.gif +0 -0
  561. data/themes/azure/images/hdr.gif +0 -0
  562. data/themes/azure/images/q-close.gif +0 -0
  563. data/themes/azure/images/q-open.gif +0 -0
  564. data/themes/azure/images/sbar-tile.gif +0 -0
  565. data/themes/azure/images/spinner.gif +0 -0
  566. data/themes/azure/images/xlink.gif +0 -0
  567. data/themes/azure/layouts/default.rhtml +50 -0
  568. data/themes/azure/preview.png +0 -0
  569. data/themes/azure/stylesheets/azure.css +436 -0
  570. data/themes/azure/stylesheets/print.css +30 -0
  571. data/themes/azure/views/theme/static_view_test.rhtml +1 -0
  572. data/vendor/akismet/Akismet.rb +140 -0
  573. data/vendor/bluecloth/CHANGES +366 -0
  574. data/vendor/bluecloth/LICENSE +340 -0
  575. data/vendor/bluecloth/README +99 -0
  576. data/vendor/bluecloth/bin/bluecloth +83 -0
  577. data/vendor/bluecloth/install.rb +150 -0
  578. data/vendor/bluecloth/lib/bluecloth.rb +1144 -0
  579. data/vendor/bluecloth/test.rb +117 -0
  580. data/vendor/bluecloth/tests/00_Class.tests.rb +71 -0
  581. data/vendor/bluecloth/tests/05_Markdown.tests.rb +1527 -0
  582. data/vendor/bluecloth/tests/10_Bug.tests.rb +57 -0
  583. data/vendor/bluecloth/tests/15_Contrib.tests.rb +132 -0
  584. data/vendor/bluecloth/tests/bctestcase.rb +274 -0
  585. data/vendor/bluecloth/tests/data/antsugar.txt +34 -0
  586. data/vendor/bluecloth/tests/data/ml-announce.txt +17 -0
  587. data/vendor/bluecloth/tests/data/re-overflow.txt +67 -0
  588. data/vendor/bluecloth/tests/data/re-overflow2.txt +281 -0
  589. data/vendor/bluecloth/utils.rb +553 -0
  590. data/vendor/flickr/Rakefile +36 -0
  591. data/vendor/flickr/flickr.rb +490 -0
  592. data/vendor/flickr/index.html +129 -0
  593. data/vendor/flickr/test_flickr.rb +173 -0
  594. data/vendor/jabber4r/CHANGES +8 -0
  595. data/vendor/jabber4r/LICENSE.txt +12 -0
  596. data/vendor/jabber4r/README +180 -0
  597. data/vendor/jabber4r/Rakefile.rb +143 -0
  598. data/vendor/jabber4r/lib/jabber4r/jabber4r.rb +22 -0
  599. data/vendor/jabber4r/lib/jabber4r/jid.rb +93 -0
  600. data/vendor/jabber4r/lib/jabber4r/protocol.rb +1384 -0
  601. data/vendor/jabber4r/lib/jabber4r/rexml_1.8_patch.rb +16 -0
  602. data/vendor/jabber4r/lib/jabber4r/roster.rb +322 -0
  603. data/vendor/jabber4r/lib/jabber4r/session.rb +615 -0
  604. data/vendor/jabber4r/lib/jabber4r/vcard.rb +42 -0
  605. data/vendor/plugins/expiring_action_cache/init.rb +2 -0
  606. data/vendor/plugins/expiring_action_cache/lib/actionparamcache.rb +113 -0
  607. data/vendor/plugins/expiring_action_cache/lib/metafragment.rb +46 -0
  608. data/vendor/plugins/upload_progress/CHANGELOG +3 -0
  609. data/vendor/plugins/upload_progress/MIT-LICENSE +20 -0
  610. data/vendor/plugins/upload_progress/README +45 -0
  611. data/vendor/plugins/upload_progress/Rakefile +23 -0
  612. data/vendor/plugins/upload_progress/init.rb +7 -0
  613. data/vendor/plugins/upload_progress/lib/multipart_progress.rb +169 -0
  614. data/vendor/plugins/upload_progress/lib/progress.rb +145 -0
  615. data/vendor/plugins/upload_progress/lib/upload_progress.rb +303 -0
  616. data/vendor/plugins/upload_progress/lib/upload_progress_helper.rb +424 -0
  617. data/vendor/plugins/upload_progress/public/stylesheets/upload_progress.css +21 -0
  618. data/vendor/plugins/upload_progress/test/multipart_progress_testx.rb +364 -0
  619. data/vendor/plugins/upload_progress/test/upload_progress_helper_testx.rb +134 -0
  620. data/vendor/plugins/upload_progress/test/upload_progress_testx.rb +88 -0
  621. data/vendor/redcloth/RedCloth.gemspec +52 -0
  622. data/vendor/redcloth/bin/redcloth +3 -0
  623. data/vendor/redcloth/doc/CHANGELOG +160 -0
  624. data/vendor/redcloth/doc/COPYING +25 -0
  625. data/vendor/redcloth/doc/README +106 -0
  626. data/vendor/redcloth/doc/REFERENCE +216 -0
  627. data/vendor/redcloth/doc/make.rb +359 -0
  628. data/vendor/redcloth/install.rb +1032 -0
  629. data/vendor/redcloth/lib/redcloth.rb +1130 -0
  630. data/vendor/redcloth/run-tests.rb +28 -0
  631. data/vendor/redcloth/setup.rb +1376 -0
  632. data/vendor/redcloth/tests/code.yml +105 -0
  633. data/vendor/redcloth/tests/hard_breaks.yml +26 -0
  634. data/vendor/redcloth/tests/images.yml +171 -0
  635. data/vendor/redcloth/tests/instiki.yml +39 -0
  636. data/vendor/redcloth/tests/links.yml +155 -0
  637. data/vendor/redcloth/tests/lists.yml +77 -0
  638. data/vendor/redcloth/tests/markdown.yml +218 -0
  639. data/vendor/redcloth/tests/poignant.yml +64 -0
  640. data/vendor/redcloth/tests/table.yml +198 -0
  641. data/vendor/redcloth/tests/textism.yml +406 -0
  642. data/vendor/ruby-mp3info/lib/mp3info.rb +720 -0
  643. data/vendor/rubypants/README +114 -0
  644. data/vendor/rubypants/Rakefile +55 -0
  645. data/vendor/rubypants/html/classes/RubyPants.html +924 -0
  646. data/vendor/rubypants/html/created.rid +1 -0
  647. data/vendor/rubypants/html/files/README.html +248 -0
  648. data/vendor/rubypants/html/files/rubypants_rb.html +125 -0
  649. data/vendor/rubypants/html/fr_class_index.html +27 -0
  650. data/vendor/rubypants/html/fr_file_index.html +28 -0
  651. data/vendor/rubypants/html/fr_method_index.html +38 -0
  652. data/vendor/rubypants/html/index.html +24 -0
  653. data/vendor/rubypants/html/rdoc-style.css +172 -0
  654. data/vendor/rubypants/install.rb +9 -0
  655. data/vendor/rubypants/rubypants.rb +490 -0
  656. data/vendor/rubypants/test_rubypants.rb +162 -0
  657. data/vendor/sparklines/README.txt +47 -0
  658. data/vendor/sparklines/USAGE +14 -0
  659. data/vendor/sparklines/lib/sparklines.rb +435 -0
  660. data/vendor/sparklines/samples/sparklinestest.rb +26 -0
  661. data/vendor/sparklines/sparklines_generator.rb +9 -0
  662. data/vendor/sparklines/templates/sparklines_controller.rb +30 -0
  663. data/vendor/sparklines/templates/sparklines_helper.rb +30 -0
  664. data/vendor/syntax/LICENSE +27 -0
  665. data/vendor/syntax/NEWS +16 -0
  666. data/vendor/syntax/README +38 -0
  667. data/vendor/syntax/Rakefile +194 -0
  668. data/vendor/syntax/api/classes/Syntax.html +173 -0
  669. data/vendor/syntax/api/classes/Syntax/Convertors.html +91 -0
  670. data/vendor/syntax/api/classes/Syntax/Convertors/Abstract.html +159 -0
  671. data/vendor/syntax/api/classes/Syntax/Convertors/HTML.html +149 -0
  672. data/vendor/syntax/api/classes/Syntax/Default.html +123 -0
  673. data/vendor/syntax/api/classes/Syntax/Ruby.html +319 -0
  674. data/vendor/syntax/api/classes/Syntax/Token.html +151 -0
  675. data/vendor/syntax/api/classes/Syntax/Tokenizer.html +324 -0
  676. data/vendor/syntax/api/classes/Syntax/Version.html +109 -0
  677. data/vendor/syntax/api/classes/Syntax/XML.html +205 -0
  678. data/vendor/syntax/api/classes/Syntax/YAML.html +189 -0
  679. data/vendor/syntax/api/created.rid +1 -0
  680. data/vendor/syntax/api/files/README.html +155 -0
  681. data/vendor/syntax/api/files/lib/syntax/common_rb.html +96 -0
  682. data/vendor/syntax/api/files/lib/syntax/convertors/abstract_rb.html +96 -0
  683. data/vendor/syntax/api/files/lib/syntax/convertors/html_rb.html +96 -0
  684. data/vendor/syntax/api/files/lib/syntax/lang/ruby_rb.html +96 -0
  685. data/vendor/syntax/api/files/lib/syntax/lang/xml_rb.html +96 -0
  686. data/vendor/syntax/api/files/lib/syntax/lang/yaml_rb.html +96 -0
  687. data/vendor/syntax/api/files/lib/syntax/version_rb.html +92 -0
  688. data/vendor/syntax/api/files/lib/syntax_rb.html +96 -0
  689. data/vendor/syntax/api/fr_class_index.html +56 -0
  690. data/vendor/syntax/api/fr_file_index.html +54 -0
  691. data/vendor/syntax/api/fr_method_index.html +65 -0
  692. data/vendor/syntax/api/index.html +26 -0
  693. data/vendor/syntax/api/rdoc-style.css +175 -0
  694. data/vendor/syntax/doc/manual-html/chapter-1.html +198 -0
  695. data/vendor/syntax/doc/manual-html/chapter-2.html +262 -0
  696. data/vendor/syntax/doc/manual-html/chapter-3.html +266 -0
  697. data/vendor/syntax/doc/manual-html/chapter-4.html +267 -0
  698. data/vendor/syntax/doc/manual-html/index.html +152 -0
  699. data/vendor/syntax/doc/manual-html/stylesheets/manual.css +270 -0
  700. data/vendor/syntax/doc/manual-html/stylesheets/ruby.css +17 -0
  701. data/vendor/syntax/doc/manual/chapter.erb +38 -0
  702. data/vendor/syntax/doc/manual/example.erb +18 -0
  703. data/vendor/syntax/doc/manual/index.erb +29 -0
  704. data/vendor/syntax/doc/manual/manual.rb +311 -0
  705. data/vendor/syntax/doc/manual/manual.yml +43 -0
  706. data/vendor/syntax/doc/manual/page.erb +87 -0
  707. data/vendor/syntax/doc/manual/parts/0000.txt +5 -0
  708. data/vendor/syntax/doc/manual/parts/0001.txt +16 -0
  709. data/vendor/syntax/doc/manual/parts/0002.txt +24 -0
  710. data/vendor/syntax/doc/manual/parts/0003.txt +6 -0
  711. data/vendor/syntax/doc/manual/parts/0004.txt +32 -0
  712. data/vendor/syntax/doc/manual/parts/0005.txt +18 -0
  713. data/vendor/syntax/doc/manual/parts/0006.txt +62 -0
  714. data/vendor/syntax/doc/manual/parts/0007.txt +3 -0
  715. data/vendor/syntax/doc/manual/parts/0008.txt +5 -0
  716. data/vendor/syntax/doc/manual/parts/0009.txt +29 -0
  717. data/vendor/syntax/doc/manual/parts/0010.txt +21 -0
  718. data/vendor/syntax/doc/manual/stylesheets/manual.css +270 -0
  719. data/vendor/syntax/doc/manual/stylesheets/ruby.css +17 -0
  720. data/vendor/syntax/doc/manual/tutorial.erb +30 -0
  721. data/vendor/syntax/lib/syntax.rb +38 -0
  722. data/vendor/syntax/lib/syntax/common.rb +163 -0
  723. data/vendor/syntax/lib/syntax/convertors/abstract.rb +27 -0
  724. data/vendor/syntax/lib/syntax/convertors/html.rb +51 -0
  725. data/vendor/syntax/lib/syntax/lang/ruby.rb +317 -0
  726. data/vendor/syntax/lib/syntax/lang/xml.rb +108 -0
  727. data/vendor/syntax/lib/syntax/lang/yaml.rb +105 -0
  728. data/vendor/syntax/lib/syntax/version.rb +9 -0
  729. data/vendor/syntax/setup.rb +1331 -0
  730. data/vendor/syntax/syntax.gemspec +24 -0
  731. data/vendor/syntax/test/ALL-TESTS.rb +5 -0
  732. data/vendor/syntax/test/syntax/tc_ruby.rb +871 -0
  733. data/vendor/syntax/test/syntax/tc_xml.rb +202 -0
  734. data/vendor/syntax/test/syntax/tc_yaml.rb +228 -0
  735. data/vendor/syntax/test/syntax/tokenizer_testcase.rb +40 -0
  736. data/vendor/syntax/test/tc_syntax.rb +22 -0
  737. data/vendor/uuidtools/CHANGELOG +4 -0
  738. data/vendor/uuidtools/README +13 -0
  739. data/vendor/uuidtools/install.rb +30 -0
  740. data/vendor/uuidtools/lib/uuidtools.rb +555 -0
  741. data/vendor/uuidtools/rakefile +112 -0
  742. metadata +1022 -0
@@ -0,0 +1,953 @@
1
+ // Copyright (c) 2005 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
2
+ // Contributors:
3
+ // Justin Palmer (http://encytemedia.com/)
4
+ // Mark Pilgrim (http://diveintomark.org/)
5
+ // Martin Bialasinki
6
+ //
7
+ // See scriptaculous.js for full license.
8
+
9
+ // converts rgb() and #xxx to #xxxxxx format,
10
+ // returns self (or first argument) if not convertable
11
+ String.prototype.parseColor = function() {
12
+ var color = '#';
13
+ if(this.slice(0,4) == 'rgb(') {
14
+ var cols = this.slice(4,this.length-1).split(',');
15
+ var i=0; do { color += parseInt(cols[i]).toColorPart() } while (++i<3);
16
+ } else {
17
+ if(this.slice(0,1) == '#') {
18
+ if(this.length==4) for(var i=1;i<4;i++) color += (this.charAt(i) + this.charAt(i)).toLowerCase();
19
+ if(this.length==7) color = this.toLowerCase();
20
+ }
21
+ }
22
+ return(color.length==7 ? color : (arguments[0] || this));
23
+ }
24
+
25
+ /*--------------------------------------------------------------------------*/
26
+
27
+ Element.collectTextNodes = function(element) {
28
+ return $A($(element).childNodes).collect( function(node) {
29
+ return (node.nodeType==3 ? node.nodeValue :
30
+ (node.hasChildNodes() ? Element.collectTextNodes(node) : ''));
31
+ }).flatten().join('');
32
+ }
33
+
34
+ Element.collectTextNodesIgnoreClass = function(element, className) {
35
+ return $A($(element).childNodes).collect( function(node) {
36
+ return (node.nodeType==3 ? node.nodeValue :
37
+ ((node.hasChildNodes() && !Element.hasClassName(node,className)) ?
38
+ Element.collectTextNodesIgnoreClass(node, className) : ''));
39
+ }).flatten().join('');
40
+ }
41
+
42
+ Element.setContentZoom = function(element, percent) {
43
+ element = $(element);
44
+ Element.setStyle(element, {fontSize: (percent/100) + 'em'});
45
+ if(navigator.appVersion.indexOf('AppleWebKit')>0) window.scrollBy(0,0);
46
+ }
47
+
48
+ Element.getOpacity = function(element){
49
+ var opacity;
50
+ if (opacity = Element.getStyle(element, 'opacity'))
51
+ return parseFloat(opacity);
52
+ if (opacity = (Element.getStyle(element, 'filter') || '').match(/alpha\(opacity=(.*)\)/))
53
+ if(opacity[1]) return parseFloat(opacity[1]) / 100;
54
+ return 1.0;
55
+ }
56
+
57
+ Element.setOpacity = function(element, value){
58
+ element= $(element);
59
+ if (value == 1){
60
+ Element.setStyle(element, { opacity:
61
+ (/Gecko/.test(navigator.userAgent) && !/Konqueror|Safari|KHTML/.test(navigator.userAgent)) ?
62
+ 0.999999 : null });
63
+ if(/MSIE/.test(navigator.userAgent))
64
+ Element.setStyle(element, {filter: Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'')});
65
+ } else {
66
+ if(value < 0.00001) value = 0;
67
+ Element.setStyle(element, {opacity: value});
68
+ if(/MSIE/.test(navigator.userAgent))
69
+ Element.setStyle(element,
70
+ { filter: Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'') +
71
+ 'alpha(opacity='+value*100+')' });
72
+ }
73
+ }
74
+
75
+ Element.getInlineOpacity = function(element){
76
+ return $(element).style.opacity || '';
77
+ }
78
+
79
+ Element.childrenWithClassName = function(element, className, findFirst) {
80
+ return [$A($(element).getElementsByTagName('*'))[findFirst ? 'detect' : 'select']( function(c) {
81
+ return c.className ? Element.hasClassName(c, className) : false;
82
+ })].flatten();
83
+ }
84
+
85
+ Element.forceRerendering = function(element) {
86
+ try {
87
+ element = $(element);
88
+ var n = document.createTextNode(' ');
89
+ element.appendChild(n);
90
+ element.removeChild(n);
91
+ } catch(e) { }
92
+ };
93
+
94
+ ['setOpacity','getOpacity','getInlineOpacity','forceRerendering','setContentZoom',
95
+ 'collectTextNodes','collectTextNodesIgnoreClass','childrenWithClassName'].each(
96
+ function(f) { Element.Methods[f] = Element[f]; }
97
+ );
98
+
99
+ /*--------------------------------------------------------------------------*/
100
+
101
+ Array.prototype.call = function() {
102
+ var args = arguments;
103
+ this.each(function(f){ f.apply(this, args) });
104
+ }
105
+
106
+ /*--------------------------------------------------------------------------*/
107
+
108
+ var Effect = {
109
+ tagifyText: function(element) {
110
+ var tagifyStyle = 'position:relative';
111
+ if(/MSIE/.test(navigator.userAgent)) tagifyStyle += ';zoom:1';
112
+ element = $(element);
113
+ $A(element.childNodes).each( function(child) {
114
+ if(child.nodeType==3) {
115
+ child.nodeValue.toArray().each( function(character) {
116
+ element.insertBefore(
117
+ Builder.node('span',{style: tagifyStyle},
118
+ character == ' ' ? String.fromCharCode(160) : character),
119
+ child);
120
+ });
121
+ Element.remove(child);
122
+ }
123
+ });
124
+ },
125
+ multiple: function(element, effect) {
126
+ var elements;
127
+ if(((typeof element == 'object') ||
128
+ (typeof element == 'function')) &&
129
+ (element.length))
130
+ elements = element;
131
+ else
132
+ elements = $(element).childNodes;
133
+
134
+ var options = Object.extend({
135
+ speed: 0.1,
136
+ delay: 0.0
137
+ }, arguments[2] || {});
138
+ var masterDelay = options.delay;
139
+
140
+ $A(elements).each( function(element, index) {
141
+ new effect(element, Object.extend(options, { delay: index * options.speed + masterDelay }));
142
+ });
143
+ },
144
+ PAIRS: {
145
+ 'slide': ['SlideDown','SlideUp'],
146
+ 'blind': ['BlindDown','BlindUp'],
147
+ 'appear': ['Appear','Fade']
148
+ },
149
+ toggle: function(element, effect) {
150
+ element = $(element);
151
+ effect = (effect || 'appear').toLowerCase();
152
+ var options = Object.extend({
153
+ queue: { position:'end', scope:(element.id || 'global'), limit: 1 }
154
+ }, arguments[2] || {});
155
+ Effect[element.visible() ?
156
+ Effect.PAIRS[effect][1] : Effect.PAIRS[effect][0]](element, options);
157
+ }
158
+ };
159
+
160
+ var Effect2 = Effect; // deprecated
161
+
162
+ /* ------------- transitions ------------- */
163
+
164
+ Effect.Transitions = {}
165
+
166
+ Effect.Transitions.linear = function(pos) {
167
+ return pos;
168
+ }
169
+ Effect.Transitions.sinoidal = function(pos) {
170
+ return (-Math.cos(pos*Math.PI)/2) + 0.5;
171
+ }
172
+ Effect.Transitions.reverse = function(pos) {
173
+ return 1-pos;
174
+ }
175
+ Effect.Transitions.flicker = function(pos) {
176
+ return ((-Math.cos(pos*Math.PI)/4) + 0.75) + Math.random()/4;
177
+ }
178
+ Effect.Transitions.wobble = function(pos) {
179
+ return (-Math.cos(pos*Math.PI*(9*pos))/2) + 0.5;
180
+ }
181
+ Effect.Transitions.pulse = function(pos) {
182
+ return (Math.floor(pos*10) % 2 == 0 ?
183
+ (pos*10-Math.floor(pos*10)) : 1-(pos*10-Math.floor(pos*10)));
184
+ }
185
+ Effect.Transitions.none = function(pos) {
186
+ return 0;
187
+ }
188
+ Effect.Transitions.full = function(pos) {
189
+ return 1;
190
+ }
191
+
192
+ /* ------------- core effects ------------- */
193
+
194
+ Effect.ScopedQueue = Class.create();
195
+ Object.extend(Object.extend(Effect.ScopedQueue.prototype, Enumerable), {
196
+ initialize: function() {
197
+ this.effects = [];
198
+ this.interval = null;
199
+ },
200
+ _each: function(iterator) {
201
+ this.effects._each(iterator);
202
+ },
203
+ add: function(effect) {
204
+ var timestamp = new Date().getTime();
205
+
206
+ var position = (typeof effect.options.queue == 'string') ?
207
+ effect.options.queue : effect.options.queue.position;
208
+
209
+ switch(position) {
210
+ case 'front':
211
+ // move unstarted effects after this effect
212
+ this.effects.findAll(function(e){ return e.state=='idle' }).each( function(e) {
213
+ e.startOn += effect.finishOn;
214
+ e.finishOn += effect.finishOn;
215
+ });
216
+ break;
217
+ case 'end':
218
+ // start effect after last queued effect has finished
219
+ timestamp = this.effects.pluck('finishOn').max() || timestamp;
220
+ break;
221
+ }
222
+
223
+ effect.startOn += timestamp;
224
+ effect.finishOn += timestamp;
225
+
226
+ if(!effect.options.queue.limit || (this.effects.length < effect.options.queue.limit))
227
+ this.effects.push(effect);
228
+
229
+ if(!this.interval)
230
+ this.interval = setInterval(this.loop.bind(this), 40);
231
+ },
232
+ remove: function(effect) {
233
+ this.effects = this.effects.reject(function(e) { return e==effect });
234
+ if(this.effects.length == 0) {
235
+ clearInterval(this.interval);
236
+ this.interval = null;
237
+ }
238
+ },
239
+ loop: function() {
240
+ var timePos = new Date().getTime();
241
+ this.effects.invoke('loop', timePos);
242
+ }
243
+ });
244
+
245
+ Effect.Queues = {
246
+ instances: $H(),
247
+ get: function(queueName) {
248
+ if(typeof queueName != 'string') return queueName;
249
+
250
+ if(!this.instances[queueName])
251
+ this.instances[queueName] = new Effect.ScopedQueue();
252
+
253
+ return this.instances[queueName];
254
+ }
255
+ }
256
+ Effect.Queue = Effect.Queues.get('global');
257
+
258
+ Effect.DefaultOptions = {
259
+ transition: Effect.Transitions.sinoidal,
260
+ duration: 1.0, // seconds
261
+ fps: 25.0, // max. 25fps due to Effect.Queue implementation
262
+ sync: false, // true for combining
263
+ from: 0.0,
264
+ to: 1.0,
265
+ delay: 0.0,
266
+ queue: 'parallel'
267
+ }
268
+
269
+ Effect.Base = function() {};
270
+ Effect.Base.prototype = {
271
+ position: null,
272
+ start: function(options) {
273
+ this.options = Object.extend(Object.extend({},Effect.DefaultOptions), options || {});
274
+ this.currentFrame = 0;
275
+ this.state = 'idle';
276
+ this.startOn = this.options.delay*1000;
277
+ this.finishOn = this.startOn + (this.options.duration*1000);
278
+ this.event('beforeStart');
279
+ if(!this.options.sync)
280
+ Effect.Queues.get(typeof this.options.queue == 'string' ?
281
+ 'global' : this.options.queue.scope).add(this);
282
+ },
283
+ loop: function(timePos) {
284
+ if(timePos >= this.startOn) {
285
+ if(timePos >= this.finishOn) {
286
+ this.render(1.0);
287
+ this.cancel();
288
+ this.event('beforeFinish');
289
+ if(this.finish) this.finish();
290
+ this.event('afterFinish');
291
+ return;
292
+ }
293
+ var pos = (timePos - this.startOn) / (this.finishOn - this.startOn);
294
+ var frame = Math.round(pos * this.options.fps * this.options.duration);
295
+ if(frame > this.currentFrame) {
296
+ this.render(pos);
297
+ this.currentFrame = frame;
298
+ }
299
+ }
300
+ },
301
+ render: function(pos) {
302
+ if(this.state == 'idle') {
303
+ this.state = 'running';
304
+ this.event('beforeSetup');
305
+ if(this.setup) this.setup();
306
+ this.event('afterSetup');
307
+ }
308
+ if(this.state == 'running') {
309
+ if(this.options.transition) pos = this.options.transition(pos);
310
+ pos *= (this.options.to-this.options.from);
311
+ pos += this.options.from;
312
+ this.position = pos;
313
+ this.event('beforeUpdate');
314
+ if(this.update) this.update(pos);
315
+ this.event('afterUpdate');
316
+ }
317
+ },
318
+ cancel: function() {
319
+ if(!this.options.sync)
320
+ Effect.Queues.get(typeof this.options.queue == 'string' ?
321
+ 'global' : this.options.queue.scope).remove(this);
322
+ this.state = 'finished';
323
+ },
324
+ event: function(eventName) {
325
+ if(this.options[eventName + 'Internal']) this.options[eventName + 'Internal'](this);
326
+ if(this.options[eventName]) this.options[eventName](this);
327
+ },
328
+ inspect: function() {
329
+ return '#<Effect:' + $H(this).inspect() + ',options:' + $H(this.options).inspect() + '>';
330
+ }
331
+ }
332
+
333
+ Effect.Parallel = Class.create();
334
+ Object.extend(Object.extend(Effect.Parallel.prototype, Effect.Base.prototype), {
335
+ initialize: function(effects) {
336
+ this.effects = effects || [];
337
+ this.start(arguments[1]);
338
+ },
339
+ update: function(position) {
340
+ this.effects.invoke('render', position);
341
+ },
342
+ finish: function(position) {
343
+ this.effects.each( function(effect) {
344
+ effect.render(1.0);
345
+ effect.cancel();
346
+ effect.event('beforeFinish');
347
+ if(effect.finish) effect.finish(position);
348
+ effect.event('afterFinish');
349
+ });
350
+ }
351
+ });
352
+
353
+ Effect.Opacity = Class.create();
354
+ Object.extend(Object.extend(Effect.Opacity.prototype, Effect.Base.prototype), {
355
+ initialize: function(element) {
356
+ this.element = $(element);
357
+ // make this work on IE on elements without 'layout'
358
+ if(/MSIE/.test(navigator.userAgent) && (!this.element.hasLayout))
359
+ this.element.setStyle({zoom: 1});
360
+ var options = Object.extend({
361
+ from: this.element.getOpacity() || 0.0,
362
+ to: 1.0
363
+ }, arguments[1] || {});
364
+ this.start(options);
365
+ },
366
+ update: function(position) {
367
+ this.element.setOpacity(position);
368
+ }
369
+ });
370
+
371
+ Effect.Move = Class.create();
372
+ Object.extend(Object.extend(Effect.Move.prototype, Effect.Base.prototype), {
373
+ initialize: function(element) {
374
+ this.element = $(element);
375
+ var options = Object.extend({
376
+ x: 0,
377
+ y: 0,
378
+ mode: 'relative'
379
+ }, arguments[1] || {});
380
+ this.start(options);
381
+ },
382
+ setup: function() {
383
+ // Bug in Opera: Opera returns the "real" position of a static element or
384
+ // relative element that does not have top/left explicitly set.
385
+ // ==> Always set top and left for position relative elements in your stylesheets
386
+ // (to 0 if you do not need them)
387
+ this.element.makePositioned();
388
+ this.originalLeft = parseFloat(this.element.getStyle('left') || '0');
389
+ this.originalTop = parseFloat(this.element.getStyle('top') || '0');
390
+ if(this.options.mode == 'absolute') {
391
+ // absolute movement, so we need to calc deltaX and deltaY
392
+ this.options.x = this.options.x - this.originalLeft;
393
+ this.options.y = this.options.y - this.originalTop;
394
+ }
395
+ },
396
+ update: function(position) {
397
+ this.element.setStyle({
398
+ left: this.options.x * position + this.originalLeft + 'px',
399
+ top: this.options.y * position + this.originalTop + 'px'
400
+ });
401
+ }
402
+ });
403
+
404
+ // for backwards compatibility
405
+ Effect.MoveBy = function(element, toTop, toLeft) {
406
+ return new Effect.Move(element,
407
+ Object.extend({ x: toLeft, y: toTop }, arguments[3] || {}));
408
+ };
409
+
410
+ Effect.Scale = Class.create();
411
+ Object.extend(Object.extend(Effect.Scale.prototype, Effect.Base.prototype), {
412
+ initialize: function(element, percent) {
413
+ this.element = $(element)
414
+ var options = Object.extend({
415
+ scaleX: true,
416
+ scaleY: true,
417
+ scaleContent: true,
418
+ scaleFromCenter: false,
419
+ scaleMode: 'box', // 'box' or 'contents' or {} with provided values
420
+ scaleFrom: 100.0,
421
+ scaleTo: percent
422
+ }, arguments[2] || {});
423
+ this.start(options);
424
+ },
425
+ setup: function() {
426
+ this.restoreAfterFinish = this.options.restoreAfterFinish || false;
427
+ this.elementPositioning = this.element.getStyle('position');
428
+
429
+ this.originalStyle = {};
430
+ ['top','left','width','height','fontSize'].each( function(k) {
431
+ this.originalStyle[k] = this.element.style[k];
432
+ }.bind(this));
433
+
434
+ this.originalTop = this.element.offsetTop;
435
+ this.originalLeft = this.element.offsetLeft;
436
+
437
+ var fontSize = this.element.getStyle('font-size') || '100%';
438
+ ['em','px','%'].each( function(fontSizeType) {
439
+ if(fontSize.indexOf(fontSizeType)>0) {
440
+ this.fontSize = parseFloat(fontSize);
441
+ this.fontSizeType = fontSizeType;
442
+ }
443
+ }.bind(this));
444
+
445
+ this.factor = (this.options.scaleTo - this.options.scaleFrom)/100;
446
+
447
+ this.dims = null;
448
+ if(this.options.scaleMode=='box')
449
+ this.dims = [this.element.offsetHeight, this.element.offsetWidth];
450
+ if(/^content/.test(this.options.scaleMode))
451
+ this.dims = [this.element.scrollHeight, this.element.scrollWidth];
452
+ if(!this.dims)
453
+ this.dims = [this.options.scaleMode.originalHeight,
454
+ this.options.scaleMode.originalWidth];
455
+ },
456
+ update: function(position) {
457
+ var currentScale = (this.options.scaleFrom/100.0) + (this.factor * position);
458
+ if(this.options.scaleContent && this.fontSize)
459
+ this.element.setStyle({fontSize: this.fontSize * currentScale + this.fontSizeType });
460
+ this.setDimensions(this.dims[0] * currentScale, this.dims[1] * currentScale);
461
+ },
462
+ finish: function(position) {
463
+ if (this.restoreAfterFinish) this.element.setStyle(this.originalStyle);
464
+ },
465
+ setDimensions: function(height, width) {
466
+ var d = {};
467
+ if(this.options.scaleX) d.width = width + 'px';
468
+ if(this.options.scaleY) d.height = height + 'px';
469
+ if(this.options.scaleFromCenter) {
470
+ var topd = (height - this.dims[0])/2;
471
+ var leftd = (width - this.dims[1])/2;
472
+ if(this.elementPositioning == 'absolute') {
473
+ if(this.options.scaleY) d.top = this.originalTop-topd + 'px';
474
+ if(this.options.scaleX) d.left = this.originalLeft-leftd + 'px';
475
+ } else {
476
+ if(this.options.scaleY) d.top = -topd + 'px';
477
+ if(this.options.scaleX) d.left = -leftd + 'px';
478
+ }
479
+ }
480
+ this.element.setStyle(d);
481
+ }
482
+ });
483
+
484
+ Effect.Highlight = Class.create();
485
+ Object.extend(Object.extend(Effect.Highlight.prototype, Effect.Base.prototype), {
486
+ initialize: function(element) {
487
+ this.element = $(element);
488
+ var options = Object.extend({ startcolor: '#ffff99' }, arguments[1] || {});
489
+ this.start(options);
490
+ },
491
+ setup: function() {
492
+ // Prevent executing on elements not in the layout flow
493
+ if(this.element.getStyle('display')=='none') { this.cancel(); return; }
494
+ // Disable background image during the effect
495
+ this.oldStyle = {
496
+ backgroundImage: this.element.getStyle('background-image') };
497
+ this.element.setStyle({backgroundImage: 'none'});
498
+ if(!this.options.endcolor)
499
+ this.options.endcolor = this.element.getStyle('background-color').parseColor('#ffffff');
500
+ if(!this.options.restorecolor)
501
+ this.options.restorecolor = this.element.getStyle('background-color');
502
+ // init color calculations
503
+ this._base = $R(0,2).map(function(i){ return parseInt(this.options.startcolor.slice(i*2+1,i*2+3),16) }.bind(this));
504
+ this._delta = $R(0,2).map(function(i){ return parseInt(this.options.endcolor.slice(i*2+1,i*2+3),16)-this._base[i] }.bind(this));
505
+ },
506
+ update: function(position) {
507
+ this.element.setStyle({backgroundColor: $R(0,2).inject('#',function(m,v,i){
508
+ return m+(Math.round(this._base[i]+(this._delta[i]*position)).toColorPart()); }.bind(this)) });
509
+ },
510
+ finish: function() {
511
+ this.element.setStyle(Object.extend(this.oldStyle, {
512
+ backgroundColor: this.options.restorecolor
513
+ }));
514
+ }
515
+ });
516
+
517
+ Effect.ScrollTo = Class.create();
518
+ Object.extend(Object.extend(Effect.ScrollTo.prototype, Effect.Base.prototype), {
519
+ initialize: function(element) {
520
+ this.element = $(element);
521
+ this.start(arguments[1] || {});
522
+ },
523
+ setup: function() {
524
+ Position.prepare();
525
+ var offsets = Position.cumulativeOffset(this.element);
526
+ if(this.options.offset) offsets[1] += this.options.offset;
527
+ var max = window.innerHeight ?
528
+ window.height - window.innerHeight :
529
+ document.body.scrollHeight -
530
+ (document.documentElement.clientHeight ?
531
+ document.documentElement.clientHeight : document.body.clientHeight);
532
+ this.scrollStart = Position.deltaY;
533
+ this.delta = (offsets[1] > max ? max : offsets[1]) - this.scrollStart;
534
+ },
535
+ update: function(position) {
536
+ Position.prepare();
537
+ window.scrollTo(Position.deltaX,
538
+ this.scrollStart + (position*this.delta));
539
+ }
540
+ });
541
+
542
+ /* ------------- combination effects ------------- */
543
+
544
+ Effect.Fade = function(element) {
545
+ element = $(element);
546
+ var oldOpacity = element.getInlineOpacity();
547
+ var options = Object.extend({
548
+ from: element.getOpacity() || 1.0,
549
+ to: 0.0,
550
+ afterFinishInternal: function(effect) {
551
+ if(effect.options.to!=0) return;
552
+ effect.element.hide();
553
+ effect.element.setStyle({opacity: oldOpacity});
554
+ }}, arguments[1] || {});
555
+ return new Effect.Opacity(element,options);
556
+ }
557
+
558
+ Effect.Appear = function(element) {
559
+ element = $(element);
560
+ var options = Object.extend({
561
+ from: (element.getStyle('display') == 'none' ? 0.0 : element.getOpacity() || 0.0),
562
+ to: 1.0,
563
+ // force Safari to render floated elements properly
564
+ afterFinishInternal: function(effect) {
565
+ effect.element.forceRerendering();
566
+ },
567
+ beforeSetup: function(effect) {
568
+ effect.element.setOpacity(effect.options.from);
569
+ effect.element.show();
570
+ }}, arguments[1] || {});
571
+ return new Effect.Opacity(element,options);
572
+ }
573
+
574
+ Effect.Puff = function(element) {
575
+ element = $(element);
576
+ var oldStyle = { opacity: element.getInlineOpacity(), position: element.getStyle('position') };
577
+ return new Effect.Parallel(
578
+ [ new Effect.Scale(element, 200,
579
+ { sync: true, scaleFromCenter: true, scaleContent: true, restoreAfterFinish: true }),
580
+ new Effect.Opacity(element, { sync: true, to: 0.0 } ) ],
581
+ Object.extend({ duration: 1.0,
582
+ beforeSetupInternal: function(effect) {
583
+ effect.effects[0].element.setStyle({position: 'absolute'}); },
584
+ afterFinishInternal: function(effect) {
585
+ effect.effects[0].element.hide();
586
+ effect.effects[0].element.setStyle(oldStyle); }
587
+ }, arguments[1] || {})
588
+ );
589
+ }
590
+
591
+ Effect.BlindUp = function(element) {
592
+ element = $(element);
593
+ element.makeClipping();
594
+ return new Effect.Scale(element, 0,
595
+ Object.extend({ scaleContent: false,
596
+ scaleX: false,
597
+ restoreAfterFinish: true,
598
+ afterFinishInternal: function(effect) {
599
+ effect.element.hide();
600
+ effect.element.undoClipping();
601
+ }
602
+ }, arguments[1] || {})
603
+ );
604
+ }
605
+
606
+ Effect.BlindDown = function(element) {
607
+ element = $(element);
608
+ var elementDimensions = element.getDimensions();
609
+ return new Effect.Scale(element, 100,
610
+ Object.extend({ scaleContent: false,
611
+ scaleX: false,
612
+ scaleFrom: 0,
613
+ scaleMode: {originalHeight: elementDimensions.height, originalWidth: elementDimensions.width},
614
+ restoreAfterFinish: true,
615
+ afterSetup: function(effect) {
616
+ effect.element.makeClipping();
617
+ effect.element.setStyle({height: '0px'});
618
+ effect.element.show();
619
+ },
620
+ afterFinishInternal: function(effect) {
621
+ effect.element.undoClipping();
622
+ }
623
+ }, arguments[1] || {})
624
+ );
625
+ }
626
+
627
+ Effect.SwitchOff = function(element) {
628
+ element = $(element);
629
+ var oldOpacity = element.getInlineOpacity();
630
+ return new Effect.Appear(element, {
631
+ duration: 0.4,
632
+ from: 0,
633
+ transition: Effect.Transitions.flicker,
634
+ afterFinishInternal: function(effect) {
635
+ new Effect.Scale(effect.element, 1, {
636
+ duration: 0.3, scaleFromCenter: true,
637
+ scaleX: false, scaleContent: false, restoreAfterFinish: true,
638
+ beforeSetup: function(effect) {
639
+ effect.element.makePositioned();
640
+ effect.element.makeClipping();
641
+ },
642
+ afterFinishInternal: function(effect) {
643
+ effect.element.hide();
644
+ effect.element.undoClipping();
645
+ effect.element.undoPositioned();
646
+ effect.element.setStyle({opacity: oldOpacity});
647
+ }
648
+ })
649
+ }
650
+ });
651
+ }
652
+
653
+ Effect.DropOut = function(element) {
654
+ element = $(element);
655
+ var oldStyle = {
656
+ top: element.getStyle('top'),
657
+ left: element.getStyle('left'),
658
+ opacity: element.getInlineOpacity() };
659
+ return new Effect.Parallel(
660
+ [ new Effect.Move(element, {x: 0, y: 100, sync: true }),
661
+ new Effect.Opacity(element, { sync: true, to: 0.0 }) ],
662
+ Object.extend(
663
+ { duration: 0.5,
664
+ beforeSetup: function(effect) {
665
+ effect.effects[0].element.makePositioned();
666
+ },
667
+ afterFinishInternal: function(effect) {
668
+ effect.effects[0].element.hide();
669
+ effect.effects[0].element.undoPositioned();
670
+ effect.effects[0].element.setStyle(oldStyle);
671
+ }
672
+ }, arguments[1] || {}));
673
+ }
674
+
675
+ Effect.Shake = function(element) {
676
+ element = $(element);
677
+ var oldStyle = {
678
+ top: element.getStyle('top'),
679
+ left: element.getStyle('left') };
680
+ return new Effect.Move(element,
681
+ { x: 20, y: 0, duration: 0.05, afterFinishInternal: function(effect) {
682
+ new Effect.Move(effect.element,
683
+ { x: -40, y: 0, duration: 0.1, afterFinishInternal: function(effect) {
684
+ new Effect.Move(effect.element,
685
+ { x: 40, y: 0, duration: 0.1, afterFinishInternal: function(effect) {
686
+ new Effect.Move(effect.element,
687
+ { x: -40, y: 0, duration: 0.1, afterFinishInternal: function(effect) {
688
+ new Effect.Move(effect.element,
689
+ { x: 40, y: 0, duration: 0.1, afterFinishInternal: function(effect) {
690
+ new Effect.Move(effect.element,
691
+ { x: -20, y: 0, duration: 0.05, afterFinishInternal: function(effect) {
692
+ effect.element.undoPositioned();
693
+ effect.element.setStyle(oldStyle);
694
+ }}) }}) }}) }}) }}) }});
695
+ }
696
+
697
+ Effect.SlideDown = function(element) {
698
+ element = $(element);
699
+ element.cleanWhitespace();
700
+ // SlideDown need to have the content of the element wrapped in a container element with fixed height!
701
+ var oldInnerBottom = $(element.firstChild).getStyle('bottom');
702
+ var elementDimensions = element.getDimensions();
703
+ return new Effect.Scale(element, 100, Object.extend({
704
+ scaleContent: false,
705
+ scaleX: false,
706
+ scaleFrom: 0,
707
+ scaleMode: {originalHeight: elementDimensions.height, originalWidth: elementDimensions.width},
708
+ restoreAfterFinish: true,
709
+ afterSetup: function(effect) {
710
+ effect.element.makePositioned();
711
+ effect.element.firstChild.makePositioned();
712
+ if(window.opera) effect.element.setStyle({top: ''});
713
+ effect.element.makeClipping();
714
+ effect.element.setStyle({height: '0px'});
715
+ effect.element.show(); },
716
+ afterUpdateInternal: function(effect) {
717
+ effect.element.firstChild.setStyle({bottom:
718
+ (effect.dims[0] - effect.element.clientHeight) + 'px' });
719
+ },
720
+ afterFinishInternal: function(effect) {
721
+ effect.element.undoClipping();
722
+ // IE will crash if child is undoPositioned first
723
+ if(/MSIE/.test(navigator.userAgent)){
724
+ effect.element.undoPositioned();
725
+ effect.element.firstChild.undoPositioned();
726
+ }else{
727
+ effect.element.firstChild.undoPositioned();
728
+ effect.element.undoPositioned();
729
+ }
730
+ effect.element.firstChild.setStyle({bottom: oldInnerBottom}); }
731
+ }, arguments[1] || {})
732
+ );
733
+ }
734
+
735
+ Effect.SlideUp = function(element) {
736
+ element = $(element);
737
+ element.cleanWhitespace();
738
+ var oldInnerBottom = $(element.firstChild).getStyle('bottom');
739
+ return new Effect.Scale(element, 0,
740
+ Object.extend({ scaleContent: false,
741
+ scaleX: false,
742
+ scaleMode: 'box',
743
+ scaleFrom: 100,
744
+ restoreAfterFinish: true,
745
+ beforeStartInternal: function(effect) {
746
+ effect.element.makePositioned();
747
+ effect.element.firstChild.makePositioned();
748
+ if(window.opera) effect.element.setStyle({top: ''});
749
+ effect.element.makeClipping();
750
+ effect.element.show(); },
751
+ afterUpdateInternal: function(effect) {
752
+ effect.element.firstChild.setStyle({bottom:
753
+ (effect.dims[0] - effect.element.clientHeight) + 'px' }); },
754
+ afterFinishInternal: function(effect) {
755
+ effect.element.hide();
756
+ effect.element.undoClipping();
757
+ effect.element.firstChild.undoPositioned();
758
+ effect.element.undoPositioned();
759
+ effect.element.setStyle({bottom: oldInnerBottom}); }
760
+ }, arguments[1] || {})
761
+ );
762
+ }
763
+
764
+ // Bug in opera makes the TD containing this element expand for a instance after finish
765
+ Effect.Squish = function(element) {
766
+ return new Effect.Scale(element, window.opera ? 1 : 0,
767
+ { restoreAfterFinish: true,
768
+ beforeSetup: function(effect) {
769
+ effect.element.makeClipping(effect.element); },
770
+ afterFinishInternal: function(effect) {
771
+ effect.element.hide(effect.element);
772
+ effect.element.undoClipping(effect.element); }
773
+ });
774
+ }
775
+
776
+ Effect.Grow = function(element) {
777
+ element = $(element);
778
+ var options = Object.extend({
779
+ direction: 'center',
780
+ moveTransition: Effect.Transitions.sinoidal,
781
+ scaleTransition: Effect.Transitions.sinoidal,
782
+ opacityTransition: Effect.Transitions.full
783
+ }, arguments[1] || {});
784
+ var oldStyle = {
785
+ top: element.style.top,
786
+ left: element.style.left,
787
+ height: element.style.height,
788
+ width: element.style.width,
789
+ opacity: element.getInlineOpacity() };
790
+
791
+ var dims = element.getDimensions();
792
+ var initialMoveX, initialMoveY;
793
+ var moveX, moveY;
794
+
795
+ switch (options.direction) {
796
+ case 'top-left':
797
+ initialMoveX = initialMoveY = moveX = moveY = 0;
798
+ break;
799
+ case 'top-right':
800
+ initialMoveX = dims.width;
801
+ initialMoveY = moveY = 0;
802
+ moveX = -dims.width;
803
+ break;
804
+ case 'bottom-left':
805
+ initialMoveX = moveX = 0;
806
+ initialMoveY = dims.height;
807
+ moveY = -dims.height;
808
+ break;
809
+ case 'bottom-right':
810
+ initialMoveX = dims.width;
811
+ initialMoveY = dims.height;
812
+ moveX = -dims.width;
813
+ moveY = -dims.height;
814
+ break;
815
+ case 'center':
816
+ initialMoveX = dims.width / 2;
817
+ initialMoveY = dims.height / 2;
818
+ moveX = -dims.width / 2;
819
+ moveY = -dims.height / 2;
820
+ break;
821
+ }
822
+
823
+ return new Effect.Move(element, {
824
+ x: initialMoveX,
825
+ y: initialMoveY,
826
+ duration: 0.01,
827
+ beforeSetup: function(effect) {
828
+ effect.element.hide();
829
+ effect.element.makeClipping();
830
+ effect.element.makePositioned();
831
+ },
832
+ afterFinishInternal: function(effect) {
833
+ new Effect.Parallel(
834
+ [ new Effect.Opacity(effect.element, { sync: true, to: 1.0, from: 0.0, transition: options.opacityTransition }),
835
+ new Effect.Move(effect.element, { x: moveX, y: moveY, sync: true, transition: options.moveTransition }),
836
+ new Effect.Scale(effect.element, 100, {
837
+ scaleMode: { originalHeight: dims.height, originalWidth: dims.width },
838
+ sync: true, scaleFrom: window.opera ? 1 : 0, transition: options.scaleTransition, restoreAfterFinish: true})
839
+ ], Object.extend({
840
+ beforeSetup: function(effect) {
841
+ effect.effects[0].element.setStyle({height: '0px'});
842
+ effect.effects[0].element.show();
843
+ },
844
+ afterFinishInternal: function(effect) {
845
+ effect.effects[0].element.undoClipping();
846
+ effect.effects[0].element.undoPositioned();
847
+ effect.effects[0].element.setStyle(oldStyle);
848
+ }
849
+ }, options)
850
+ )
851
+ }
852
+ });
853
+ }
854
+
855
+ Effect.Shrink = function(element) {
856
+ element = $(element);
857
+ var options = Object.extend({
858
+ direction: 'center',
859
+ moveTransition: Effect.Transitions.sinoidal,
860
+ scaleTransition: Effect.Transitions.sinoidal,
861
+ opacityTransition: Effect.Transitions.none
862
+ }, arguments[1] || {});
863
+ var oldStyle = {
864
+ top: element.style.top,
865
+ left: element.style.left,
866
+ height: element.style.height,
867
+ width: element.style.width,
868
+ opacity: element.getInlineOpacity() };
869
+
870
+ var dims = element.getDimensions();
871
+ var moveX, moveY;
872
+
873
+ switch (options.direction) {
874
+ case 'top-left':
875
+ moveX = moveY = 0;
876
+ break;
877
+ case 'top-right':
878
+ moveX = dims.width;
879
+ moveY = 0;
880
+ break;
881
+ case 'bottom-left':
882
+ moveX = 0;
883
+ moveY = dims.height;
884
+ break;
885
+ case 'bottom-right':
886
+ moveX = dims.width;
887
+ moveY = dims.height;
888
+ break;
889
+ case 'center':
890
+ moveX = dims.width / 2;
891
+ moveY = dims.height / 2;
892
+ break;
893
+ }
894
+
895
+ return new Effect.Parallel(
896
+ [ new Effect.Opacity(element, { sync: true, to: 0.0, from: 1.0, transition: options.opacityTransition }),
897
+ new Effect.Scale(element, window.opera ? 1 : 0, { sync: true, transition: options.scaleTransition, restoreAfterFinish: true}),
898
+ new Effect.Move(element, { x: moveX, y: moveY, sync: true, transition: options.moveTransition })
899
+ ], Object.extend({
900
+ beforeStartInternal: function(effect) {
901
+ effect.effects[0].element.makePositioned();
902
+ effect.effects[0].element.makeClipping(); },
903
+ afterFinishInternal: function(effect) {
904
+ effect.effects[0].element.hide();
905
+ effect.effects[0].element.undoClipping();
906
+ effect.effects[0].element.undoPositioned();
907
+ effect.effects[0].element.setStyle(oldStyle); }
908
+ }, options)
909
+ );
910
+ }
911
+
912
+ Effect.Pulsate = function(element) {
913
+ element = $(element);
914
+ var options = arguments[1] || {};
915
+ var oldOpacity = element.getInlineOpacity();
916
+ var transition = options.transition || Effect.Transitions.sinoidal;
917
+ var reverser = function(pos){ return transition(1-Effect.Transitions.pulse(pos)) };
918
+ reverser.bind(transition);
919
+ return new Effect.Opacity(element,
920
+ Object.extend(Object.extend({ duration: 3.0, from: 0,
921
+ afterFinishInternal: function(effect) { effect.element.setStyle({opacity: oldOpacity}); }
922
+ }, options), {transition: reverser}));
923
+ }
924
+
925
+ Effect.Fold = function(element) {
926
+ element = $(element);
927
+ var oldStyle = {
928
+ top: element.style.top,
929
+ left: element.style.left,
930
+ width: element.style.width,
931
+ height: element.style.height };
932
+ Element.makeClipping(element);
933
+ return new Effect.Scale(element, 5, Object.extend({
934
+ scaleContent: false,
935
+ scaleX: false,
936
+ afterFinishInternal: function(effect) {
937
+ new Effect.Scale(element, 1, {
938
+ scaleContent: false,
939
+ scaleY: false,
940
+ afterFinishInternal: function(effect) {
941
+ effect.element.hide();
942
+ effect.element.undoClipping();
943
+ effect.element.setStyle(oldStyle);
944
+ } });
945
+ }}, arguments[1] || {}));
946
+ }
947
+
948
+ Element.Methods.visualEffect = function(element, effect, options) {
949
+ s = effect.gsub(/_/, '-').camelize();
950
+ effect_class = s.charAt(0).toUpperCase() + s.substring(1);
951
+ new Effect[effect_class](element, options);
952
+ return $(element);
953
+ };